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

Diff of /stack/stack.c

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

revision 1.90 by masse, Thu Mar 7 01:21:07 2002 UTC revision 1.133 by masse, Mon Aug 11 14:31:48 2003 UTC
# Line 1  Line 1 
1  /* printf, sscanf, fgets, fprintf, fopen, perror */  /* -*- coding: utf-8; -*- */
2  #include <stdio.h>  /*
3  /* exit, EXIT_SUCCESS, malloc, free */      stack - an interactive interpreter for a stack-based language
4  #include <stdlib.h>      Copyright (C) 2002  Mats Alritzson and Teddy Hogeborn
5  /* NULL */  
6  #include <stddef.h>      This program is free software; you can redistribute it and/or modify
7  /* dlopen, dlsym, dlerror */      it under the terms of the GNU General Public License as published by
8  #include <dlfcn.h>      the Free Software Foundation; either version 2 of the License, or
9  /* strcmp, strcpy, strlen, strcat, strdup */      (at your option) any later version.
10  #include <string.h>  
11  /* getopt, STDIN_FILENO, STDOUT_FILENO */      This program is distributed in the hope that it will be useful,
12  #include <unistd.h>      but WITHOUT ANY WARRANTY; without even the implied warranty of
13  /* EX_NOINPUT, EX_USAGE */      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  #include <sysexits.h>      GNU General Public License for more details.
15  /* mtrace, muntrace */  
16  #include <mcheck.h>      You should have received a copy of the GNU General Public License
17        along with this program; if not, write to the Free Software
18        Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19    
20        Authors: Mats Alritzson <masse@fukt.bth.se>
21                 Teddy Hogeborn <teddy@fukt.bth.se>
22    */
23    
24  #include "stack.h"  #include "stack.h"
25    
26    const char* start_message= "Stack version $Revision$\n\
27    Copyright (C) 2002  Mats Alritzson and Teddy Hogeborn\n\
28    Stack comes with ABSOLUTELY NO WARRANTY; for details type 'warranty;'.\n\
29    This is free software, and you are welcome to redistribute it\n\
30    under certain conditions; type 'copying;' for details.\n";
31    
32    
33  /* Initialize a newly created environment */  /* Initialize a newly created environment */
34  void init_env(environment *env)  void init_env(environment *env)
35  {  {
36    int i;    int i;
37    
38    env->gc_limit= 20;    env->gc_limit= 400000;
39    env->gc_count= 0;    env->gc_count= 0;
40    env->gc_ref= NULL;    env->gc_ref= NULL;
   env->gc_protect= NULL;  
41    
42    env->head= NULL;    env->head= new_val(env);
43    for(i= 0; i<HASHTBLSIZE; i++)    for(i= 0; i<HASHTBLSIZE; i++)
44      env->symbols[i]= NULL;      env->symbols[i]= NULL;
45    env->err= 0;    env->err= 0;
# Line 37  void init_env(environment *env) Line 49  void init_env(environment *env)
49    env->interactive= 1;    env->interactive= 1;
50  }  }
51    
 void printerr(const char* in_string) {  
   fprintf(stderr, "Err: %s\n", in_string);  
 }  
52    
53  /* Discard the top element of the stack. */  void printerr(environment *env, const char* in_string)
 extern void toss(environment *env)  
