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

Diff of /stack/stack.c

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

revision 1.46 by masse, Thu Feb 7 03:56:39 2002 UTC revision 1.63 by masse, Fri Feb 8 13:01:16 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 48  typedef symbol *hashtbl[HASHTBLSIZE]; /* Line 48  typedef symbol *hashtbl[HASHTBLSIZE]; /*
48  typedef struct stackitem_struct  typedef struct stackitem_struct
49  {  {
50    value *item;                  /* The value on the stack */    value *item;                  /* The value on the stack */
51                                    /* (This is never NULL) */
52    struct stackitem_struct *next; /* Next item */    struct stackitem_struct *next; /* Next item */
53  } stackitem;  } stackitem;
54    
# Line 75  void init_env(environment *env) Line 76  void init_env(environment *env)
76      env->symbols[i]= NULL;      env->symbols[i]= NULL;
77  }  }
78    
79    void printerr(const char* in_string) {
80      fprintf(stderr, "Err: %s\n", in_string);
81    }
82    
83    /* Throw away a value */
84    void free_val(value *val){
85      stackitem *item, *temp;
86    
87      val->refcount--;              /* Decrease the reference count */
88      if(val->refcount == 0){
89        switch (val->type){         /* and free the contents if necessary */
90        case string:
91          free(val->content.ptr);
92          break;
93        case list:                  /* lists needs to be freed recursively */
94          item=val->content.ptr;
95          while(item != NULL) {     /* for all stack items */
96            free_val(item->item);   /* free the value */
97            temp=item->next;        /* save next ptr */
98            free(item);             /* free the stackitem */
99            item=temp;              /* go to next stackitem */
100          }
101          free(val);                /* Free the actual list value */
102          break;
103        case integer:
104        case func:
105        case symb:
106          break;
107        }
108      }
109    }
110    
111    /* Discard the top element of the stack. */
112    extern void toss(environment *env)
113    {
114      stackitem *temp= env->head;
115    
116      if((env->head)==NULL) {
117        printerr("Too Few Arguments");
118        env->err=1;
119        return;
120      }
121      
122      free_val(env->head->item);    /* Free the value */
123      env->head= env->head->next;   /* Remove the top stack item */
124      free(temp);                   /* Free the old top stack item */
125    }
126    
127  /* 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. */
128  symbol **hash(hashtbl in_hashtbl, const char *in_string)  symbol **hash(hashtbl in_hashtbl, const char *in_string)
129  {  {
# Line 149  void push_cstring(stackitem **stack_head Line 198  void push_cstring(stackitem **stack_head
198    push(stack_head, new_item);    push(stack_head, new_item);
199  }  }
200    
201    /* Mangle a symbol name to a valid C identifier name */
202    char *mangle_str(const char *old_string){
203      char validchars[]
204        ="0123456789abcdef";
205      char *new_string, *current;
206    
207      new_string=malloc((strlen(old_string)*2)+4);
208      strcpy(new_string, "sx_");    /* Stack eXternal */
209      current=new_string+3;
210      while(old_string[0] != '\0'){
211        current[0]=validchars[(unsigned char)(old_string[0])/16];
212        current[1]=validchars[(unsigned char)(old_string[0])%16];
213        current+=2;
214        old_string++;
215      }
216      current[0]='\0';
217    
218      return new_string;            /* The caller must free() it */
219    }
220    
221    extern void mangle(environment *env){
222      value *new_value;
223      char *new_string;
224    
225      if((env->head)==NULL) {
226        printerr("Too Few Arguments");
227        env->err=1;
228        return;
229      }
230    
231      if(env->head->item->type!=string) {
232        printerr("Bad Argument Type");
233        env->err=2;
234        return;
235      }
236    
237      new_string= mangle_str((const char *)(env->head->item->content.ptr));
238    
239      toss(env);
240      if(env->err) return;
241    
242      new_value= malloc(sizeof(value));
243      new_value->content.ptr= new_string;
244      new_value->type= string;
245      new_value->refcount=1;
246    
247      push_val(&(env->head), new_value);
248    }
249    
250  /* Push a symbol onto the stack. */  /* Push a symbol onto the stack. */
251  void push_sym(environment *env, const char *in_string)  void push_sym(environment *env, const char *in_string)
252  {  {
# Line 163  void push_sym(environment *env, const ch Line 261  void push_sym(environment *env, const ch
261    void *funcptr;                /* A function pointer */    void *funcptr;                /* A function pointer */
262    
263    static void *handle= NULL;    /* Dynamic linker handle */    static void *handle= NULL;    /* Dynamic linker handle */
264      const char *dlerr;            /* Dynamic linker error */
265      char *mangled;                /* Mangled function name */
266    
267    /* Create a new stack item containing a new value */    /* Create a new stack item containing a new value */
268    new_item= malloc(sizeof(stackitem));    new_item= malloc(sizeof(stackitem));
# Line 195  void push_sym(environment *env, const ch Line 295  void push_sym(environment *env, const ch
295        handle= dlopen(NULL, RTLD_LAZY);        handle= dlopen(NULL, RTLD_LAZY);
296    
297      funcptr= dlsym(handle, in_string); /* Get function pointer */      funcptr= dlsym(handle, in_string); /* Get function pointer */
298      if(dlerror()==NULL) {       /* If a function was found */      dlerr=dlerror();
299        if(dlerr != NULL) {         /* If no function was found */
300          mangled=mangle_str(in_string);
301          funcptr= dlsym(handle, mangled); /* try mangling it */
302          free(mangled);
303          dlerr=dlerror();
304        }
305        if(dlerr==NULL) {           /* If a function was found */
306        new_fvalue= malloc(sizeof(value)); /* Create a new value */        new_fvalue= malloc(sizeof(value)); /* Create a new value */
307        new_fvalue->type=func;    /* The new value is a function pointer */        new_fvalue->type=func;    /* The new value is a function pointer */
308        new_fvalue->content.ptr=funcptr; /* Store function pointer */        new_fvalue->content.ptr=funcptr; /* Store function pointer */
# Line 207  void push_sym(environment *env, const ch Line 314  void push_sym(environment *env, const ch
314    push(&(env->head), new_item);    push(&(env->head), new_item);
315  }  }
316    
 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 */  
 }  
   
317  /* Print newline. */  /* Print newline. */
318  extern void nl()  extern void nl()
319  {  {
# Line 286  extern void type(environment *env){ Line 347  extern void type(environment *env){
347    case list:    case list:
348      push_sym(env, "list");      push_sym(env, "list");
349      break;      break;
   default:  
     push_sym(env, "unknown");  
     break;  
350    }    }
351  }      }    
352    
# Line 300  void print_h(stackitem *stack_head) Line 358  void print_h(stackitem *stack_head)
358      printf("%d", stack_head->item->content.val);      printf("%d", stack_head->item->content.val);
359      break;      break;
360    case string:    case string:
361      printf("\"%s\"", (char*)stack_head->item->content.ptr);      printf("%s", (char*)stack_head->item->content.ptr);
362      break;      break;
363    case symb:    case symb:
364      printf("%s", ((symbol *)(stack_head->item->content.ptr))->id);      printf("%s", ((symbol *)(stack_head->item->content.ptr))->id);
# Line 319  void print_h(stackitem *stack_head) Line 377  void print_h(stackitem *stack_head)
377      }      }
378      printf("]");      printf("]");
379      break;      break;
   default:  
     printf("#<unknown %p>", (stack_head->item->content.ptr));  
     break;  
