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

Diff of /stack/stack.c

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

revision 1.49 by masse, Thu Feb 7 05:24:19 2002 UTC revision 1.76 by masse, Wed Feb 13 00:47:36 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 */
 #include <assert.h>  
 /* strcat */  
10  #include <string.h>  #include <string.h>
11    
12  #define HASHTBLSIZE 65536  #define HASHTBLSIZE 2048
13    
14  /* First, define some types. */  /* First, define some types. */
15    
# Line 50  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 60  typedef struct { Line 59  typedef struct {
59    hashtbl symbols;              /* Hash table of all variable bindings */    hashtbl symbols;              /* Hash table of all variable bindings */
60    int err;                      /* Error flag */    int err;                      /* Error flag */
61    int non_eval_flag;    int non_eval_flag;
62      char *in_string;              /* Input pending to be read */
63  } environment;  } environment;
64    
65  /* A type for pointers to external functions */  /* A type for pointers to external functions */
# Line 71  void init_env(environment *env) Line 71  void init_env(environment *env)
71  {  {
72    int i;    int i;
73    
74      env->in_string= NULL;
75    env->err= 0;    env->err= 0;
76    env->non_eval_flag= 0;    env->non_eval_flag= 0;
77    for(i= 0; i<HASHTBLSIZE; i++)    for(i= 0; i<HASHTBLSIZE; i++)
# Line 101  void free_val(value *val){ Line 102  void free_val(value *val){
102        }        }
103        free(val);                /* Free the actual list value */        free(val);                /* Free the actual list value */
104        break;        break;
105      default:      case integer:
106        case func:
107        case symb:
108        break;        break;
109      }      }
110    }    }
# Line 152  symbol **hash(hashtbl in_hashtbl, const Line 155  symbol **hash(hashtbl in_hashtbl, const
155    }    }
156  }  }
157    
 /* Generic push function. */  
 void push(stackitem** stack_head, stackitem* in_item)  
 {  
   in_item->next= *stack_head;  
   *stack_head= in_item;  
 }  
   
