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

Diff of /stack/stack.c

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

revision 1.15 by masse, Thu Jan 31 21:47:20 2002 UTC revision 1.19 by masse, Sat Feb 2 14:50:44 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  /* Initiates a newly created hash table. */  /* 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 40  stackitem** hash(hashtbl in_hashtbl, con Line 51  stackitem** hash(hashtbl in_hashtbl, con
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 53  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. */  /* Generic push function. */
# Line 76  int push(stackitem** stack_head, stackit Line 89  int push(stackitem** stack_head, stackit
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 106  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 function a new function in the hash table. */  /* 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 123  void def_sym(hashtbl in_hashtbl, const c Line 137  void def_sym(hashtbl in_hashtbl, const c
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    
# Line 137  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 155  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. */  /* 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 179  extern void nl() Line 198  extern void nl()
198  /* Prints the top element of the stack. */  /* 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 223  extern void printstack(stackitem** stack Line 244  extern void printstack(stackitem** stack
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  /* If the top element is a reference, determine if it's a reference to a
253     function, and if it is execute and pop the reference and execute the     function, and if it is, toss the reference and execute the function. */
    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");
270    }
271    
272    /* Make a list. */
273    extern void pack(stackitem** stack_head)
274    {
275      void* delimiter;
276      stackitem *iterator, *temp, *pack;
277    
278      if((*stack_head)==NULL) {
279        printerr("Stack empty");
280        return;
281    }    }
282    
283      delimiter= (*stack_head)->content.ptr; /* Get delimiter */
284      toss(stack_head);
285    
286      iterator= *stack_head;
287    
288      /* Search for first delimiter */
289      while(iterator->next!=NULL && iterator->next->content.ptr!=delimiter)
290        iterator= iterator->next;
291    
292      /* Extract list */
293      temp= *stack_head;
294      *stack_head= iterator->next;
295      iterator->next= NULL;
296      
297      if(*stack_head!=NULL && (*stack_head)->content.ptr==delimiter)
298        toss(stack_head);
299    
300      /* Push list */
301      pack= malloc(sizeof(stackitem));
302      pack->type= list;
303      pack->content.ptr= temp;
304    
305      push(stack_head, pack);
306  }  }
307    
308  /* Parse input. */  /* Parse input. */
# Line 256  int stack_read(stackitem** stack_head, h Line 317  int stack_read(stackitem** stack_head, h
317    rest= malloc(inlength);    rest= malloc(inlength);
318    
319    do {    do {
320        /* If string */
321      if((convert= sscanf(in_line, "\"%[^\"\n\r]\" %[^\n\r]", temp, rest))) {      if((convert= sscanf(in_line, "\"%[^\"\n\r]\" %[^\n\r]", temp, rest))) {
322        push_cstring(stack_head, temp);        push_cstring(stack_head, temp);
323        break;        break;
324      }      }
325        /* If value */
326      if((convert= sscanf(in_line, "%d %[^\n\r]", &itemp, rest))) {      if((convert= sscanf(in_line, "%d %[^\n\r]", &itemp, rest))) {
327        push_val(stack_head, itemp);        push_val(stack_head, itemp);
328        break;        break;
329      }      }
330        /* Escape ';' with '\' */
331      if((convert= sscanf(in_line, "\\%c%[^\n\r]", temp, rest))) {      if((convert= sscanf(in_line, "\\%c%[^\n\r]", temp, rest))) {
332        temp[1]= '\0';        temp[1]= '\0';
333        push_ref(stack_head, in_hash, temp);        push_ref(stack_head, in_hash, temp);
334        break;        break;
335      }      }
336              /* If symbol */
337      if((convert= sscanf(in_line, "%[^ ;\n\r]%[^\n\r]", temp, rest))) {      if((convert= sscanf(in_line, "%[^] ;\n\r]%[^\n\r]", temp, rest))) {
338          push_ref(stack_head, in_hash, temp);          push_ref(stack_head, in_hash, temp);
339          break;          break;
340      }      }
341          /* If single char */
342      if((convert= sscanf(in_line, "%c%[^\n\r]", temp, rest)) && *temp==';') {      if((convert= sscanf(in_line, "%c%[^\n\r]", temp, rest))) {
343        eval(stack_head);        if(*temp==';') {
344        break;          eval(stack_head);               /* Evaluate top element */
345            break;
346          }
347    
348          if(*temp==']') {
349            push_ref(stack_head, in_hash, "[");
350            pack(stack_head);
351            break;
352          }
353      }      }
354    } while(0);    } while(0);
355    
# Line 297  int stack_read(stackitem** stack_head, h Line 367  int stack_read(stackitem** stack_head, h
367    return 1;    return 1;
368  }  }
369    
370  /* Make a list. */  /* Relocate elements of the list on the stack. */
 extern void pack(stackitem** stack_head)  
 {  
   void* delimiter;  
   stackitem *iterator, *temp, *pack;  
   
   if((*stack_head)==NULL)  
     return;  
   
   delimiter= (*stack_head)->content.ptr;  
   toss(stack_head);  
   
   iterator= *stack_head;  
   
   while(iterator->next!=NULL && iterator->next->content.ptr!=delimiter)  
     iterator= iterator->next;  
   
   temp= *stack_head;  
   *stack_head= iterator->next;  
   iterator->next= NULL;  
     
   if(*stack_head!=NULL && (*stack_head)->content.ptr==delimiter)  
     toss(stack_head);  
   
   pack= malloc(sizeof(stackitem));  
   pack->type= list;  
   pack->content.ptr= temp;  
   
   push(stack_head, pack);  
 }  
   
 /* Push elements of the list on the stack. */  