54  {  {
55    stackitem *temp= env->head;    fprintf(stderr, "\"%s\":\nErr: %s\n", env->errsymb, in_string);
   
   if((env->head)==NULL) {  
     printerr("Too Few Arguments");  
     env->err= 1;  
     return;  
   }  
     
   env->head= env->head->next;   /* Remove the top stack item */  
   free(temp);                   /* Free the old top stack item */  
   
   gc_init(env);  
56  }  }
57    
58    
59  /* 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. */
60  symbol **hash(hashtbl in_hashtbl, const char *in_string)  symbol **hash(hashtbl in_hashtbl, const char *in_string)
61  {  {
# Line 87  symbol **hash(hashtbl in_hashtbl, const Line 85  symbol **hash(hashtbl in_hashtbl, const
85    }    }
86  }  }
87    
88  value* new_val(environment *env) {  
89    /* Create new value */
90    value* new_val(environment *env)
91    {
92    value *nval= malloc(sizeof(value));    value *nval= malloc(sizeof(value));
93    stackitem *nitem= malloc(sizeof(stackitem));    stackitem *nitem= malloc(sizeof(stackitem));
94    
95    nval->content.ptr= NULL;    assert(nval != NULL);
96    protect(env, nval);    assert(nitem != NULL);
97    
98    gc_init(env);    nval->content.ptr= NULL;
99      nval->type= empty;
100    
101    nitem->item= nval;    nitem->item= nval;
102    nitem->next= env->gc_ref;    nitem->next= env->gc_ref;
103    
104    env->gc_ref= nitem;    env->gc_ref= nitem;
105    
106    env->gc_count++;    env->gc_count += sizeof(value);
107    unprotect(env);    nval->gc.flag.mark= 0;
108      nval->gc.flag.protect= 0;
109    
110    return nval;    return nval;
111  }  }
112    
 void gc_mark(value *val) {  
   stackitem *iterator;  
113    
114    if(val==NULL || val->gc_garb==0)  /* Mark values recursively.
115       Marked values are not collected by the GC. */
116    inline void gc_mark(value *val)
117    {
118      if(val==NULL || val->gc.flag.mark)
119      return;      return;
120    
121    val->gc_garb= 0;    val->gc.flag.mark= 1;
122    
123    if(val->type==list) {    if(val->type==tcons) {
124      iterator= val->content.ptr;      gc_mark(CAR(val));
125        gc_mark(CDR(val));
     while(iterator!=NULL) {  
       gc_mark(iterator->item);  
       iterator= iterator->next;  
     }  
126    }    }
127  }  }
128    
129  extern void gc_init(environment *env) {  
130    stackitem *new_head= NULL, *titem, *iterator= env->gc_ref;  /* Start GC */
131    extern void gc_init(environment *env)
132    {
133      stackitem *new_head= NULL, *titem;
134    symbol *tsymb;    symbol *tsymb;
135    int i;    int i;
136    
137    if(env->gc_count < env->gc_limit)    if(env->interactive)
138      return;      printf("Garbage collecting.");
139    
140    while(iterator!=NULL) {    /* Mark values on stack */
141      iterator->item->gc_garb= 1;    gc_mark(env->head);
     iterator= iterator->next;  
   }  
142    
143    /* Mark */    if(env->interactive)
144    iterator= env->gc_protect;      printf(".");
   while(iterator!=NULL) {  
     gc_mark(iterator->item);  
     iterator= iterator->next;  
   }  
145    
146    iterator= env->head;    /* Mark values in hashtable */
147    while(iterator!=NULL) {    for(i= 0; i<HASHTBLSIZE; i++)
148      gc_mark(iterator->item);      for(tsymb= env->symbols[i]; tsymb!=NULL; tsymb= tsymb->next)
149      iterator= iterator->next;        if (tsymb->val != NULL)
150    }          gc_mark(tsymb->val);
151    
152    for(i= 0; i<HASHTBLSIZE; i++) {    if(env->interactive)
153      tsymb= env->symbols[i];      printf(".");
     while(tsymb!=NULL) {  
       gc_mark(tsymb->val);  
       tsymb= tsymb->next;  
     }  
   }  
154    
155    env->gc_count= 0;    env->gc_count= 0;
156    
157    /* Sweep */    while(env->gc_ref!=NULL) {    /* Sweep unused values */
158    while(env->gc_ref!=NULL) {      if(!(env->gc_ref->item->gc.no_gc)){ /* neither mark nor protect */
159    
160      if(env->gc_ref->item->gc_garb) {        /* Remove content */
161        switch(env->gc_ref->item->type) {        switch(env->gc_ref->item->type){
162        case string:        case string:
163          free(env->gc_ref->item->content.ptr);          free(env->gc_ref->item->content.string);
164          break;          break;
165        case integer:        case tcons:
166            free(env->gc_ref->item->content.c);
167          break;          break;
168        case list:        case port:
169          while(env->gc_ref->item->content.ptr!=NULL) {        case empty:
170            titem= env->gc_ref->item->content.ptr;        case unknown:
171            env->gc_ref->item->content.ptr= titem->next;        case integer:
172            free(titem);        case tfloat:
173          }        case func:
174          break;        case symb:
175        default:          /* Symbol strings are freed when walking the hash table */
176          break;          break;
177        }        }
178        free(env->gc_ref->item);  
179        titem= env->gc_ref->next;        free(env->gc_ref->item);  /* Remove from gc_ref */
       free(env->gc_ref);  
       env->gc_ref= titem;  
     } else {  
180        titem= env->gc_ref->next;        titem= env->gc_ref->next;
181        env->gc_ref->next= new_head;        free(env->gc_ref);        /* Remove value */
       new_head= env->gc_ref;  
182        env->gc_ref= titem;        env->gc_ref= titem;
183        env->gc_count++;        continue;
184        }
185    
186    #ifdef DEBUG
187        printf("Kept value (%p)", env->gc_ref->item);
188        if(env->gc_ref->item->gc.flag.mark)
189          printf(" (marked)");
190        if(env->gc_ref->item->gc.flag.protect)
191          printf(" (protected)");
192        switch(env->gc_ref->item->type){
193        case integer:
194          printf(" integer: %d", env->gc_ref->item->content.i);
195          break;
196        case func:
197          printf(" func: %p", env->gc_ref->item->content.func);
198          break;
199        case symb:
200          printf(" symb: %s", env->gc_ref->item->content.sym->id);
201          break;
202        case tcons:
203          printf(" tcons: %p\t%p", CAR(env->gc_ref->item),
204                 CDR(env->gc_ref->item));
205          break;
206        default:
207          printf(" <unknown %d>", (env->gc_ref->item->type));
208      }      }
209        printf("\n");
210    #endif /* DEBUG */
211    
212        /* Keep values */    
213        env->gc_count += sizeof(value);
214        if(env->gc_ref->item->type==string)
215          env->gc_count += strlen(env->gc_ref->item->content.string)+1;
216        
217        titem= env->gc_ref->next;
218        env->gc_ref->next= new_head;
219        new_head= env->gc_ref;
220        new_head->item->gc.flag.mark= 0;
221        env->gc_ref= titem;
222    }    }
223    
224    env->gc_limit= env->gc_count*2;    if (env->gc_limit < env->gc_count*2)
225        env->gc_limit= env->gc_count*2;
226    
227    env->gc_ref= new_head;    env->gc_ref= new_head;
228    
229      if(env->interactive)
230        printf("done (%d bytes still allocated)\n", env->gc_count);
231    
232  }  }
233    
234  void protect(environment *env, value *val)  
235    inline void gc_maybe(environment *env)
236  {  {
237    stackitem *new_item= malloc(sizeof(stackitem));    if(env->gc_count < env->gc_limit)
238    new_item->item= val;      return;
239    new_item->next= env->gc_protect;    else
240    env->gc_protect= new_item;      return gc_init(env);
241  }  }
242    
243  void unprotect(environment *env)  
244    /* Protect values from GC */
245    void protect(value *val)
246  {  {
247    stackitem *temp= env->gc_protect;    if(val==NULL || val->gc.flag.protect)
248    env->gc_protect= env->gc_protect->next;      return;
249    free(temp);  
250      val->gc.flag.protect= 1;
251    
252      if(val->type==tcons) {
253        protect(CAR(val));
254        protect(CDR(val));
255      }
256  }  }
257    
258    
259    /* Unprotect values from GC */
260    void unprotect(value *val)
261    {
262      if(val==NULL || !(val->gc.flag.protect))
263        return;
264    
265      val->gc.flag.protect= 0;
266    
267      if(val->type==tcons) {
268        unprotect(CAR(val));
269        unprotect(CDR(val));
270      }
271    }
272    
273    
274  /* Push a value onto the stack */  /* Push a value onto the stack */
275  void push_val(environment *env, value *val)  void push_val(environment *env, value *val)
276  {  {
277    stackitem *new_item= malloc(sizeof(stackitem));    value *new_value= new_val(env);
278    new_item->item= val;  
279    new_item->next= env->head;    new_value->content.c= malloc(sizeof(pair));
280    env->head= new_item;    assert(new_value->content.c!=NULL);
281      env->gc_count += sizeof(pair);
282      new_value->type= tcons;
283      CAR(new_value)= val;
284      CDR(new_value)= env->head;
285      env->head= new_value;
286  }  }
287    
288  /* Push an integer onto the stack. */  
289    /* Push an integer onto the stack */
290  void push_int(environment *env, int in_val)  void push_int(environment *env, int in_val)
291  {  {
292    value *new_value= new_val(env);    value *new_value= new_val(env);
293        
294    new_value->content.val= in_val;    new_value->content.i= in_val;
295    new_value->type= integer;    new_value->type= integer;
296    
297    push_val(env, new_value);    push_val(env, new_value);
298  }  }
299    
300    
301    /* Push a floating point number onto the stack */
302    void push_float(environment *env, float in_val)
303    {
304      value *new_value= new_val(env);
305    
306      new_value->content.f= in_val;
307      new_value->type= tfloat;
308    
309      push_val(env, new_value);
310    }
311    
312    
313  /* Copy a string onto the stack. */  /* Copy a string onto the stack. */
314  void push_cstring(environment *env, const char *in_string)  void push_cstring(environment *env, const char *in_string)
315  {  {
316    value *new_value= new_val(env);    value *new_value= new_val(env);
317      int length= strlen(in_string)+1;
318    
319    new_value->content.ptr= malloc(strlen(in_string)+1);    new_value->content.string= malloc(length);
320    strcpy(new_value->content.ptr, in_string);    assert(new_value != NULL);
321      env->gc_count += length;
322      strcpy(new_value->content.string, in_string);
323    new_value->type= string;    new_value->type= string;
324    
325    push_val(env, new_value);    push_val(env, new_value);
326  }  }
327    
328    
329  /* Mangle a symbol name to a valid C identifier name */  /* Mangle a symbol name to a valid C identifier name */
330  char *mangle_str(const char *old_string){  char *mangle_str(const char *old_string)
331    {
332    char validchars[]= "0123456789abcdef";    char validchars[]= "0123456789abcdef";
333    char *new_string, *current;    char *new_string, *current;
334    
335    new_string= malloc((strlen(old_string)*2)+4);    new_string= malloc((strlen(old_string)*2)+4);
336      assert(new_string != NULL);
337    strcpy(new_string, "sx_");    /* Stack eXternal */    strcpy(new_string, "sx_");    /* Stack eXternal */
338    current= new_string+3;    current= new_string+3;
339    
340    while(old_string[0] != '\0'){    while(old_string[0] != '\0'){
341      current[0]= validchars[(unsigned char)(old_string[0])/16];      current[0]= validchars[(unsigned char)(old_string[0])/16];
342      current[1]= validchars[(unsigned char)(old_string[0])%16];      current[1]= validchars[(unsigned char)(old_string[0])%16];
# Line 263  char *mangle_str(const char *old_string) Line 348  char *mangle_str(const char *old_string)
348    return new_string;            /* The caller must free() it */    return new_string;            /* The caller must free() it */
349  }  }
350    
 extern void mangle(environment *env){  
   char *new_string;  
   
   if((env->head)==NULL) {  
     printerr("Too Few Arguments");  
     env->err= 1;  
     return;  
   }  
   
   if(env->head->item->type!=string) {  
     printerr("Bad Argument Type");  
     env->err= 2;  
     return;  
   }  
   
   new_string= mangle_str((const char *)(env->head->item->content.ptr));  
   
   toss(env);  
   if(env->err) return;  
   
   push_cstring(env, new_string);  
 }  
351    
352  /* Push a symbol onto the stack. */  /* Push a symbol onto the stack. */
353  void push_sym(environment *env, const char *in_string)  void push_sym(environment *env, const char *in_string)
# Line 302  void push_sym(environment *env, const ch Line 365  void push_sym(environment *env, const ch
365    char *mangled;                /* Mangled function name */    char *mangled;                /* Mangled function name */
366    
367    new_value= new_val(env);    new_value= new_val(env);
368      new_fvalue= new_val(env);
369    
370    /* The new value is a symbol */    /* The new value is a symbol */
371    new_value->type= symb;    new_value->type= symb;
372    
373    /* Look up the symbol name in the hash table */    /* Look up the symbol name in the hash table */
374    new_symbol= hash(env->symbols, in_string);    new_symbol= hash(env->symbols, in_string);
375    new_value->content.ptr= *new_symbol;    new_value->content.sym= *new_symbol;
376    
377    if(*new_symbol==NULL) { /* If symbol was undefined */    if(*new_symbol==NULL) { /* If symbol was undefined */
378    
379      /* Create a new symbol */      /* Create a new symbol */
380      (*new_symbol)= malloc(sizeof(symbol));      (*new_symbol)= malloc(sizeof(symbol));
381        assert((*new_symbol) != NULL);
382      (*new_symbol)->val= NULL;   /* undefined value */      (*new_symbol)->val= NULL;   /* undefined value */
383      (*new_symbol)->next= NULL;      (*new_symbol)->next= NULL;
384      (*new_symbol)->id= malloc(strlen(in_string)+1);      (*new_symbol)->id= malloc(strlen(in_string)+1);
385        assert((*new_symbol)->id != NULL);
386      strcpy((*new_symbol)->id, in_string);      strcpy((*new_symbol)->id, in_string);
387    
388      /* Intern the new symbol in the hash table */      /* Intern the new symbol in the hash table */
389      new_value->content.ptr= *new_symbol;      new_value->content.sym= *new_symbol;
390    
391      /* Try to load the symbol name as an external function, to see if      /* Try to load the symbol name as an external function, to see if
392         we should bind the symbol to a new function pointer value */         we should bind the symbol to a new function pointer value */
# Line 329  void push_sym(environment *env, const ch Line 395  void push_sym(environment *env, const ch
395    
396      mangled= mangle_str(in_string); /* mangle the name */      mangled= mangle_str(in_string); /* mangle the name */
397      funcptr= dlsym(handle, mangled); /* and try to find it */      funcptr= dlsym(handle, mangled); /* and try to find it */
398      free(mangled);  
399      dlerr= dlerror();      dlerr= dlerror();
400      if(dlerr != NULL) {         /* If no function was found */      if(dlerr != NULL) {         /* If no function was found */
401        funcptr= dlsym(handle, in_string); /* Get function pointer */        funcptr= dlsym(handle, in_string); /* Get function pointer */
402        dlerr= dlerror();        dlerr= dlerror();
403      }      }
404    
405      if(dlerr==NULL) {           /* If a function was found */      if(dlerr==NULL) {           /* If a function was found */
       new_fvalue= new_val(env); /* Create a new value */  
406        new_fvalue->type= func;   /* The new value is a function pointer */        new_fvalue->type= func;   /* The new value is a function pointer */
407        new_fvalue->content.ptr= funcptr; /* Store function pointer */        new_fvalue->content.func= funcptr; /* Store function pointer */
408        (*new_symbol)->val= new_fvalue; /* Bind the symbol to the new        (*new_symbol)->val= new_fvalue; /* Bind the symbol to the new
409                                           function value */                                           function value */
410      }      }
411    
412        free(mangled);
413    }    }
   push_val(env, new_value);  
 }  
414    
415  /* Print newline. */    push_val(env, new_value);
 extern void nl()  
 {  
   printf("\n");  
416  }  }
417    
 /* Gets the type of a value */  
 extern void type(environment *env){  
   int typenum;  
418    
419    if((env->head)==NULL) {  /* Print a value */
420      printerr("Too Few Arguments");  void print_val(environment *env, value *val, int noquote, stackitem *stack,
421      env->err=1;                 FILE *stream)
422      return;  {
423    }    stackitem *titem, *tstack;
424    typenum=env->head->item->type;    int depth;
425    toss(env);  
426    switch(typenum){    switch(val->type) {
427    case integer:    case empty:
428      push_sym(env, "integer");      if(fprintf(stream, "[]") < 0){
429      break;        perror("print_val");
430    case string:        env->err= 5;
431      push_sym(env, "string");        return;
432      break;      }
   case symb:  
     push_sym(env, "symbol");  
     break;  
   case func:  
     push_sym(env, "function");  
433      break;      break;
434    case list:    case unknown:
435      push_sym(env, "list");      if(fprintf(stream, "UNKNOWN") < 0){
436          perror("print_val");
437          env->err= 5;
438          return;
439        }
440      break;      break;
   }  
 }      
   
 /* Prints the top element of the stack. */  
 void print_h(stackitem *stack_head, int noquote)  
 {  
   switch(stack_head->item->type) {  
441    case integer:    case integer:
442      printf("%d", stack_head->item->content.val);      if(fprintf(stream, "%d", val->content.i) < 0){
443          perror("print_val");
444          env->err= 5;
445          return;
446        }
447        break;
448      case tfloat:
449        if(fprintf(stream, "%f", val->content.f) < 0){
450          perror("print_val");
451          env->err= 5;
452          return;
453        }
454      break;      break;
455    case string:    case string:
456      if(noquote)      if(noquote){
457        printf("%s", (char*)stack_head->item->content.ptr);        if(fprintf(stream, "%s", val->content.string) < 0){
458      else          perror("print_val");
459        printf("\"%s\"", (char*)stack_head->item->content.ptr);          env->err= 5;
460            return;
461          }
462        } else {                    /* quote */
463          if(fprintf(stream, "\"%s\"", val->content.string) < 0){
464            perror("print_val");
465            env->err= 5;
466            return;
467          }
468        }
469      break;      break;
470    case symb:    case symb:
471      printf("%s", ((symbol *)(stack_head->item->content.ptr))->id);      if(fprintf(stream, "%s", val->content.sym->id) < 0){
472          perror("print_val");
473          env->err= 5;
474          return;
475        }
476      break;      break;
477    case func:    case func:
478      printf("#<function %p>", (funcp)(stack_head->item->content.ptr));      if(fprintf(stream, "#<function %p>", val->content.func) < 0){
479          perror("print_val");
480          env->err= 5;
481          return;
482        }
483      break;      break;
484    case list:    case port:
485      /* A list is just a stack, so make stack_head point to it */      if(fprintf(stream, "#<port %p>", val->content.p) < 0){
486      stack_head=(stackitem *)(stack_head->item->content.ptr);        perror("print_val");
487      printf("[ ");        env->err= 5;
488      while(stack_head != NULL) {        return;
       print_h(stack_head, noquote);  
       printf(" ");  
       stack_head=stack_head->next;  
489      }      }
     printf("]");  
490      break;      break;
491    }    case tcons:
492  }      if(fprintf(stream, "[ ") < 0){
493          perror("print_val");
494          env->err= 5;
495          return;
496        }
497        tstack= stack;
498    
499  extern void print_(environment *env) {      do {
500    if(env->head==NULL) {        titem=malloc(sizeof(stackitem));
501      printerr("Too Few Arguments");        assert(titem != NULL);
502      env->err=1;        titem->item=val;
503      return;        titem->next=tstack;
504    }        tstack=titem;             /* Put it on the stack */
505    print_h(env->head, 0);        /* Search a stack of values being printed to see if we are already
506    nl();           printing this value */
507  }        titem=tstack;
508          depth=0;
509    
510          while(titem != NULL && titem->item != CAR(val)){
511            titem=titem->next;
512            depth++;
513          }
514    
515  /* Prints the top element of the stack and then discards it. */        if(titem != NULL){        /* If we found it on the stack, */
516  extern void print(environment *env)          if(fprintf(stream, "#%d#", depth) < 0){ /* print a depth reference */
517  {            perror("print_val");
518    print_(env);            env->err= 5;
519    if(env->err) return;            free(titem);
520    toss(env);            return;
521  }          }
522          } else {
523            print_val(env, CAR(val), noquote, tstack, stream);
524          }
525    
526  extern void princ_(environment *env) {        val= CDR(val);
527    if(env->head==NULL) {        switch(val->type){
528      printerr("Too Few Arguments");        case empty:
529      env->err=1;          break;
530      return;        case tcons:
531    }          /* Search a stack of values being printed to see if we are already
532    print_h(env->head, 1);             printing this value */
533  }          titem=tstack;
534            depth=0;
535    
536            while(titem != NULL && titem->item != val){
537              titem=titem->next;
538              depth++;
539            }
540            if(titem != NULL){      /* If we found it on the stack, */
541              if(fprintf(stream, " . #%d#", depth) < 0){ /* print a depth reference */
542                perror("print_val");
543                env->err= 5;
544                goto printval_end;
545              }
546            } else {
547              if(fprintf(stream, " ") < 0){
548                perror("print_val");
549                env->err= 5;
550                goto printval_end;
551              }
552            }
553            break;
554          default:
555            if(fprintf(stream, " . ") < 0){ /* Improper list */
556              perror("print_val");
557              env->err= 5;
558              goto printval_end;
559            }
560            print_val(env, val, noquote, tstack, stream);
561          }
562        } while(val->type == tcons && titem == NULL);
563    
564  /* Prints the top element of the stack and then discards it. */    printval_end:
 extern void princ(environment *env)  
 {  
   princ_(env);  
   if(env->err) return;  
   toss(env);  
 }  
565    
566  /* Only to be called by function printstack. */      titem=tstack;
567  void print_st(stackitem *stack_head, long counter)      while(titem != stack){
568  {        tstack=titem->next;
569    if(stack_head->next != NULL)        free(titem);
570      print_st(stack_head->next, counter+1);        titem=tstack;
571    printf("%ld: ", counter);      }
   print_h(stack_head, 0);  
   nl();  
 }  
572    
573  /* Prints the stack. */      if(! (env->err)){
574  extern void printstack(environment *env)        if(fprintf(stream, " ]") < 0){
575  {          perror("print_val");
576    if(env->head == NULL) {          env->err= 5;
577      printf("Stack Empty\n");        }
578      return;      }
579        break;
580    }    }
   print_st(env->head, 1);  
581  }  }
582    
583    
584  /* Swap the two top elements on the stack. */  /* Swap the two top elements on the stack. */
585  extern void swap(environment *env)  extern void swap(environment *env)
586  {  {
587    stackitem *temp= env->head;    value *temp= env->head;
588        
589    if(env->head==NULL || env->head->next==NULL) {    if(env->head->type == empty || CDR(env->head)->type == empty) {
590      printerr("Too Few Arguments");      printerr(env, "Too Few Arguments");
591      env->err=1;      env->err=1;
592      return;      return;
593    }    }
594    
595    env->head= env->head->next;    env->head= CDR(env->head);
596    temp->next= env->head->next;    CDR(temp)= CDR(env->head);
597    env->head->next= temp;    CDR(env->head)= temp;
598  }  }
599    
 /* Rotate the first three elements on the stack. */  
 extern void rot(environment *env)  
 {  
   stackitem *temp= env->head;  
     
   if(env->head==NULL || env->head->next==NULL  
       || env->head->next->next==NULL) {  
     printerr("Too Few Arguments");  
     env->err=1;  
     return;  
   }  
   
   env->head= env->head->next->next;  
   temp->next->next= env->head->next;  
   env->head->next= temp;  
 }  