158  /* Push a value onto the stack */  /* Push a value onto the stack */
159  void push_val(stackitem **stack_head, value *val)  void push_val(environment *env, value *val)
160  {  {
161    stackitem *new_item= malloc(sizeof(stackitem));    stackitem *new_item= malloc(sizeof(stackitem));
162    new_item->item= val;    new_item->item= val;
163    val->refcount++;    val->refcount++;
164    push(stack_head, new_item);    new_item->next= env->head;
165      env->head= new_item;
166  }  }
167    
168  /* Push an integer onto the stack. */  /* Push an integer onto the stack. */
169  void push_int(stackitem **stack_head, int in_val)  void push_int(environment *env, int in_val)
170  {  {
171    value *new_value= malloc(sizeof(value));    value *new_value= malloc(sizeof(value));
   stackitem *new_item= malloc(sizeof(stackitem));  
   new_item->item= new_value;  
172        
173    new_value->content.val= in_val;    new_value->content.val= in_val;
174    new_value->type= integer;    new_value->type= integer;
175    new_value->refcount=1;    new_value->refcount=1;
176    
177    push(stack_head, new_item);    push_val(env, new_value);
178  }  }
179    
180  /* Copy a string onto the stack. */  /* Copy a string onto the stack. */
181  void push_cstring(stackitem **stack_head, const char *in_string)  void push_cstring(environment *env, const char *in_string)
182  {  {
183    value *new_value= malloc(sizeof(value));    value *new_value= malloc(sizeof(value));
   stackitem *new_item= malloc(sizeof(stackitem));  
   new_item->item=new_value;  
184    
185    new_value->content.ptr= malloc(strlen(in_string)+1);    new_value->content.ptr= malloc(strlen(in_string)+1);
186    strcpy(new_value->content.ptr, in_string);    strcpy(new_value->content.ptr, in_string);
187    new_value->type= string;    new_value->type= string;
188    new_value->refcount=1;    new_value->refcount=1;
189    
190    push(stack_head, new_item);    push_val(env, new_value);
191  }  }
192    
193  /* Mangle a symbol name to a valid C identifier name */  /* Mangle a symbol name to a valid C identifier name */
194  char *mangle_(const char *old_string){  char *mangle_str(const char *old_string){
195    char validchars[]    char validchars[]
196      ="0123456789abcdef";      ="0123456789abcdef";
197    char *new_string, *current;    char *new_string, *current;
198    
199    new_string=malloc(strlen(old_string)+4);    new_string=malloc((strlen(old_string)*2)+4);
200    strcpy(new_string, "sx_");    /* Stack eXternal */    strcpy(new_string, "sx_");    /* Stack eXternal */
201    current=new_string+3;    current=new_string+3;
202    while(old_string[0] != '\0'){    while(old_string[0] != '\0'){
203      current[0]=validchars[old_string[0]/16];      current[0]=validchars[(unsigned char)(old_string[0])/16];
204      current[1]=validchars[old_string[0]%16];      current[1]=validchars[(unsigned char)(old_string[0])%16];
205      current+=2;      current+=2;
206      old_string++;      old_string++;
207    }    }
# Line 233  extern void mangle(environment *env){ Line 226  extern void mangle(environment *env){
226      return;      return;
227    }    }
228    
229    new_string= mangle_((const char *)(env->head->item->content.ptr));    new_string= mangle_str((const char *)(env->head->item->content.ptr));
230    
231    toss(env);    toss(env);
232    if(env->err) return;    if(env->err) return;
# Line 243  extern void mangle(environment *env){ Line 236  extern void mangle(environment *env){
236    new_value->type= string;    new_value->type= string;
237    new_value->refcount=1;    new_value->refcount=1;
238    
239    push_val(&(env->head), new_value);    push_val(env, new_value);
240  }  }
241    
242  /* Push a symbol onto the stack. */  /* Push a symbol onto the stack. */
243  void push_sym(environment *env, const char *in_string)  void push_sym(environment *env, const char *in_string)
244  {  {
   stackitem *new_item;          /* The new stack item */  
   /* ...which will contain... */  
245    value *new_value;             /* A new symbol value */    value *new_value;             /* A new symbol value */
246    /* ...which might point to... */    /* ...which might point to... */
247    symbol **new_symbol;          /* (if needed) A new actual symbol */    symbol **new_symbol;          /* (if needed) A new actual symbol */
# Line 263  void push_sym(environment *env, const ch Line 254  void push_sym(environment *env, const ch
254    const char *dlerr;            /* Dynamic linker error */    const char *dlerr;            /* Dynamic linker error */
255    char *mangled;                /* Mangled function name */    char *mangled;                /* Mangled function name */
256    
   /* Create a new stack item containing a new value */  
   new_item= malloc(sizeof(stackitem));  
257    new_value= malloc(sizeof(value));    new_value= malloc(sizeof(value));
   new_item->item=new_value;  
258    
259    /* The new value is a symbol */    /* The new value is a symbol */
260    new_value->type= symb;    new_value->type= symb;
# Line 296  void push_sym(environment *env, const ch Line 284  void push_sym(environment *env, const ch
284      funcptr= dlsym(handle, in_string); /* Get function pointer */      funcptr= dlsym(handle, in_string); /* Get function pointer */
285      dlerr=dlerror();      dlerr=dlerror();
286      if(dlerr != NULL) {         /* If no function was found */      if(dlerr != NULL) {         /* If no function was found */
287        mangled=mangle_(in_string);        mangled=mangle_str(in_string);
288        funcptr= dlsym(handle, mangled); /* try mangling it */        funcptr= dlsym(handle, mangled); /* try mangling it */
289        free(mangled);        free(mangled);
290        dlerr=dlerror();        dlerr=dlerror();
# Line 310  void push_sym(environment *env, const ch Line 298  void push_sym(environment *env, const ch
298        new_fvalue->refcount= 1;        new_fvalue->refcount= 1;
299      }      }
300    }    }
301    push(&(env->head), new_item);    push_val(env, new_value);
302  }  }
303    
304  /* Print newline. */  /* Print newline. */
# Line 346  extern void type(environment *env){ Line 334  extern void type(environment *env){
334    case list:    case list:
335      push_sym(env, "list");      push_sym(env, "list");
336      break;      break;
   default:  
     push_sym(env, "unknown");  
     break;  