371  extern void expand(stackitem** stack_head)  extern void expand(stackitem** stack_head)
372  {  {
373    stackitem *temp, *new_head;    stackitem *temp, *new_head;
374    
375    if((*stack_head)==NULL || (*stack_head)->type!=list)    /* Is top element a list? */
376      if((*stack_head)==NULL || (*stack_head)->type!=list) {
377        printerr("Stack empty or not a list");
378      return;      return;
379      }
380    
381      /* The first list element is the new stack head */
382    new_head= temp= (*stack_head)->content.ptr;    new_head= temp= (*stack_head)->content.ptr;
383    toss(stack_head);    toss(stack_head);
384    
385      /* Search the end of the list */
386    while(temp->next!=NULL)    while(temp->next!=NULL)
387      temp= temp->next;      temp= temp->next;
388    
389      /* Connect the the tail of the list with the old stack head */
390    temp->next= *stack_head;    temp->next= *stack_head;
391    *stack_head= new_head;    *stack_head= new_head;        /* ...and voila! */
392  }  }
393    
394  /* Swap the two top elements on the stack. */  /* Swap the two top elements on the stack. */
# Line 351  extern void swap(stackitem** stack_head) Line 396  extern void swap(stackitem** stack_head)
396  {  {
397    stackitem* temp= (*stack_head);    stackitem* temp= (*stack_head);
398        
399    if((*stack_head)==NULL || (*stack_head)->next==NULL)    if((*stack_head)==NULL) {
400        printerr("Stack empty");
401        return;
402      }
403    
404      if((*stack_head)->next==NULL)
405      return;      return;
406    
407    *stack_head= (*stack_head)->next;    *stack_head= (*stack_head)->next;
# Line 365  extern void eq(stackitem** stack_head) Line 415  extern void eq(stackitem** stack_head)
415    void *left, *right;    void *left, *right;
416    int result;    int result;
417    
418    if((*stack_head)==NULL || (*stack_head)->next==NULL)    if((*stack_head)==NULL || (*stack_head)->next==NULL) {
419        printerr("Not enough elements to compare");
420      return;      return;
421      }
422    
423    left= (*stack_head)->content.ptr;    left= (*stack_head)->content.ptr;
424    swap(stack_head);    swap(stack_head);
# Line 382  extern void not(stackitem** stack_head) Line 434  extern void not(stackitem** stack_head)
434  {  {
435    int value;    int value;
436    
437    if((*stack_head)==NULL)    if((*stack_head)==NULL || (*stack_head)->type!=value) {
438        printerr("Stack empty or element is not a value");
439      return;      return;
440      }
441    
442    value= (*stack_head)->content.val;    value= (*stack_head)->content.val;
443    toss(stack_head);    toss(stack_head);
# Line 404  extern void def(stackitem** stack_head) Line 458  extern void def(stackitem** stack_head)
458    stackitem *temp, *value;    stackitem *temp, *value;
459    
460    if(*stack_head==NULL || (*stack_head)->next==NULL    if(*stack_head==NULL || (*stack_head)->next==NULL
461       || (*stack_head)->type!=ref)       || (*stack_head)->type!=ref) {
462        printerr("Define what?");
463      return;      return;
464      }
465    
466    temp= (*stack_head)->content.ptr;    temp= (*stack_head)->content.ptr;
467    value= (*stack_head)->next;    value= (*stack_head)->next;

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.19

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26