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

Diff of /stack/stack.c

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

revision 1.45 by teddy, Thu Feb 7 01:06:44 2002 UTC revision 1.53 by teddy, Thu Feb 7 23:56:54 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 65536
13    
# Line 57  typedef struct { Line 57  typedef struct {
57    stackitem *head;              /* Head of the stack */    stackitem *head;              /* Head of the stack */
58    hashtbl symbols;              /* Hash table of all variable bindings */    hashtbl symbols;              /* Hash table of all variable bindings */
59    int err;                      /* Error flag */    int err;                      /* Error flag */
60      int non_eval_flag;
61  } environment;  } environment;
62    
63  /* A type for pointers to external functions */  /* A type for pointers to external functions */
# Line 66  typedef void (*funcp)(environment *); /* Line 67  typedef void (*funcp)(environment *); /*
67  /* Initialize a newly created environment */  /* Initialize a newly created environment */
68  void init_env(environment *env)  void init_env(environment *env)
69  {  {
70    long i;    int i;
71    
72    env->err=0;    env->err= 0;
73      env->non_eval_flag= 0;
74    for(i= 0; i<HASHTBLSIZE; i++)    for(i= 0; i<HASHTBLSIZE; i++)
75      env->symbols[i]= NULL;      env->symbols[i]= NULL;
76  }  }
77    
78    void printerr(const char* in_string) {
79      fprintf(stderr, "Err: %s\n", in_string);
80    }
81    
82    /* Throw away a value */
83    void free_val(value *val){
84      stackitem *item, *temp;
85    
86      val->refcount--;              /* Decrease the reference count */
87      if(val->refcount == 0){
88        switch (val->type){         /* and free the contents if necessary */
89        case string:
90          free(val->content.ptr);
91          break;
92        case list:                  /* lists needs to be freed recursively */
93          item=val->content.ptr;
94          while(item != NULL) {     /* for all stack items */
95            free_val(item->item);   /* free the value */
96            temp=item->next;        /* save next ptr */
97            free(item);             /* free the stackitem */
98            item=temp;              /* go to next stackitem */
99          }
100          free(val);                /* Free the actual list value */
101          break;
102        default:
103          break;
104        }
105      }
106    }
107    
108    /* Discard the top element of the stack. */
109    extern void toss(environment *env)
110    {
111      stackitem *temp= env->head;
112    
113      if((env->head)==NULL) {
114        printerr("Too Few Arguments");
115        env->err=1;
116        return;
117      }
118      
119      free_val(env->head->item);    /* Free the value */
120      env->head= env->head->next;   /* Remove the top stack item */
121      free(temp);                   /* Free the old top stack item */
122    }
123    
124  /* Returns a pointer to a pointer to an element in the hash table. */  /* Returns a pointer to a pointer to an element in the hash table. */
125  symbol **hash(hashtbl in_hashtbl, const char *in_string)  symbol **hash(hashtbl in_hashtbl, const char *in_string)
126  {  {
127    long i= 0;    int i= 0;
128    unsigned long out_hash= 0;    unsigned int out_hash= 0;
129    char key= '\0';    char key= '\0';
130    symbol **position;    symbol **position;
131        
# Line 147  void push_cstring(stackitem **stack_head Line 195  void push_cstring(stackitem **stack_head
195    push(stack_head, new_item);    push(stack_head, new_item);
196  }  }
197    
198    /* Mangle a symbol name to a valid C identifier name */
199    char *mangle_str(const char *old_string){
200      char validchars[]
201        ="0123456789abcdef";
202      char *new_string, *current;
203    
204      new_string=malloc((strlen(old_string)*2)+4);
205      strcpy(new_string, "sx_");    /* Stack eXternal */
206      current=new_string+3;
207      while(old_string[0] != '\0'){
208        current[0]=validchars[(unsigned char)(old_string[0])/16];
209        current[1]=validchars[(unsigned char)(old_string[0])%16];
210        current+=2;
211        old_string++;
212      }
213      current[0]='\0';
214    
215      return new_string;            /* The caller must free() it */
216    }
217    
218    extern void mangle(environment *env){
219      value *new_value;
220      char *new_string;
221    
222      if((env->head)==NULL) {
223        printerr("Too Few Arguments");
224        env->err=1;
225        return;
226      }
227    
228      if(env->head->item->type!=string) {
229        printerr("Bad Argument Type");
230        env->err=2;
231        return;
232      }
233    
234      new_string= mangle_str((const char *)(env->head->item->content.ptr));
235    
236      toss(env);
237      if(env->err) return;
238    
239      new_value= malloc(sizeof(value));
240      new_value->content.ptr= new_string;
241      new_value->type= string;
242      new_value->refcount=1;
243    
244      push_val(&(env->head), new_value);
245    }
246    
247  /* Push a symbol onto the stack. */  /* Push a symbol onto the stack. */
248  void push_sym(environment *env, const char *in_string)  void push_sym(environment *env, const char *in_string)
249  {  {
# Line 161  void push_sym(environment *env, const ch Line 258  void push_sym(environment *env, const ch
258    void *funcptr;                /* A function pointer */    void *funcptr;                /* A function pointer */
259    
260    static void *handle= NULL;    /* Dynamic linker handle */    static void *handle= NULL;    /* Dynamic linker handle */
261      const char *dlerr;            /* Dynamic linker error */
262      char *mangled;                /* Mangled function name */
263    
264    /* Create a new stack item containing a new value */    /* Create a new stack item containing a new value */
265    new_item= malloc(sizeof(stackitem));    new_item= malloc(sizeof(stackitem));
# Line 193  void push_sym(environment *env, const ch Line 292  void push_sym(environment *env, const ch
292        handle= dlopen(NULL, RTLD_LAZY);        handle= dlopen(NULL, RTLD_LAZY);
293    
294      funcptr= dlsym(handle, in_string); /* Get function pointer */      funcptr= dlsym(handle, in_string); /* Get function pointer */
295      if(dlerror()==NULL) {       /* If a function was found */      dlerr=dlerror();
296        if(dlerr != NULL) {         /* If no function was found */
297          mangled=mangle_str(in_string);
298          funcptr= dlsym(handle, mangled); /* try mangling it */
299          free(mangled);
300          dlerr=dlerror();
301        }
302        if(dlerr==NULL) {           /* If a function was found */
303        new_fvalue= malloc(sizeof(value)); /* Create a new value */        new_fvalue= malloc(sizeof(value)); /* Create a new value */
304        new_fvalue->type=func;    /* The new value is a function pointer */        new_fvalue->type=func;    /* The new value is a function pointer */
305        new_fvalue->content.ptr=funcptr; /* Store function pointer */        new_fvalue->content.ptr=funcptr; /* Store function pointer */
# Line 205  void push_sym(environment *env, const ch Line 311  void push_sym(environment *env, const ch
311    push(&(env->head), new_item);    push(&(env->head), new_item);
312  }  }
313    
 void printerr(const char* in_string) {  
   fprintf(stderr, "Err: %s\n", in_string);  
 }  
   
 /* Throw away a value */  
 void free_val(value *val){  
   stackitem *item, *temp;  
   
   val->refcount--;              /* Decrease the reference count */  
   if(val->refcount == 0){  
     switch (val->type){         /* and free the contents if necessary */  
     case string:  
       free(val->content.ptr);  
       break;  
     case list:                  /* lists needs to be freed recursively */  
       item=val->content.ptr;  
       while(item != NULL) {     /* for all stack items */  
         free_val(item->item);   /* free the value */  
         temp=item->next;        /* save next ptr */  
         free(item);             /* free the stackitem */  
         item=temp;              /* go to next stackitem */  
       }  
       free(val);                /* Free the actual list value */  
       break;  
     default:  
       break;  
     }  
   }  
 }  
   
 /* Discard the top element of the stack. */  
 extern void toss(environment *env)  
 {  
   stackitem *temp= env->head;  
   
   if((env->head)==NULL) {  
     printerr("Too Few Arguments");  
     env->err=1;  
     return;  
   }  
     
   free_val(env->head->item);    /* Free the value */  
   env->head= env->head->next;   /* Remove the top stack item */  
   free(temp);                   /* Free the old top stack item */  
 }  
   
314  /* Print newline. */  /* Print newline. */
315  extern void nl()  extern void nl()
316  {  {
# Line 350  void print_st(stackitem *stack_head, lon Line 410  void print_st(stackitem *stack_head, lon
410    nl();    nl();
411  }  }
412    
   
   
413  /* Prints the stack. */  /* Prints the stack. */
414  extern void printstack(environment *env)  extern void printstack(environment *env)
415  {  {
# Line 367  extern void swap(environment *env) Line 425  extern void swap(environment *env)
425  {  {
426    stackitem *temp= env->head;    stackitem *temp= env->head;
427        
428    if((env->head)==NULL) {    if(env->head==NULL || env->head->next==NULL) {
     printerr("Too Few Arguments");  
     env->err=1;  
     return;  
   }  
   
   if(env->head->next==NULL) {  
429      printerr("Too Few Arguments");      printerr("Too Few Arguments");
430      env->err=1;      env->err=1;
431      return;      return;
# Line 384  extern void swap(environment *env) Line 436  extern void swap(environment *env)
436    env->head->next= temp;    env->head->next= temp;
437  }  }
438    
 stackitem* copy(stackitem* in_item)  
 {  
   stackitem *out_item= malloc(sizeof(stackitem));  
   
   memcpy(out_item, in_item, sizeof(stackitem));  
   out_item->next= NULL;  
   
   return out_item;  
 }  
   
439  /* Recall a value from a symbol, if bound */  /* Recall a value from a symbol, if bound */
440  extern void rcl(environment *env)  extern void rcl(environment *env)
441  {  {
# Line 422  extern void rcl(environment *env) Line 464  extern void rcl(environment *env)
464    push_val(&(env->head), val); /* Return its bound value */    push_val(&(env->head), val); /* Return its bound value */
465  }  }
466    
467    void stack_read(environment*, char*);
468    
469  /* If the top element is a symbol, determine if it's bound to a  /* If the top element is a symbol, determine if it's bound to a
470     function value, and if it is, toss the symbol and execute the     function value, and if it is, toss the symbol and execute the
471     function. */     function. */
# Line 430  extern void eval(environment *env) Line 474  extern void eval(environment *env)
474    funcp in_func;    funcp in_func;
475    value* temp_val;    value* temp_val;
476    stackitem* iterator;    stackitem* iterator;
477      char* temp_string;
478    
479    if(env->head==NULL) {    if(env->head==NULL) {
480      printerr("Too Few Arguments");      printerr("Too Few Arguments");
# Line 437  extern void eval(environment *env) Line 482  extern void eval(environment *env)
482      return;      return;
483    }    }
484    
485    /* if it's a symbol */    switch(env->head->item->type) {
486    if(env->head->item->type==symb) {      /* if it's a symbol */
487      case symb:
488      rcl(env);                   /* get its contents */      rcl(env);                   /* get its contents */
489      if(env->err) return;      if(env->err) return;
490      if(env->head->item->type!=symb){ /* don't recurse symbols */      if(env->head->item->type!=symb){ /* don't recurse symbols */
491        eval(env);                        /* evaluate the value */        eval(env);                        /* evaluate the value */
492        return;        return;
493      }      }
494    }      break;
495    
496    /* If it's a lone function value, run it */      /* If it's a lone function value, run it */
497    if(env->head->item->type==func) {    case func:
498      in_func= (funcp)(env->head->item->content.ptr);      in_func= (funcp)(env->head->item->content.ptr);
499      toss(env);      toss(env);
500      if(env->err) return;      if(env->err) return;
501      (*in_func)(env);      (*in_func)(env);
502      return;      break;
   }  
503    
504    /* If it's a list */      /* If it's a list */
505    if(env->head->item->type==list) {    case list:
506      temp_val= env->head->item;      temp_val= env->head->item;
507      env->head->item->refcount++;      env->head->item->refcount++;
508      toss(env);      toss(env);
# Line 471  extern void eval(environment *env) Line 515  extern void eval(environment *env)
515          toss(env);          toss(env);
516          if(env->err) return;          if(env->err) return;
517          eval(env);          eval(env);
518            if(env->err) return;
519        }        }
520        iterator= iterator->next;        iterator= iterator->next;
521      }      }
522      free_val(temp_val);      free_val(temp_val);
523        break;
524    
525        /* If it's a string */
526      case string:
527        temp_val= env->head->item;
528        env->head->item->refcount++;
529        toss(env);
530        if(env->err) return;
531        temp_string= malloc(strlen((char*)temp_val->content.ptr)+5);
532        strcpy(temp_string, "[ ");
533        strcat(temp_string, (char*)temp_val->content.ptr);
534        strcat(temp_string, " ]");
535        stack_read(env, temp_string);
536        eval(env);
537        if(env->err) return;
538        free_val(temp_val);
539        free(temp_string);
540        break;
541    
542      default:
543    }    }
544  }  }
545    
# Line 555  void stack_read(environment *env, char * Line 620  void stack_read(environment *env, char *
620    int itemp;    int itemp;
621    size_t inlength= strlen(in_line)+1;    size_t inlength= strlen(in_line)+1;
622    int convert= 0;    int convert= 0;
   static int non_eval_flag= 0;  