600    
601  /* Recall a value from a symbol, if bound */  /* Recall a value from a symbol, if bound */
602  extern void rcl(environment *env)  extern void rcl(environment *env)
603  {  {
604    value *val;    value *val;
605    
606    if(env->head == NULL) {    if(env->head->type==empty) {
607      printerr("Too Few Arguments");      printerr(env, "Too Few Arguments");
608      env->err=1;      env->err= 1;
609      return;      return;
610    }    }
611    
612    if(env->head->item->type!=symb) {    if(CAR(env->head)->type!=symb) {
613      printerr("Bad Argument Type");      printerr(env, "Bad Argument Type");
614      env->err=2;      env->err= 2;
615      return;      return;
616    }    }
617    
618    val=((symbol *)(env->head->item->content.ptr))->val;    val= CAR(env->head)->content.sym->val;
619    if(val == NULL){    if(val == NULL){
620      printerr("Unbound Variable");      printerr(env, "Unbound Variable");
621      env->err=3;      env->err= 3;
622      return;      return;
623    }    }
624    protect(env, val);    push_val(env, val);           /* Return the symbol's bound value */
625    toss(env);            /* toss the symbol */    swap(env);
626    if(env->err) return;    if(env->err) return;
627    push_val(env, val); /* Return its bound value */    env->head= CDR(env->head);
   unprotect(env);  
628  }  }
629    
630    
631  /* 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
632     function value, and if it is, toss the symbol and execute the     function value, and if it is, toss the symbol and execute the
633     function. */     function. */
# Line 540  extern void eval(environment *env) Line 635  extern void eval(environment *env)
635  {  {
636    funcp in_func;    funcp in_func;
637    value* temp_val;    value* temp_val;
638    stackitem* iterator;    value* iterator;
639    
640   eval_start:   eval_start:
641    
642    if(env->head==NULL) {    gc_maybe(env);
643      printerr("Too Few Arguments");  
644      env->err=1;    if(env->head->type==empty) {
645        printerr(env, "Too Few Arguments");
646        env->err= 1;
647      return;      return;
648    }    }
649    
650    switch(env->head->item->type) {    switch(CAR(env->head)->type) {
651      /* if it's a symbol */      /* if it's a symbol */
652    case symb:    case symb:
653        env->errsymb= CAR(env->head)->content.sym->id;
654      rcl(env);                   /* get its contents */      rcl(env);                   /* get its contents */
655      if(env->err) return;      if(env->err) return;
656      if(env->head->item->type!=symb){ /* don't recurse symbols */      if(CAR(env->head)->type!=symb){ /* don't recurse symbols */
657        goto eval_start;        goto eval_start;
658      }      }
659      return;      return;
660    
661      /* If it's a lone function value, run it */      /* If it's a lone function value, run it */
662    case func:    case func:
663      in_func= (funcp)(env->head->item->content.ptr);      in_func= CAR(env->head)->content.func;
664      toss(env);      env->head= CDR(env->head);
     if(env->err) return;  
665      return in_func(env);      return in_func(env);
666    
667      /* If it's a list */      /* If it's a list */
668    case list:    case tcons:
669      temp_val= env->head->item;      temp_val= CAR(env->head);
670      protect(env, temp_val);      protect(temp_val);
671      toss(env);  
672      if(env->err) return;      env->head= CDR(env->head);
673      iterator= (stackitem*)temp_val->content.ptr;      iterator= temp_val;
     unprotect(env);  
674            
675      while(iterator!=NULL) {      while(iterator->type != empty) {
676        push_val(env, iterator->item);        push_val(env, CAR(iterator));
677                
678        if(env->head->item->type==symb       if(CAR(env->head)->type==symb
679          && strcmp(";", ((symbol*)(env->head->item->content.ptr))->id)==0) {           && CAR(env->head)->content.sym->id[0]==';') {
680          toss(env);          env->head= CDR(env->head);
         if(env->err) return;  
681                    
682          if(iterator->next == NULL){          if(CDR(iterator)->type == empty){
683            goto eval_start;            goto eval_start;
684          }          }
685          eval(env);          eval(env);
686          if(env->err) return;          if(env->err) return;
687        }        }
688        iterator= iterator->next;        if (CDR(iterator)->type == empty || CDR(iterator)->type == tcons)
689            iterator= CDR(iterator);
690          else {
691            printerr(env, "Bad Argument Type"); /* Improper list */
692            env->err= 2;
693            return;
694          }
695      }      }
696        unprotect(temp_val);
697      return;      return;
698    
699    default:    case empty:
700      return;      env->head= CDR(env->head);
701    }    case integer:
702  }    case tfloat:
703      case string:
704  /* Reverse (flip) a list */    case port:
705  extern void rev(environment *env){    case unknown:
   stackitem *old_head, *new_head, *item;  
   
   if((env->head)==NULL) {  
     printerr("Too Few Arguments");  
     env->err= 1;  
     return;  
   }  
   
   if(env->head->item->type!=list) {  
     printerr("Bad Argument Type");  
     env->err= 2;  
     return;  
   }  
   
   old_head= (stackitem *)(env->head->item->content.ptr);  
   new_head= NULL;  
   while(old_head != NULL){  
     item= old_head;  
     old_head= old_head->next;  
     item->next= new_head;  
     new_head= item;  
   }  
   env->head->item->content.ptr= new_head;  
 }  
   
 /* Make a list. */  
 extern void pack(environment *env)  
 {  
   stackitem *iterator, *temp;  
   value *pack;  
   
   iterator= env->head;  
   
   if(iterator==NULL  
      || (iterator->item->type==symb  
      && ((symbol*)(iterator->item->content.ptr))->id[0]=='[')) {  
     temp= NULL;  
     toss(env);  
   } else {  
     /* Search for first delimiter */  
     while(iterator->next!=NULL  
           && (iterator->next->item->type!=symb  
           || ((symbol*)(iterator->next->item->content.ptr))->id[0]!='['))  
       iterator= iterator->next;  
       
     /* Extract list */  
     temp= env->head;  
     env->head= iterator->next;  
     iterator->next= NULL;  
       
     if(env->head!=NULL)  
       toss(env);  
   }  
   
   /* Push list */  
   pack= new_val(env);  
   pack->type= list;  
   pack->content.ptr= temp;  
   
   push_val(env, pack);  
   rev(env);  
 }  
   
 /* Relocate elements of the list on the stack. */  
 extern void expand(environment *env)  
 {  
   stackitem *temp, *new_head;  
   
   /* Is top element a list? */  
   if(env->head==NULL) {  
     printerr("Too Few Arguments");  
     env->err= 1;  
     return;  
   }  
   if(env->head->item->type!=list) {  
     printerr("Bad Argument Type");  
     env->err= 2;  
     return;  
   }  
   
   rev(env);  
   
   if(env->err)  
     return;  
   
   /* The first list element is the new stack head */  
   new_head= temp= env->head->item->content.ptr;  
   
   toss(env);  
   
   /* Find the end of the list */  
   while(temp->next!=NULL)  
     temp= temp->next;  
   
   /* Connect the tail of the list with the old stack head */  
   temp->next= env->head;  
   env->head= new_head;          /* ...and voila! */  
   
 }  
   
 /* Compares two elements by reference. */  
 extern void eq(environment *env)  
 {  
   void *left, *right;  
   int result;  
   
   if((env->head)==NULL || env->head->next==NULL) {  
     printerr("Too Few Arguments");  
     env->err= 1;  
     return;  
   }  
   
   left= env->head->item->content.ptr;  
   swap(env);  
   right= env->head->item->content.ptr;  
   result= (left==right);  
     
   toss(env); toss(env);  
   push_int(env, result);  
 }  
   
 /* Negates the top element on the stack. */  
 extern void not(environment *env)  
 {  
   int val;  
   
   if((env->head)==NULL) {  
     printerr("Too Few Arguments");  
     env->err= 1;  
     return;  
   }  
   
   if(env->head->item->type!=integer) {  
     printerr("Bad Argument Type");  
     env->err= 2;  
     return;  
   }  
   
   val= env->head->item->content.val;  
   toss(env);  
   push_int(env, !val);  
 }  
   
 /* Compares the two top elements on the stack and return 0 if they're the  
    same. */  
 extern void neq(environment *env)  
 {  
   eq(env);  
   not(env);  
 }  
   
 /* Give a symbol some content. */  
 extern void def(environment *env)  
 {  
   symbol *sym;  
   
   /* Needs two values on the stack, the top one must be a symbol */  
   if(env->head==NULL || env->head->next==NULL) {  
     printerr("Too Few Arguments");  
     env->err= 1;  
     return;  
   }  
   
   if(env->head->item->type!=symb) {  
     printerr("Bad Argument Type");  
     env->err= 2;  
706      return;      return;
707    }    }
   
   /* long names are a pain */  
   sym= env->head->item->content.ptr;  
   
   /* Bind the symbol to the value */  
   sym->val= env->head->next->item;  
   
   toss(env); toss(env);  
 }  
   
 /* Quit stack. */  
 extern void quit(environment *env)  
 {  
   long i;  
   
   clear(env);  
   
   if (env->err) return;  
   for(i= 0; i<HASHTBLSIZE; i++) {  
     while(env->symbols[i]!= NULL) {  
       forget_sym(&(env->symbols[i]));  
     }  
     env->symbols[i]= NULL;  
   }  
   
   env->gc_limit= 0;  
   gc_init(env);  
   
   if(env->free_string!=NULL)  
     free(env->free_string);  
     
   muntrace();  
   
   exit(EXIT_SUCCESS);  
708  }  }
709    
 /* Clear stack */  
 extern void clear(environment *env)  
 {  
   while(env->head!=NULL)  
     toss(env);  
 }  
   
 /* List all defined words */  
 extern void words(environment *env)  
 {  
   symbol *temp;  
   int i;  
     
   for(i= 0; i<HASHTBLSIZE; i++) {  
     temp= env->symbols[i];  
     while(temp!=NULL) {  
       printf("%s\n", temp->id);  
       temp= temp->next;  
     }  
   }  
 }  