337    }    }
338  }      }    
339    
# Line 360  void print_h(stackitem *stack_head) Line 345  void print_h(stackitem *stack_head)
345      printf("%d", stack_head->item->content.val);      printf("%d", stack_head->item->content.val);
346      break;      break;
347    case string:    case string:
348      printf("\"%s\"", (char*)stack_head->item->content.ptr);      printf("%s", (char*)stack_head->item->content.ptr);
349      break;      break;
350    case symb:    case symb:
351      printf("%s", ((symbol *)(stack_head->item->content.ptr))->id);      printf("%s", ((symbol *)(stack_head->item->content.ptr))->id);
# Line 379  void print_h(stackitem *stack_head) Line 364  void print_h(stackitem *stack_head)
364      }      }
365      printf("]");      printf("]");
366      break;      break;
   default:  
     printf("#<unknown %p>", (stack_head->item->content.ptr));  
     break;  
367    }    }
368  }  }
369    
# Line 438  extern void swap(environment *env) Line 420  extern void swap(environment *env)
420    env->head->next= temp;    env->head->next= temp;
421  }  }
422    
423    /* Rotate the first three elements on the stack. */
424    extern void rot(environment *env)
425    {
426      stackitem *temp= env->head;
427      
428      if(env->head==NULL || env->head->next==NULL
429          || env->head->next->next==NULL) {
430        printerr("Too Few Arguments");
431        env->err=1;
432        return;
433      }
434    
435      env->head= env->head->next->next;
436      temp->next->next= env->head->next;
437      env->head->next= temp;
438    }
439    
440  /* Recall a value from a symbol, if bound */  /* Recall a value from a symbol, if bound */
441  extern void rcl(environment *env)  extern void rcl(environment *env)
442  {  {
# Line 463  extern void rcl(environment *env) Line 462  extern void rcl(environment *env)
462    }    }
463    toss(env);            /* toss the symbol */    toss(env);            /* toss the symbol */
464    if(env->err) return;    if(env->err) return;
465    push_val(&(env->head), val); /* Return its bound value */    push_val(env, val); /* Return its bound value */
466  }  }
467    
 void stack_read(environment*, char*);  
   
468  /* 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
469     function value, and if it is, toss the symbol and execute the     function value, and if it is, toss the symbol and execute the
470     function. */     function. */
# Line 476  extern void eval(environment *env) Line 473  extern void eval(environment *env)
473    funcp in_func;    funcp in_func;
474    value* temp_val;    value* temp_val;
475    stackitem* iterator;    stackitem* iterator;
   char* temp_string;  
476    
477    if(env->head==NULL) {    if(env->head==NULL) {
478      printerr("Too Few Arguments");      printerr("Too Few Arguments");
# Line 484  extern void eval(environment *env) Line 480  extern void eval(environment *env)
480      return;      return;
481    }    }
482    
483     eval_start:
484    
485    switch(env->head->item->type) {    switch(env->head->item->type) {
486      /* if it's a symbol */      /* if it's a symbol */
487    case symb:    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 */        goto eval_start;
       return;  
492      }      }
493      break;      return;
494    
495      /* If it's a lone function value, run it */      /* If it's a lone function value, run it */
496    case func:    case func:
497      in_func= (funcp)(env->head->item->content.ptr);      in_func= (funcp)(env->head->item->content.ptr);
498      toss(env);      toss(env);
499      if(env->err) return;      if(env->err) return;
500      (*in_func)(env);      return (*in_func)(env);
     break;  
