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

Diff of /stack/stack.c

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

revision 1.16 by masse, Thu Jan 31 22:32:59 2002 UTC revision 1.18 by teddy, Fri Feb 1 23:30:55 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    
# Line 13  typedef struct stack_item Line 15  typedef struct stack_item
15  {  {
16    enum {    enum {
17      value,                      /* Integer */      value,                      /* Integer */
18      string,      string,
19      ref,            /* Reference (to an element in the hash table) */      ref,                        /* Reference (to an element in the
20                                       hash table) */
21      func,                       /* Function pointer */      func,                       /* Function pointer */
22      symbol,      symbol,
23      list      list
24    } type;                       /* Tells what kind of stack element */    } type;                       /* Type of stack element */
25      
26    union {    union {
27      void* ptr;                  /* Pointer to the content */      void* ptr;                  /* Pointer to the content */
28      int val;                    /* ...or an integer */      int val;                    /* ...or an integer */
# Line 31  typedef struct stack_item Line 34  typedef struct stack_item
34    
35    
36  typedef stackitem* hashtbl[HASHTBLSIZE]; /* Hash table declaration */  typedef stackitem* hashtbl[HASHTBLSIZE]; /* Hash table declaration */
37  typedef void (*funcp)(stackitem**); /* Function pointer declaration */  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 48  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){                     /* Hash in_string */    while(1){                     /* Hash in_string */
# Line 61  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){                     /* Return position if empty */    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) /* Return position if match */      if(strcmp(in_string, (*position)->id)==0) /* If match */
72        return position;        return position;
73    
74      position= &((*position)->next); /* Try 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 84  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 114  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 162  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 186  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 230  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    
# Line 239  extern void eval(stackitem** stack_head) Line 255  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  /* Parse input. */  /* Parse input. */
# Line 310  extern void pack(stackitem** stack_head) Line 329  extern void pack(stackitem** stack_head)
329    void* delimiter;    void* delimiter;
330    stackitem *iterator, *temp, *pack;    stackitem *iterator, *temp, *pack;
331    
332    if((*stack_head)==NULL)       /* No delimiter */    if((*stack_head)==NULL) {
333        printerr("Stack empty");
334      return;      return;
335      }
336    
337    delimiter= (*stack_head)->content.ptr; /* Get delimiter */    delimiter= (*stack_head)->content.ptr; /* Get delimiter */
338    toss(stack_head);    toss(stack_head);
# Line 344  extern void expand(stackitem** stack_hea Line 365  extern void expand(stackitem** stack_hea
365    stackitem *temp, *new_head;    stackitem *temp, *new_head;
366    
367    /* Is top element a list? */    /* Is top element a list? */
368    if((*stack_head)==NULL || (*stack_head)->type!=list)    if((*stack_head)==NULL || (*stack_head)->type!=list) {
369        printerr("Stack empty or not a list");
370      return;      return;
371      }
372    
373    /* The first list element is the new stack head */    /* The first list element is the new stack head */
374    new_head= temp= (*stack_head)->content.ptr;    new_head= temp= (*stack_head)->content.ptr;
# Line 365  extern void swap(stackitem** stack_head) Line 388  extern void swap(stackitem** stack_head)
388  {  {
389    stackitem* temp= (*stack_head);    stackitem* temp= (*stack_head);
390        
391    if((*stack_head)==NULL || (*stack_head)->next==NULL)    if((*stack_head)==NULL) {
392        printerr("Stack empty");
393        return;
394      }
395    
396      if((*stack_head)->next==NULL)
397      return;      return;
398    
399    *stack_head= (*stack_head)->next;    *stack_head= (*stack_head)->next;
# Line 379  extern void eq(stackitem** stack_head) Line 407  extern void eq(stackitem** stack_head)
407    void *left, *right;    void *left, *right;
408    int result;    int result;
409    
410    if((*stack_head)==NULL || (*stack_head)->next==NULL)    if((*stack_head)==NULL || (*stack_head)->next==NULL) {
411        printerr("Not enough elements to compare");
412      return;      return;
413      }
414    
415    left= (*stack_head)->content.ptr;    left= (*stack_head)->content.ptr;
416    swap(stack_head);    swap(stack_head);
# Line 396  extern void not(stackitem** stack_head) Line 426  extern void not(stackitem** stack_head)
426  {  {
427    int value;    int value;
428    
429    if((*stack_head)==NULL || (*stack_head)->type!=value)    if((*stack_head)==NULL || (*stack_head)->type!=value) {
430        printerr("Stack empty or element is not a value");
431      return;      return;
432      }
433    
434    value= (*stack_head)->content.val;    value= (*stack_head)->content.val;
435    toss(stack_head);    toss(stack_head);
# Line 418  extern void def(stackitem** stack_head) Line 450  extern void def(stackitem** stack_head)
450    stackitem *temp, *value;    stackitem *temp, *value;
451    
452    if(*stack_head==NULL || (*stack_head)->next==NULL    if(*stack_head==NULL || (*stack_head)->next==NULL
453       || (*stack_head)->type!=ref)       || (*stack_head)->type!=ref) {
454        printerr("Define what?");
455      return;      return;
456      }
457    
458    temp= (*stack_head)->content.ptr;    temp= (*stack_head)->content.ptr;
459    value= (*stack_head)->next;    value= (*stack_head)->next;

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.18

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26