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

Diff of /stack/stack.c

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

revision 1.54 by teddy, Fri Feb 8 00:25:57 2002 UTC revision 1.73 by masse, Tue Feb 12 23:16:56 2002 UTC
# Line 9  Line 9 
9  /* strcmp, strcpy, strlen, strcat, strdup */  /* strcmp, strcpy, strlen, strcat, strdup */
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 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 58  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 69  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 153  symbol **hash(hashtbl in_hashtbl, const Line 156  symbol **hash(hashtbl in_hashtbl, const
156  }  }
157    
158  /* Generic push function. */  /* Generic push function. */
159  void push(stackitem** stack_head, stackitem* in_item)  void push(environment *env, stackitem* in_item)
160  {  {
161    in_item->next= *stack_head;    in_item->next= env->head;
162    *stack_head= in_item;    env->head= in_item;
163  }  }
164    
165  /* Push a value onto the stack */  /* Push a value onto the stack */
166  void push_val(stackitem **stack_head, value *val)  void push_val(environment *env, value *val)
167  {  {
168    stackitem *new_item= malloc(sizeof(stackitem));    stackitem *new_item= malloc(sizeof(stackitem));
169    new_item->item= val;    new_item->item= val;
170    val->refcount++;    val->refcount++;
171    push(stack_head, new_item);    push(env, new_item);
172  }  }
173    
174  /* Push an integer onto the stack. */  /* Push an integer onto the stack. */
175  void push_int(stackitem **stack_head, int in_val)  void push_int(environment *env, int in_val)
176  {  {
177    value *new_value= malloc(sizeof(value));    value *new_value= malloc(sizeof(value));
178    stackitem *new_item= malloc(sizeof(stackitem));    stackitem *new_item= malloc(sizeof(stackitem));
# Line 179  void push_int(stackitem **stack_head, in Line 182  void push_int(stackitem **stack_head, in
182    new_value->type= integer;    new_value->type= integer;
183    new_value->refcount=1;    new_value->refcount=1;
184    
185    push(stack_head, new_item);    push(env, new_item);
186  }  }
187    
188  /* Copy a string onto the stack. */  /* Copy a string onto the stack. */
189  void push_cstring(stackitem **stack_head, const char *in_string)  void push_cstring(environment *env, const char *in_string)
190  {  {
191    value *new_value= malloc(sizeof(value));    value *new_value= malloc(sizeof(value));
192    stackitem *new_item= malloc(sizeof(stackitem));    stackitem *new_item= malloc(sizeof(stackitem));
# Line 194  void push_cstring(stackitem **stack_head Line 197  void push_cstring(stackitem **stack_head
197    new_value->type= string;    new_value->type= string;
198    new_value->refcount=1;    new_value->refcount=1;
199    
200    push(stack_head, new_item);    push(env, new_item);
201  }  }
202    
203  /* Mangle a symbol name to a valid C identifier name */  /* Mangle a symbol name to a valid C identifier name */
# Line 243  extern void mangle(environment *env){ Line 246  extern void mangle(environment *env){
246    new_value->type= string;    new_value->type= string;
247    new_value->refcount=1;    new_value->refcount=1;
248    
249    push_val(&(env->head), new_value);    push_val(env, new_value);
250  }  }
251    
252  /* Push a symbol onto the stack. */  /* Push a symbol onto the stack. */
# Line 310  void push_sym(environment *env, const ch Line 313  void push_sym(environment *env, const ch
313        new_fvalue->refcount= 1;        new_fvalue->refcount= 1;
314      }      }
315    }    }
316    push(&(env->head), new_item);    push(env, new_item);
317  }  }
318    
319  /* Print newline. */  /* Print newline. */
# Line 346  extern void type(environment *env){ Line 349  extern void type(environment *env){
349    case list:    case list:
350      push_sym(env, "list");      push_sym(env, "list");
351      break;      break;
   default:  
     push_sym(env, "unknown");  
     break;  