380    }    }
381  }  }
382    
# Line 378  extern void swap(environment *env) Line 433  extern void swap(environment *env)
433    env->head->next= temp;    env->head->next= temp;
434  }  }
435    
436    /* Rotate the first three elements on the stack. */
437    extern void rot(environment *env)
438    {
439      stackitem *temp= env->head;
440      
441      if(env->head==NULL || env->head->next==NULL
442          || env->head->next->next==NULL) {
443        printerr("Too Few Arguments");
444        env->err=1;
445        return;
446      }
447    
448      env->head= env->head->next->next;
449      temp->next->next= env->head->next;
450      env->head->next= temp;
451    }
452    
453  /* Recall a value from a symbol, if bound */  /* Recall a value from a symbol, if bound */
454  extern void rcl(environment *env)  extern void rcl(environment *env)
455  {  {
# Line 406  extern void rcl(environment *env) Line 478  extern void rcl(environment *env)
478    push_val(&(env->head), val); /* Return its bound value */    push_val(&(env->head), val); /* Return its bound value */
479  }  }
480    
 extern void pack(environment*);  
481  void stack_read(environment*, char*);  void stack_read(environment*, char*);
482    
   
483  /* 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
484     function value, and if it is, toss the symbol and execute the     function value, and if it is, toss the symbol and execute the
485     function. */     function. */
# Line 418  extern void eval(environment *env) Line 488  extern void eval(environment *env)
488    funcp in_func;    funcp in_func;
489    value* temp_val;    value* temp_val;
490    stackitem* iterator;    stackitem* iterator;
491      char* temp_string;
492    
493    if(env->head==NULL) {    if(env->head==NULL) {
494      printerr("Too Few Arguments");      printerr("Too Few Arguments");
# Line 431  extern void eval(environment *env) Line 502  extern void eval(environment *env)
502      rcl(env);                   /* get its contents */      rcl(env);                   /* get its contents */
503      if(env->err) return;      if(env->err) return;
504      if(env->head->item->type!=symb){ /* don't recurse symbols */      if(env->head->item->type!=symb){ /* don't recurse symbols */
505        eval(env);                        /* evaluate the value */        return eval(env);         /* evaluate the value */
       return;  
506      }      }
507      break;      return;
508    
509      /* If it's a lone function value, run it */      /* If it's a lone function value, run it */
510    case func:    case func:
511      in_func= (funcp)(env->head->item->content.ptr);      in_func= (funcp)(env->head->item->content.ptr);
512      toss(env);      toss(env);
513      if(env->err) return;      if(env->err) return;
514      (*in_func)(env);      return (*in_func)(env);
     break;  
515    
516      /* If it's a list */      /* If it's a list */
517    case list:    case list:
# Line 451  extern void eval(environment *env) Line 520  extern void eval(environment *env)
520      toss(env);      toss(env);
521      if(env->err) return;      if(env->err) return;
522      iterator= (stackitem*)temp_val->content.ptr;      iterator= (stackitem*)temp_val->content.ptr;
523      while(iterator!=NULL && iterator->item!=NULL) {      while(iterator!=NULL) {
524        push_val(&(env->head), iterator->item);        push_val(&(env->head), iterator->item);
525        if(env->head->item->type==symb        if(env->head->item->type==symb
526          && strcmp(";", ((symbol*)(env->head->item->content.ptr))->id)==0) {          && strcmp(";", ((symbol*)(env->head->item->content.ptr))->id)==0) {
527          toss(env);          toss(env);
528          if(env->err) return;          if(env->err) return;
529            if(iterator->next == NULL){
530              free_val(temp_val);
531              return eval(env);
532            }
533          eval(env);          eval(env);
534          if(env->err) return;          if(env->err) return;
535        }        }
536        iterator= iterator->next;        iterator= iterator->next;
537      }      }
538      free_val(temp_val);      free_val(temp_val);
539      break;      return;
540    
541      /* If it's a string */      /* If it's a string */
542    case string:    case string:
# Line 471  extern void eval(environment *env) Line 544  extern void eval(environment *env)
544      env->head->item->refcount++;      env->head->item->refcount++;
545      toss(env);      toss(env);
546      if(env->err) return;      if(env->err) return;
547      push_sym(env, "[");      temp_string= malloc(strlen((char*)temp_val->content.ptr)+5);
548      env->non_eval_flag++;      strcpy(temp_string, "[ ");
549      stack_read(env, (char*)temp_val->content.ptr);      strcpy(temp_string+2, (char*)temp_val->content.ptr);
     env->non_eval_flag--;  
     push_sym(env, "["); pack(env);  
     if(env->err) return;  
     eval(env);  
     if(env->err) return;  
550      free_val(temp_val);      free_val(temp_val);
551      break;      strcat(temp_string, " ]");
552        stack_read(env, temp_string);
553        free(temp_string);
554        return eval(env);
555    
556    default:    case integer:
557        return;
558    }    }
559  }  }
560    
# Line 842  int main() Line 914  int main()
914    quit(&myenv);    quit(&myenv);
915    return EXIT_FAILURE;    return EXIT_FAILURE;
916  }  }
917    
918    /* + */
919    extern void sx_2b(environment *env) {
920      int a, b;
921      size_t len;
922      char* new_string;
923      value *a_val, *b_val;
924    
925      if((env->head)==NULL || env->head->next==NULL) {
926        printerr("Too Few Arguments");
927        env->err=1;
928        return;
929      }
930    
931      if(env->head->item->type==string
932         && env->head->next->item->type==string) {
933        a_val= env->head->item;
934        b_val= env->head->next->item;
935        a_val->refcount++;
936        b_val->refcount++;
937        toss(env); if(env->err) return;
938        toss(env); if(env->err) return;
939        len= strlen(a_val->content.ptr)+strlen(b_val->content.ptr)+1;
940        new_string= malloc(len);
941        strcpy(new_string, b_val->content.ptr);
942        strcat(new_string, a_val->content.ptr);
943        free_val(a_val); free_val(b_val);
944        push_cstring(&(env->head), new_string);
945        free(new_string);
946        return;
947      }
948      
949      if(env->head->item->type!=integer
950         || env->head->next->item->type!=integer) {
951        printerr("Bad Argument Type");
952        env->err=2;
953        return;
954      }
955      a=env->head->item->content.val;
956      toss(env);
957      if(env->err) return;
958      if(env->head->item->refcount == 1)
959        env->head->item->content.val += a;
960      else {
961        b=env->head->item->content.val;
962        toss(env);
963        if(env->err) return;
964        push_int(&(env->head), a+b);
965      }
966    }
967    
968    /* - */
969    extern void sx_2d(environment *env) {
970      int a, b;
971    
972      if((env->head)==NULL || env->head->next==NULL) {
973        printerr("Too Few Arguments");
974        env->err=1;
975        return;
976      }
977      
978      if(env->head->item->type!=integer
979         || env->head->next->item->type!=integer) {
980        printerr("Bad Argument Type");
981        env->err=2;
982        return;
983      }
984      a=env->head->item->content.val;
985      toss(env);
986      if(env->err) return;
987      if(env->head->item->refcount == 1)
988        env->head->item->content.val -= a;
989      else {
990        b=env->head->item->content.val;
991        toss(env);
992        if(env->err) return;
993        push_int(&(env->head), b-a);
994      }
995    }
996    
997    /* > */
998    extern void sx_3e(environment *env) {
999      int a, b;
1000    
1001      if((env->head)==NULL || env->head->next==NULL) {
1002        printerr("Too Few Arguments");
1003        env->err=1;
1004        return;
1005      }
1006      
1007      if(env->head->item->type!=integer
1008         || env->head->next->item->type!=integer) {
1009        printerr("Bad Argument Type");
1010        env->err=2;
1011        return;
1012      }
1013      a=env->head->item->content.val;
1014      toss(env);
1015      if(env->err) return;
1016      if(env->head->item->refcount == 1)
1017        env->head->item->content.val = (env->head->item->content.val > a);
1018      else {
1019        b=env->head->item->content.val;
1020        toss(env);
1021        if(env->err) return;
1022        push_int(&(env->head), b>a);
1023      }
1024    }
1025    
1026    /* Return copy of a value */
1027    value *copy_val(value *old_value){
1028      stackitem *old_item, *new_item, *prev_item;
1029    
1030      value *new_value=malloc(sizeof(value));
1031    
1032      new_value->type=old_value->type;
1033      new_value->refcount=0;        /* This is increased if/when this
1034                                       value is referenced somewhere, like
1035                                       in a stack item or a variable */
1036      switch(old_value->type){
1037      case integer:
1038        new_value->content.val=old_value->content.val;
1039        break;
1040      case string:
1041        (char *)(new_value->content.ptr)
1042          = strdup((char *)(old_value->content.ptr));
1043        break;
1044      case func:
1045      case symb:
1046        new_value->content.ptr=old_value->content.ptr;
1047        break;
1048      case list:
1049        new_value->content.ptr=NULL;
1050    
1051        prev_item=NULL;
1052        old_item=(stackitem *)(old_value->content.ptr);
1053    
1054        while(old_item != NULL) {   /* While list is not empty */
1055          new_item= malloc(sizeof(stackitem));
1056          new_item->item=copy_val(old_item->item); /* recurse */
1057          new_item->next=NULL;
1058          if(prev_item != NULL)     /* If this wasn't the first item */
1059            prev_item->next=new_item; /* point the previous item to the
1060                                         new item */
1061          else
1062            new_value->content.ptr=new_item;
1063          old_item=old_item->next;
1064          prev_item=new_item;
1065        }    
1066        break;
1067      }
1068      return new_value;
1069    }
1070    
1071    /* duplicates an item on the stack */
1072    extern void dup(environment *env) {
1073      if((env->head)==NULL) {
1074        printerr("Too Few Arguments");
1075        env->err=1;
1076        return;
1077      }
1078      push_val(&(env->head), copy_val(env->head->item));
1079    }
1080    
1081    /* "if", If-Then */
1082    extern void sx_6966(environment *env) {
1083    
1084      int truth;
1085    
1086      if((env->head)==NULL || env->head->next==NULL) {
1087        printerr("Too Few Arguments");
1088        env->err=1;
1089        return;
1090      }
1091    
1092      if(env->head->next->item->type != integer) {
1093        printerr("Bad Argument Type");
1094        env->err=2;
1095        return;
1096      }
1097      
1098      swap(env);
1099      if(env->err) return;
1100      
1101      truth=env->head->item->content.val;
1102    
1103      toss(env);
1104      if(env->err) return;
1105    
1106      if(truth)
1107        eval(env);
1108      else
1109        toss(env);
1110    }
1111    
1112    /* If-Then-Else */
1113    extern void ifelse(environment *env) {
1114    
1115      int truth;
1116    
1117      if((env->head)==NULL || env->head->next==NULL
1118         || env->head->next->next==NULL) {
1119        printerr("Too Few Arguments");
1120        env->err=1;
1121        return;
1122      }
1123    
1124      if(env->head->next->next->item->type != integer) {
1125        printerr("Bad Argument Type");
1126        env->err=2;
1127        return;
1128      }
1129      
1130      rot(env);
1131      if(env->err) return;
1132      
1133      truth=env->head->item->content.val;
1134    
1135      toss(env);
1136      if(env->err) return;
1137    
1138      if(!truth)
1139        swap(env);
1140      if(env->err) return;
1141    
1142      toss(env);
1143      if(env->err) return;
1144    
1145      eval(env);
1146    }
1147    
1148    /* while */
1149    extern void sx_7768696c65(environment *env) {
1150    
1151      int truth;
1152      value *loop, *test;
1153    
1154      if((env->head)==NULL || env->head->next==NULL) {
1155        printerr("Too Few Arguments");
1156        env->err=1;
1157        return;
1158      }
1159    
1160      loop= env->head->item;
1161      loop->refcount++;
1162      toss(env); if(env->err) return;
1163    
1164      test= env->head->item;
1165      test->refcount++;
1166      toss(env); if(env->err) return;
1167    
1168      do {
1169        push_val(&(env->head), test);
1170        eval(env);
1171        
1172        if(env->head->item->type != integer) {
1173          printerr("Bad Argument Type");
1174          env->err=2;
1175          return;
1176        }
1177        
1178        truth= env->head->item->content.val;
1179        toss(env); if(env->err) return;
1180        
1181        if(truth) {
1182          push_val(&(env->head), loop);
1183          eval(env);
1184        } else {
1185          toss(env);
1186        }
1187      
1188      } while(truth);
1189    
1190      free_val(test);
1191      free_val(loop);
1192    }

Legend:
Removed from v.1.46  
changed lines
  Added in v.1.63

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26