/[cvs]/stack/stack.c
ViewVC logotype

Diff of /stack/stack.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.12 by masse, Tue Jan 8 18:58:27 2002 UTC revision 1.20 by masse, Sat Feb 2 15:12:56 2002 UTC
# Line 6  Line 6 
6  #include <stddef.h>  #include <stddef.h>
7  /* dlopen, dlsym, dlerror */  /* dlopen, dlsym, dlerror */
8  #include <dlfcn.h>  #include <dlfcn.h>
9    /* assert */
10    #include <assert.h>
11    
12  #define HASHTBLSIZE 65536  #define HASHTBLSIZE 65536
13    
14  typedef struct stack_item  typedef struct stack_item
15  {  {
16    enum {value, string, ref, func, symbol, list} type;    enum {
17        value,                      /* Integer */
18        string,
19        ref,                        /* Reference (to an element in the
20                                       hash table) */
21        func,                       /* Function pointer */
22        symbol,
23        list
24      } type;                       /* Type of stack element */
25    
26    union {    union {
27      void* ptr;      void* ptr;                  /* Pointer to the content */
28      int val;      int val;                    /* ...or an integer */
29    } content;    } content;                    /* Stores a pointer or an integer */
30    
31    char* id;    char* id;                     /* Symbol name */
32    struct stack_item* next;    struct stack_item* next;      /* Next element */
33  } stackitem;  } stackitem;
34    
35    
36  typedef stackitem* hashtbl[HASHTBLSIZE];  typedef stackitem* hashtbl[HASHTBLSIZE]; /* Hash table declaration */
37  typedef void (*funcp)(stackitem**);  typedef void (*funcp)(stackitem**); /* funcp is a pointer to a
38                                           void function (stackitem **) */
39    
40    /* Initialize a newly created hash table. */
41  void init_hashtbl(hashtbl out_hash)  void init_hashtbl(hashtbl out_hash)
42  {  {
43    long i;    long i;
# Line 33  void init_hashtbl(hashtbl out_hash) Line 46  void init_hashtbl(hashtbl out_hash)
46      out_hash[i]= NULL;      out_hash[i]= NULL;
47  }  }
48    
49    /* Returns a pointer to an element in the hash table. */
50  stackitem** hash(hashtbl in_hashtbl, const char* in_string)  stackitem** hash(hashtbl in_hashtbl, const char* in_string)
51  {  {
52    long i= 0;    long i= 0;
53    unsigned long out_hash= 0;    unsigned long out_hash= 0;
54    char key= 0;    char key= '\0';
55    stackitem** position;    stackitem** position;
56        
57    while(1){    while(1){                     /* Hash in_string */
58      key= in_string[i++];      key= in_string[i++];
59      if(key=='\0')      if(key=='\0')
60        break;        break;
# Line 50  stackitem** hash(hashtbl in_hashtbl, con Line 64  stackitem** hash(hashtbl in_hashtbl, con
64    out_hash= out_hash%HASHTBLSIZE;    out_hash= out_hash%HASHTBLSIZE;
65    position= &(in_hashtbl[out_hash]);    position= &(in_hashtbl[out_hash]);
66    
67    while(1){    while(position != NULL){
68      if(*position==NULL)      if(*position==NULL)         /* If empty */
69        return position;        return position;
70            
71      if(strcmp(in_string, (*position)->id)==0)      if(strcmp(in_string, (*position)->id)==0) /* If match */
72        return position;        return position;
73    
74      position= &((*position)->next);      position= &((*position)->next); /* Try next */
75    }    }
76      return NULL;                  /* end of list reached without finding
77                                       an empty position */
78  }  }
79    
80    /* Generic push function. */
81  int push(stackitem** stack_head, stackitem* in_item)  int push(stackitem** stack_head, stackitem* in_item)
82  {  {
83    in_item->next= *stack_head;    in_item->next= *stack_head;
# Line 69  int push(stackitem** stack_head, stackit Line 85  int push(stackitem** stack_head, stackit
85    return 1;    return 1;
86  }  }
87    
88    /* Push a value on the stack. */
89  int push_val(stackitem** stack_head, int in_val)  int push_val(stackitem** stack_head, int in_val)
90  {  {
91    stackitem* new_item= malloc(sizeof(stackitem));    stackitem* new_item= malloc(sizeof(stackitem));
92      assert(new_item != NULL);
93    new_item->content.val= in_val;    new_item->content.val= in_val;
94    new_item->type= value;    new_item->type= value;
95    
# Line 79  int push_val(stackitem** stack_head, int Line 97  int push_val(stackitem** stack_head, int
97    return 1;    return 1;
98  }  }
99    
100    /* Copy a string onto the stack. */
101  int push_cstring(stackitem** stack_head, const char* in_string)  int push_cstring(stackitem** stack_head, const char* in_string)
102  {  {
103    stackitem* new_item= malloc(sizeof(stackitem));    stackitem* new_item= malloc(sizeof(stackitem));
# Line 90  int push_cstring(stackitem** stack_head, Line 109  int push_cstring(stackitem** stack_head,
109    return 1;    return 1;
110  }  }
111    
112    /* Create a new hash entry. */
113  int mk_hashentry(hashtbl in_hashtbl, stackitem* in_item, const char* id)  int mk_hashentry(hashtbl in_hashtbl, stackitem* in_item, const char* id)
114  {  {
115    in_item->id= malloc(strlen(id)+1);    in_item->id= malloc(strlen(id)+1);
# Line 100  int mk_hashentry(hashtbl in_hashtbl, sta Line 120  int mk_hashentry(hashtbl in_hashtbl, sta
120    return 1;    return 1;
121  }  }
122    
123    /* Define a new function in the hash table. */
124  void def_func(hashtbl in_hashtbl, funcp in_func, const char* id)  void def_func(hashtbl in_hashtbl, funcp in_func, const char* id)
125  {  {
126    stackitem* temp= malloc(sizeof(stackitem));    stackitem* temp= malloc(sizeof(stackitem));
# Line 110  void def_func(hashtbl in_hashtbl, funcp Line 131  void def_func(hashtbl in_hashtbl, funcp
131    mk_hashentry(in_hashtbl, temp, id);    mk_hashentry(in_hashtbl, temp, id);
132  }  }
133    
134    /* Define a new symbol in the hash table. */
135  void def_sym(hashtbl in_hashtbl, const char* id)  void def_sym(hashtbl in_hashtbl, const char* id)
136  {  {
137    stackitem* temp= malloc(sizeof(stackitem));    stackitem* temp= malloc(sizeof(stackitem));
138        
139    temp->type= symbol;    temp->type= symbol;
   
140    mk_hashentry(in_hashtbl, temp, id);    mk_hashentry(in_hashtbl, temp, id);
141  }  }
142    
143    /* Push a reference to an entry in the hash table onto the stack. */
144  int push_ref(stackitem** stack_head, hashtbl in_hash, const char* in_string)  int push_ref(stackitem** stack_head, hashtbl in_hash, const char* in_string)
145  {  {
146    static void* handle= NULL;    static void* handle= NULL;
# Line 128  int push_ref(stackitem** stack_head, has Line 150  int push_ref(stackitem** stack_head, has
150    new_item->content.ptr= *hash(in_hash, in_string);    new_item->content.ptr= *hash(in_hash, in_string);
151    new_item->type= ref;    new_item->type= ref;
152    
153    if(new_item->content.ptr==NULL) {    if(new_item->content.ptr==NULL) { /* If hash entry empty */
154      if(handle==NULL)      if(handle==NULL)            /* If no handle */
155        handle= dlopen(NULL, RTLD_LAZY);            handle= dlopen(NULL, RTLD_LAZY);    
156    
157      symbol= dlsym(handle, in_string);      symbol= dlsym(handle, in_string); /* Get function pointer */
158      if(dlerror()==NULL)      if(dlerror()==NULL)         /* If existing function pointer */
159        def_func(in_hash, symbol, in_string);        def_func(in_hash, symbol, in_string); /* Store function pointer */
160      else      else
161        def_sym(in_hash, in_string);        def_sym(in_hash, in_string); /* Make symbol */
162                
163      new_item->content.ptr= *hash(in_hash, in_string);      new_item->content.ptr= *hash(in_hash, in_string); /* XXX */
164      new_item->type= ref;      new_item->type= ref;
165    }    }
166    
# Line 146  int push_ref(stackitem** stack_head, has Line 168  int push_ref(stackitem** stack_head, has
168    return 1;    return 1;
169  }  }
170    
171    void printerr(const char* in_string) {
172      fprintf(stderr, "Err: %s\n", in_string);
173    }
174    
175    /* Discard the top element of the stack. */
176  extern void toss(stackitem** stack_head)  extern void toss(stackitem** stack_head)
177  {  {
178    stackitem* temp= *stack_head;    stackitem* temp= *stack_head;
179    
180    if((*stack_head)==NULL)    if((*stack_head)==NULL) {
181        printerr("Stack empty");
182      return;      return;
183      }
184        
185    if((*stack_head)->type==string)    if((*stack_head)->type==string)
186      free((*stack_head)->content.ptr);      free((*stack_head)->content.ptr);
# Line 160  extern void toss(stackitem** stack_head) Line 189  extern void toss(stackitem** stack_head)
189    free(temp);    free(temp);
190  }  }
191    
192    /* Print newline. */
193  extern void nl()  extern void nl()
194  {  {
195    printf("\n");    printf("\n");
196  }  }
197    
198    /* Prints the top element of the stack. */
199  void print_(stackitem** stack_head)  void print_(stackitem** stack_head)
200  {  {
201    if((*stack_head)==NULL)    if((*stack_head)==NULL) {
202        printerr("Stack empty");
203      return;      return;
204      }
205    
206    switch((*stack_head)->type) {    switch((*stack_head)->type) {
207    case value:    case value:
# Line 187  void print_(stackitem** stack_head) Line 220  void print_(stackitem** stack_head)
220    }    }
221  }  }
222    
223    /* Prints the top element of the stack and then discards it. */
224  extern void print(stackitem** stack_head)  extern void print(stackitem** stack_head)
225  {  {
226    print_(stack_head);    print_(stack_head);
227    toss(stack_head);    toss(stack_head);
228  }  }
229    
230  /* print_stack(stack); */  /* Only to be called by function printstack. */
231  void print_st(stackitem* stack_head, long counter)  void print_st(stackitem* stack_head, long counter)
232  {  {
233    if(stack_head->next != NULL)    if(stack_head->next != NULL)
# Line 204  void print_st(stackitem* stack_head, lon Line 238  void print_st(stackitem* stack_head, lon
238    nl();    nl();
239  }  }
240    
241    /* Prints the stack. */
242  extern void printstack(stackitem** stack_head)  extern void printstack(stackitem** stack_head)
243  {  {
244    if(*stack_head != NULL) {    if(*stack_head != NULL) {
245      print_st(*stack_head, 1);      print_st(*stack_head, 1);
246      printf("\n");      printf("\n");
247      } else {
248        printerr("Stack empty");
249    }    }
250  }  }
251    
252    /* If the top element is a reference, determine if it's a reference to a
253       function, and if it is, toss the reference and execute the function. */
254  extern void eval(stackitem** stack_head)  extern void eval(stackitem** stack_head)
255  {  {
256    funcp in_func;    funcp in_func;
257    
258    if((*stack_head)==NULL || (*stack_head)->type!=ref)    if((*stack_head)==NULL || (*stack_head)->type!=ref) {
259        printerr("Stack empty or not a reference");
260      return;      return;
261      }
262    
263    if(((stackitem*)(*stack_head)->content.ptr)->type==func) {    if(((stackitem*)(*stack_head)->content.ptr)->type==func) {
264      in_func= (funcp)((stackitem*)(*stack_head)->content.ptr)->content.ptr;      in_func= (funcp)((stackitem*)(*stack_head)->content.ptr)->content.ptr;
265      toss(stack_head);      toss(stack_head);
266      (*in_func)(stack_head);      (*in_func)(stack_head);
267      return;      return;
268    }    } else
269  }      printerr("Not a function");
   
 int stack_read(stackitem** stack_head, hashtbl in_hash, char* in_line)  
 {  
   char *temp, *rest;  
   int itemp;  
   size_t inlength= strlen(in_line)+1;  
   int convert= 0;  
   
   temp= malloc(inlength);  
   rest= malloc(inlength);  
   
   if((convert= sscanf(in_line, "\"%[^\"\n\r]\" %[^\n\r]", temp, rest)) >= 1)  
     push_cstring(stack_head, temp);  
   else if((convert= sscanf(in_line, "%d %[^\n\r]", &itemp, rest)) >= 1)  
     push_val(stack_head, itemp);  
   else if((convert= sscanf(in_line, "%[^ ;\n\r]%[^\n\r]", temp, rest)) >= 1)  
     push_ref(stack_head, in_hash, temp);  
   else if((convert= sscanf(in_line, "%c%[^\n\r]", temp, rest)) >= 1)  
     if(*temp==';')  
       eval(stack_head);  
   
   free(temp);  
   
   if(convert<2) {  
     free(rest);  
     return 0;  
   }  
     
   stack_read(stack_head, in_hash, rest);  
     
   free(rest);  
   return 1;  
270  }  }
271    
272    /* Make a list. */
273  extern void pack(stackitem** stack_head)  extern void pack(stackitem** stack_head)
274  {  {
275    void* delimiter;    void* delimiter;
276    stackitem *iterator, *temp, *pack;    stackitem *iterator, *temp, *pack;
277    
278    if((*stack_head)==NULL)    if((*stack_head)==NULL) {
279        printerr("Stack empty");
280      return;      return;
281      }
282    
283    delimiter= (*stack_head)->content.ptr;    delimiter= (*stack_head)->content.ptr; /* Get delimiter */
284    toss(stack_head);    toss(stack_head);
285    
286    iterator= *stack_head;    iterator= *stack_head;
287    
288      /* Search for first delimiter */
289    while(iterator->next!=NULL && iterator->next->content.ptr!=delimiter)    while(iterator->next!=NULL && iterator->next->content.ptr!=delimiter)
290      iterator= iterator->next;      iterator= iterator->next;
291    
292      /* Extract list */
293    temp= *stack_head;    temp= *stack_head;
294    *stack_head= iterator->next;    *stack_head= iterator->next;
295    iterator->next= NULL;    iterator->next= NULL;
# Line 284  extern void pack(stackitem** stack_head) Line 297  extern void pack(stackitem** stack_head)
297    if(*stack_head!=NULL && (*stack_head)->content.ptr==delimiter)    if(*stack_head!=NULL && (*stack_head)->content.ptr==delimiter)
298      toss(stack_head);      toss(stack_head);
299    
300      /* Push list */
301    pack= malloc(sizeof(stackitem));    pack= malloc(sizeof(stackitem));
302    pack->type= list;    pack->type= list;
303    pack->content.ptr= temp;    pack->content.ptr= temp;
# Line 291  extern void pack(stackitem** stack_head) Line 305  extern void pack(stackitem** stack_head)
305    push(stack_head, pack);    push(stack_head, pack);
306  }  }
307    
308    /* Parse input. */
309    int stack_read(stackitem** stack_head, hashtbl in_hash, char* in_line)
310    {
311      char *temp, *rest;
312      int itemp;
313      size_t inlength= strlen(in_line)+1;
314      int convert= 0;
315      static int non_eval_flag= 0;
316    
317      temp= malloc(inlength);
318      rest= malloc(inlength);
319    
320      do {
321        /* If string */
322        if((convert= sscanf(in_line, "\"%[^\"\n\r]\" %[^\n\r]", temp, rest))) {
323          push_cstring(stack_head, temp);
324          break;
325        }
326        /* If value */
327        if((convert= sscanf(in_line, "%d %[^\n\r]", &itemp, rest))) {
328          push_val(stack_head, itemp);
329          break;
330        }
331        /* Escape ';' with '\' */
332        if((convert= sscanf(in_line, "\\%c%[^\n\r]", temp, rest))) {
333          temp[1]= '\0';
334          push_ref(stack_head, in_hash, temp);
335          break;
336        }
337        /* If symbol */
338        if((convert= sscanf(in_line, "%[^] ;\n\r]%[^\n\r]", temp, rest))) {
339            push_ref(stack_head, in_hash, temp);
340            break;
341        }
342        /* If single char */
343        if((convert= sscanf(in_line, "%c%[^\n\r]", temp, rest))) {
344          if(*temp==';') {
345            if(non_eval_flag) {
346              eval(stack_head);             /* Evaluate top element */
347              break;
348            }
349            
350            push_ref(stack_head, in_hash, ";");
351            break;
352          }
353    
354          if(*temp==']') {
355            push_ref(stack_head, in_hash, "[");
356            pack(stack_head);
357            non_eval_flag--;
358            break;
359          }
360    
361          if(*temp=='[') {
362            push_ref(stack_head, in_hash, "[");
363            non_eval_flag++;
364            break;
365          }
366        }
367      } while(0);
368    
369    
370      free(temp);
371    
372      if(convert<2) {
373        free(rest);
374        return 0;
375      }
376      
377      stack_read(stack_head, in_hash, rest);
378      
379      free(rest);
380      return 1;
381    }
382    
383    /* Relocate elements of the list on the stack. */
384  extern void expand(stackitem** stack_head)  extern void expand(stackitem** stack_head)
385  {  {
386    stackitem *temp, *new_head;    stackitem *temp, *new_head;
387    
388    if((*stack_head)==NULL || (*stack_head)->type!=list)    /* Is top element a list? */
389      if((*stack_head)==NULL || (*stack_head)->type!=list) {
390        printerr("Stack empty or not a list");
391      return;      return;
392      }
393    
394      /* The first list element is the new stack head */
395    new_head= temp= (*stack_head)->content.ptr;    new_head= temp= (*stack_head)->content.ptr;
396    toss(stack_head);    toss(stack_head);
397    
398      /* Search the end of the list */
399    while(temp->next!=NULL)    while(temp->next!=NULL)
400      temp= temp->next;      temp= temp->next;
401    
402      /* Connect the the tail of the list with the old stack head */
403    temp->next= *stack_head;    temp->next= *stack_head;
404    *stack_head= new_head;    *stack_head= new_head;        /* ...and voila! */
405  }  }
406    
407    /* Swap the two top elements on the stack. */
408  extern void swap(stackitem** stack_head)  extern void swap(stackitem** stack_head)
409  {  {
410    stackitem* temp= (*stack_head);    stackitem* temp= (*stack_head);
411        
412    if((*stack_head)==NULL || (*stack_head)->next==NULL)    if((*stack_head)==NULL) {
413        printerr("Stack empty");
414        return;
415      }
416    
417      if((*stack_head)->next==NULL)
418      return;      return;
419    
420    *stack_head= (*stack_head)->next;    *stack_head= (*stack_head)->next;
# Line 320  extern void swap(stackitem** stack_head) Line 422  extern void swap(stackitem** stack_head)
422    (*stack_head)->next= temp;    (*stack_head)->next= temp;
423  }  }
424    
425    /* Compares two elements by reference. */
426  extern void eq(stackitem** stack_head)  extern void eq(stackitem** stack_head)
427  {  {
428    void *left, *right;    void *left, *right;
429    int result;    int result;
430    
431    if((*stack_head)==NULL || (*stack_head)->next==NULL)    if((*stack_head)==NULL || (*stack_head)->next==NULL) {
432        printerr("Not enough elements to compare");
433      return;      return;
434      }
435    
436    left= (*stack_head)->content.ptr;    left= (*stack_head)->content.ptr;
437    swap(stack_head);    swap(stack_head);
# Line 337  extern void eq(stackitem** stack_head) Line 442  extern void eq(stackitem** stack_head)
442    push_val(stack_head, (left==right));    push_val(stack_head, (left==right));
443  }  }
444    
445    /* Negates the top element on the stack. */
446  extern void not(stackitem** stack_head)  extern void not(stackitem** stack_head)
447  {  {
448    int value;    int value;
449    
450    if((*stack_head)==NULL)    if((*stack_head)==NULL || (*stack_head)->type!=value) {
451        printerr("Stack empty or element is not a value");
452      return;      return;
453      }
454    
455    value= (*stack_head)->content.val;    value= (*stack_head)->content.val;
456    toss(stack_head);    toss(stack_head);
457    push_val(stack_head, !value);    push_val(stack_head, !value);
458  }  }
459    
460    /* Compares the two top elements on the stack and return 0 if they're the
461       same. */
462  extern void neq(stackitem** stack_head)  extern void neq(stackitem** stack_head)
463  {  {
464    eq(stack_head);    eq(stack_head);
465    not(stack_head);    not(stack_head);
466  }  }
467    
468    /* Give a symbol some content. */
469  extern void def(stackitem** stack_head)  extern void def(stackitem** stack_head)
470  {  {
471    stackitem *temp, *value;    stackitem *temp, *value;
472    
473    if(*stack_head==NULL || (*stack_head)->next==NULL    if(*stack_head==NULL || (*stack_head)->next==NULL
474       || (*stack_head)->type!=ref)       || (*stack_head)->type!=ref) {
475        printerr("Define what?");
476      return;      return;
477      }
478    
479    temp= (*stack_head)->content.ptr;    temp= (*stack_head)->content.ptr;
480    value= (*stack_head)->next;    value= (*stack_head)->next;
# Line 372  extern void def(stackitem** stack_head) Line 485  extern void def(stackitem** stack_head)
485    toss(stack_head); toss(stack_head);    toss(stack_head); toss(stack_head);
486  }  }
487    
488    /* Quit stack. */
489  extern void quit()  extern void quit()
490  {  {
491    exit(EXIT_SUCCESS);    exit(EXIT_SUCCESS);

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.20

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26