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

Diff of /stack/stack.c

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

revision 1.21 by masse, Sat Feb 2 15:26:10 2002 UTC revision 1.74 by masse, Tue Feb 12 23:59:05 2002 UTC
# Line 1  Line 1 
1  /* printf */  /* printf, sscanf, fgets, fprintf */
2  #include <stdio.h>  #include <stdio.h>
3  /* EXIT_SUCCESS */  /* exit, EXIT_SUCCESS, malloc, free */
4  #include <stdlib.h>  #include <stdlib.h>
5  /* NULL */  /* NULL */
6  #include <stddef.h>  #include <stddef.h>
7  /* dlopen, dlsym, dlerror */  /* dlopen, dlsym, dlerror */
8  #include <dlfcn.h>  #include <dlfcn.h>
9  /* assert */  /* strcmp, strcpy, strlen, strcat, strdup */
10  #include <assert.h>  #include <string.h>
11    
12  #define HASHTBLSIZE 65536  #define HASHTBLSIZE 2048
13    
14  typedef struct stack_item  /* First, define some types. */
15  {  
16    /* A value of some type */
17    typedef struct {
18    enum {    enum {
19      value,                      /* Integer */      integer,
20      string,      string,
     ref,                        /* Reference (to an element in the  
                                    hash table) */  
21      func,                       /* Function pointer */      func,                       /* Function pointer */
22      symbol,      symb,
23      list      list
24    } type;                       /* Type 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 */
29    } content;                    /* Stores a pointer or an integer */    } content;                    /* Stores a pointer or an integer */
30    
31    char* id;                     /* Symbol name */    int refcount;                 /* Reference counter */
32    struct stack_item* next;      /* Next element */  
33    } value;
34    
35    /* A symbol with a name and possible value */
36    /* (These do not need reference counters, they are kept unique by
37       hashing.) */
38    typedef struct symbol_struct {
39      char *id;                     /* Symbol name */
40      value *val;                   /* The value (if any) bound to it */
41      struct symbol_struct *next;   /* In case of hashing conflicts, a */
42    } symbol;                       /* symbol is a kind of stack item. */
43    
44    /* A type for a hash table for symbols */
45    typedef symbol *hashtbl[HASHTBLSIZE]; /* Hash table declaration */
46    
47    /* An item (value) on a stack */
48    typedef struct stackitem_struct
49    {
50      value *item;                  /* The value on the stack */
51                                    /* (This is never NULL) */
52      struct stackitem_struct *next; /* Next item */
53  } stackitem;  } stackitem;
54    
55    /* An environment; gives access to the stack and a hash table of
56       defined symbols */
57    typedef struct {
58      stackitem *head;              /* Head of the stack */
59      hashtbl symbols;              /* Hash table of all variable bindings */
60      int err;                      /* Error flag */
61      int non_eval_flag;
62      char *in_string;              /* Input pending to be read */
63    } environment;
64    
65    /* A type for pointers to external functions */
66    typedef void (*funcp)(environment *); /* funcp is a pointer to a void
67                                             function (environment *) */
68    
69    /* Initialize a newly created environment */
70    void init_env(environment *env)
71    {
72      int i;
73    
74      env->in_string= NULL;
75      env->err= 0;
76      env->non_eval_flag= 0;
77      for(i= 0; i<HASHTBLSIZE; i++)
78        env->symbols[i]= NULL;
79    }
80    
81    void printerr(const char* in_string) {
82      fprintf(stderr, "Err: %s\n", in_string);
83    }
84    
85  typedef stackitem* hashtbl[HASHTBLSIZE]; /* Hash table declaration */  /* Throw away a value */
86  typedef void (*funcp)(stackitem**); /* funcp is a pointer to a  void free_val(value *val){
87                                         void function (stackitem **) */    stackitem *item, *temp;
88    
89      val->refcount--;              /* Decrease the reference count */
90      if(val->refcount == 0){
91        switch (val->type){         /* and free the contents if necessary */
92        case string:
93          free(val->content.ptr);
94          break;
95        case list:                  /* lists needs to be freed recursively */
96          item=val->content.ptr;
97          while(item != NULL) {     /* for all stack items */
98            free_val(item->item);   /* free the value */
99            temp=item->next;        /* save next ptr */
100            free(item);             /* free the stackitem */
101            item=temp;              /* go to next stackitem */
102          }
103          free(val);                /* Free the actual list value */
104          break;
105        case integer:
106        case func:
107        case symb:
108          break;
109        }
110      }
111    }
112    
113  /* Initialize a newly created hash table. */  /* Discard the top element of the stack. */
114  void init_hashtbl(hashtbl out_hash)  extern void toss(environment *env)
115  {  {
116    long i;    stackitem *temp= env->head;
117    
118    for(i= 0; i<HASHTBLSIZE; i++)    if((env->head)==NULL) {
119      out_hash[i]= NULL;      printerr("Too Few Arguments");
120        env->err=1;
121        return;
122      }
123      
124      free_val(env->head->item);    /* Free the value */
125      env->head= env->head->next;   /* Remove the top stack item */
126      free(temp);                   /* Free the old top stack item */
127  }  }
128    
129  /* Returns a pointer to an element in the hash table. */  /* Returns a pointer to a pointer to an element in the hash table. */
130  stackitem** hash(hashtbl in_hashtbl, const char* in_string)  symbol **hash(hashtbl in_hashtbl, const char *in_string)
131  {  {
132    long i= 0;    int i= 0;
133    unsigned long out_hash= 0;    unsigned int out_hash= 0;
134    char key= '\0';    char key= '\0';
135    stackitem** position;    symbol **position;
136        
137    while(1){                     /* Hash in_string */    while(1){                     /* Hash in_string */
138      key= in_string[i++];      key= in_string[i++];
# Line 64  stackitem** hash(hashtbl in_hashtbl, con Line 144  stackitem** hash(hashtbl in_hashtbl, con
144    out_hash= out_hash%HASHTBLSIZE;    out_hash= out_hash%HASHTBLSIZE;
145    position= &(in_hashtbl[out_hash]);    position= &(in_hashtbl[out_hash]);
146    
147    while(position != NULL){    while(1){
148      if(*position==NULL)         /* If empty */      if(*position==NULL)         /* If empty */
149        return position;        return position;
150            
# Line 73  stackitem** hash(hashtbl in_hashtbl, con Line 153  stackitem** hash(hashtbl in_hashtbl, con
153    
154      position= &((*position)->next); /* Try next */      position= &((*position)->next); /* Try next */
155    }    }
   return NULL;                  /* end of list reached without finding  
                                    an empty position */  
156  }  }
157    
158  /* Generic push function. */  /* Generic push function. */
159  int push(stackitem** stack_head, stackitem* in_item)  void push(environment *env, stackitem* in_item)
 {  
   in_item->next= *stack_head;  
   *stack_head= in_item;  
   return 1;  
 }  
   
 /* Push a value on the stack. */  
 int push_val(stackitem** stack_head, int in_val)  
160  {  {
161    stackitem* new_item= malloc(sizeof(stackitem));    in_item->next= env->head;
162    assert(new_item != NULL);    env->head= in_item;
   new_item->content.val= in_val;  
   new_item->type= value;  
   
   push(stack_head, new_item);  
   return 1;  
163  }  }
164    
165  /* Copy a string onto the stack. */  /* Push a value onto the stack */
166  int push_cstring(stackitem** stack_head, const char* in_string)  void push_val(environment *env, value *val)
167  {  {
168    stackitem* new_item= malloc(sizeof(stackitem));    stackitem *new_item= malloc(sizeof(stackitem));
169    new_item->content.ptr= malloc(strlen(in_string)+1);    new_item->item= val;
170    strcpy(new_item->content.ptr, in_string);    val->refcount++;
171    new_item->type= string;    push(env, new_item);
   
   push(stack_head, new_item);  
   return 1;  
172  }  }
173    
174  /* Create a new hash entry. */  /* Push an integer onto the stack. */
175  int mk_hashentry(hashtbl in_hashtbl, stackitem* in_item, const char* id)  void push_int(environment *env, int in_val)
176  {  {
177    in_item->id= malloc(strlen(id)+1);    value *new_value= malloc(sizeof(value));
178      stackitem *new_item= malloc(sizeof(stackitem));
179    strcpy(in_item->id, id);    new_item->item= new_value;
180    push(hash(in_hashtbl, id), in_item);    
181      new_value->content.val= in_val;
182      new_value->type= integer;
183      new_value->refcount=1;
184    
185    return 1;    push(env, new_item);
186  }  }
187    
188  /* Define a new function in the hash table. */  /* Copy a string onto the stack. */
189  void def_func(hashtbl in_hashtbl, funcp in_func, const char* id)  void push_cstring(environment *env, const char *in_string)
190  {  {
191    stackitem* temp= malloc(sizeof(stackitem));    value *new_value= malloc(sizeof(value));
192      stackitem *new_item= malloc(sizeof(stackitem));
193    temp->type= func;    new_item->item=new_value;
194    temp->content.ptr= in_func;  
195      new_value->content.ptr= malloc(strlen(in_string)+1);
196      strcpy(new_value->content.ptr, in_string);
197      new_value->type= string;
198      new_value->refcount=1;
199    
200      push(env, new_item);
201    }
202    
203    /* Mangle a symbol name to a valid C identifier name */
204    char *mangle_str(const char *old_string){
205      char validchars[]
206        ="0123456789abcdef";
207      char *new_string, *current;
208    
209      new_string=malloc((strlen(old_string)*2)+4);
210      strcpy(new_string, "sx_");    /* Stack eXternal */
211      current=new_string+3;
212      while(old_string[0] != '\0'){
213        current[0]=validchars[(unsigned char)(old_string[0])/16];
214        current[1]=validchars[(unsigned char)(old_string[0])%16];
215        current+=2;
216        old_string++;
217      }
218      current[0]='\0';
219    
220    mk_hashentry(in_hashtbl, temp, id);    return new_string;            /* The caller must free() it */
221  }  }
222    
223  /* Define a new symbol in the hash table. */  extern void mangle(environment *env){
224  void def_sym(hashtbl in_hashtbl, const char* id)    value *new_value;
225  {    char *new_string;
   stackitem* temp= malloc(sizeof(stackitem));  
     
   temp->type= symbol;  
   mk_hashentry(in_hashtbl, temp, id);  
 }  
226    
227  /* Push a reference to an entry in the hash table onto the stack. */    if((env->head)==NULL) {
228  int push_ref(stackitem** stack_head, hashtbl in_hash, const char* in_string)      printerr("Too Few Arguments");
229  {      env->err=1;
230    static void* handle= NULL;      return;
231    void* symbol;    }
232    
233    stackitem* new_item= malloc(sizeof(stackitem));    if(env->head->item->type!=string) {
234    new_item->content.ptr= *hash(in_hash, in_string);      printerr("Bad Argument Type");
235    new_item->type= ref;      env->err=2;
236        return;
237      }
238    
239    if(new_item->content.ptr==NULL) { /* If hash entry empty */    new_string= mangle_str((const char *)(env->head->item->content.ptr));
     if(handle==NULL)            /* If no handle */  
       handle= dlopen(NULL, RTLD_LAZY);      
240    
241      symbol= dlsym(handle, in_string); /* Get function pointer */    toss(env);
242      if(dlerror()==NULL)         /* If existing function pointer */    if(env->err) return;
       def_func(in_hash, symbol, in_string); /* Store function pointer */  
     else  
       def_sym(in_hash, in_string); /* Make symbol */  
         
     new_item->content.ptr= *hash(in_hash, in_string); /* XXX */  
     new_item->type= ref;  
   }  
243    
244    push(stack_head, new_item);    new_value= malloc(sizeof(value));
245    return 1;    new_value->content.ptr= new_string;
246  }    new_value->type= string;
247      new_value->refcount=1;
248    
249      push_val(env, new_value);
250    }
251    
252    /* Push a symbol onto the stack. */
253    void push_sym(environment *env, const char *in_string)
254    {
255      stackitem *new_item;          /* The new stack item */
256      /* ...which will contain... */
257      value *new_value;             /* A new symbol value */
258      /* ...which might point to... */
259      symbol **new_symbol;          /* (if needed) A new actual symbol */
260      /* ...which, if possible, will be bound to... */
261      value *new_fvalue;            /* (if needed) A new function value */
262      /* ...which will point to... */
263      void *funcptr;                /* A function pointer */
264    
265      static void *handle= NULL;    /* Dynamic linker handle */
266      const char *dlerr;            /* Dynamic linker error */
267      char *mangled;                /* Mangled function name */
268    
269      /* Create a new stack item containing a new value */
270      new_item= malloc(sizeof(stackitem));
271      new_value= malloc(sizeof(value));
272      new_item->item=new_value;
273    
274      /* The new value is a symbol */
275      new_value->type= symb;
276      new_value->refcount= 1;
277    
278      /* Look up the symbol name in the hash table */
279      new_symbol= hash(env->symbols, in_string);
280      new_value->content.ptr= *new_symbol;
281    
282      if(*new_symbol==NULL) { /* If symbol was undefined */
283    
284        /* Create a new symbol */
285        (*new_symbol)= malloc(sizeof(symbol));
286        (*new_symbol)->val= NULL;   /* undefined value */
287        (*new_symbol)->next= NULL;
288        (*new_symbol)->id= malloc(strlen(in_string)+1);
289        strcpy((*new_symbol)->id, in_string);
290    
291  void printerr(const char* in_string) {      /* Intern the new symbol in the hash table */
292    fprintf(stderr, "Err: %s\n", in_string);      new_value->content.ptr= *new_symbol;
 }  
293    
294  /* Discard the top element of the stack. */      /* Try to load the symbol name as an external function, to see if
295  extern void toss(stackitem** stack_head)         we should bind the symbol to a new function pointer value */
296  {      if(handle==NULL)            /* If no handle */
297    stackitem* temp= *stack_head;        handle= dlopen(NULL, RTLD_LAZY);
298    
299    if((*stack_head)==NULL) {      funcptr= dlsym(handle, in_string); /* Get function pointer */
300      printerr("Stack empty");      dlerr=dlerror();
301      return;      if(dlerr != NULL) {         /* If no function was found */
302          mangled=mangle_str(in_string);
303          funcptr= dlsym(handle, mangled); /* try mangling it */
304          free(mangled);
305          dlerr=dlerror();
306        }
307        if(dlerr==NULL) {           /* If a function was found */
308          new_fvalue= malloc(sizeof(value)); /* Create a new value */
309          new_fvalue->type=func;    /* The new value is a function pointer */
310          new_fvalue->content.ptr=funcptr; /* Store function pointer */
311          (*new_symbol)->val= new_fvalue; /* Bind the symbol to the new
312                                             function value */
313          new_fvalue->refcount= 1;
314        }
315    }    }
316        push(env, new_item);
   if((*stack_head)->type==string)  
     free((*stack_head)->content.ptr);  
   
   *stack_head= (*stack_head)->next;  
   free(temp);  
317  }  }
318    
319  /* Print newline. */  /* Print newline. */
# Line 195  extern void nl() Line 322  extern void nl()
322    printf("\n");    printf("\n");
323  }  }
324    
325  /* Prints the top element of the stack. */  /* Gets the type of a value */
326  void print_(stackitem** stack_head)  extern void type(environment *env){
327  {    int typenum;
328    if((*stack_head)==NULL) {  
329      printerr("Stack empty");    if((env->head)==NULL) {
330        printerr("Too Few Arguments");
331        env->err=1;
332      return;      return;
333    }    }
334      typenum=env->head->item->type;
335      toss(env);
336      switch(typenum){
337      case integer:
338        push_sym(env, "integer");
339        break;
340      case string:
341        push_sym(env, "string");
342        break;
343      case symb:
344        push_sym(env, "symbol");
345        break;
346      case func:
347        push_sym(env, "function");
348        break;
349      case list:
350        push_sym(env, "list");
351        break;
352      }
353    }    
354    
355    switch((*stack_head)->type) {  /* Prints the top element of the stack. */
356    case value:  void print_h(stackitem *stack_head)
357      printf("%d", (*stack_head)->content.val);  {
358      switch(stack_head->item->type) {
359      case integer:
360        printf("%d", stack_head->item->content.val);
361      break;      break;
362    case string:    case string:
363      printf("\"%s\"", (char*)(*stack_head)->content.ptr);      printf("%s", (char*)stack_head->item->content.ptr);
364      break;      break;
365    case ref:    case symb:
366      printf("%s", ((stackitem*)(*stack_head)->content.ptr)->id);      printf("%s", ((symbol *)(stack_head->item->content.ptr))->id);
367      break;      break;
368    case symbol:    case func:
369    default:      printf("#<function %p>", (funcp)(stack_head->item->content.ptr));
370      printf("%p", (*stack_head)->content.ptr);      break;
371      case list:
372        /* A list is just a stack, so make stack_head point to it */
373        stack_head=(stackitem *)(stack_head->item->content.ptr);
374        printf("[ ");
375        while(stack_head != NULL) {
376          print_h(stack_head);
377          printf(" ");
378          stack_head=stack_head->next;
379        }
380        printf("]");
381      break;      break;
382    }    }
383  }  }
384    
385    extern void print_(environment *env) {
386      if(env->head==NULL) {
387        printerr("Too Few Arguments");
388        env->err=1;
389        return;
390      }
391      print_h(env->head);
392    }
393    
394  /* Prints the top element of the stack and then discards it. */  /* Prints the top element of the stack and then discards it. */
395  extern void print(stackitem** stack_head)  extern void print(environment *env)
396  {  {
397    print_(stack_head);    print_(env);
398    toss(stack_head);    if(env->err) return;
399      toss(env);
400  }  }
401    
402  /* Only to be called by function printstack. */  /* Only to be called by function printstack. */
403  void print_st(stackitem* stack_head, long counter)  void print_st(stackitem *stack_head, long counter)
404  {  {
405    if(stack_head->next != NULL)    if(stack_head->next != NULL)
406      print_st(stack_head->next, counter+1);      print_st(stack_head->next, counter+1);
   
407    printf("%ld: ", counter);    printf("%ld: ", counter);
408    print_(&stack_head);    print_h(stack_head);
409    nl();    nl();
410  }  }
411    
412  /* Prints the stack. */  /* Prints the stack. */
413  extern void printstack(stackitem** stack_head)  extern void printstack(environment *env)
414  {  {
415    if(*stack_head != NULL) {    if(env->head == NULL) {
416      print_st(*stack_head, 1);      return;
     nl();  
   } else {  
     printerr("Stack empty");  
417    }    }
418      print_st(env->head, 1);
419      nl();
420  }  }
421    
422  /* If the top element is a reference, determine if it's a reference to a  /* Swap the two top elements on the stack. */
423     function, and if it is, toss the reference and execute the function. */  extern void swap(environment *env)
 extern void eval(stackitem** stack_head)  