501    
502      /* If it's a list */      /* If it's a list */
503    case list:    case list:
# Line 510  extern void eval(environment *env) Line 506  extern void eval(environment *env)
506      toss(env);      toss(env);
507      if(env->err) return;      if(env->err) return;
508      iterator= (stackitem*)temp_val->content.ptr;      iterator= (stackitem*)temp_val->content.ptr;
509      while(iterator!=NULL && iterator->item!=NULL) {      while(iterator!=NULL) {
510        push_val(&(env->head), iterator->item);        push_val(env, iterator->item);
511        if(env->head->item->type==symb        if(env->head->item->type==symb
512          && strcmp(";", ((symbol*)(env->head->item->content.ptr))->id)==0) {          && strcmp(";", ((symbol*)(env->head->item->content.ptr))->id)==0) {
513          toss(env);          toss(env);
514          if(env->err) return;          if(env->err) return;
515            if(iterator->next == NULL){
516              free_val(temp_val);
517              goto eval_start;
518            }
519          eval(env);          eval(env);
520          if(env->err) return;          if(env->err) return;
521        }        }
522        iterator= iterator->next;        iterator= iterator->next;
523      }      }
524      free_val(temp_val);      free_val(temp_val);
525      break;      return;
   
     /* If it's a string */  
   case string:  
     temp_val= env->head->item;  
     env->head->item->refcount++;  
     toss(env);  
     if(env->err) return;  
     temp_string= malloc(strlen((char*)temp_val->content.ptr)+5);  
     strcpy(temp_string, "[ ");  
     strcat(temp_string, (char*)temp_val->content.ptr);  
     strcat(temp_string, " ]");  
     stack_read(env, temp_string);  
     eval(env);  
     if(env->err) return;  
     free_val(temp_val);  
     free(temp_string);  
     break;  
