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

Diff of /stack/stack.c

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

revision 1.7 by masse, Tue Jan 8 13:46:05 2002 UTC revision 1.25 by masse, Sat Feb 2 20:06:11 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 51  stackitem** hash(hashtbl in_hashtbl, con Line 65  stackitem** hash(hashtbl in_hashtbl, con
65    position= &(in_hashtbl[out_hash]);    position= &(in_hashtbl[out_hash]);
66    
67    while(1){    while(1){
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  }  }
77    
78    /* Generic push function. */
79  int push(stackitem** stack_head, stackitem* in_item)  int push(stackitem** stack_head, stackitem* in_item)
80  {  {
81    in_item->next= *stack_head;    in_item->next= *stack_head;
# Line 69  int push(stackitem** stack_head, stackit Line 83  int push(stackitem** stack_head, stackit
83    return 1;    return 1;
84  }  }
85    
86    /* Push a value on the stack. */
87  int push_val(stackitem** stack_head, int in_val)  int push_val(stackitem** stack_head, int in_val)
88  {  {
89    stackitem* new_item= malloc(sizeof(stackitem));    stackitem* new_item= malloc(sizeof(stackitem));
90      assert(new_item != NULL);
91    new_item->content.val= in_val;    new_item->content.val= in_val;
92    new_item->type= value;    new_item->type= value;
93    
# Line 79  int push_val(stackitem** stack_head, int Line 95  int push_val(stackitem** stack_head, int
95    return 1;    return 1;
96  }  }
97    
98    /* Copy a string onto the stack. */
99  int push_cstring(stackitem** stack_head, const char* in_string)  int push_cstring(stackitem** stack_head, const char* in_string)
100  {  {
101    stackitem* new_item= malloc(sizeof(stackitem));    stackitem* new_item= malloc(sizeof(stackitem));
# Line 90  int push_cstring(stackitem** stack_head, Line 107  int push_cstring(stackitem** stack_head,
107    return 1;    return 1;
108  }  }
109    
110    /* Create a new hash entry. */
111  int mk_hashentry(hashtbl in_hashtbl, stackitem* in_item, const char* id)  int mk_hashentry(hashtbl in_hashtbl, stackitem* in_item, const char* id)
112  {  {
113    in_item->id= malloc(strlen(id)+1);    in_item->id= malloc(strlen(id)+1);
# Line 100  int mk_hashentry(hashtbl in_hashtbl, sta Line 118  int mk_hashentry(hashtbl in_hashtbl, sta
118    return 1;    return 1;
119  }  }
120    
121    /* Define a new function in the hash table. */
122  void def_func(hashtbl in_hashtbl, funcp in_func, const char* id)  void def_func(hashtbl in_hashtbl, funcp in_func, const char* id)
123  {  {
124    stackitem* temp= malloc(sizeof(stackitem));    stackitem* temp= malloc(sizeof(stackitem));
# Line 110  void def_func(hashtbl in_hashtbl, funcp Line 129  void def_func(hashtbl in_hashtbl, funcp
129    mk_hashentry(in_hashtbl, temp, id);    mk_hashentry(in_hashtbl, temp, id);
130  }  }
131    
132    /* Define a new symbol in the hash table. */
133  void def_sym(hashtbl in_hashtbl, const char* id)  void def_sym(hashtbl in_hashtbl, const char* id)
134  {  {
135    stackitem* temp= malloc(sizeof(stackitem));    stackitem* temp= malloc(sizeof(stackitem));
136        
137    temp->type= symbol;    temp->type= symbol;
   
138    mk_hashentry(in_hashtbl, temp, id);    mk_hashentry(in_hashtbl, temp, id);
139  }  }
140    
141    /* Push a reference to an entry in the hash table onto the stack. */
142  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)
143  {  {
144    static void* handle= NULL;    static void* handle= NULL;
# Line 128  int push_ref(stackitem** stack_head, has Line 148  int push_ref(stackitem** stack_head, has
148    new_item->content.ptr= *hash(in_hash, in_string);    new_item->content.ptr= *hash(in_hash, in_string);
149    new_item->type= ref;    new_item->type= ref;
150    
151    if(handle==NULL)    if(new_item->content.ptr==NULL) { /* If hash entry empty */
152      handle= dlopen(NULL, RTLD_LAZY);      if(handle==NULL)            /* If no handle */
153          handle= dlopen(NULL, RTLD_LAZY);    
154    if(new_item->content.ptr==NULL) {  
155      symbol= dlsym(handle, in_string);      symbol= dlsym(handle, in_string); /* Get function pointer */
156      if(dlerror()==NULL)      if(dlerror()==NULL)         /* If existing function pointer */
157        def_func(in_hash, symbol, in_string);        def_func(in_hash, symbol, in_string); /* Store function pointer */
158      else      else
159        def_sym(in_hash, in_string);        def_sym(in_hash, in_string); /* Make symbol */
160                
161      new_item->content.ptr= *hash(in_hash, in_string);      new_item->content.ptr= *hash(in_hash, in_string); /* The new reference
162                                                             shouldn't point at
163                                                             NULL */
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()
194    {
195      printf("\n");
196    }
197    
198  /* print_stack(stack); */  /* Prints the top element of the stack. */
199  void print_st(stackitem* stack_head, long counter)  extern void print_(stackitem** stack_head)
200  {  {
201    if(stack_head->next != NULL)    stackitem* temp= *stack_head;
202      print_st(stack_head->next, counter+1);  
203      if(temp==NULL) {
204        printerr("Stack empty");
205        return;
206      }
207    
208      while(temp->type==ref)
209        temp= temp->content.ptr;
210    
211    switch(stack_head->type){    switch(temp->type) {
212    case value:    case value:
213      printf("%ld: %d\n", counter, (int)stack_head->content.val);      printf("%d", temp->content.val);
214      break;      break;
215    case string:    case string:
216      printf("%ld: \"%s\"\n", counter, (char*)stack_head->content.ptr);      printf("\"%s\"", (char*)temp->content.ptr);
217      break;      break;
   case ref:  
     printf("%ld: %s\n", counter, ((stackitem*)stack_head->content.ptr)->id);  
     break;  
   case func:  
218    case symbol:    case symbol:
219      case func:
220        printf("%s", temp->id);
221        break;
222    default:    default:
223      printf("%ld: %p\n", counter, stack_head->content.ptr);      printf("%p", temp->content.ptr);
224      break;      break;
225    }    }
226  }  }
227    
228    /* Prints the top element of the stack and then discards it. */
229    extern void print(stackitem** stack_head)
230    {
231      print_(stack_head);
232      toss(stack_head);
233    }
234    
235    /* Only to be called by function printstack. */
236    void print_st(stackitem* stack_head, long counter)
237    {
238      if(stack_head->next != NULL)
239        print_st(stack_head->next, counter+1);
240    
241      printf("%ld: ", counter);
242      print_(&stack_head);
243      nl();
244    }
245    
246    /* Prints the stack. */
247  extern void printstack(stackitem** stack_head)  extern void printstack(stackitem** stack_head)
248  {  {
249    if(*stack_head != NULL) {    if(*stack_head != NULL) {
250      print_st(*stack_head, 1);      print_st(*stack_head, 1);
251      printf("\n");      nl();
252      } else {
253        printerr("Stack empty");
254    }    }
255  }  }
256    
257    /* If the top element is a reference, determine if it's a reference to a
258       function, and if it is, toss the reference and execute the function. */
259  extern void eval(stackitem** stack_head)  extern void eval(stackitem** stack_head)
260  {  {
261    funcp in_func;    funcp in_func;
262      stackitem* temp= *stack_head;
263    
264    if((*stack_head)==NULL || (*stack_head)->type!=ref)    if(temp==NULL) {
265        printerr("Stack empty");
266      return;      return;
267      }
268    
269    if(((stackitem*)(*stack_head)->content.ptr)->type==func) {    while(temp->type==ref)
270      in_func= (funcp)((stackitem*)(*stack_head)->content.ptr)->content.ptr;      temp= temp->content.ptr;
271    
272      if(temp->type==func) {
273        in_func= (funcp)(temp->content.ptr);
274      toss(stack_head);      toss(stack_head);
275      (*in_func)(stack_head);      (*in_func)(stack_head);
276      return;      return;
277      }
278        
279      printerr("Couldn't evaluate");
280    }
281    
282    /* Make a list. */
283    extern void pack(stackitem** stack_head)
284    {
285      void* delimiter;
286      stackitem *iterator, *temp, *pack;
287    
288      delimiter= (*stack_head)->content.ptr; /* Get delimiter */
289      toss(stack_head);
290    
291      iterator= *stack_head;
292    
293      if(iterator==NULL || iterator->content.ptr==delimiter) {
294        temp= NULL;
295        toss(stack_head);
296      } else {
297        /* Search for first delimiter */
298        while(iterator->next!=NULL && iterator->next->content.ptr!=delimiter)
299          iterator= iterator->next;
300        
301        /* Extract list */
302        temp= *stack_head;
303        *stack_head= iterator->next;
304        iterator->next= NULL;
305        
306        if(*stack_head!=NULL && (*stack_head)->content.ptr==delimiter)
307          toss(stack_head);
308    }    }
309    
310      /* Push list */
311      pack= malloc(sizeof(stackitem));
312      pack->type= list;
313      pack->content.ptr= temp;
314    
315      push(stack_head, pack);
316  }  }
317    
318    /* Parse input. */
319  int stack_read(stackitem** stack_head, hashtbl in_hash, char* in_line)  int stack_read(stackitem** stack_head, hashtbl in_hash, char* in_line)
320  {  {
321    char *temp, *rest;    char *temp, *rest;
322    int itemp;    int itemp;
323    size_t inlength= strlen(in_line)+1;    size_t inlength= strlen(in_line)+1;
324    int convert= 0;    int convert= 0;
325      static int non_eval_flag= 0;
326    
327    temp= malloc(inlength);    temp= malloc(inlength);
328    rest= malloc(inlength);    rest= malloc(inlength);
329    
330    if((convert= sscanf(in_line, "\"%[^\"\n\r]\" %[^\n\r]", temp, rest)) >= 1)    do {
331      push_cstring(stack_head, temp);      /* If string */
332    else if((convert= sscanf(in_line, "%d %[^\n\r]", &itemp, rest)) >= 1)      if((convert= sscanf(in_line, "\"%[^\"\n\r]\" %[^\n\r]", temp, rest))) {
333      push_val(stack_head, itemp);        push_cstring(stack_head, temp);
334    else if((convert= sscanf(in_line, "%[^ ;\n\r]%[^\n\r]", temp, rest)) >= 1)        break;
335      push_ref(stack_head, in_hash, temp);      }
336    else if((convert= sscanf(in_line, "%c%[^\n\r]", temp, rest)) >= 1)      /* If value */
337      if(*temp==';')      if((convert= sscanf(in_line, "%d %[^\n\r]", &itemp, rest))) {
338        eval(stack_head);        push_val(stack_head, itemp);
339          break;
340        }
341        /* Escape ';' with '\' */
342        if((convert= sscanf(in_line, "\\%c%[^\n\r]", temp, rest))) {
343          temp[1]= '\0';
344          push_ref(stack_head, in_hash, temp);
345          break;
346        }
347        /* If symbol */
348        if((convert= sscanf(in_line, "%[^][ ;\n\r]%[^\n\r]", temp, rest))) {
349            push_ref(stack_head, in_hash, temp);
350            break;
351        }
352        /* If single char */
353        if((convert= sscanf(in_line, "%c%[^\n\r]", temp, rest))) {
354          if(*temp==';') {
355            if(!non_eval_flag) {
356              eval(stack_head);             /* Evaluate top element */
357              break;
358            }
359            
360            push_ref(stack_head, in_hash, ";");
361            break;
362          }
363    
364          if(*temp==']') {
365            push_ref(stack_head, in_hash, "[");
366            pack(stack_head);
367            if(non_eval_flag!=0)
368              non_eval_flag--;
369            break;
370          }
371    
372          if(*temp=='[') {
373            push_ref(stack_head, in_hash, "[");
374            non_eval_flag++;
375            break;
376          }
377        }
378      } while(0);
379    
380    
381    free(temp);    free(temp);
382    
# Line 242  int stack_read(stackitem** stack_head, h Line 391  int stack_read(stackitem** stack_head, h
391    return 1;    return 1;
392  }  }
393    
394  extern void print(stackitem** stack_head)  /* Relocate elements of the list on the stack. */
395    extern void expand(stackitem** stack_head)
396  {  {
397    if((*stack_head)==NULL)    stackitem *temp, *new_head;
     return;  
398    
399    switch((*stack_head)->type){    /* Is top element a list? */
400    case value:    if((*stack_head)==NULL || (*stack_head)->type!=list) {
401      printf("%d", (*stack_head)->content.val);      printerr("Stack empty or not a list");
402      break;      return;
   case string:  
     printf("%s", (char*)(*stack_head)->content.ptr);  
     break;  
   case ref:  
     printf("%s", ((stackitem*)(*stack_head)->content.ptr)->id);  
     break;  
   case symbol:  
   default:  
     printf("%p", (*stack_head)->content.ptr);  
     break;  
403    }    }
404    
405      /* The first list element is the new stack head */
406      new_head= temp= (*stack_head)->content.ptr;
407    toss(stack_head);    toss(stack_head);
408    
409      if(temp==NULL)
410        return;
411    
412      /* Search the end of the list */
413      while(temp->next!=NULL)
414        temp= temp->next;
415    
416      /* Connect the the tail of the list with the old stack head */
417      temp->next= *stack_head;
418      *stack_head= new_head;        /* ...and voila! */
419  }  }
420    
421  extern void pack(stackitem** stack_head)  /* Swap the two top elements on the stack. */
422    extern void swap(stackitem** stack_head)
423  {  {
424    void* delimiter;    stackitem* temp= (*stack_head);
425    stackitem *iterator, *temp, *pack;    
426      if((*stack_head)==NULL) {
427        printerr("Stack empty");
428        return;
429      }
430    
431    if((*stack_head)==NULL)    if((*stack_head)->next==NULL)
432      return;      return;
433    
434    delimiter= (*stack_head)->content.ptr;    *stack_head= (*stack_head)->next;
435    toss(stack_head);    temp->next= (*stack_head)->next;
436      (*stack_head)->next= temp;
437    }
438    
439    iterator= *stack_head;  /* Compares two elements by reference. */
440    extern void eq(stackitem** stack_head)
441    {
442      void *left, *right;
443      int result;
444    
445    while(iterator->next!=NULL && iterator->next->content.ptr!=delimiter)    if((*stack_head)==NULL || (*stack_head)->next==NULL) {
446      iterator= iterator->next;      printerr("Not enough elements to compare");
447        return;
448      }
449    
450    temp= *stack_head;    left= (*stack_head)->content.ptr;
451    *stack_head= iterator->next;    swap(stack_head);
452    iterator->next= NULL;    right= (*stack_head)->content.ptr;
453      result= (left==right);
454        
455    if(*stack_head!=NULL && (*stack_head)->content.ptr==delimiter)    toss(stack_head); toss(stack_head);
456      toss(stack_head);    push_val(stack_head, (left==right));
457    }
458    
459    pack= malloc(sizeof(stackitem));  /* Negates the top element on the stack. */
460    pack->type= list;  extern void not(stackitem** stack_head)
461    pack->content.ptr= temp;  {
462      int value;
463    
464    push(stack_head, pack);    if((*stack_head)==NULL || (*stack_head)->type!=value) {
465        printerr("Stack empty or element is not a value");
466        return;
467      }
468    
469      value= (*stack_head)->content.val;
470      toss(stack_head);
471      push_val(stack_head, !value);
472  }  }
     
473    
474  extern void nl()  /* Compares the two top elements on the stack and return 0 if they're the
475       same. */
476    extern void neq(stackitem** stack_head)
477  {  {
478    printf("\n");    eq(stack_head);
479      not(stack_head);
480  }  }
481    
482    /* Give a symbol some content. */
483    extern void def(stackitem** stack_head)
484    {
485      stackitem *temp, *value;
486    
487      if(*stack_head==NULL || (*stack_head)->next==NULL
488         || (*stack_head)->type!=ref) {
489        printerr("Define what?");
490        return;
491      }
492    
493      temp= (*stack_head)->content.ptr;
494      value= (*stack_head)->next;
495      temp->content= value->content;
496      value->content.ptr=NULL;
497      temp->type= value->type;
498    
499      toss(stack_head); toss(stack_head);
500    }
501    
502    /* Quit stack. */
503  extern void quit()  extern void quit()
504  {  {
505    exit(EXIT_SUCCESS);    exit(EXIT_SUCCESS);
506  }  }
507    
508    /* Clear stack */
509    extern void clear(stackitem** stack_head)
510    {
511      while(*stack_head!=NULL)
512        toss(stack_head);
513    }
514    
515  int main()  int main()
516  {  {
517    stackitem* s= NULL;    stackitem* s= NULL;
# Line 322  int main() Line 527  int main()
527      printf("okidok\n ");      printf("okidok\n ");
528    }    }
529    
530      exit(EXIT_SUCCESS);
   return EXIT_SUCCESS;  
531  }  }
532    
533  /* Local Variables: */  /* Local Variables: */

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.25

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26