424  {  {
425    funcp in_func;    stackitem *temp= env->head;
426      
427    if((*stack_head)==NULL || (*stack_head)->type!=ref) {    if(env->head==NULL || env->head->next==NULL) {
428      printerr("Stack empty or not a reference");      printerr("Too Few Arguments");
429        env->err=1;
430      return;      return;
431    }    }
432    
433    if(((stackitem*)(*stack_head)->content.ptr)->type==func) {    env->head= env->head->next;
434      in_func= (funcp)((stackitem*)(*stack_head)->content.ptr)->content.ptr;    temp->next= env->head->next;
435      toss(stack_head);    env->head->next= temp;
436      (*in_func)(stack_head);  }
     return;  
   } else  
     printerr("Not a function");  
 }  
437    
438  /* Make a list. */  /* Rotate the first three elements on the stack. */
439  extern void pack(stackitem** stack_head)  extern void rot(environment *env)
440  {  {
441    void* delimiter;    stackitem *temp= env->head;
442    stackitem *iterator, *temp, *pack;    
443      if(env->head==NULL || env->head->next==NULL
444    if((*stack_head)==NULL) {        || env->head->next->next==NULL) {
445      printerr("Stack empty");      printerr("Too Few Arguments");
446        env->err=1;
447      return;      return;
448    }    }
449    
450    delimiter= (*stack_head)->content.ptr; /* Get delimiter */    env->head= env->head->next->next;
451    toss(stack_head);    temp->next->next= env->head->next;
452      env->head->next= temp;
453    iterator= *stack_head;  }
454    
455    /* Search for first delimiter */  /* Recall a value from a symbol, if bound */
456    while(iterator->next!=NULL && iterator->next->content.ptr!=delimiter)  extern void rcl(environment *env)
457      iterator= iterator->next;  {
458      value *val;
459    
460    /* Extract list */    if(env->head == NULL) {
461    temp= *stack_head;      printerr("Too Few Arguments");
462    *stack_head= iterator->next;      env->err=1;
463    iterator->next= NULL;      return;
464        }
   if(*stack_head!=NULL && (*stack_head)->content.ptr==delimiter)  
     toss(stack_head);  
465    
466    /* Push list */    if(env->head->item->type!=symb) {
467    pack= malloc(sizeof(stackitem));      printerr("Bad Argument Type");
468    pack->type= list;      env->err=2;
469    pack->content.ptr= temp;      return;
470      }
471    
472    push(stack_head, pack);    val=((symbol *)(env->head->item->content.ptr))->val;
473      if(val == NULL){
474        printerr("Unbound Variable");
475        env->err=3;
476        return;
477      }
478      toss(env);            /* toss the symbol */
479      if(env->err) return;
480      push_val(env, val); /* Return its bound value */
481  }  }
482    
483  /* Parse input. */  /* If the top element is a symbol, determine if it's bound to a
484  int stack_read(stackitem** stack_head, hashtbl in_hash, char* in_line)     function value, and if it is, toss the symbol and execute the
485       function. */
486    extern void eval(environment *env)
487  {  {
488    char *temp, *rest;    funcp in_func;
489    int itemp;    value* temp_val;
490    size_t inlength= strlen(in_line)+1;    stackitem* iterator;
   int convert= 0;  
   static int non_eval_flag= 0;  
491    
492    temp= malloc(inlength);    if(env->head==NULL) {
493    rest= malloc(inlength);      printerr("Too Few Arguments");
494        env->err=1;
495        return;
496      }
497    
498    do {   eval_start:
499      /* If string */  
500      if((convert= sscanf(in_line, "\"%[^\"\n\r]\" %[^\n\r]", temp, rest))) {    switch(env->head->item->type) {
501        push_cstring(stack_head, temp);      /* if it's a symbol */
502        break;    case symb:
503      }      rcl(env);                   /* get its contents */
504      /* If value */      if(env->err) return;
505      if((convert= sscanf(in_line, "%d %[^\n\r]", &itemp, rest))) {      if(env->head->item->type!=symb){ /* don't recurse symbols */
506        push_val(stack_head, itemp);        goto eval_start;
       break;  
     }  
     /* Escape ';' with '\' */  
     if((convert= sscanf(in_line, "\\%c%[^\n\r]", temp, rest))) {  
       temp[1]= '\0';  
       push_ref(stack_head, in_hash, temp);  
       break;  
     }  
     /* If symbol */  
     if((convert= sscanf(in_line, "%[^][ ;\n\r]%[^\n\r]", temp, rest))) {  
         push_ref(stack_head, in_hash, temp);  
         break;  
507      }      }
508      /* If single char */      return;
509      if((convert= sscanf(in_line, "%c%[^\n\r]", temp, rest))) {  
510        if(*temp==';') {      /* If it's a lone function value, run it */
511          if(!non_eval_flag) {    case func:
512            eval(stack_head);             /* Evaluate top element */      in_func= (funcp)(env->head->item->content.ptr);
513            break;      toss(env);
514        if(env->err) return;
515        return (*in_func)(env);
516    
517        /* If it's a list */
518      case list:
519        temp_val= env->head->item;
520        env->head->item->refcount++;
521        toss(env);
522        if(env->err) return;
523        iterator= (stackitem*)temp_val->content.ptr;
524        while(iterator!=NULL) {
525          push_val(env, iterator->item);
526          if(env->head->item->type==symb
527            && strcmp(";", ((symbol*)(env->head->item->content.ptr))->id)==0) {
528            toss(env);
529            if(env->err) return;
530            if(iterator->next == NULL){
531              free_val(temp_val);
532              goto eval_start;
533          }          }
534                    eval(env);
535          push_ref(stack_head, in_hash, ";");          if(env->err) return;
         break;  
536        }        }
537          iterator= iterator->next;
538        }
539        free_val(temp_val);
540        return;
541    
542        if(*temp==']') {    default:
543          push_ref(stack_head, in_hash, "[");      return;
544          pack(stack_head);    }
545          if(non_eval_flag!=0)  }
           non_eval_flag--;  
         break;  
       }  
546    
547        if(*temp=='[') {  /* Reverse (flip) a list */
548          push_ref(stack_head, in_hash, "[");  extern void rev(environment *env){
549          non_eval_flag++;    stackitem *old_head, *new_head, *item;
550          break;  
551        }    if((env->head)==NULL) {
552      }      printerr("Too Few Arguments");
553    } while(0);      env->err=1;
554        return;
555      }
556    
557      if(env->head->item->type!=list) {
558        printerr("Bad Argument Type");
559        env->err=2;
560        return;
561      }
562    
563      old_head=(stackitem *)(env->head->item->content.ptr);
564      new_head=NULL;
565      while(old_head != NULL){
566        item=old_head;
567        old_head=old_head->next;
568        item->next=new_head;
569        new_head=item;
570      }
571      env->head->item->content.ptr=new_head;
572    }
573    
574    free(temp);  /* Make a list. */
575    extern void pack(environment *env)
576    {
577      stackitem *iterator, *temp;
578      value *pack;
579    
580    if(convert<2) {    iterator= env->head;
581      free(rest);  
582      return 0;    if(iterator==NULL
583         || (iterator->item->type==symb
584         && ((symbol*)(iterator->item->content.ptr))->id[0]=='[')) {
585        temp= NULL;
586        toss(env);
587      } else {
588        /* Search for first delimiter */
589        while(iterator->next!=NULL
590              && (iterator->next->item->type!=symb
591              || ((symbol*)(iterator->next->item->content.ptr))->id[0]!='['))
592          iterator= iterator->next;
593        
594        /* Extract list */
595        temp= env->head;
596        env->head= iterator->next;
597        iterator->next= NULL;
598        
599        if(env->head!=NULL)
600          toss(env);
601    }    }
602      
603    stack_read(stack_head, in_hash, rest);    /* Push list */
604        pack= malloc(sizeof(value));
605    free(rest);    pack->type= list;
606    return 1;    pack->content.ptr= temp;
607      pack->refcount= 1;
608    
609      push_val(env, pack);
610      rev(env);
611  }  }
612    
613  /* Relocate elements of the list on the stack. */  /* Relocate elements of the list on the stack. */
614  extern void expand(stackitem** stack_head)  extern void expand(environment *env)
615  {  {
616    stackitem *temp, *new_head;    stackitem *temp, *new_head;
617    
618    /* Is top element a list? */    /* Is top element a list? */
619    if((*stack_head)==NULL || (*stack_head)->type!=list) {    if(env->head==NULL) {
620      printerr("Stack empty or not a list");      printerr("Too Few Arguments");
621        env->err=1;
622      return;      return;
623    }    }
624      if(env->head->item->type!=list) {
625        printerr("Bad Argument Type");
626        env->err=2;
627        return;
628      }
629    
630      rev(env);
631    
632      if(env->err)
633        return;
634    
635    /* The first list element is the new stack head */    /* The first list element is the new stack head */
636    new_head= temp= (*stack_head)->content.ptr;    new_head= temp= env->head->item->content.ptr;
637    toss(stack_head);  
638      env->head->item->refcount++;
639      toss(env);
640    
641    /* Search the end of the list */    /* Find the end of the list */
642    while(temp->next!=NULL)    while(temp->next!=NULL)
643      temp= temp->next;      temp= temp->next;
644    
645    /* Connect the the tail of the list with the old stack head */    /* Connect the tail of the list with the old stack head */
646    temp->next= *stack_head;    temp->next= env->head;
647    *stack_head= new_head;        /* ...and voila! */    env->head= new_head;          /* ...and voila! */
 }  
   
 /* Swap the two top elements on the stack. */  
 extern void swap(stackitem** stack_head)  
 {  
   stackitem* temp= (*stack_head);  
     
   if((*stack_head)==NULL) {  
     printerr("Stack empty");  
     return;  
   }  
648    
649    if((*stack_head)->next==NULL)  }
     return;  
   
   *stack_head= (*stack_head)->next;  
   temp->next= (*stack_head)->next;  
   (*stack_head)->next= temp;  
 }  