526    
527    default:    default:
528        return;
529    }    }
530  }  }
531    
532  /* Reverse (flip) a list */  /* Reverse (flip) a list */
533  extern void rev(environment *env){  extern void rev(environment *env){
534    stackitem *old_head, *new_head, *item;    stackitem *item, *temp, *prev= NULL;
535    
536    if((env->head)==NULL) {    if((env->head)==NULL) {
537      printerr("Too Few Arguments");      printerr("Too Few Arguments");
# Line 561  extern void rev(environment *env){ Line 545  extern void rev(environment *env){
545      return;      return;
546    }    }
547    
548    old_head=(stackitem *)(env->head->item->content.ptr);    item= (stackitem *)(env->head->item->content.ptr);
549    new_head=NULL;    while(item->next!=NULL){
550    while(old_head != NULL){      temp= item->next;
551      item=old_head;      item->next= prev;
552      old_head=old_head->next;      prev= item;
553      item->next=new_head;      item= temp;
     new_head=item;  
554    }    }
555    env->head->item->content.ptr=new_head;    item->next= prev;
556    
557      env->head->item->content.ptr=item;
558  }  }
559    
560  /* Make a list. */  /* Make a list. */
561  extern void pack(environment *env)  extern void pack(environment *env)
562  {  {
   void* delimiter;  
563    stackitem *iterator, *temp;    stackitem *iterator, *temp;
564    value *pack;    value *pack;
565    
   delimiter= env->head->item->content.ptr; /* Get delimiter */  
   toss(env);  
   
566    iterator= env->head;    iterator= env->head;
567    
568    if(iterator==NULL || iterator->item->content.ptr==delimiter) {    if(iterator==NULL
569         || (iterator->item->type==symb
570         && ((symbol*)(iterator->item->content.ptr))->id[0]=='[')) {
571      temp= NULL;      temp= NULL;
572      toss(env);      toss(env);
573    } else {    } else {
574      /* Search for first delimiter */      /* Search for first delimiter */
575      while(iterator->next!=NULL      while(iterator->next!=NULL
576            && iterator->next->item->content.ptr!=delimiter)            && (iterator->next->item->type!=symb
577              || ((symbol*)(iterator->next->item->content.ptr))->id[0]!='['))
578        iterator= iterator->next;        iterator= iterator->next;
579            
580      /* Extract list */      /* Extract list */
# Line 608  extern void pack(environment *env) Line 592  extern void pack(environment *env)
592    pack->content.ptr= temp;    pack->content.ptr= temp;
593    pack->refcount= 1;    pack->refcount= 1;
594    
595    temp= malloc(sizeof(stackitem));    push_val(env, pack);
   temp->item= pack;  
   
   push(&(env->head), temp);  
596    rev(env);    rev(env);
597  }  }
598    
 /* Parse input. */  
 void stack_read(environment *env, char *in_line)  
 {  
   char *temp, *rest;  
   int itemp;  
   size_t inlength= strlen(in_line)+1;  
   int convert= 0;  
   
   temp= malloc(inlength);  
   rest= malloc(inlength);  
   
   do {  
     /* If comment */  
     if((convert= sscanf(in_line, "#%[^\n\r]", rest))) {  
       free(temp); free(rest);  
       return;  
     }  
   
     /* If string */  
     if((convert= sscanf(in_line, "\"%[^\"\n\r]\" %[^\n\r]", temp, rest))) {  
       push_cstring(&(env->head), temp);  
       break;  
     }  
     /* If integer */  
     if((convert= sscanf(in_line, "%d %[^\n\r]", &itemp, rest))) {  
       push_int(&(env->head), itemp);  
       break;  
     }  
     /* Escape ';' with '\' */  
     if((convert= sscanf(in_line, "\\%c%[^\n\r]", temp, rest))) {  
       temp[1]= '\0';  
       push_sym(env, temp);  
       break;  
     }  
     /* If symbol */  
     if((convert= sscanf(in_line, "%[^][ ;\n\r]%[^\n\r]", temp, rest))) {  
         push_sym(env, temp);  
         break;  
     }  
     /* If single char */  
     if((convert= sscanf(in_line, "%c%[^\n\r]", temp, rest))) {  
       if(*temp==';') {  
         if(!env->non_eval_flag) {  
           eval(env);            /* Evaluate top element */  
           break;  
         }  
           
         push_sym(env, ";");  
         break;  
       }  
   
       if(*temp==']') {  
         push_sym(env, "[");  
         pack(env);  
         if(env->non_eval_flag)  
           env->non_eval_flag--;  
         break;  
       }  
   
       if(*temp=='[') {  
         push_sym(env, "[");  
         env->non_eval_flag++;  
         break;  
       }  
     }  
   } while(0);  
   
   free(temp);  
   
   if(convert<2) {  
     free(rest);  
     return;  
   }  
     
   stack_read(env, rest);  
     
   free(rest);  
 }  
   
599  /* Relocate elements of the list on the stack. */  /* Relocate elements of the list on the stack. */
600  extern void expand(environment *env)  extern void expand(environment *env)
601  {  {
# Line 750  extern void eq(environment *env) Line 652  extern void eq(environment *env)
652    result= (left==right);    result= (left==right);
653        
654    toss(env); toss(env);    toss(env); toss(env);
655    push_int(&(env->head), result);    push_int(env, result);
656  }  }
657    
658  /* Negates the top element on the stack. */  /* Negates the top element on the stack. */
# Line 772  extern void not(environment *env) Line 674  extern void not(environment *env)
674    
675    val= env->head->item->content.val;    val= env->head->item->content.val;
676    toss(env);    toss(env);
677    push_int(&(env->head), !val);    push_int(env, !val);
678  }  }
679    
680  /* 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
# Line 878  extern void forget(environment *env) Line 780  extern void forget(environment *env)
780    
781  /* Returns the current error number to the stack */  /* Returns the current error number to the stack */
782  extern void errn(environment *env){  extern void errn(environment *env){
783    push_int(&(env->head), env->err);    push_int(env, env->err);
784  }  }
785    
786    extern void read(environment*);
787    
788  int main()  int main()
789  {  {
790    environment myenv;    environment myenv;
   char in_string[100];  
791    
792    init_env(&myenv);    init_env(&myenv);
793    
794    printf("okidok\n ");    while(1) {
795        if(myenv.in_string==NULL)
796    while(fgets(in_string, 100, stdin) != NULL) {        printstack(&myenv);
797      stack_read(&myenv, in_string);      read(&myenv);
798      if(myenv.err) {      if(myenv.err) {
799        printf("(error %d) ", myenv.err);        printf("(error %d) ", myenv.err);
800        myenv.err=0;        myenv.err=0;
801        } else if(myenv.head!=NULL
802                  && myenv.head->item->type==symb
803                  && ((symbol*)(myenv.head->item->content.ptr))->id[0]==';') {
804          toss(&myenv);             /* No error check in main */
805          eval(&myenv);
806      }      }
     printf("okidok\n ");  
807    }    }
808    quit(&myenv);    quit(&myenv);
809    return EXIT_FAILURE;    return EXIT_FAILURE;
# Line 928  extern void sx_2b(environment *env) { Line 835  extern void sx_2b(environment *env) {
835      strcpy(new_string, b_val->content.ptr);      strcpy(new_string, b_val->content.ptr);
836      strcat(new_string, a_val->content.ptr);      strcat(new_string, a_val->content.ptr);
837      free_val(a_val); free_val(b_val);      free_val(a_val); free_val(b_val);
838      push_cstring(&(env->head), new_string);      push_cstring(env, new_string);
839      free(new_string);      free(new_string);
840      return;      return;
841    }    }
# Line 942  extern void sx_2b(environment *env) { Line 849  extern void sx_2b(environment *env) {
849    a=env->head->item->content.val;    a=env->head->item->content.val;
850    toss(env);    toss(env);
851    if(env->err) return;    if(env->err) return;
852    b=env->head->item->content.val;    if(env->head->item->refcount == 1)
853        env->head->item->content.val += a;
854      else {
855        b=env->head->item->content.val;
856        toss(env);
857        if(env->err) return;
858        push_int(env, a+b);
859      }
860    }
861    
862    /* - */
863    extern void sx_2d(environment *env) {
864      int a, b;
865    
866      if((env->head)==NULL || env->head->next==NULL) {
867        printerr("Too Few Arguments");
868        env->err=1;
869        return;
870      }
871      
872      if(env->head->item->type!=integer
873         || env->head->next->item->type!=integer) {
874        printerr("Bad Argument Type");
875        env->err=2;
876        return;
877      }
878      a=env->head->item->content.val;
879    toss(env);    toss(env);
880    if(env->err) return;    if(env->err) return;
881    push_int(&(env->head), a+b);    if(env->head->item->refcount == 1)
882        env->head->item->content.val -= a;
883      else {
884        b=env->head->item->content.val;
885        toss(env);
886        if(env->err) return;
887        push_int(env, b-a);
888      }
889    }
890    
891    /* > */
892    extern void sx_3e(environment *env) {
893      int a, b;
894    
895      if((env->head)==NULL || env->head->next==NULL) {
896        printerr("Too Few Arguments");
897        env->err=1;
898        return;
899      }
900      
901      if(env->head->item->type!=integer
902         || env->head->next->item->type!=integer) {
903        printerr("Bad Argument Type");
904        env->err=2;
905        return;
906      }
907      a=env->head->item->content.val;
908      toss(env);
909      if(env->err) return;
910      if(env->head->item->refcount == 1)
911        env->head->item->content.val = (env->head->item->content.val > a);
912      else {
913        b=env->head->item->content.val;
914        toss(env);
915        if(env->err) return;
916        push_int(env, b>a);
917      }
918    }
919    
920    /* Return copy of a value */
921    value *copy_val(value *old_value){
922      stackitem *old_item, *new_item, *prev_item;
923    
924      value *new_value=malloc(sizeof(value));
925    
926      new_value->type=old_value->type;
927      new_value->refcount=0;        /* This is increased if/when this
928                                       value is referenced somewhere, like
929                                       in a stack item or a variable */
930      switch(old_value->type){
931      case integer:
932        new_value->content.val=old_value->content.val;
933        break;
934      case string:
935        (char *)(new_value->content.ptr)
936          = strdup((char *)(old_value->content.ptr));
937        break;
938      case func:
939      case symb:
940        new_value->content.ptr=old_value->content.ptr;
941        break;
942      case list:
943        new_value->content.ptr=NULL;
944    
945        prev_item=NULL;
946        old_item=(stackitem *)(old_value->content.ptr);
947    
948        while(old_item != NULL) {   /* While list is not empty */
949          new_item= malloc(sizeof(stackitem));
950          new_item->item=copy_val(old_item->item); /* recurse */
951          new_item->next=NULL;
952          if(prev_item != NULL)     /* If this wasn't the first item */
953            prev_item->next=new_item; /* point the previous item to the
954                                         new item */
955          else
956            new_value->content.ptr=new_item;
957          old_item=old_item->next;
958          prev_item=new_item;
959        }    
960        break;
961      }
962      return new_value;
963    }
964    
965    /* duplicates an item on the stack */
966    extern void dup(environment *env) {
967      if((env->head)==NULL) {
968        printerr("Too Few Arguments");
969        env->err=1;
970        return;
971      }
972      push_val(env, copy_val(env->head->item));
973    }
974    
975    /* "if", If-Then */
976    extern void sx_6966(environment *env) {
977    
978      int truth;
979    
980      if((env->head)==NULL || env->head->next==NULL) {
981        printerr("Too Few Arguments");
982        env->err=1;
983        return;
984      }
985    
986      if(env->head->next->item->type != integer) {
987        printerr("Bad Argument Type");
988        env->err=2;
989        return;
990      }
991      
992      swap(env);
993      if(env->err) return;
994      
995      truth=env->head->item->content.val;
996    
997      toss(env);
998      if(env->err) return;
999    
1000      if(truth)
1001        eval(env);
1002      else
1003        toss(env);
1004    }
1005    
1006    /* If-Then-Else */
1007    extern void ifelse(environment *env) {
1008    
1009      int truth;
1010    
1011      if((env->head)==NULL || env->head->next==NULL
1012         || env->head->next->next==NULL) {
1013        printerr("Too Few Arguments");
1014        env->err=1;
1015        return;
1016      }
1017    
1018      if(env->head->next->next->item->type != integer) {
1019        printerr("Bad Argument Type");
1020        env->err=2;
1021        return;
1022      }
1023      
1024      rot(env);
1025      if(env->err) return;
1026      
1027      truth=env->head->item->content.val;
1028    
1029      toss(env);
1030      if(env->err) return;
1031    
1032      if(!truth)
1033        swap(env);
1034      if(env->err) return;
1035    
1036      toss(env);
1037      if(env->err) return;
1038    
1039      eval(env);
1040    }
1041    
1042    /* while */
1043    extern void sx_7768696c65(environment *env) {
1044    
1045      int truth;
1046      value *loop, *test;
1047    
1048      if((env->head)==NULL || env->head->next==NULL) {
1049        printerr("Too Few Arguments");
1050        env->err=1;
1051        return;
1052      }
1053    
1054      loop= env->head->item;
1055      loop->refcount++;
1056      toss(env); if(env->err) return;
1057    
1058      test= env->head->item;
1059      test->refcount++;
1060      toss(env); if(env->err) return;
1061    
1062      do {
1063        push_val(env, test);
1064        eval(env);
1065        
1066        if(env->head->item->type != integer) {
1067          printerr("Bad Argument Type");
1068          env->err=2;
1069          return;
1070        }
1071        
1072        truth= env->head->item->content.val;
1073        toss(env); if(env->err) return;
1074        
1075        if(truth) {
1076          push_val(env, loop);
1077          eval(env);
1078        } else {
1079          toss(env);
1080        }
1081      
1082      } while(truth);
1083    
1084      free_val(test);
1085      free_val(loop);
1086    }
1087    
1088    /* For-loop */
1089    extern void sx_666f72(environment *env) {
1090      
1091      value *loop, *foo;
1092      stackitem *iterator;
1093      
1094      if((env->head)==NULL || env->head->next==NULL) {
1095        printerr("Too Few Arguments");
1096        env->err=1;
1097        return;
1098      }
1099    
1100      if(env->head->next->item->type != list) {
1101        printerr("Bad Argument Type");
1102        env->err=2;
1103        return;
1104      }
1105    
1106      loop= env->head->item;
1107      loop->refcount++;
1108      toss(env); if(env->err) return;
1109    
1110      foo= env->head->item;
1111      foo->refcount++;
1112      toss(env); if(env->err) return;
1113    
1114      iterator= foo->content.ptr;
1115    
1116      while(iterator!=NULL) {
1117        push_val(env, iterator->item);
1118        push_val(env, loop);
1119        eval(env); if(env->err) return;
1120        iterator= iterator->next;
1121      }
1122    
1123      free_val(loop);
1124      free_val(foo);
1125    }
1126    
1127    /* 'to' */
1128    extern void to(environment *env) {
1129      int i, start, ending;
1130      stackitem *temp_head;
1131      value *temp_val;
1132      
1133      if((env->head)==NULL || env->head->next==NULL) {
1134        printerr("Too Few Arguments");
1135        env->err=1;
1136        return;
1137      }
1138    
1139      if(env->head->item->type!=integer
1140         || env->head->next->item->type!=integer) {
1141        printerr("Bad Argument Type");
1142        env->err=2;
1143        return;
1144      }
1145    
1146      ending= env->head->item->content.val;
1147      toss(env); if(env->err) return;
1148      start= env->head->item->content.val;
1149      toss(env); if(env->err) return;
1150    
1151      temp_head= env->head;
1152      env->head= NULL;
1153    
1154      if(ending>=start) {
1155        for(i= ending; i>=start; i--)
1156          push_int(env, i);
1157      } else {
1158        for(i= ending; i<=start; i++)
1159          push_int(env, i);
1160      }
1161    
1162      temp_val= malloc(sizeof(value));
1163      temp_val->content.ptr= env->head;
1164      temp_val->refcount= 1;
1165      temp_val->type= list;
1166      env->head= temp_head;
1167      push_val(env, temp_val);
1168    }
1169    
1170    /* Read a string */
1171    extern void readline(environment *env) {
1172      char in_string[101];
1173    
1174      fgets(in_string, 100, stdin);
1175      push_cstring(env, in_string);
1176    }
1177    
1178    /* Read a value and place on stack */
1179    extern void read(environment *env) {
1180      const char symbform[]= "%[a-zA-Z0-9!$%*+./:<=>?@^_~-]%[\001-\377]";
1181      const char strform[]= "\"%[^\"]\"%[\001-\377]";
1182      const char intform[]= "%i%[\001-\377]";
1183      const char blankform[]= "%*[ \t]%[\001-\377]";
1184      const char ebrackform[]= "%*1[]]%[\001-\377]";
1185      const char semicform[]= "%*1[;]%[\001-\377]";
1186      const char bbrackform[]= "%*1[[]%[\001-\377]";
1187    
1188      int itemp;
1189      static int depth= 0;
1190      char *rest, *match;
1191      size_t inlength;
1192    
1193      if(env->in_string==NULL) {
1194        readline(env); if(env->err) return;
1195        
1196        env->in_string= malloc(strlen(env->head->item->content.ptr)+1);
1197        strcpy(env->in_string, env->head->item->content.ptr);
1198        toss(env); if(env->err) return;
1199      }
1200      
1201      inlength= strlen(env->in_string)+1;
1202      match= malloc(inlength);
1203      rest= malloc(inlength);
1204    
1205      if(sscanf(env->in_string, blankform, rest)) {
1206        ;
1207      } else if(sscanf(env->in_string, intform, &itemp, rest) > 0) {
1208        push_int(env, itemp);
1209      } else if(sscanf(env->in_string, strform, match, rest) > 0) {
1210        push_cstring(env, match);
1211      } else if(sscanf(env->in_string, symbform, match, rest) > 0) {
1212        push_sym(env, match);
1213      } else if(sscanf(env->in_string, ebrackform, rest) > 0) {
1214        pack(env); if(env->err) return;
1215        if(depth!=0) depth--;
1216      } else if(sscanf(env->in_string, semicform, rest) > 0) {
1217        push_sym(env, ";");
1218      } else if(sscanf(env->in_string, bbrackform, rest) > 0) {
1219        push_sym(env, "[");
1220        depth++;
1221      } else {
1222        free(rest);
1223        rest= NULL;
1224      }
1225          
1226      free(env->in_string);
1227      free(match);
1228    
1229      env->in_string= rest;
1230    
1231      if(depth)
1232        return read(env);
1233  }  }

Legend:
Removed from v.1.49  
changed lines
  Added in v.1.76

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26