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

Diff of /stack/stack.c

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

revision 1.11 by masse, Tue Jan 8 18:06:19 2002 UTC revision 1.71 by masse, Mon Feb 11 22:07:47 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    /* strcmp, strcpy, strlen, strcat, strdup */
10    #include <string.h>
11    
12  #define HASHTBLSIZE 65536  #define HASHTBLSIZE 65536
13    
14  typedef struct stack_item  /* First, define some types. */
15  {  
16    enum {value, string, ref, func, symbol, list} type;  /* A value of some type */
17    union {  typedef struct {
18      void* ptr;    enum {
19      int val;      integer,
20    } content;      string,
21        func,                       /* Function pointer */
22        symb,
23        list
24      } type;                       /* Type of stack element */
25    
26    char* id;    union {
27    struct stack_item* next;      void *ptr;                  /* Pointer to the content */
28        int val;                    /* ...or an integer */
29      } content;                    /* Stores a pointer or an integer */
30    
31      int refcount;                 /* Reference counter */
32    
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  typedef stackitem* hashtbl[HASHTBLSIZE];  void printerr(const char* in_string) {
82  typedef void (*funcp)(stackitem**);    fprintf(stderr, "Err: %s\n", in_string);
83    }
84    
85  void init_hashtbl(hashtbl out_hash)  /* Throw away a value */
86  {  void free_val(value *val){
87    long i;    stackitem *item, *temp;
88    
89    for(i= 0; i<HASHTBLSIZE; i++)    val->refcount--;              /* Decrease the reference count */
90      out_hash[i]= NULL;    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  stackitem** hash(hashtbl in_hashtbl, const char* in_string)  /* Discard the top element of the stack. */
114    extern void toss(environment *env)
115  {  {
116    long i= 0;    stackitem *temp= env->head;
117    unsigned long out_hash= 0;  
118    char key= 0;    if((env->head)==NULL) {
119    stackitem** position;      printerr("Too Few Arguments");
120        env->err=1;
121        return;
122      }
123        
124    while(1){    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 a pointer to an element in the hash table. */
130    symbol **hash(hashtbl in_hashtbl, const char *in_string)
131    {
132      int i= 0;
133      unsigned int out_hash= 0;
134      char key= '\0';
135      symbol **position;
136      
137      while(1){                     /* Hash in_string */
138      key= in_string[i++];      key= in_string[i++];
139      if(key=='\0')      if(key=='\0')
140        break;        break;
# Line 51  stackitem** hash(hashtbl in_hashtbl, con Line 145  stackitem** hash(hashtbl in_hashtbl, con
145    position= &(in_hashtbl[out_hash]);    position= &(in_hashtbl[out_hash]);
146    
147    while(1){    while(1){
148      if(*position==NULL)      if(*position==NULL)         /* If empty */
149        return position;        return position;
150            
151      if(strcmp(in_string, (*position)->id)==0)      if(strcmp(in_string, (*position)->id)==0) /* If match */
152        return position;        return position;
153    
154      position= &((*position)->next);      position= &((*position)->next); /* Try next */
155    }    }
156  }  }
157    
158    /* Generic push function. */
159  int push(stackitem** stack_head, stackitem* in_item)  void push(stackitem** stack_head, stackitem* in_item)
160  {  {
161    in_item->next= *stack_head;    in_item->next= *stack_head;
162    *stack_head= in_item;    *stack_head= in_item;
   return 1;  
163  }  }
164    
165  int push_val(stackitem** stack_head, int in_val)  /* Push a value onto the stack */
166    void push_val(stackitem **stack_head, value *val)
167  {  {
168    stackitem* new_item= malloc(sizeof(stackitem));    stackitem *new_item= malloc(sizeof(stackitem));
169    new_item->content.val= in_val;    new_item->item= val;
170    new_item->type= value;    val->refcount++;
   
171    push(stack_head, new_item);    push(stack_head, new_item);
   return 1;  
172  }  }
173    
174  int push_cstring(stackitem** stack_head, const char* in_string)  /* Push an integer onto the stack. */
175    void push_int(stackitem **stack_head, int in_val)
176  {  {
177    stackitem* new_item= malloc(sizeof(stackitem));    value *new_value= malloc(sizeof(value));
178    new_item->content.ptr= malloc(strlen(in_string)+1);    stackitem *new_item= malloc(sizeof(stackitem));
179    strcpy(new_item->content.ptr, in_string);    new_item->item= new_value;
180    new_item->type= string;    
181      new_value->content.val= in_val;
182      new_value->type= integer;
183      new_value->refcount=1;
184    
185    push(stack_head, new_item);    push(stack_head, new_item);
   return 1;  
 }  
   
 int mk_hashentry(hashtbl in_hashtbl, stackitem* in_item, const char* id)  
 {  
   in_item->id= malloc(strlen(id)+1);  
   
   strcpy(in_item->id, id);  
   push(hash(in_hashtbl, id), in_item);  
   
   return 1;  
186  }  }
187    
188  void def_func(hashtbl in_hashtbl, funcp in_func, const char* id)  /* Copy a string onto the stack. */
189    void push_cstring(stackitem **stack_head, 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    mk_hashentry(in_hashtbl, temp, id);    push(stack_head, new_item);
201  }  }
202    
203  void def_sym(hashtbl in_hashtbl, const char* id)  /* Mangle a symbol name to a valid C identifier name */
204  {  char *mangle_str(const char *old_string){
205    stackitem* temp= malloc(sizeof(stackitem));    char validchars[]
206          ="0123456789abcdef";
207    temp->type= symbol;    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  int push_ref(stackitem** stack_head, hashtbl in_hash, const char* in_string)  extern void mangle(environment *env){
224  {    value *new_value;
225    static void* handle= NULL;    char *new_string;
   void* symbol;  
   
   stackitem* new_item= malloc(sizeof(stackitem));  
   new_item->content.ptr= *hash(in_hash, in_string);  
   new_item->type= ref;  
   
   if(new_item->content.ptr==NULL) {  
     if(handle==NULL)  
       handle= dlopen(NULL, RTLD_LAZY);      
226    
227      symbol= dlsym(handle, in_string);    if((env->head)==NULL) {
228      if(dlerror()==NULL)      printerr("Too Few Arguments");
229        def_func(in_hash, symbol, in_string);      env->err=1;
230      else      return;
       def_sym(in_hash, in_string);  
         
     new_item->content.ptr= *hash(in_hash, in_string);  
     new_item->type= ref;  
231    }    }
232    
233    push(stack_head, new_item);    if(env->head->item->type!=string) {
234    return 1;      printerr("Bad Argument Type");
235  }      env->err=2;
236        return;
237      }
238    
239  extern void toss(stackitem** stack_head)    new_string= mangle_str((const char *)(env->head->item->content.ptr));
 {  
   stackitem* temp= *stack_head;  
240    
241    if((*stack_head)==NULL)    toss(env);
242      return;    if(env->err) return;
     
   if((*stack_head)->type==string)  
     free((*stack_head)->content.ptr);  
243    
244    *stack_head= (*stack_head)->next;    new_value= malloc(sizeof(value));
245    free(temp);    new_value->content.ptr= new_string;
246      new_value->type= string;
247      new_value->refcount=1;
248    
249      push_val(&(env->head), 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        /* Intern the new symbol in the hash table */
292        new_value->content.ptr= *new_symbol;
293    
294        /* Try to load the symbol name as an external function, to see if
295           we should bind the symbol to a new function pointer value */
296        if(handle==NULL)            /* If no handle */
297          handle= dlopen(NULL, RTLD_LAZY);
298    
299        funcptr= dlsym(handle, in_string); /* Get function pointer */
300        dlerr=dlerror();
301        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->head), new_item);
317  }  }
318    
319    /* Print newline. */
320  extern void nl()  extern void nl()
321  {  {
322    printf("\n");    printf("\n");
323  }  }
324    
325  void print_(stackitem** stack_head)  /* Gets the type of a value */
326  {  extern void type(environment *env){
327    if((*stack_head)==NULL)    int typenum;
328    
329      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(stackitem** stack_head)  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. */
395    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  /* print_stack(stack); */  /* 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  extern void printstack(stackitem** stack_head)  /* Prints the stack. */
413    extern void printstack(environment *env)
414  {  {
415    if(*stack_head != NULL) {    if(env->head == NULL) {
416      print_st(*stack_head, 1);      return;
     printf("\n");  
417    }    }
418      print_st(env->head, 1);
419      nl();
420  }  }
421    
422    /* Swap the two top elements on the stack. */
423    extern void swap(environment *env)
424    {
425      stackitem *temp= env->head;
426      
427      if(env->head==NULL || env->head->next==NULL) {
428        printerr("Too Few Arguments");
429        env->err=1;
430        return;
431      }
432    
433      env->head= env->head->next;
434      temp->next= env->head->next;
435      env->head->next= temp;
436    }
437    
438  extern void eval(stackitem** stack_head)  /* Rotate the first three elements on the stack. */
439    extern void rot(environment *env)
440  {  {
441    funcp in_func;    stackitem *temp= env->head;
442      
443      if(env->head==NULL || env->head->next==NULL
444          || env->head->next->next==NULL) {
445        printerr("Too Few Arguments");
446        env->err=1;
447        return;
448      }
449    
450      env->head= env->head->next->next;
451      temp->next->next= env->head->next;
452      env->head->next= temp;
453    }
454    
455    /* Recall a value from a symbol, if bound */
456    extern void rcl(environment *env)
457    {
458      value *val;
459    
460      if(env->head == NULL) {
461        printerr("Too Few Arguments");
462        env->err=1;
463        return;
464      }
465    
466    if((*stack_head)==NULL || (*stack_head)->type!=ref)    if(env->head->item->type!=symb) {
467        printerr("Bad Argument Type");
468        env->err=2;
469      return;      return;
470      }
471    
472    if(((stackitem*)(*stack_head)->content.ptr)->type==func) {    val=((symbol *)(env->head->item->content.ptr))->val;
473      in_func= (funcp)((stackitem*)(*stack_head)->content.ptr)->content.ptr;    if(val == NULL){
474      toss(stack_head);      printerr("Unbound Variable");
475      (*in_func)(stack_head);      env->err=3;
476      return;      return;
477    }    }
478      toss(env);            /* toss the symbol */
479      if(env->err) return;
480      push_val(&(env->head), val); /* Return its bound value */
481  }  }
482    
483  int stack_read(stackitem** stack_head, hashtbl in_hash, char* in_line)  /* If the top element is a symbol, determine if it's bound to a
484       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;  
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    if((convert= sscanf(in_line, "\"%[^\"\n\r]\" %[^\n\r]", temp, rest)) >= 1)   eval_start:
     push_cstring(stack_head, temp);  
   else if((convert= sscanf(in_line, "%d %[^\n\r]", &itemp, rest)) >= 1)  
     push_val(stack_head, itemp);  
   else if((convert= sscanf(in_line, "%[^ ;\n\r]%[^\n\r]", temp, rest)) >= 1)  
     push_ref(stack_head, in_hash, temp);  
   else if((convert= sscanf(in_line, "%c%[^\n\r]", temp, rest)) >= 1)  
     if(*temp==';')  
       eval(stack_head);  
499    
500    free(temp);    switch(env->head->item->type) {
501        /* if it's a symbol */
502      case symb:
503        rcl(env);                   /* get its contents */
504        if(env->err) return;
505        if(env->head->item->type!=symb){ /* don't recurse symbols */
506          goto eval_start;
507        }
508        return;
509    
510    if(convert<2) {      /* If it's a lone function value, run it */
511      free(rest);    case func:
512      return 0;      in_func= (funcp)(env->head->item->content.ptr);
513        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->head), 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            if(env->err) return;
536          }
537          iterator= iterator->next;
538        }
539        free_val(temp_val);
540        return;
541    
542      default:
543        return;
544    }    }
     
   stack_read(stack_head, in_hash, rest);  
     
   free(rest);  
   return 1;  
545  }  }
546    
547  extern void pack(stackitem** stack_head)  /* Reverse (flip) a list */
548  {  extern void rev(environment *env){
549    void* delimiter;    stackitem *old_head, *new_head, *item;
550    stackitem *iterator, *temp, *pack;  
551      if((env->head)==NULL) {
552        printerr("Too Few Arguments");
553        env->err=1;
554        return;
555      }
556    
557    if((*stack_head)==NULL)    if(env->head->item->type!=list) {
558        printerr("Bad Argument Type");
559        env->err=2;
560      return;      return;
561      }
562    
563    delimiter= (*stack_head)->content.ptr;    old_head=(stackitem *)(env->head->item->content.ptr);
564    toss(stack_head);    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    iterator= *stack_head;  /* Make a list. */
575    extern void pack(environment *env)
576    {
577      void* delimiter;
578      stackitem *iterator, *temp;
579      value *pack;
580    
581    while(iterator->next!=NULL && iterator->next->content.ptr!=delimiter)    delimiter= env->head->item->content.ptr; /* Get delimiter */
582      iterator= iterator->next;    toss(env);
583    
584    temp= *stack_head;    iterator= env->head;
   *stack_head= iterator->next;  
   iterator->next= NULL;  
     
   if(*stack_head!=NULL && (*stack_head)->content.ptr==delimiter)  
     toss(stack_head);  
585    
586    pack= malloc(sizeof(stackitem));    if(iterator==NULL || iterator->item->content.ptr==delimiter) {
587        temp= NULL;
588        toss(env);
589      } else {
590        /* Search for first delimiter */
591        while(iterator->next!=NULL
592              && iterator->next->item->content.ptr!=delimiter)
593          iterator= iterator->next;
594        
595        /* Extract list */
596        temp= env->head;
597        env->head= iterator->next;
598        iterator->next= NULL;
599        
600        if(env->head!=NULL)
601          toss(env);
602      }
603    
604      /* Push list */
605      pack= malloc(sizeof(value));
606    pack->type= list;    pack->type= list;
607    pack->content.ptr= temp;    pack->content.ptr= temp;
608      pack->refcount= 1;
609    
610      temp= malloc(sizeof(stackitem));
611      temp->item= pack;
612    
613    push(stack_head, pack);    push(&(env->head), temp);
614      rev(env);
615  }  }
616    
617  extern void expand(stackitem** stack_head)  /* Relocate elements of the list on the stack. */
618    extern void expand(environment *env)
619  {  {
620    stackitem *temp, *new_head;    stackitem *temp, *new_head;
621    
622    if((*stack_head)==NULL || (*stack_head)->type!=list)    /* Is top element a list? */
623      if(env->head==NULL) {
624        printerr("Too Few Arguments");
625        env->err=1;
626        return;
627      }
628      if(env->head->item->type!=list) {
629        printerr("Bad Argument Type");
630        env->err=2;
631        return;
632      }
633    
634      rev(env);
635    
636      if(env->err)
637      return;      return;
638    
639    new_head= temp= (*stack_head)->content.ptr;    /* The first list element is the new stack head */
640    toss(stack_head);    new_head= temp= env->head->item->content.ptr;
641    
642      env->head->item->refcount++;
643      toss(env);
644    
645      /* Find the end of the list */
646    while(temp->next!=NULL)    while(temp->next!=NULL)
647      temp= temp->next;      temp= temp->next;
648    
649    temp->next= *stack_head;    /* Connect the tail of the list with the old stack head */
650    *stack_head= new_head;    temp->next= env->head;
651  }    env->head= new_head;          /* ...and voila! */
652    
653  extern void swap(stackitem** stack_head)  }
 {  
   stackitem* temp= (*stack_head);  
     
   if((*stack_head)==NULL || (*stack_head)->next==NULL)  
     return;  
   
   *stack_head= (*stack_head)->next;  
   temp->next= (*stack_head)->next;  
   (*stack_head)->next= temp;  
 }  
654    
655  extern void eq(stackitem** stack_head)  /* Compares two elements by reference. */
656    extern void eq(environment *env)
657  {  {
658    void *left, *right;    void *left, *right;
659    int result;    int result;
660    
661    if((*stack_head)==NULL || (*stack_head)->next==NULL)    if((env->head)==NULL || env->head->next==NULL) {
662        printerr("Too Few Arguments");
663        env->err=1;
664      return;      return;
665      }
666    
667    left= (*stack_head)->content.ptr;    left= env->head->item->content.ptr;
668    right= (*stack_head)->next->content.ptr;    swap(env);
669      right= env->head->item->content.ptr;
670    result= (left==right);    result= (left==right);
671        
672    toss(stack_head); toss(stack_head);    toss(env); toss(env);
673    push_val(stack_head, (left==right));    push_int(&(env->head), result);
674  }  }
675    
676  extern void not(stackitem** stack_head)  /* Negates the top element on the stack. */
677    extern void not(environment *env)
678  {  {
679    int value;    int val;
680    
681    if((*stack_head)==NULL)    if((env->head)==NULL) {
682        printerr("Too Few Arguments");
683        env->err=1;
684      return;      return;
685      }
686    
687    value= (*stack_head)->content.val;    if(env->head->item->type!=integer) {
688    toss(stack_head);      printerr("Bad Argument Type");
689    push_val(stack_head, !value);      env->err=2;
690        return;
691      }
692    
693      val= env->head->item->content.val;
694      toss(env);
695      push_int(&(env->head), !val);
696  }  }
697    
698  extern void neq(stackitem** stack_head)  /* Compares the two top elements on the stack and return 0 if they're the
699       same. */
700    extern void neq(environment *env)
701  {  {
702    eq(stack_head);    eq(env);
703    not(stack_head);    not(env);
704  }  }
705    
706  extern void quit()  /* Give a symbol some content. */
707    extern void def(environment *env)
708    {
709      symbol *sym;
710    
711      /* Needs two values on the stack, the top one must be a symbol */
712      if(env->head==NULL || env->head->next==NULL) {
713        printerr("Too Few Arguments");
714        env->err=1;
715        return;
716      }
717    
718      if(env->head->item->type!=symb) {
719        printerr("Bad Argument Type");
720        env->err=2;
721        return;
722      }
723    
724      /* long names are a pain */
725      sym=env->head->item->content.ptr;
726    
727      /* if the symbol was bound to something else, throw it away */
728      if(sym->val != NULL)
729        free_val(sym->val);
730    
731      /* Bind the symbol to the value */
732      sym->val= env->head->next->item;
733      sym->val->refcount++;         /* Increase the reference counter */
734    
735      toss(env); toss(env);
736    }
737    
738    /* Quit stack. */
739    extern void quit(environment *env)
740  {  {
741    exit(EXIT_SUCCESS);    exit(EXIT_SUCCESS);
742  }  }
743    
744    /* Clear stack */
745    extern void clear(environment *env)
746    {
747      while(env->head!=NULL)
748        toss(env);
749    }
750    
751    /* List all defined words */
752    extern void words(environment *env)
753    {
754      symbol *temp;
755      int i;
756      
757      for(i= 0; i<HASHTBLSIZE; i++) {
758        temp= env->symbols[i];
759        while(temp!=NULL) {
760          printf("%s\n", temp->id);
761          temp= temp->next;
762        }
763      }
764    }
765    
766    /* Forgets a symbol (remove it from the hash table) */
767    extern void forget(environment *env)
768    {
769      char* sym_id;
770      stackitem *stack_head= env->head;
771      symbol **hash_entry, *temp;
772    
773      if(stack_head==NULL) {
774        printerr("Too Few Arguments");
775        env->err=1;
776        return;
777      }
778      
779      if(stack_head->item->type!=symb) {
780        printerr("Bad Argument Type");
781        env->err=2;
782        return;
783      }
784    
785      sym_id= ((symbol*)(stack_head->item->content.ptr))->id;
786      toss(env);
787    
788      hash_entry= hash(env->symbols, sym_id);
789      temp= *hash_entry;
790      *hash_entry= (*hash_entry)->next;
791      
792      if(temp->val!=NULL) {
793        free_val(temp->val);
794      }
795      free(temp->id);
796      free(temp);
797    }
798    
799    /* Returns the current error number to the stack */
800    extern void errn(environment *env){
801      push_int(&(env->head), env->err);
802    }
803    
804    extern void read(environment*);
805    
806  int main()  int main()
807  {  {
808    stackitem* s= NULL;    environment myenv;
   hashtbl myhash;  
   char in_string[100];  
809    
810    init_hashtbl(myhash);    init_env(&myenv);
811    
812    printf("okidok\n ");    while(1) {
813        if(myenv.in_string==NULL)
814          printstack(&myenv);
815        read(&myenv);
816        if(myenv.err) {
817          printf("(error %d) ", myenv.err);
818          myenv.err=0;
819        } else if(myenv.head!=NULL
820                  && myenv.head->item->type==symb
821                  && ((symbol*)(myenv.head->item->content.ptr))->id[0]==';') {
822          toss(&myenv);             /* No error check in main */
823          eval(&myenv);
824        }
825      }
826      quit(&myenv);
827      return EXIT_FAILURE;
828    }
829    
830    while(fgets(in_string, 100, stdin) != NULL) {  /* + */
831      stack_read(&s, myhash, in_string);  extern void sx_2b(environment *env) {
832      printf("okidok\n ");    int a, b;
833      size_t len;
834      char* new_string;
835      value *a_val, *b_val;
836    
837      if((env->head)==NULL || env->head->next==NULL) {
838        printerr("Too Few Arguments");
839        env->err=1;
840        return;
841    }    }
842    
843    exit(EXIT_SUCCESS);    if(env->head->item->type==string
844         && env->head->next->item->type==string) {
845        a_val= env->head->item;
846        b_val= env->head->next->item;
847        a_val->refcount++;
848        b_val->refcount++;
849        toss(env); if(env->err) return;
850        toss(env); if(env->err) return;
851        len= strlen(a_val->content.ptr)+strlen(b_val->content.ptr)+1;
852        new_string= malloc(len);
853        strcpy(new_string, b_val->content.ptr);
854        strcat(new_string, a_val->content.ptr);
855        free_val(a_val); free_val(b_val);
856        push_cstring(&(env->head), new_string);
857        free(new_string);
858        return;
859      }
860      
861      if(env->head->item->type!=integer
862         || env->head->next->item->type!=integer) {
863        printerr("Bad Argument Type");
864        env->err=2;
865        return;
866      }
867      a=env->head->item->content.val;
868      toss(env);
869      if(env->err) return;
870      if(env->head->item->refcount == 1)
871        env->head->item->content.val += a;
872      else {
873        b=env->head->item->content.val;
874        toss(env);
875        if(env->err) return;
876        push_int(&(env->head), a+b);
877      }
878    }
879    
880    /* - */
881    extern void sx_2d(environment *env) {
882      int a, b;
883    
884      if((env->head)==NULL || env->head->next==NULL) {
885        printerr("Too Few Arguments");
886        env->err=1;
887        return;
888      }
889      
890      if(env->head->item->type!=integer
891         || env->head->next->item->type!=integer) {
892        printerr("Bad Argument Type");
893        env->err=2;
894        return;
895      }
896      a=env->head->item->content.val;
897      toss(env);
898      if(env->err) return;
899      if(env->head->item->refcount == 1)
900        env->head->item->content.val -= a;
901      else {
902        b=env->head->item->content.val;
903        toss(env);
904        if(env->err) return;
905        push_int(&(env->head), b-a);
906      }
907    }
908    
909    /* > */
910    extern void sx_3e(environment *env) {
911      int a, b;
912    
913      if((env->head)==NULL || env->head->next==NULL) {
914        printerr("Too Few Arguments");
915        env->err=1;
916        return;
917      }
918      
919      if(env->head->item->type!=integer
920         || env->head->next->item->type!=integer) {
921        printerr("Bad Argument Type");
922        env->err=2;
923        return;
924      }
925      a=env->head->item->content.val;
926      toss(env);
927      if(env->err) return;
928      if(env->head->item->refcount == 1)
929        env->head->item->content.val = (env->head->item->content.val > a);
930      else {
931        b=env->head->item->content.val;
932        toss(env);
933        if(env->err) return;
934        push_int(&(env->head), b>a);
935      }
936    }
937    
938    /* Return copy of a value */
939    value *copy_val(value *old_value){
940      stackitem *old_item, *new_item, *prev_item;
941    
942      value *new_value=malloc(sizeof(value));
943    
944      new_value->type=old_value->type;
945      new_value->refcount=0;        /* This is increased if/when this
946                                       value is referenced somewhere, like
947                                       in a stack item or a variable */
948      switch(old_value->type){
949      case integer:
950        new_value->content.val=old_value->content.val;
951        break;
952      case string:
953        (char *)(new_value->content.ptr)
954          = strdup((char *)(old_value->content.ptr));
955        break;
956      case func:
957      case symb:
958        new_value->content.ptr=old_value->content.ptr;
959        break;
960      case list:
961        new_value->content.ptr=NULL;
962    
963        prev_item=NULL;
964        old_item=(stackitem *)(old_value->content.ptr);
965    
966        while(old_item != NULL) {   /* While list is not empty */
967          new_item= malloc(sizeof(stackitem));
968          new_item->item=copy_val(old_item->item); /* recurse */
969          new_item->next=NULL;
970          if(prev_item != NULL)     /* If this wasn't the first item */
971            prev_item->next=new_item; /* point the previous item to the
972                                         new item */
973          else
974            new_value->content.ptr=new_item;
975          old_item=old_item->next;
976          prev_item=new_item;
977        }    
978        break;
979      }
980      return new_value;
981    }
982    
983    /* duplicates an item on the stack */
984    extern void dup(environment *env) {
985      if((env->head)==NULL) {
986        printerr("Too Few Arguments");
987        env->err=1;
988        return;
989      }
990      push_val(&(env->head), copy_val(env->head->item));
991  }  }
992    
993  /* Local Variables: */  /* "if", If-Then */
994  /* compile-command:"make CFLAGS=\"-Wall -g -rdynamic -ldl\" stack" */  extern void sx_6966(environment *env) {
995  /* End: */  
996      int truth;
997    
998      if((env->head)==NULL || env->head->next==NULL) {
999        printerr("Too Few Arguments");
1000        env->err=1;
1001        return;
1002      }
1003    
1004      if(env->head->next->item->type != integer) {
1005        printerr("Bad Argument Type");
1006        env->err=2;
1007        return;
1008      }
1009      
1010      swap(env);
1011      if(env->err) return;
1012      
1013      truth=env->head->item->content.val;
1014    
1015      toss(env);
1016      if(env->err) return;
1017    
1018      if(truth)
1019        eval(env);
1020      else
1021        toss(env);
1022    }
1023    
1024    /* If-Then-Else */
1025    extern void ifelse(environment *env) {
1026    
1027      int truth;
1028    
1029      if((env->head)==NULL || env->head->next==NULL
1030         || env->head->next->next==NULL) {
1031        printerr("Too Few Arguments");
1032        env->err=1;
1033        return;
1034      }
1035    
1036      if(env->head->next->next->item->type != integer) {
1037        printerr("Bad Argument Type");
1038        env->err=2;
1039        return;
1040      }
1041      
1042      rot(env);
1043      if(env->err) return;
1044      
1045      truth=env->head->item->content.val;
1046    
1047      toss(env);
1048      if(env->err) return;
1049    
1050      if(!truth)
1051        swap(env);
1052      if(env->err) return;
1053    
1054      toss(env);
1055      if(env->err) return;
1056    
1057      eval(env);
1058    }
1059    
1060    /* while */
1061    extern void sx_7768696c65(environment *env) {
1062    
1063      int truth;
1064      value *loop, *test;
1065    
1066      if((env->head)==NULL || env->head->next==NULL) {
1067        printerr("Too Few Arguments");
1068        env->err=1;
1069        return;
1070      }
1071    
1072      loop= env->head->item;
1073      loop->refcount++;
1074      toss(env); if(env->err) return;
1075    
1076      test= env->head->item;
1077      test->refcount++;
1078      toss(env); if(env->err) return;
1079    
1080      do {
1081        push_val(&(env->head), test);
1082        eval(env);
1083        
1084        if(env->head->item->type != integer) {
1085          printerr("Bad Argument Type");
1086          env->err=2;
1087          return;
1088        }
1089        
1090        truth= env->head->item->content.val;
1091        toss(env); if(env->err) return;
1092        
1093        if(truth) {
1094          push_val(&(env->head), loop);
1095          eval(env);
1096        } else {
1097          toss(env);
1098        }
1099      
1100      } while(truth);
1101    
1102      free_val(test);
1103      free_val(loop);
1104    }
1105    
1106    /* For-loop */
1107    extern void sx_666f72(environment *env) {
1108      
1109      value *loop, *foo;
1110      stackitem *iterator;
1111      
1112      if((env->head)==NULL || env->head->next==NULL) {
1113        printerr("Too Few Arguments");
1114        env->err=1;
1115        return;
1116      }
1117    
1118      if(env->head->next->item->type != list) {
1119        printerr("Bad Argument Type");
1120        env->err=2;
1121        return;
1122      }
1123    
1124      loop= env->head->item;
1125      loop->refcount++;
1126      toss(env); if(env->err) return;
1127    
1128      foo= env->head->item;
1129      foo->refcount++;
1130      toss(env); if(env->err) return;
1131    
1132      iterator= foo->content.ptr;
1133    
1134      while(iterator!=NULL) {
1135        push_val(&(env->head), iterator->item);
1136        push_val(&(env->head), loop);
1137        eval(env); if(env->err) return;
1138        iterator= iterator->next;
1139      }
1140    
1141      free_val(loop);
1142      free_val(foo);
1143    }
1144    
1145    /* 'to' */
1146    extern void to(environment *env) {
1147      int i, start, ending;
1148      
1149      if((env->head)==NULL || env->head->next==NULL) {
1150        printerr("Too Few Arguments");
1151        env->err=1;
1152        return;
1153      }
1154    
1155      if(env->head->item->type!=integer
1156         || env->head->next->item->type!=integer) {
1157        printerr("Bad Argument Type");
1158        env->err=2;
1159        return;
1160      }
1161    
1162      ending= env->head->item->content.val;
1163      toss(env); if(env->err) return;
1164      start= env->head->item->content.val;
1165      toss(env); if(env->err) return;
1166    
1167      push_sym(env, "[");
1168    
1169      if(ending>=start) {
1170        for(i= start; i<=ending; i++)
1171          push_int(&(env->head), i);
1172      } else {
1173        for(i= start; i>=ending; i--)
1174          push_int(&(env->head), i);
1175      }
1176    
1177      push_sym(env, "[");
1178      pack(env); if(env->err) return;
1179    }
1180    
1181    /* Read a string */
1182    extern void readline(environment *env) {
1183      char in_string[101];
1184    
1185      fgets(in_string, 100, stdin);
1186      push_cstring(&(env->head), in_string);
1187    }
1188    
1189    /* Read a value and place on stack */
1190    extern void read(environment *env) {
1191      const char symbform[]= "%[a-zA-Z0-9!$%*+./:<=>?@^_~-]%[\001-\377]";
1192      const char strform[]= "\"%[^\"]\"%[\001-\377]";
1193      const char intform[]= "%i%[\001-\377]";
1194      const char blankform[]= "%*[ \t]%[\001-\377]";
1195      const char ebrackform[]= "%*1[]]%[\001-\377]";
1196      const char semicform[]= "%*1[;]%[\001-\377]";
1197      const char bbrackform[]= "%*1[[]%[\001-\377]";
1198    
1199      int itemp;
1200      static int depth= 0;
1201      char *rest, *match;
1202      size_t inlength;
1203    
1204      if(env->in_string==NULL) {
1205        readline(env); if(env->err) return;
1206        
1207        env->in_string= malloc(strlen(env->head->item->content.ptr)+1);
1208        strcpy(env->in_string, env->head->item->content.ptr);
1209        toss(env); if(env->err) return;
1210      }
1211      
1212      inlength= strlen(env->in_string)+1;
1213      match= malloc(inlength);
1214      rest= malloc(inlength);
1215    
1216      if(sscanf(env->in_string, blankform, rest)) {
1217        ;
1218      } else if(sscanf(env->in_string, intform, &itemp, rest) > 0) {
1219        push_int(&(env->head), itemp);
1220      } else if(sscanf(env->in_string, strform, match, rest) > 0) {
1221        push_cstring(&(env->head), match);
1222      } else if(sscanf(env->in_string, symbform, match, rest) > 0) {
1223        push_sym(env, match);
1224      } else if(sscanf(env->in_string, ebrackform, rest) > 0) {
1225        push_sym(env, "[");
1226        pack(env); if(env->err) return;
1227        if(depth!=0) depth--;
1228      } else if(sscanf(env->in_string, semicform, rest) > 0) {
1229        push_sym(env, ";");
1230      } else if(sscanf(env->in_string, bbrackform, rest) > 0) {
1231        push_sym(env, "[");
1232        depth++;
1233      } else {
1234        free(rest);
1235        rest= NULL;
1236      }
1237          
1238      free(env->in_string);
1239      free(match);
1240    
1241      env->in_string= rest;
1242    
1243      if(depth)
1244        return read(env);
1245    }

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.71

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26