650    
651  /* Compares two elements by reference. */  /* Compares two elements by reference. */
652  extern void eq(stackitem** stack_head)  extern void eq(environment *env)
653  {  {
654    void *left, *right;    void *left, *right;
655    int result;    int result;
656    
657    if((*stack_head)==NULL || (*stack_head)->next==NULL) {    if((env->head)==NULL || env->head->next==NULL) {
658      printerr("Not enough elements to compare");      printerr("Too Few Arguments");
659        env->err=1;
660      return;      return;
661    }    }
662    
663    left= (*stack_head)->content.ptr;    left= env->head->item->content.ptr;
664    swap(stack_head);    swap(env);
665    right= (*stack_head)->content.ptr;    right= env->head->item->content.ptr;
666    result= (left==right);    result= (left==right);
667        
668    toss(stack_head); toss(stack_head);    toss(env); toss(env);
669    push_val(stack_head, (left==right));    push_int(env, result);
670  }  }
671    
672  /* Negates the top element on the stack. */  /* Negates the top element on the stack. */
673  extern void not(stackitem** stack_head)  extern void not(environment *env)
674  {  {
675    int value;    int val;
676    
677      if((env->head)==NULL) {
678        printerr("Too Few Arguments");
679        env->err=1;
680        return;
681      }
682    
683    if((*stack_head)==NULL || (*stack_head)->type!=value) {    if(env->head->item->type!=integer) {
684      printerr("Stack empty or element is not a value");      printerr("Bad Argument Type");
685        env->err=2;
686      return;      return;
687    }    }
688    
689    value= (*stack_head)->content.val;    val= env->head->item->content.val;
690    toss(stack_head);    toss(env);
691    push_val(stack_head, !value);    push_int(env, !val);
692  }  }
693    
694  /* Compares the two top elements on the stack and return 0 if they're the  /* Compares the two top elements on the stack and return 0 if they're the
695     same. */     same. */
696  extern void neq(stackitem** stack_head)  extern void neq(environment *env)
697  {  {
698    eq(stack_head);    eq(env);
699    not(stack_head);    not(env);
700  }  }
701    
702  /* Give a symbol some content. */  /* Give a symbol some content. */
703  extern void def(stackitem** stack_head)  extern void def(environment *env)
704  {  {
705    stackitem *temp, *value;    symbol *sym;
706    
707      /* Needs two values on the stack, the top one must be a symbol */
708      if(env->head==NULL || env->head->next==NULL) {
709        printerr("Too Few Arguments");
710        env->err=1;
711        return;
712      }
713    
714    if(*stack_head==NULL || (*stack_head)->next==NULL    if(env->head->item->type!=symb) {
715       || (*stack_head)->type!=ref) {      printerr("Bad Argument Type");
716      printerr("Define what?");      env->err=2;
717      return;      return;
718    }    }
719    
720    temp= (*stack_head)->content.ptr;    /* long names are a pain */
721    value= (*stack_head)->next;    sym=env->head->item->content.ptr;
   temp->content= value->content;  
   value->content.ptr=NULL;  
   temp->type= value->type;  
722    
723    toss(stack_head); toss(stack_head);    /* if the symbol was bound to something else, throw it away */
724      if(sym->val != NULL)
725        free_val(sym->val);
726    
727      /* Bind the symbol to the value */
728      sym->val= env->head->next->item;
729      sym->val->refcount++;         /* Increase the reference counter */
730    
731      toss(env); toss(env);
732  }  }
733    
734  /* Quit stack. */  /* Quit stack. */
735  extern void quit()  extern void quit(environment *env)
736  {  {
737    exit(EXIT_SUCCESS);    exit(EXIT_SUCCESS);
738  }  }
739    
740    /* Clear stack */
741    extern void clear(environment *env)
742    {
743      while(env->head!=NULL)
744        toss(env);
745    }
746    
747    /* List all defined words */
748    extern void words(environment *env)
749    {
750      symbol *temp;
751      int i;
752      
753      for(i= 0; i<HASHTBLSIZE; i++) {
754        temp= env->symbols[i];
755        while(temp!=NULL) {
756          printf("%s\n", temp->id);
757          temp= temp->next;
758        }
759      }
760    }
761    
762    /* Forgets a symbol (remove it from the hash table) */
763    extern void forget(environment *env)
764    {
765      char* sym_id;
766      stackitem *stack_head= env->head;
767      symbol **hash_entry, *temp;
768    
769      if(stack_head==NULL) {
770        printerr("Too Few Arguments");
771        env->err=1;
772        return;
773      }
774      
775      if(stack_head->item->type!=symb) {
776        printerr("Bad Argument Type");
777        env->err=2;
778        return;
779      }
780    
781      sym_id= ((symbol*)(stack_head->item->content.ptr))->id;
782      toss(env);
783    
784      hash_entry= hash(env->symbols, sym_id);
785      temp= *hash_entry;
786      *hash_entry= (*hash_entry)->next;
787      
788      if(temp->val!=NULL) {
789        free_val(temp->val);
790      }
791      free(temp->id);
792      free(temp);
793    }
794    
795    /* Returns the current error number to the stack */
796    extern void errn(environment *env){
797      push_int(env, env->err);
798    }
799    
800    extern void read(environment*);
801    
802  int main()  int main()
803  {  {
804    stackitem* s= NULL;    environment myenv;
805    hashtbl myhash;  
806    char in_string[100];    init_env(&myenv);
807    
808      while(1) {
809        if(myenv.in_string==NULL)
810          printstack(&myenv);
811        read(&myenv);
812        if(myenv.err) {
813          printf("(error %d) ", myenv.err);
814          myenv.err=0;
815        } else if(myenv.head!=NULL
816                  && myenv.head->item->type==symb
817                  && ((symbol*)(myenv.head->item->content.ptr))->id[0]==';') {
818          toss(&myenv);             /* No error check in main */
819          eval(&myenv);
820        }
821      }
822      quit(&myenv);
823      return EXIT_FAILURE;
824    }
825    
826    init_hashtbl(myhash);  /* + */
827    extern void sx_2b(environment *env) {
828      int a, b;
829      size_t len;
830      char* new_string;
831      value *a_val, *b_val;
832    
833      if((env->head)==NULL || env->head->next==NULL) {
834        printerr("Too Few Arguments");
835        env->err=1;
836        return;
837      }
838    
839    printf("okidok\n ");    if(env->head->item->type==string
840         && env->head->next->item->type==string) {
841        a_val= env->head->item;
842        b_val= env->head->next->item;
843        a_val->refcount++;
844        b_val->refcount++;
845        toss(env); if(env->err) return;
846        toss(env); if(env->err) return;
847        len= strlen(a_val->content.ptr)+strlen(b_val->content.ptr)+1;
848        new_string= malloc(len);
849        strcpy(new_string, b_val->content.ptr);
850        strcat(new_string, a_val->content.ptr);
851        free_val(a_val); free_val(b_val);
852        push_cstring(env, new_string);
853        free(new_string);
854        return;
855      }
856      
857      if(env->head->item->type!=integer
858         || env->head->next->item->type!=integer) {
859        printerr("Bad Argument Type");
860        env->err=2;
861        return;
862      }
863      a=env->head->item->content.val;
864      toss(env);
865      if(env->err) return;
866      if(env->head->item->refcount == 1)
867        env->head->item->content.val += a;
868      else {
869        b=env->head->item->content.val;
870        toss(env);
871        if(env->err) return;
872        push_int(env, a+b);
873      }
874    }
875    
876    while(fgets(in_string, 100, stdin) != NULL) {  /* - */
877      stack_read(&s, myhash, in_string);  extern void sx_2d(environment *env) {
878      printf("okidok\n ");    int a, b;
879    
880      if((env->head)==NULL || env->head->next==NULL) {
881        printerr("Too Few Arguments");
882        env->err=1;
883        return;
884      }
885      
886      if(env->head->item->type!=integer
887         || env->head->next->item->type!=integer) {
888        printerr("Bad Argument Type");
889        env->err=2;
890        return;
891      }
892      a=env->head->item->content.val;
893      toss(env);
894      if(env->err) return;
895      if(env->head->item->refcount == 1)
896        env->head->item->content.val -= a;
897      else {
898        b=env->head->item->content.val;
899        toss(env);
900        if(env->err) return;
901        push_int(env, b-a);
902    }    }
903    }
904    
905    exit(EXIT_SUCCESS);  /* > */
906    extern void sx_3e(environment *env) {
907      int a, b;
908    
909      if((env->head)==NULL || env->head->next==NULL) {
910        printerr("Too Few Arguments");
911        env->err=1;
912        return;
913      }
914      
915      if(env->head->item->type!=integer
916         || env->head->next->item->type!=integer) {
917        printerr("Bad Argument Type");
918        env->err=2;
919        return;
920      }
921      a=env->head->item->content.val;
922      toss(env);
923      if(env->err) return;
924      if(env->head->item->refcount == 1)
925        env->head->item->content.val = (env->head->item->content.val > a);
926      else {
927        b=env->head->item->content.val;
928        toss(env);
929        if(env->err) return;
930        push_int(env, b>a);
931      }
932    }
933    
934    /* Return copy of a value */
935    value *copy_val(value *old_value){
936      stackitem *old_item, *new_item, *prev_item;
937    
938      value *new_value=malloc(sizeof(value));
939    
940      new_value->type=old_value->type;
941      new_value->refcount=0;        /* This is increased if/when this
942                                       value is referenced somewhere, like
943                                       in a stack item or a variable */
944      switch(old_value->type){
945      case integer:
946        new_value->content.val=old_value->content.val;
947        break;
948      case string:
949        (char *)(new_value->content.ptr)
950          = strdup((char *)(old_value->content.ptr));
951        break;
952      case func:
953      case symb:
954        new_value->content.ptr=old_value->content.ptr;
955        break;
956      case list:
957        new_value->content.ptr=NULL;
958    
959        prev_item=NULL;
960        old_item=(stackitem *)(old_value->content.ptr);
961    
962        while(old_item != NULL) {   /* While list is not empty */
963          new_item= malloc(sizeof(stackitem));
964          new_item->item=copy_val(old_item->item); /* recurse */
965          new_item->next=NULL;
966          if(prev_item != NULL)     /* If this wasn't the first item */
967            prev_item->next=new_item; /* point the previous item to the
968                                         new item */
969          else
970            new_value->content.ptr=new_item;
971          old_item=old_item->next;
972          prev_item=new_item;
973        }    
974        break;
975      }
976      return new_value;
977    }
978    
979    /* duplicates an item on the stack */
980    extern void dup(environment *env) {
981      if((env->head)==NULL) {
982        printerr("Too Few Arguments");
983        env->err=1;
984        return;
985      }
986      push_val(env, copy_val(env->head->item));
987  }  }
988    
989  /* Local Variables: */  /* "if", If-Then */
990  /* compile-command:"make CFLAGS=\"-Wall -g -rdynamic -ldl\" stack" */  extern void sx_6966(environment *env) {
991  /* End: */  
992      int truth;
993    
994      if((env->head)==NULL || env->head->next==NULL) {
995        printerr("Too Few Arguments");
996        env->err=1;
997        return;
998      }
999    
1000      if(env->head->next->item->type != integer) {
1001        printerr("Bad Argument Type");
1002        env->err=2;
1003        return;
1004      }
1005      
1006      swap(env);
1007      if(env->err) return;
1008      
1009      truth=env->head->item->content.val;
1010    
1011      toss(env);
1012      if(env->err) return;
1013    
1014      if(truth)
1015        eval(env);
1016      else
1017        toss(env);
1018    }
1019    
1020    /* If-Then-Else */
1021    extern void ifelse(environment *env) {
1022    
1023      int truth;
1024    
1025      if((env->head)==NULL || env->head->next==NULL
1026         || env->head->next->next==NULL) {
1027        printerr("Too Few Arguments");
1028        env->err=1;
1029        return;
1030      }
1031    
1032      if(env->head->next->next->item->type != integer) {
1033        printerr("Bad Argument Type");
1034        env->err=2;
1035        return;
1036      }
1037      
1038      rot(env);
1039      if(env->err) return;
1040      
1041      truth=env->head->item->content.val;
1042    
1043      toss(env);
1044      if(env->err) return;
1045    
1046      if(!truth)
1047        swap(env);
1048      if(env->err) return;
1049    
1050      toss(env);
1051      if(env->err) return;
1052    
1053      eval(env);
1054    }
1055    
1056    /* while */
1057    extern void sx_7768696c65(environment *env) {
1058    
1059      int truth;
1060      value *loop, *test;
1061    
1062      if((env->head)==NULL || env->head->next==NULL) {
1063        printerr("Too Few Arguments");
1064        env->err=1;
1065        return;
1066      }
1067    
1068      loop= env->head->item;
1069      loop->refcount++;
1070      toss(env); if(env->err) return;
1071    
1072      test= env->head->item;
1073      test->refcount++;
1074      toss(env); if(env->err) return;
1075    
1076      do {
1077        push_val(env, test);
1078        eval(env);
1079        
1080        if(env->head->item->type != integer) {
1081          printerr("Bad Argument Type");
1082          env->err=2;
1083          return;
1084        }
1085        
1086        truth= env->head->item->content.val;
1087        toss(env); if(env->err) return;
1088        
1089        if(truth) {
1090          push_val(env, loop);
1091          eval(env);
1092        } else {
1093          toss(env);
1094        }
1095      
1096      } while(truth);
1097    
1098      free_val(test);
1099      free_val(loop);
1100    }
1101    
1102    /* For-loop */
1103    extern void sx_666f72(environment *env) {
1104      
1105      value *loop, *foo;
1106      stackitem *iterator;
1107      
1108      if((env->head)==NULL || env->head->next==NULL) {
1109        printerr("Too Few Arguments");
1110        env->err=1;
1111        return;
1112      }
1113    
1114      if(env->head->next->item->type != list) {
1115        printerr("Bad Argument Type");
1116        env->err=2;
1117        return;
1118      }
1119    
1120      loop= env->head->item;
1121      loop->refcount++;
1122      toss(env); if(env->err) return;
1123    
1124      foo= env->head->item;
1125      foo->refcount++;
1126      toss(env); if(env->err) return;
1127    
1128      iterator= foo->content.ptr;
1129    
1130      while(iterator!=NULL) {
1131        push_val(env, iterator->item);
1132        push_val(env, loop);
1133        eval(env); if(env->err) return;
1134        iterator= iterator->next;
1135      }
1136    
1137      free_val(loop);
1138      free_val(foo);
1139    }
1140    
1141    /* 'to' */
1142    extern void to(environment *env) {
1143      int i, start, ending;
1144      stackitem *temp_head;
1145      value *temp_val;
1146      
1147      if((env->head)==NULL || env->head->next==NULL) {
1148        printerr("Too Few Arguments");
1149        env->err=1;
1150        return;
1151      }
1152    
1153      if(env->head->item->type!=integer
1154         || env->head->next->item->type!=integer) {
1155        printerr("Bad Argument Type");
1156        env->err=2;
1157        return;
1158      }
1159    
1160      ending= env->head->item->content.val;
1161      toss(env); if(env->err) return;
1162      start= env->head->item->content.val;
1163      toss(env); if(env->err) return;
1164    
1165      temp_head= env->head;
1166      env->head= NULL;
1167    
1168      if(ending>=start) {
1169        for(i= ending; i>=start; i--)
1170          push_int(env, i);
1171      } else {
1172        for(i= ending; i<=start; i++)
1173          push_int(env, i);
1174      }
1175    
1176      temp_val= malloc(sizeof(value));
1177      temp_val->content.ptr= env->head;
1178      temp_val->refcount= 1;
1179      temp_val->type= list;
1180      env->head= temp_head;
1181      push_val(env, temp_val);
1182    }
1183    
1184    /* Read a string */
1185    extern void readline(environment *env) {
1186      char in_string[101];
1187    
1188      fgets(in_string, 100, stdin);
1189      push_cstring(env, in_string);
1190    }
1191    
1192    /* Read a value and place on stack */
1193    extern void read(environment *env) {
1194      const char symbform[]= "%[a-zA-Z0-9!$%*+./:<=>?@^_~-]%[\001-\377]";
1195      const char strform[]= "\"%[^\"]\"%[\001-\377]";
1196      const char intform[]= "%i%[\001-\377]";
1197      const char blankform[]= "%*[ \t]%[\001-\377]";
1198      const char ebrackform[]= "%*1[]]%[\001-\377]";
1199      const char semicform[]= "%*1[;]%[\001-\377]";
1200      const char bbrackform[]= "%*1[[]%[\001-\377]";
1201    
1202      int itemp;
1203      static int depth= 0;
1204      char *rest, *match;
1205      size_t inlength;
1206    
1207      if(env->in_string==NULL) {
1208        readline(env); if(env->err) return;
1209        
1210        env->in_string= malloc(strlen(env->head->item->content.ptr)+1);
1211        strcpy(env->in_string, env->head->item->content.ptr);
1212        toss(env); if(env->err) return;
1213      }
1214      
1215      inlength= strlen(env->in_string)+1;
1216      match= malloc(inlength);
1217      rest= malloc(inlength);
1218    
1219      if(sscanf(env->in_string, blankform, rest)) {
1220        ;
1221      } else if(sscanf(env->in_string, intform, &itemp, rest) > 0) {
1222        push_int(env, itemp);
1223      } else if(sscanf(env->in_string, strform, match, rest) > 0) {
1224        push_cstring(env, match);
1225      } else if(sscanf(env->in_string, symbform, match, rest) > 0) {
1226        push_sym(env, match);
1227      } else if(sscanf(env->in_string, ebrackform, rest) > 0) {
1228        pack(env); if(env->err) return;
1229        if(depth!=0) depth--;
1230      } else if(sscanf(env->in_string, semicform, rest) > 0) {
1231        push_sym(env, ";");
1232      } else if(sscanf(env->in_string, bbrackform, rest) > 0) {
1233        push_sym(env, "[");
1234        depth++;
1235      } else {
1236        free(rest);
1237        rest= NULL;
1238      }
1239          
1240      free(env->in_string);
1241      free(match);
1242    
1243      env->in_string= rest;
1244    
1245      if(depth)
1246        return read(env);
1247    }

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.74

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26