623    
624    temp= malloc(inlength);    temp= malloc(inlength);
625    rest= malloc(inlength);    rest= malloc(inlength);
# Line 591  void stack_read(environment *env, char * Line 655  void stack_read(environment *env, char *
655      /* If single char */      /* If single char */
656      if((convert= sscanf(in_line, "%c%[^\n\r]", temp, rest))) {      if((convert= sscanf(in_line, "%c%[^\n\r]", temp, rest))) {
657        if(*temp==';') {        if(*temp==';') {
658          if(!non_eval_flag) {          if(!env->non_eval_flag) {
659            eval(env);            /* Evaluate top element */            eval(env);            /* Evaluate top element */
660            break;            break;
661          }          }
# Line 603  void stack_read(environment *env, char * Line 667  void stack_read(environment *env, char *
667        if(*temp==']') {        if(*temp==']') {
668          push_sym(env, "[");          push_sym(env, "[");
669          pack(env);          pack(env);
670          if(non_eval_flag!=0)          if(env->non_eval_flag)
671            non_eval_flag--;            env->non_eval_flag--;
672          break;          break;
673        }        }
674    
675        if(*temp=='[') {        if(*temp=='[') {
676          push_sym(env, "[");          push_sym(env, "[");
677          non_eval_flag++;          env->non_eval_flag++;
678          break;          break;
679        }        }
680      }      }
# Line 835  int main() Line 899  int main()
899    quit(&myenv);    quit(&myenv);
900    return EXIT_FAILURE;    return EXIT_FAILURE;
901  }  }
902    
903    /* + */
904    extern void sx_2b(environment *env) {
905      int a, b;
906      size_t len;
907      char* new_string;
908      value *a_val, *b_val;
909    
910      if((env->head)==NULL || env->head->next==NULL) {
911        printerr("Too Few Arguments");
912        env->err=1;
913        return;
914      }
915    
916      if(env->head->item->type==string
917         && env->head->next->item->type==string) {
918        a_val= env->head->item;
919        b_val= env->head->next->item;
920        a_val->refcount++;
921        b_val->refcount++;
922        toss(env); if(env->err) return;
923        toss(env); if(env->err) return;
924        len= strlen(a_val->content.ptr)+strlen(b_val->content.ptr)+1;
925        new_string= malloc(len);
926        strcpy(new_string, b_val->content.ptr);
927        strcat(new_string, a_val->content.ptr);
928        free_val(a_val); free_val(b_val);
929        push_cstring(&(env->head), new_string);
930        free(new_string);
931        return;
932      }
933      
934      if(env->head->item->type!=integer
935         || env->head->next->item->type!=integer) {
936        printerr("Bad Argument Type");
937        env->err=2;
938        return;
939      }
940      a=env->head->item->content.val;
941      toss(env);
942      if(env->err) return;
943      b=env->head->item->content.val;
944      toss(env);
945      if(env->err) return;
946      push_int(&(env->head), a+b);
947    }

Legend:
Removed from v.1.45  
changed lines
  Added in v.1.53

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26