352    }    }
353  }      }    
354    
# Line 360  void print_h(stackitem *stack_head) Line 360  void print_h(stackitem *stack_head)
360      printf("%d", stack_head->item->content.val);      printf("%d", stack_head->item->content.val);
361      break;      break;
362    case string:    case string:
363      printf("\"%s\"", (char*)stack_head->item->content.ptr);      printf("%s", (char*)stack_head->item->content.ptr);
364      break;      break;
365    case symb:    case symb:
366      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 379  void print_h(stackitem *stack_head)
379      }      }
380      printf("]");      printf("]");
381      break;      break;
   default:  
     printf("#<unknown %p>", (stack_head->item->content.ptr));  
     break;  
382    }    }
383  }  }
384    
# Line 438  extern void swap(environment *env) Line 435  extern void swap(environment *env)
435    env->head->next= temp;    env->head->next= temp;
436  }  }
437    
438    /* Rotate the first three elements on the stack. */
439    extern void rot(environment *env)
440    {
441      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 */  /* Recall a value from a symbol, if bound */
456  extern void rcl(environment *env)  extern void rcl(environment *env)
457  {  {
# Line 463  extern void rcl(environment *env) Line 477  extern void rcl(environment *env)
477    }    }
478    toss(env);            /* toss the symbol */    toss(env);            /* toss the symbol */
479    if(env->err) return;    if(env->err) return;
480    push_val(&(env->head), val); /* Return its bound value */    push_val(env, val); /* Return its bound value */
481  }  }
482    
 void stack_read(environment*, char*);  
   
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 476  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;
   char* temp_string;  