710    
711  /* Internal forget function */  /* Internal forget function */
712  void forget_sym(symbol **hash_entry) {  void forget_sym(symbol **hash_entry)
713    {
714    symbol *temp;    symbol *temp;
715    
716    temp= *hash_entry;    temp= *hash_entry;
# Line 838  void forget_sym(symbol **hash_entry) { Line 720  void forget_sym(symbol **hash_entry) {
720    free(temp);    free(temp);
721  }  }
722    
 /* Forgets a symbol (remove it from the hash table) */  
 extern void forget(environment *env)  
 {  
   char* sym_id;  
   stackitem *stack_head= env->head;  
   
   if(stack_head==NULL) {  
     printerr("Too Few Arguments");  
     env->err=1;  
     return;  
   }  
     
   if(stack_head->item->type!=symb) {  
     printerr("Bad Argument Type");  
     env->err=2;  
     return;  
   }  
   
   sym_id= ((symbol*)(stack_head->item->content.ptr))->id;  
   toss(env);  
   
   return forget_sym(hash(env->symbols, sym_id));  
 }  
   
 /* Returns the current error number to the stack */  
 extern void errn(environment *env){  
   push_int(env, env->err);  
 }  
723    
724  int main(int argc, char **argv)  int main(int argc, char **argv)
725  {  {
726    environment myenv;    environment myenv;
   
727    int c;                        /* getopt option character */    int c;                        /* getopt option character */
728    
729    #ifdef __linux__
730    mtrace();    mtrace();
731    #endif
732    
733    init_env(&myenv);    init_env(&myenv);
734    
# Line 887  int main(int argc, char **argv) Line 742  int main(int argc, char **argv)
742          break;          break;
743        case '?':        case '?':
744          fprintf (stderr,          fprintf (stderr,
745                   "Unknown option character `\\x%x'.\n",                   "Unknown option character '\\x%x'.\n",
746                   optopt);                   optopt);
747          return EX_USAGE;          return EX_USAGE;
748        default:        default:
# Line 903  int main(int argc, char **argv) Line 758  int main(int argc, char **argv)
758      }      }
759    }    }
760    
761      if(myenv.interactive)
762        printf(start_message);
763    
764    while(1) {    while(1) {
765      if(myenv.in_string==NULL) {      if(myenv.in_string==NULL) {
766        if (myenv.interactive) {        if (myenv.interactive) {
767          if(myenv.err) {          if(myenv.err) {
768            printf("(error %d)\n", myenv.err);            printf("(error %d)\n", myenv.err);
769              myenv.err= 0;
770          }          }
771          nl();          printf("\n");
772          printstack(&myenv);          printstack(&myenv);
773          printf("> ");          printf("> ");
774        }        }
775        myenv.err=0;        myenv.err=0;
776      }      }
777      sx_72656164(&myenv);      readstream(&myenv, myenv.inputstream);
778      if (myenv.err==4) {      if (myenv.err) {            /* EOF or other error */
779        return EX_NOINPUT;        myenv.err=0;
780      } else if(myenv.head!=NULL        quit(&myenv);
781                && myenv.head->item->type==symb      } else if(myenv.head->type!=empty
782                && ((symbol*)(myenv.head->item->content.ptr))->id[0]==';') {                && CAR(myenv.head)->type==symb
783        toss(&myenv);             /* No error check in main */                && CAR(myenv.head)->content.sym->id[0] == ';') {
784          if(myenv.head->type != empty)
785            myenv.head= CDR(myenv.head);
786        eval(&myenv);        eval(&myenv);
787        } else {
788          gc_maybe(&myenv);
789      }      }
     gc_init(&myenv);  
790    }    }
791    quit(&myenv);    quit(&myenv);
792    return EXIT_FAILURE;    return EXIT_FAILURE;
793  }  }
794    
 /* "+" */  
 extern void sx_2b(environment *env) {  
   int a, b;  
   size_t len;  
   char* new_string;  
   value *a_val, *b_val;  
   
   if((env->head)==NULL || env->head->next==NULL) {  
     printerr("Too Few Arguments");  
     env->err= 1;  
     return;  
   }  
   
   if(env->head->item->type==string  
      && env->head->next->item->type==string) {  
     a_val= env->head->item;  
     b_val= env->head->next->item;  
     protect(env, a_val); protect(env, b_val);  
     toss(env); if(env->err) return;  
     toss(env); if(env->err) return;  
     len= strlen(a_val->content.ptr)+strlen(b_val->content.ptr)+1;  
     new_string= malloc(len);  
     strcpy(new_string, b_val->content.ptr);  
     strcat(new_string, a_val->content.ptr);  
     push_cstring(env, new_string);  
     unprotect(env); unprotect(env);  
     free(new_string);  
     return;  
   }  
     
   if(env->head->item->type!=integer  
      || env->head->next->item->type!=integer) {  
     printerr("Bad Argument Type");  
     env->err=2;  
     return;  
   }  
   a= env->head->item->content.val;  
   toss(env); if(env->err) return;  
     
   b= env->head->item->content.val;  
   toss(env); if(env->err) return;  
   push_int(env, a+b);  
 }  
   
 /* "-" */  
 extern void sx_2d(environment *env) {  
   int a, b;  
   
   if((env->head)==NULL || env->head->next==NULL) {  
     printerr("Too Few Arguments");  
     env->err=1;  
     return;  
   }  
     
   if(env->head->item->type!=integer  
      || env->head->next->item->type!=integer) {  
     printerr("Bad Argument Type");  
     env->err=2;  
     return;  
   }  
   
   a=env->head->item->content.val;  
   toss(env); if(env->err) return;  
   b=env->head->item->content.val;  
   toss(env); if(env->err) return;  
   push_int(env, b-a);  
 }  
   
 /* ">" */  
 extern void sx_3e(environment *env) {  
   int a, b;  
   
   if((env->head)==NULL || env->head->next==NULL) {  
     printerr("Too Few Arguments");  
     env->err=1;  
     return;  
   }  
     
   if(env->head->item->type!=integer  
      || env->head->next->item->type!=integer) {  
     printerr("Bad Argument Type");  
     env->err=2;  
     return;  
   }  
   
   a=env->head->item->content.val;  
   toss(env); if(env->err) return;  
   b=env->head->item->content.val;  
   toss(env); if(env->err) return;  
   push_int(env, b>a);  
 }  
