Class Reference for E1039 Core & Analysis Software
swap_util.c
Go to the documentation of this file.
1 /*-----------------------------------------------------------------------------
2  * Copyright (c) 1991,1992 Southeastern Universities Research Association,
3  * Continuous Electron Beam Accelerator Facility
4  *
5  * This software was developed under a United States Government license
6  * described in the NOTICE file included as part of this distribution.
7  *
8  * CEBAF Data Acquisition Group, 12000 Jefferson Ave., Newport News, VA 23606
9  * Email: coda@cebaf.gov Tel: (804) 249-7101 Fax: (804) 249-7363
10  *-----------------------------------------------------------------------------
11  *
12  * Description:
13  * Byte swapping utilities
14  *
15  * Author: Jie Chen, CEBAF Data Acquisition Group
16  *
17  * Revision History:
18  * $Log: swap_util.c,v $
19  * Revision 1.1 1998/12/07 22:11:05 saw
20  * Initial setup
21  *
22  * Revision 1.4 1994/08/12 17:15:18 chen
23  * handle char string data type correctly
24  *
25  * Revision 1.3 1994/05/17 14:24:19 chen
26  * fix memory leaks
27  *
28  * Revision 1.2 1994/04/12 18:02:20 chen
29  * fix a bug when there is no event wrapper
30  *
31  * Revision 1.1 1994/04/11 13:09:18 chen
32  * Initial revision
33  *
34 * Revision 1.2 1993/11/05 16:54:50 chen
35 * change comment
36 *
37 * Revision 1.1 1993/10/27 09:39:44 heyes
38 * Initial revision
39 *
40  * Revision 1.1 93/08/30 19:13:49 19:13:49 chen (Jie chen)
41  * Initial revision
42  *
43  */
44 
45 #include <stdio.h>
46 #include <stdlib.h>
47 #include <memory.h>
48 #include <errno.h>
49 
50 typedef struct _stack
51 {
52  int length; /* inclusive size */
53  int posi; /* event start position */
54  int type; /* data type */
55  int tag; /* tag value */
56  int num; /* num field */
57  struct _stack *next;
59 
60 typedef struct _lk
61 {
62  int head_pos;
63  int type;
64 }LK_AHEAD; /* find out header */
65 
67 static void evStack_popoff();
68 static void evStack_pushon();
69 static void evStack_free();
70 
71 /*********************************************************
72  * int int_swap_byte(int input) *
73  * get integer 32 bit input and output swapped byte *
74  * integer *
75  ********************************************************/
76 int int_swap_byte(int input)
77 {
78  int temp,i,len;
79  char *buf,*temp_buf;
80 
81  len = sizeof(int);
82  buf = (char *)malloc(sizeof(int));
83  temp_buf = (char *)malloc(sizeof(int));
84  memcpy(temp_buf,&input,sizeof(int));
85  for(i=0;i<sizeof(int);i++)
86  buf[i] = temp_buf[len-i-1];
87  temp = *(int *)(buf);
88  free(buf);free(temp_buf);
89  return temp;
90 }
91 
92 /********************************************************
93  * void onmemory_swap(char *buffer) *
94  * swap byte order of buffer, buffer will be changed *
95  ********************************************************/
96 void onmemory_swap(char *buffer)
97 {
98  char temp[4],des_temp[4];
99  int i,int_len;
100 
101  int_len = sizeof(int);
102  memcpy(temp,buffer,int_len);
103  for(i=0;i<int_len;i++)
104  des_temp[i] = temp[int_len-i-1];
105  memcpy(buffer,des_temp,int_len);
106 }
107 
108 /********************************************************
109  * void swapped_intcpy(void *des,void *source, int size)*
110  * copy source with size size to des, but with byte *
111  * order swapped in the unit of byte *
112  *******************************************************/
113 void swapped_intcpy(char *des,char *source,int size)
114 {
115  char temp[4],des_temp[4];
116  int i,j,int_len;
117 
118  int_len = sizeof(int);
119  i = 0;
120  while(i < size){
121  memcpy(temp,&source[i],sizeof(int));
122  for(j=0;j<int_len;j++)
123  des_temp[j] = temp[int_len - j - 1];
124  memcpy(&(des[i]),des_temp,sizeof(int));
125  i += 4;
126  }
127 }
128 
129 /*******************************************************
130  * void swapped_shortcpy(char *des, char *source, size)*
131  * copy short integer or packet with swapped byte order*
132  * ****************************************************/
133 void swapped_shortcpy(char *des,char *source,int size)
134 {
135  char temp[2],des_temp[2];
136  int i, j, short_len;
137 
138  short_len = sizeof(short);
139  i = 0;
140  while(i < size){
141  memcpy(temp,&source[i],short_len);
142  for(j=0; j<short_len;j++)
143  des_temp[j] = temp[short_len -j -1];
144  memcpy(&(des[i]),des_temp,short_len);
145  i += 2;
146  }
147 }
148 
149 /*******************************************************
150  * void swapped_longcpy(char *des, char *source, size) *
151  * copy 64 bit with swapped byte order *
152  * ****************************************************/
153 void swapped_longcpy(char *des,char *source,int size)
154 {
155  char temp[8],des_temp[8];
156  int i, j, long_len;
157 
158  long_len = 8;
159  i = 0;
160  while(i < size){
161  memcpy(temp,&source[i],long_len);
162  for(j=0; j< long_len;j++)
163  des_temp[j] = temp[long_len -j -1];
164  memcpy(&(des[i]),des_temp,long_len);
165  i += 8;
166  }
167 }
168 
169 /*************************************************************
170  * int swapped_fread(void *ptr, int size, int n_itmes,file)*
171  * fread from a file stream, but return swapped result *
172  ************************************************************/
173 int swapped_fread(void *ptr,int size,int n_items,FILE *stream)
174 {
175  char *temp_ptr;
176  int nbytes;
177 
178  temp_ptr = (char *)malloc(size*n_items);
179  nbytes = fread(temp_ptr,size,n_items,stream);
180  if(nbytes > 0){
181  swapped_intcpy(ptr,temp_ptr,n_items*size);
182  }
183  free(temp_ptr);
184  return(nbytes);
185 }
186 
187 /***********************************************************
188  * void swapped_memcpy(char *buffer,char *source,size) *
189  * swapped memory copy from source to buffer accroding *
190  * to data type *
191  **********************************************************/
192 void swapped_memcpy(char *buffer,char *source,int size)
193 {
194  evStack *head, *p;
195  LK_AHEAD lk;
196  int int_len, short_len, long_len;
197  int i, j, depth, current_type;
198  int header1, header2;
199  int ev_size, ev_tag, ev_num, ev_type;
200  int bk_size, bk_tag, bk_num, bk_type;
201  int sg_size, sg_tag, sg_num, sg_type;
202  short pk_size, pk_tag, pack;
203  char temp[4],temp2[2];
204 
205  int_len = sizeof(int);
206  short_len = sizeof(short);
207  long_len = 8;
208  head = init_evStack();
209  i = 0; /* index pointing to 16 bit word */
210  swapped_intcpy(temp,source,int_len);
211  ev_size = *(int *)(temp); /*ev_size in unit of 32 bit*/
212  memcpy(&(buffer[i*2]),temp,int_len);
213  i += 2;
214  swapped_intcpy(temp,&(source[i*2]),int_len);
215  header2 = *(int *)(temp);
216  ev_tag =(header2 >> 16) & (0x0000ffff);
217  ev_type=(header2 >> 8) & (0x000000ff);
218  ev_num = (header2) & (0x000000ff);
219  memcpy(&(buffer[i*2]),temp,int_len);
220  i += 2;
221 
222  if(ev_type >= 0x10){/* data type must be 0x10 bank type */
223  evStack_pushon((ev_size+1)*2,i-4,ev_type,ev_tag,ev_num,head);
224  lk.head_pos = i;
225  lk.type = ev_type;
226  if(lk.type == 0x10)
227  ev_size = ev_size + 1;
228  }
229  else{ /* sometimes event has no wrapper */
230  lk.head_pos = i + 2*(ev_size - 1);
231  lk.type = ev_type;
232  current_type = ev_type;
233  }
234 
235 /* get into the loop */
236  while (i < ev_size*2){
237  if ((p = evStack_top(head)) != NULL){
238  while(((p = evStack_top(head)) != NULL) && i == (p->length + p->posi)){
239  evStack_popoff(head);
240  head->length -= 1;
241  }
242  }
243  if (i == lk.head_pos){ /* dealing with header */
244  if((p = evStack_top(head)) != NULL)
245  lk.type = (p->type);
246  switch(lk.type){
247  case 0x10:
248  swapped_intcpy(temp,&(source[i*2]),int_len);
249  header1 = *(int *)(temp);
250  bk_size = header1;
251  memcpy(&(buffer[i*2]),temp,int_len);
252  i = i + 2;
253  swapped_intcpy(temp,&(source[i*2]),int_len);
254  header2 = *(int *)(temp);
255  memcpy(&(buffer[i*2]),temp,int_len);
256  bk_tag = (header2 >> 16) & (0x0000ffff);
257  bk_type = (header2 >> 8) & (0x000000ff);
258  bk_num = (header2) & (0x000000ff);
259  depth = head->length; /* tree depth */
260  if (bk_type >= 0x10){ /* contains children */
261  evStack_pushon((bk_size+1)*2,i-2,bk_type,bk_tag,bk_num,head);
262  lk.head_pos = i + 2;
263  head->length += 1;
264  i = i + 2;
265  }
266  else{ /* real data */
267  current_type = bk_type;
268  lk.head_pos = i + bk_size*2;
269  i = i+ 2;
270  }
271  break;
272  case 0x20:
273  swapped_intcpy(temp,&(source[i*2]),int_len);
274  header2 = *(int *)(temp);
275  memcpy(&(buffer[i*2]),temp,int_len);
276  sg_size = (header2) & (0x0000ffff);
277  sg_size = sg_size + 1;
278  sg_tag = (header2 >> 24) & (0x000000ff);
279  sg_type = (header2 >> 16) & (0x000000ff);
280  if(sg_type >= 0x20){ /* contains children */
281  evStack_pushon((sg_size)*2,i,sg_type,sg_tag,NULL,head);
282  lk.head_pos = i + 2;
283  head->length += 1;
284  i = i+ 2;
285  }
286  else{ /* real data */
287  current_type = sg_type;
288  lk.head_pos = i + sg_size*2;
289  i = i + 2;
290  }
291  break;
292  default: /* packet type */
293  swapped_shortcpy(temp2,&(source[i*2]),short_len);
294  pack = *(short *)(temp2);
295  memcpy(&(buffer[i*2]),temp2,short_len);
296  if(pack == 0x0000){ /* empty packet increase by 1 */
297  lk.head_pos = i + 1;
298  i++;
299  }
300  else{
301  pk_tag = (pack >> 8) & (0x00ff);
302  pk_size = (pack) & (0x00ff);
303  current_type = lk.type;
304  lk.head_pos = i + pk_size + 1;
305  i = i + 1;
306  }
307  break;
308  }
309  }
310  else{ /* deal with real data */
311  switch(current_type){
312  case 0x0: /* unknown data type */
313  case 0x1: /* long integer */
314  case 0x2: /* IEEE floating point*/
315  case 0x9: /* VAX floating point */
316  for(j = i; j < lk.head_pos; j=j+2){
317  swapped_intcpy(temp,&(source[j*2]),int_len);
318  memcpy(&(buffer[j*2]),temp,int_len);
319  }
320  i = lk.head_pos;
321  break;
322  case 0x4: /* short integer */
323  case 0x5: /* unsigned integer */
324  case 0x30:
325  case 0x34:
326  case 0x35:
327  for(j = i; j < lk.head_pos; j=j+1){
328  swapped_shortcpy(temp2,&(source[j*2]),short_len);
329  memcpy(&(buffer[j*2]),temp2,short_len);
330  }
331  i = lk.head_pos;
332  break;
333  case 0x3: /* char string */
334  case 0x6:
335  case 0x7:
336  case 0x36:
337  case 0x37:
338  memcpy(&(buffer[i*2]),&(source[i*2]),(lk.head_pos - i)*2);
339  i = lk.head_pos;
340  break;
341  case 0x8: /* 64 bit */
342  case 0xA: /* 64 bit VAX floating point */
343  for(j = i; j < lk.head_pos; j=j+4){
344  swapped_shortcpy(temp,&(source[j*2]),long_len);
345  memcpy(&(buffer[j*2]),temp,long_len);
346  }
347  i = lk.head_pos;
348  break;
349  case 0xF: /* repeating structure, for now */
350  for(j = i; j < lk.head_pos; j=j+2){
351  swapped_intcpy(temp,&(source[j*2]),int_len);
352  memcpy(&(buffer[j*2]),temp,int_len);
353  }
354  i = lk.head_pos;
355  break;
356  default:
357  fprintf(stderr,"Wrong datatype 0x%x\n",current_type);
358  break;
359  }
360  }
361  }
362  evStack_free (head);
363 }
364 
365 
366 /**********************************************************
367  * evStack *init_evStack() *
368  * set up the head for event stack *
369  *********************************************************/
371 {
372  evStack *evhead;
373 
374  evhead = (evStack *)malloc(1*sizeof(evStack));
375  if(evhead == NULL){
376  fprintf(stderr,"Cannot allocate memory for evStack\n");
377  exit (1);
378  }
379  evhead->length = 0;
380  evhead->posi = 0;
381  evhead->type = 0x0;
382  evhead->tag = 0x0;
383  evhead->num = 0x0;
384  evhead->next = NULL;
385  return evhead;
386 }
387 
388 /*********************************************************
389  * evStack *evStack_top(evStack *head) *
390  * return the top of the evStack pointed by head *
391  ********************************************************/
393 {
394  evStack *p;
395 
396  p = head;
397  if (p->next == NULL)
398  return (NULL);
399  else
400  return (p->next);
401 }
402 
403 /********************************************************
404  * void evStack_popoff(evStack *head) *
405  * pop off the top of the stack item *
406  *******************************************************/
407 static void evStack_popoff(evStack *head)
408 {
409  evStack *p,*q;
410 
411  q = head;
412  if(q->next == NULL){
413  fprintf(stderr,"Empty stack\n");
414  return;
415  }
416  p = q->next;
417  q->next = p->next;
418  free (p);
419 }
420 
421 /*******************************************************
422  * void evStack_pushon() *
423  * push an item on to the stack *
424  ******************************************************/
425 static void evStack_pushon(int size,
426  int posi,
427  int type,
428  int tag,
429  int num,
430  evStack *head)
431 {
432  evStack *p, *q;
433 
434  p = (evStack *)malloc(1*sizeof(evStack));
435  if (p == NULL){
436  fprintf(stderr,"Not enough memory for stack item\n");
437  exit(1);
438  }
439  q = head;
440  p->length = size;
441  p->posi = posi;
442  p->type = type;
443  p->tag = tag;
444  p->num = num;
445  p->next = q->next;
446  q->next = p;
447 }
448 
449 /******************************************************
450  * void evStack_free() *
451  * Description: *
452  * Free all memory allocated for the stack *
453  *****************************************************/
454 static void evStack_free(evStack *head)
455 {
456  evStack *p, *q;
457 
458  p = head;
459  while (p != NULL){
460  q = p->next;
461  free (p);
462  p = q;
463  }
464 }
#define NULL
Definition: Pdb.h:9
static void evStack_free()
static void evStack_pushon()
void swapped_shortcpy(char *des, char *source, int size)
Definition: swap_util.c:133
int int_swap_byte(int input)
Definition: swap_util.c:76
struct _lk LK_AHEAD
void swapped_intcpy(char *des, char *source, int size)
Definition: swap_util.c:113
void onmemory_swap(char *buffer)
Definition: swap_util.c:96
static evStack * evStack_top()
void swapped_longcpy(char *des, char *source, int size)
Definition: swap_util.c:153
void swapped_memcpy(char *buffer, char *source, int size)
Definition: swap_util.c:192
static evStack * init_evStack()
Definition: swap_util.c:370
static void evStack_popoff()
struct _stack evStack
int swapped_fread(void *ptr, int size, int n_items, FILE *stream)
Definition: swap_util.c:173