491    
492    if(env->head==NULL) {    if(env->head==NULL) {
493      printerr("Too Few Arguments");      printerr("Too Few Arguments");
# Line 484  extern void eval(environment *env) Line 495  extern void eval(environment *env)
495      return;      return;
496    }    }
497    
498     eval_start:
499    
500    switch(env->head->item->type) {    switch(env->head->item->type) {
501      /* if it's a symbol */      /* if it's a symbol */
502    case symb:    case symb:
503      rcl(env);                   /* get its contents */      rcl(env);                   /* get its contents */
504      if(env->err) return;      if(env->err) return;
505      if(env->head->item->type!=symb){ /* don't recurse symbols */      if(env->head->item->type!=symb){ /* don't recurse symbols */
506        eval(env);                        /* evaluate the value */        goto eval_start;
       return;  
507      }      }
508      break;      return;
509    
510      /* If it's a lone function value, run it */      /* If it's a lone function value, run it */
511    case func:    case func:
512      in_func= (funcp)(env->head->item->content.ptr);      in_func= (funcp)(env->head->item->content.ptr);
513      toss(env);      toss(env);
514      if(env->err) return;      if(env->err) return;
515      (*in_func)(env);      return (*in_func)(env);
     break;  
516    
517      /* If it's a list */      /* If it's a list */
518    case list:    case list:
# Line 510  extern void eval(environment *env) Line 521  extern void eval(environment *env)
521      toss(env);      toss(env);
522      if(env->err) return;      if(env->err) return;
523      iterator= (stackitem*)temp_val->content.ptr;      iterator= (stackitem*)temp_val->content.ptr;
524      while(iterator!=NULL && iterator->item!=NULL) {      while(iterator!=NULL) {
525        push_val(&(env->head), iterator->item);        push_val(env, iterator->item);
526        if(env->head->item->type==symb        if(env->head->item->type==symb
527          && strcmp(";", ((symbol*)(env->head->item->content.ptr))->id)==0) {          && strcmp(";", ((symbol*)(env->head->item->content.ptr))->id)==0) {
528          toss(env);          toss(env);
529          if(env->err) return;          if(env->err) return;
530            if(iterator->next == NULL){
531              free_val(temp_val);
532              goto eval_start;
533            }
534          eval(env);          eval(env);
535          if(env->err) return;          if(env->err) return;
536        }        }
537        iterator= iterator->next;        iterator= iterator->next;
538      }      }
539      free_val(temp_val);      free_val(temp_val);
540      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;  
541    
542    case integer:    default:
543      break;      return;
544    }    }
545  }  }
546    
# Line 576  extern void rev(environment *env){ Line 574  extern void rev(environment *env){
574  /* Make a list. */  /* Make a list. */
575  extern void pack(environment *env)  extern void pack(environment *env)
576  {  {
   void* delimiter;  
577    stackitem *iterator, *temp;    stackitem *iterator, *temp;
578    value *pack;    value *pack;
579    
   delimiter= env->head->item->content.ptr; /* Get delimiter */  
   toss(env);  
   
580    iterator= env->head;    iterator= env->head;
581    
582    if(iterator==NULL || iterator->item->content.ptr==delimiter) {    if(iterator==NULL
583         || (iterator->item->type==symb
584         && ((symbol*)(iterator->item->content.ptr))->id[0]=='[')) {
585      temp= NULL;      temp= NULL;
586      toss(env);      toss(env);
587    } else {    } else {
588      /* Search for first delimiter */      /* Search for first delimiter */
589      while(iterator->next!=NULL      while(iterator->next!=NULL
590            && iterator->next->item->content.ptr!=delimiter)            && (iterator->next->item->type!=symb
591              || ((symbol*)(iterator->next->item->content.ptr))->id[0]!='['))
592        iterator= iterator->next;        iterator= iterator->next;
593            
594      /* Extract list */      /* Extract list */
# Line 612  extern void pack(environment *env) Line 609  extern void pack(environment *env)
609    temp= malloc(sizeof(stackitem));    temp= malloc(sizeof(stackitem));
610    temp->item= pack;    temp->item= pack;
611    
612    push(&(env->head), temp);    push(env, temp);
613    rev(env);    rev(env);
614  }  }
615    
 /* 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);  
 }  
   
616  /* Relocate elements of the list on the stack. */  /* Relocate elements of the list on the stack. */
617  extern void expand(environment *env)  extern void expand(environment *env)
618  {  {
# Line 751  extern void eq(environment *env) Line 669  extern void eq(environment *env)
669    result= (left==right);    result= (left==right);
670        
671    toss(env); toss(env);    toss(env); toss(env);
672    push_int(&(env->head), result);    push_int(env, result);
673  }  }
674    
675  /* Negates the top element on the stack. */  /* Negates the top element on the stack. */
# Line 773  extern void not(environment *env) Line 691  extern void not(environment *env)
691    
692    val= env->head->item->content.val;    val= env->head->item->content.val;
693    toss(env);    toss(env);
694    push_int(&(env->head), !val);    push_int(env, !val);
695  }  }
696    
697  /* 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 879  extern void forget(environment *env) Line 797  extern void forget(environment *env)
797    
798  /* Returns the current error number to the stack */  /* Returns the current error number to the stack */
799  extern void errn(environment *env){  extern void errn(environment *env){
800    push_int(&(env->head), env->err);    push_int(env, env->err);
801  }  }
802    
803    extern void read(environment*);
804    
805  int main()  int main()
806  {  {
807    environment myenv;    environment myenv;
   char in_string[100];  
808    
809    init_env(&myenv);    init_env(&myenv);
810    
811    printf("okidok\n ");    while(1) {
812        if(myenv.in_string==NULL)
813    while(fgets(in_string, 100, stdin) != NULL) {        printstack(&myenv);
814      stack_read(&myenv, in_string);      read(&myenv);
815      if(myenv.err) {      if(myenv.err) {
816        printf("(error %d) ", myenv.err);        printf("(error %d) ", myenv.err);
817        myenv.err=0;        myenv.err=0;
818        } else if(myenv.head!=NULL
819                  && myenv.head->item->type==symb
820                  && ((symbol*)(myenv.head->item->content.ptr))->id[0]==';') {
821          toss(&myenv);             /* No error check in main */
822          eval(&myenv);
823      }      }
     printf("okidok\n ");  
824    }    }
825    quit(&myenv);    quit(&myenv);
826    return EXIT_FAILURE;    return EXIT_FAILURE;
# Line 929  extern void sx_2b(environment *env) { Line 852  extern void sx_2b(environment *env) {
852      strcpy(new_string, b_val->content.ptr);      strcpy(new_string, b_val->content.ptr);
853      strcat(new_string, a_val->content.ptr);      strcat(new_string, a_val->content.ptr);
854      free_val(a_val); free_val(b_val);      free_val(a_val); free_val(b_val);
855      push_cstring(&(env->head), new_string);      push_cstring(env, new_string);
856      free(new_string);      free(new_string);
857      return;      return;
858    }    }
# Line 943  extern void sx_2b(environment *env) { Line 866  extern void sx_2b(environment *env) {
866    a=env->head->item->content.val;    a=env->head->item->content.val;
867    toss(env);    toss(env);
868    if(env->err) return;    if(env->err) return;
869    b=env->head->item->content.val;    if(env->head->item->refcount == 1)
870        env->head->item->content.val += a;
871      else {
872        b=env->head->item->content.val;
873        toss(env);
874        if(env->err) return;
875        push_int(env, a+b);
876      }
877    }
878    
879    /* - */
880    extern void sx_2d(environment *env) {
881      int a, b;
882    
883      if((env->head)==NULL || env->head->next==NULL) {
884        printerr("Too Few Arguments");
885        env->err=1;
886        return;
887      }
888      
889      if(env->head->item->type!=integer
890         || env->head->next->item->type!=integer) {
891        printerr("Bad Argument Type");
892        env->err=2;
893        return;
894      }
895      a=env->head->item->content.val;
896      toss(env);
897      if(env->err) return;
898      if(env->head->item->refcount == 1)
899        env->head->item->content.val -= a;
900      else {
901        b=env->head->item->content.val;
902        toss(env);
903        if(env->err) return;
904        push_int(env, b-a);
905      }
906    }
907    
908    /* > */
909    extern void sx_3e(environment *env) {
910      int a, b;
911    
912      if((env->head)==NULL || env->head->next==NULL) {
913        printerr("Too Few Arguments");
914        env->err=1;
915        return;
916      }
917      
918      if(env->head->item->type!=integer
919         || env->head->next->item->type!=integer) {
920        printerr("Bad Argument Type");
921        env->err=2;
922        return;
923      }
924      a=env->head->item->content.val;
925      toss(env);
926      if(env->err) return;
927      if(env->head->item->refcount == 1)
928        env->head->item->content.val = (env->head->item->content.val > a);
929      else {
930        b=env->head->item->content.val;
931        toss(env);
932        if(env->err) return;
933        push_int(env, b>a);
934      }
935    }
936    
937    /* Return copy of a value */
938    value *copy_val(value *old_value){
939      stackitem *old_item, *new_item, *prev_item;
940    
941      value *new_value=malloc(sizeof(value));
942    
943      new_value->type=old_value->type;
944      new_value->refcount=0;        /* This is increased if/when this
945                                       value is referenced somewhere, like
946                                       in a stack item or a variable */
947      switch(old_value->type){
948      case integer:
949        new_value->content.val=old_value->content.val;
950        break;
951      case string:
952        (char *)(new_value->content.ptr)
953          = strdup((char *)(old_value->content.ptr));
954        break;
955      case func:
956      case symb:
957        new_value->content.ptr=old_value->content.ptr;
958        break;
959      case list:
960        new_value->content.ptr=NULL;
961    
962        prev_item=NULL;
963        old_item=(stackitem *)(old_value->content.ptr);
964    
965        while(old_item != NULL) {   /* While list is not empty */
966          new_item= malloc(sizeof(stackitem));
967          new_item->item=copy_val(old_item->item); /* recurse */
968          new_item->next=NULL;
969          if(prev_item != NULL)     /* If this wasn't the first item */
970            prev_item->next=new_item; /* point the previous item to the
971                                         new item */
972          else
973            new_value->content.ptr=new_item;
974          old_item=old_item->next;
975          prev_item=new_item;
976        }    
977        break;
978      }
979      return new_value;
980    }
981    
982    /* duplicates an item on the stack */
983    extern void dup(environment *env) {
984      if((env->head)==NULL) {
985        printerr("Too Few Arguments");
986        env->err=1;
987        return;
988      }
989      push_val(env, copy_val(env->head->item));
990    }
991    
992    /* "if", If-Then */
993    extern void sx_6966(environment *env) {
994    
995      int truth;
996    
997      if((env->head)==NULL || env->head->next==NULL) {
998        printerr("Too Few Arguments");
999        env->err=1;
1000        return;
1001      }
1002    
1003      if(env->head->next->item->type != integer) {
1004        printerr("Bad Argument Type");
1005        env->err=2;
1006        return;
1007      }
1008      
1009      swap(env);
1010      if(env->err) return;
1011      
1012      truth=env->head->item->content.val;
1013    
1014      toss(env);
1015      if(env->err) return;
1016    
1017      if(truth)
1018        eval(env);
1019      else
1020        toss(env);
1021    }
1022    
1023    /* If-Then-Else */
1024    extern void ifelse(environment *env) {
1025    
1026      int truth;
1027    
1028      if((env->head)==NULL || env->head->next==NULL
1029         || env->head->next->next==NULL) {
1030        printerr("Too Few Arguments");
1031        env->err=1;
1032        return;
1033      }
1034    
1035      if(env->head->next->next->item->type != integer) {
1036        printerr("Bad Argument Type");
1037        env->err=2;
1038        return;
1039      }
1040      
1041      rot(env);
1042      if(env->err) return;
1043      
1044      truth=env->head->item->content.val;
1045    
1046      toss(env);
1047      if(env->err) return;
1048    
1049      if(!truth)
1050        swap(env);
1051      if(env->err) return;
1052    
1053    toss(env);    toss(env);
1054    if(env->err) return;    if(env->err) return;
1055    push_int(&(env->head), a+b);  
1056      eval(env);
1057    }
1058    
1059    /* while */
1060    extern void sx_7768696c65(environment *env) {
1061    
1062      int truth;
1063      value *loop, *test;
1064    
1065      if((env->head)==NULL || env->head->next==NULL) {
1066        printerr("Too Few Arguments");
1067        env->err=1;
1068        return;
1069      }
1070    
1071      loop= env->head->item;
1072      loop->refcount++;
1073      toss(env); if(env->err) return;
1074    
1075      test= env->head->item;
1076      test->refcount++;
1077      toss(env); if(env->err) return;
1078    
1079      do {
1080        push_val(env, test);
1081        eval(env);
1082        
1083        if(env->head->item->type != integer) {
1084          printerr("Bad Argument Type");
1085          env->err=2;
1086          return;
1087        }
1088        
1089        truth= env->head->item->content.val;
1090        toss(env); if(env->err) return;
1091        
1092        if(truth) {
1093          push_val(env, loop);
1094          eval(env);
1095        } else {
1096          toss(env);
1097        }
1098      
1099      } while(truth);
1100    
1101      free_val(test);
1102      free_val(loop);
1103    }
1104    
1105    /* For-loop */
1106    extern void sx_666f72(environment *env) {
1107      
1108      value *loop, *foo;
1109      stackitem *iterator;
1110      
1111      if((env->head)==NULL || env->head->next==NULL) {
1112        printerr("Too Few Arguments");
1113        env->err=1;
1114        return;
1115      }
1116    
1117      if(env->head->next->item->type != list) {
1118        printerr("Bad Argument Type");
1119        env->err=2;
1120        return;
1121      }
1122    
1123      loop= env->head->item;
1124      loop->refcount++;
1125      toss(env); if(env->err) return;
1126    
1127      foo= env->head->item;
1128      foo->refcount++;
1129      toss(env); if(env->err) return;
1130    
1131      iterator= foo->content.ptr;
1132    
1133      while(iterator!=NULL) {
1134        push_val(env, iterator->item);
1135        push_val(env, loop);
1136        eval(env); if(env->err) return;
1137        iterator= iterator->next;
1138      }
1139    
1140      free_val(loop);
1141      free_val(foo);
1142    }
1143    
1144    /* 'to' */
1145    extern void to(environment *env) {
1146      int i, start, ending;
1147      
1148      if((env->head)==NULL || env->head->next==NULL) {
1149        printerr("Too Few Arguments");
1150        env->err=1;
1151        return;
1152      }
1153    
1154      if(env->head->item->type!=integer
1155         || env->head->next->item->type!=integer) {
1156        printerr("Bad Argument Type");
1157        env->err=2;
1158        return;
1159      }
1160    
1161      ending= env->head->item->content.val;
1162      toss(env); if(env->err) return;
1163      start= env->head->item->content.val;
1164      toss(env); if(env->err) return;
1165    
1166      push_sym(env, "[");
1167    
1168      if(ending>=start) {
1169        for(i= start; i<=ending; i++)
1170          push_int(env, i);
1171      } else {
1172        for(i= start; i>=ending; i--)
1173          push_int(env, i);
1174      }
1175    
1176      pack(env); if(env->err) return;
1177    }
1178    
1179    /* Read a string */
1180    extern void readline(environment *env) {
1181      char in_string[101];
1182    
1183      fgets(in_string, 100, stdin);
1184      push_cstring(env, in_string);
1185    }
1186    
1187    /* Read a value and place on stack */
1188    extern void read(environment *env) {
1189      const char symbform[]= "%[a-zA-Z0-9!$%*+./:<=>?@^_~-]%[\001-\377]";
1190      const char strform[]= "\"%[^\"]\"%[\001-\377]";
1191      const char intform[]= "%i%[\001-\377]";
1192      const char blankform[]= "%*[ \t]%[\001-\377]";
1193      const char ebrackform[]= "%*1[]]%[\001-\377]";
1194      const char semicform[]= "%*1[;]%[\001-\377]";
1195      const char bbrackform[]= "%*1[[]%[\001-\377]";
1196    
1197      int itemp;
1198      static int depth= 0;
1199      char *rest, *match;
1200      size_t inlength;
1201    
1202      if(env->in_string==NULL) {
1203        readline(env); if(env->err) return;
1204        
1205        env->in_string= malloc(strlen(env->head->item->content.ptr)+1);
1206        strcpy(env->in_string, env->head->item->content.ptr);
1207        toss(env); if(env->err) return;
1208      }
1209      
1210      inlength= strlen(env->in_string)+1;
1211      match= malloc(inlength);
1212      rest= malloc(inlength);
1213    
1214      if(sscanf(env->in_string, blankform, rest)) {
1215        ;
1216      } else if(sscanf(env->in_string, intform, &itemp, rest) > 0) {
1217        push_int(env, itemp);
1218      } else if(sscanf(env->in_string, strform, match, rest) > 0) {
1219        push_cstring(env, match);
1220      } else if(sscanf(env->in_string, symbform, match, rest) > 0) {
1221        push_sym(env, match);
1222      } else if(sscanf(env->in_string, ebrackform, rest) > 0) {
1223        pack(env); if(env->err) return;
1224        if(depth!=0) depth--;
1225      } else if(sscanf(env->in_string, semicform, rest) > 0) {
1226        push_sym(env, ";");
1227      } else if(sscanf(env->in_string, bbrackform, rest) > 0) {
1228        push_sym(env, "[");
1229        depth++;
1230      } else {
1231        free(rest);
1232        rest= NULL;
1233      }
1234          
1235      free(env->in_string);
1236      free(match);
1237    
1238      env->in_string= rest;
1239    
1240      if(depth)
1241        return read(env);
1242  }  }

Legend:
Removed from v.1.54  
changed lines
  Added in v.1.73

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26