795    
796  /* Return copy of a value */  /* Return copy of a value */
797  value *copy_val(environment *env, value *old_value){  value *copy_val(environment *env, value *old_value)
798    stackitem *old_item, *new_item, *prev_item;  {
799      value *new_value;
800    
801    value *new_value= new_val(env);    if(old_value==NULL)
802        return NULL;
803    
804    protect(env, old_value);    new_value= new_val(env);
805    new_value->type= old_value->type;    new_value->type= old_value->type;
806    
807    switch(old_value->type){    switch(old_value->type){
808      case tfloat:
809    case integer:    case integer:
     new_value->content.val= old_value->content.val;  
     break;  
   case string:  
     (char *)(new_value->content.ptr)=  
       strdup((char *)(old_value->content.ptr));  
     break;  
810    case func:    case func:
811    case symb:    case symb:
812      new_value->content.ptr= old_value->content.ptr;    case empty:
813      case unknown:
814      case port:
815        new_value->content= old_value->content;
816      break;      break;
817    case list:    case string:
818      new_value->content.ptr= NULL;      new_value->content.string= strdup(old_value->content.string);
819        break;
820      case tcons:
821    
822      prev_item= NULL;      new_value->content.c= malloc(sizeof(pair));
823      old_item= (stackitem*)(old_value->content.ptr);      assert(new_value->content.c!=NULL);
824        env->gc_count += sizeof(pair);
825    
826      while(old_item != NULL) {   /* While list is not empty */      CAR(new_value)= copy_val(env, CAR(old_value)); /* recurse */
827        new_item= malloc(sizeof(stackitem));      CDR(new_value)= copy_val(env, CDR(old_value)); /* recurse */
       new_item->item= copy_val(env, old_item->item); /* recurse */  
       new_item->next= NULL;  
       if(prev_item != NULL)     /* If this wasn't the first item */  
         prev_item->next= new_item; /* point the previous item to the  
                                      new item */  
       else  
         new_value->content.ptr= new_item;  
       old_item= old_item->next;  
       prev_item= new_item;  
     }      
828      break;      break;
829    }    }
830    
   unprotect(env);  
   
831    return new_value;    return new_value;
832  }  }
833    
 /* "dup"; duplicates an item on the stack */  
 extern void sx_647570(environment *env) {  
   if((env->head)==NULL) {  
     printerr("Too Few Arguments");  
     env->err= 1;  
     return;  
   }  
   push_val(env, copy_val(env, env->head->item));  
 }  
   
 /* "if", If-Then */  
 extern void sx_6966(environment *env) {  
834    
835    int truth;  /* read a line from a stream; used by readline */
836    void readlinestream(environment *env, FILE *stream)
837    if((env->head)==NULL || env->head->next==NULL) {  {
838      printerr("Too Few Arguments");    char in_string[101];
     env->err= 1;  
     return;  
   }  
   
   if(env->head->next->item->type != integer) {  
     printerr("Bad Argument Type");  
     env->err=2;  
     return;  
   }  
     
   swap(env);  
   if(env->err) return;  
     
   truth=env->head->item->content.val;  
   
   toss(env);  
   if(env->err) return;  
   
   if(truth)  
     eval(env);  
   else  
     toss(env);  
 }  
   
 /* If-Then-Else */  
 extern void ifelse(environment *env) {  
   
   int truth;  
   
   if((env->head)==NULL || env->head->next==NULL  
      || env->head->next->next==NULL) {  
     printerr("Too Few Arguments");  
     env->err=1;  
     return;  
   }  
   
   if(env->head->next->next->item->type != integer) {  
     printerr("Bad Argument Type");  
     env->err=2;  
     return;  
   }  
     
   rot(env);  
   if(env->err) return;  
     
   truth=env->head->item->content.val;  
   
   toss(env);  
   if(env->err) return;  
   
   if(!truth)  
     swap(env);  
   if(env->err) return;  
   
   toss(env);  
   if(env->err) return;  
   
   eval(env);  
 }  
   
 /* "while" */  
 extern void sx_7768696c65(environment *env) {  
   
   int truth;  
   value *loop, *test;  
   
   if((env->head)==NULL || env->head->next==NULL) {  
     printerr("Too Few Arguments");  
     env->err=1;  
     return;  
   }  
839    
840    loop= env->head->item;    if(fgets(in_string, 100, stream)==NULL) {
841    protect(env, loop);      push_cstring(env, "");
842    toss(env); if(env->err) return;      if (! feof(stream)){
843          perror("readline");
844    test= env->head->item;        env->err= 5;
   protect(env, test);  
   toss(env); if(env->err) return;  
   
   do {  
     push_val(env, test);  
     eval(env);  
       
     if(env->head->item->type != integer) {  
       printerr("Bad Argument Type");  
       env->err= 2;  
       return;  
     }  
       
     truth= env->head->item->content.val;  
     toss(env); if(env->err) return;  
       
     if(truth) {  
       push_val(env, loop);  
       eval(env);  
     } else {  
       toss(env);  
845      }      }
846        } else {
847    } while(truth);      push_cstring(env, in_string);
848      }
   unprotect(env); unprotect(env);  
849  }  }
850    
851    
852  /* "for"; for-loop */  /* Reverse (flip) a list */
853  extern void sx_666f72(environment *env) {  extern void rev(environment *env)
854    value *loop;  {
855    int foo1, foo2;    value *old_head, *new_head, *item;
856    
857    if(env->head==NULL || env->head->next==NULL    if(env->head->type==empty) {
858       || env->head->next->next==NULL) {      printerr(env, "Too Few Arguments");
     printerr("Too Few Arguments");  
859      env->err= 1;      env->err= 1;
860      return;      return;
861    }    }
862    
863    if(env->head->next->item->type!=integer    if(CAR(env->head)->type==empty)
864       || env->head->next->next->item->type!=integer) {      return;                     /* Don't reverse an empty list */
865      printerr("Bad Argument Type");  
866      if(CAR(env->head)->type!=tcons) {
867        printerr(env, "Bad Argument Type");
868      env->err= 2;      env->err= 2;
869      return;      return;
870    }    }
871    
872    loop= env->head->item;    old_head= CAR(env->head);
873    protect(env, loop);    new_head= new_val(env);
874    toss(env); if(env->err) return;    while(old_head->type != empty) {
875        item= old_head;
876    foo2= env->head->item->content.val;      old_head= CDR(old_head);
877    toss(env); if(env->err) return;      CDR(item)= new_head;
878        new_head= item;
   foo1= env->head->item->content.val;  
   toss(env); if(env->err) return;  
   
   if(foo1<=foo2) {  
     while(foo1<=foo2) {  
       push_int(env, foo1);  
       push_val(env, loop);  
       eval(env); if(env->err) return;  
       foo1++;  
     }  
   } else {  
     while(foo1>=foo2) {  
       push_int(env, foo1);  
       push_val(env, loop);  
       eval(env); if(env->err) return;  
       foo1--;  
     }  
879    }    }
880    unprotect(env);    CAR(env->head)= new_head;
881  }  }
882    
 /* Variant of for-loop */  
 extern void foreach(environment *env) {  
     
   value *loop, *foo;  
   stackitem *iterator;  
     
   if((env->head)==NULL || env->head->next==NULL) {  
     printerr("Too Few Arguments");  
     env->err= 1;  
     return;  
   }  
   
   if(env->head->next->item->type != list) {  
     printerr("Bad Argument Type");  
     env->err= 2;  
     return;  
   }  
883    
884    loop= env->head->item;  /* Make a list. */
885    protect(env, loop);  extern void pack(environment *env)
886    toss(env); if(env->err) return;  {
887      value *iterator, *temp, *ending;
   foo= env->head->item;  
   protect(env, foo);  
   toss(env); if(env->err) return;  
   
   iterator= foo->content.ptr;  
   
   while(iterator!=NULL) {  
     push_val(env, iterator->item);  
     push_val(env, loop);  
     eval(env); if(env->err) return;  
     iterator= iterator->next;  
   }  
   unprotect(env); unprotect(env);  
 }  
   
 /* "to" */  
 extern void to(environment *env) {  
   int i, start, ending;  
   stackitem *temp_head;  
   value *temp_val;  
     
   if((env->head)==NULL || env->head->next==NULL) {  
     printerr("Too Few Arguments");  
     env->err=1;  
     return;  
   }  
888    
889    if(env->head->item->type!=integer    ending=new_val(env);
      || env->head->next->item->type!=integer) {  
     printerr("Bad Argument Type");  
     env->err=2;  
     return;  
   }  
890    
891    ending= env->head->item->content.val;    iterator= env->head;
892    toss(env); if(env->err) return;    if(iterator->type == empty
893    start= env->head->item->content.val;       || (CAR(iterator)->type==symb
894    toss(env); if(env->err) return;       && CAR(iterator)->content.sym->id[0]=='[')) {
895        temp= ending;
896    temp_head= env->head;      if(env->head->type != empty)
897    env->head= NULL;        env->head= CDR(env->head);
   
   if(ending>=start) {  
     for(i= ending; i>=start; i--)  
       push_int(env, i);  
898    } else {    } else {
899      for(i= ending; i<=start; i++)      /* Search for first delimiter */
900        push_int(env, i);      while(CDR(iterator)->type != empty
901    }            && (CAR(CDR(iterator))->type!=symb
902               || CAR(CDR(iterator))->content.sym->id[0]!='['))
903          iterator= CDR(iterator);
904        
905        /* Extract list */
906        temp= env->head;
907        env->head= CDR(iterator);
908        CDR(iterator)= ending;
909    
910    temp_val= new_val(env);      if(env->head->type != empty)
911    temp_val->content.ptr= env->head;        env->head= CDR(env->head);
912    temp_val->type= list;    }
   env->head= temp_head;  
   push_val(env, temp_val);  
 }  
913    
914  /* Read a string */    /* Push list */
 extern void readline(environment *env) {  
   char in_string[101];  
915    
916    if(fgets(in_string, 100, env->inputstream)==NULL)    push_val(env, temp);
917      push_cstring(env, "");    rev(env);
   else  
     push_cstring(env, in_string);  
918  }  }
919    
920  /* "read"; Read a value and place on stack */  
921  extern void sx_72656164(environment *env) {  /* read from a stream; used by "read" and "readport" */
922    void readstream(environment *env, FILE *stream)
923    {
924    const char symbform[]= "%[a-zA-Z0-9!$%*+./:<=>?@^_~-]%n";    const char symbform[]= "%[a-zA-Z0-9!$%*+./:<=>?@^_~-]%n";
925    const char strform[]= "\"%[^\"]\"%n";    const char strform[]= "\"%[^\"]\"%n";
926    const char intform[]= "%i%n";    const char intform[]= "%i%n";
927      const char fltform[]= "%f%n";
928    const char blankform[]= "%*[ \t]%n";    const char blankform[]= "%*[ \t]%n";
929    const char ebrackform[]= "]%n";    const char ebrackform[]= "]%n";
930    const char semicform[]= ";%n";    const char semicform[]= ";%n";
931    const char bbrackform[]= "[%n";    const char bbrackform[]= "[%n";
932    
933    int itemp, readlength= -1;    int itemp, readlength= -1;
934      int count= -1;
935      float ftemp;
936    static int depth= 0;    static int depth= 0;
937    char *match;    char *match;
938    size_t inlength;    size_t inlength;
# Line 1347  extern void sx_72656164(environment *env Line 941  extern void sx_72656164(environment *env
941      if(depth > 0 && env->interactive) {      if(depth > 0 && env->interactive) {
942        printf("]> ");        printf("]> ");
943      }      }
944      readline(env); if(env->err) return;      readlinestream(env, env->inputstream);
945        if(env->err) return;
946    
947      if(((char *)(env->head->item->content.ptr))[0]=='\0'){      if((CAR(env->head)->content.string)[0]=='\0'){
948        env->err= 4;              /* "" means EOF */        env->err= 4;              /* "" means EOF */
949        return;        return;
950      }      }
951            
952      env->in_string= malloc(strlen(env->head->item->content.ptr)+1);      env->in_string= malloc(strlen(CAR(env->head)->content.string)+1);
953        assert(env->in_string != NULL);
954      env->free_string= env->in_string; /* Save the original pointer */      env->free_string= env->in_string; /* Save the original pointer */
955      strcpy(env->in_string, env->head->item->content.ptr);      strcpy(env->in_string, CAR(env->head)->content.string);
956      toss(env); if(env->err) return;      env->head= CDR(env->head);
957    }    }
958        
959    inlength= strlen(env->in_string)+1;    inlength= strlen(env->in_string)+1;
960    match= malloc(inlength);    match= malloc(inlength);
961      assert(match != NULL);
962    
963    if(sscanf(env->in_string, blankform, &readlength)!=EOF    if(sscanf(env->in_string, blankform, &readlength) != EOF
964       && readlength != -1) {       && readlength != -1) {
965      ;      ;
966    } else if(sscanf(env->in_string, intform, &itemp, &readlength) != EOF    } else if(sscanf(env->in_string, fltform, &ftemp, &readlength) != EOF
967                && readlength != -1) {
968        if(sscanf(env->in_string, intform, &itemp, &count) != EOF
969           && count==readlength) {
970          push_int(env, itemp);
971        } else {
972          push_float(env, ftemp);
973        }
974      } else if(sscanf(env->in_string, "\"\"%n", &readlength) != EOF
975              && readlength != -1) {              && readlength != -1) {
976      push_int(env, itemp);      push_cstring(env, "");
977    } else if(sscanf(env->in_string, strform, match, &readlength) != EOF    } else if(sscanf(env->in_string, strform, match, &readlength) != EOF
978              && readlength != -1) {              && readlength != -1) {
979      push_cstring(env, match);      push_cstring(env, match);
# Line 1390  extern void sx_72656164(environment *env Line 995  extern void sx_72656164(environment *env
995      free(env->free_string);      free(env->free_string);
996      env->in_string = env->free_string = NULL;      env->in_string = env->free_string = NULL;
997    }    }
998    if ( env->in_string != NULL) {    if (env->in_string != NULL) {
999      env->in_string += readlength;      env->in_string += readlength;
1000    }    }
1001    
1002    free(match);    free(match);
1003    
1004    if(depth)    if(depth)
1005      return sx_72656164(env);      return readstream(env, env->inputstream);
1006    }
1007    
1008    
1009    int check_args(environment *env, ...)
1010    {
1011      va_list ap;
1012      enum type_enum mytype;
1013    
1014      value *iter= env->head;
1015      int errval= 0;
1016    
1017      va_start(ap, env);
1018      while(1) {
1019        mytype= va_arg(ap, enum type_enum);
1020        //    fprintf(stderr, "%s\n", env->errsymb);
1021    
1022        if(mytype==empty)
1023          break;
1024        
1025        if(iter->type==empty || iter==NULL) {
1026          errval= 1;
1027          break;
1028        }
1029    
1030        if(mytype==unknown) {
1031          iter=CDR(iter);
1032          continue;
1033        }
1034    
1035        if(CAR(iter)->type!=mytype) {
1036          errval= 2;
1037          break;
1038        }
1039    
1040        iter= CDR(iter);
1041      }
1042    
1043      va_end(ap);
1044    
1045      env->err= errval;
1046      return errval;
1047  }  }

Legend:
Removed from v.1.90  
changed lines
  Added in v.1.133

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26