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

Diff of /stack/stack.c

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

revision 1.24 by masse, Sat Feb 2 19:30:07 2002 UTC revision 1.134 by masse, Wed Aug 13 06:12:26 2003 UTC
# Line 1  Line 1 
1  /* printf */  /* -*- coding: utf-8; -*- */
2  #include <stdio.h>  /*
3  /* EXIT_SUCCESS */      stack - an interactive interpreter for a stack-based language
4  #include <stdlib.h>      Copyright (C) 2002  Mats Alritzson and Teddy Hogeborn
 /* NULL */  
 #include <stddef.h>  
 /* dlopen, dlsym, dlerror */  
 #include <dlfcn.h>  
 /* assert */  
 #include <assert.h>  
   
 #define HASHTBLSIZE 65536  
   
 typedef struct stack_item  
 {  
   enum {  
     value,                      /* Integer */  
     string,  
     ref,                        /* Reference (to an element in the  
                                    hash table) */  
     func,                       /* Function pointer */  
     symbol,  
     list  
   } type;                       /* Type of stack element */  
   
   union {  
     void* ptr;                  /* Pointer to the content */  
     int val;                    /* ...or an integer */  
   } content;                    /* Stores a pointer or an integer */  
   
   char* id;                     /* Symbol name */  
   struct stack_item* next;      /* Next element */  
 } stackitem;  
   
   
 typedef stackitem* hashtbl[HASHTBLSIZE]; /* Hash table declaration */  
 typedef void (*funcp)(stackitem**); /* funcp is a pointer to a  
                                        void function (stackitem **) */  
5    
6  /* Initialize a newly created hash table. */      This program is free software; you can redistribute it and/or modify
7  void init_hashtbl(hashtbl out_hash)      it under the terms of the GNU General Public License as published by
8        the Free Software Foundation; either version 2 of the License, or
9        (at your option) any later version.
10    
11        This program is distributed in the hope that it will be useful,
12        but WITHOUT ANY WARRANTY; without even the implied warranty of
13        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14        GNU General Public License for more details.
15    
16        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"
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 */
34    void init_env(environment *env)
35  {  {
36    long i;    int i;
37    
38      env->gc_limit= 400000;
39      env->gc_count= 0;
40      env->gc_ref= NULL;
41    
42      env->head= new_val(env);
43    for(i= 0; i<HASHTBLSIZE; i++)    for(i= 0; i<HASHTBLSIZE; i++)
44      out_hash[i]= NULL;      env->symbols[i]= NULL;
45      env->err= 0;
46      env->in_string= NULL;
47      env->free_string= NULL;
48      env->inputstream= stdin;
49      env->interactive= 1;
50    }
51    
52    
53    void printerr(environment *env, const char* in_string)
54    {
55      fprintf(stderr, "\"%s\":\nErr: %s\n", env->errsymb, in_string);
56  }  }
57    
58  /* Returns a pointer to an element in the hash table. */  
59  stackitem** hash(hashtbl in_hashtbl, const char* in_string)  /* Returns a pointer to a pointer to an element in the hash table. */
60    symbol **hash(hashtbl in_hashtbl, const char *in_string)
61  {  {
62    long i= 0;    int i= 0;
63    unsigned long out_hash= 0;    unsigned int out_hash= 0;
64    char key= '\0';    char key= '\0';
65    stackitem** position;    symbol **position;
66        
67    while(1){                     /* Hash in_string */    while(1){                     /* Hash in_string */
68      key= in_string[i++];      key= in_string[i++];
# Line 64  stackitem** hash(hashtbl in_hashtbl, con Line 74  stackitem** hash(hashtbl in_hashtbl, con
74    out_hash= out_hash%HASHTBLSIZE;    out_hash= out_hash%HASHTBLSIZE;
75    position= &(in_hashtbl[out_hash]);    position= &(in_hashtbl[out_hash]);
76    
77    while(position != NULL){    while(1){
78      if(*position==NULL)         /* If empty */      if(*position==NULL)         /* If empty */
79        return position;        return position;
80            
# Line 73  stackitem** hash(hashtbl in_hashtbl, con Line 83  stackitem** hash(hashtbl in_hashtbl, con
83    
84      position= &((*position)->next); /* Try next */      position= &((*position)->next); /* Try next */
85    }    }
   return NULL;                  /* end of list reached without finding  
                                    an empty position */  
86  }  }
87    
 /* Generic push function. */  
 int push(stackitem** stack_head, stackitem* in_item)  
 {  
   in_item->next= *stack_head;  
   *stack_head= in_item;  
   return 1;  
 }  
88    
89  /* Push a value on the stack. */  /* Create new value */
90  int push_val(stackitem** stack_head, int in_val)  value* new_val(environment *env)
91  {  {
92    stackitem* new_item= malloc(sizeof(stackitem));    value *nval= malloc(sizeof(value));
93    assert(new_item != NULL);    stackitem *nitem= malloc(sizeof(stackitem));
   new_item->content.val= in_val;  
   new_item->type= value;  
94    
95    push(stack_head, new_item);    assert(nval != NULL);
96    return 1;    assert(nitem != NULL);
 }  
97    
98  /* Copy a string onto the stack. */    nval->content.ptr= NULL;
99  int push_cstring(stackitem** stack_head, const char* in_string)    nval->type= empty;
 {  
   stackitem* new_item= malloc(sizeof(stackitem));  
   new_item->content.ptr= malloc(strlen(in_string)+1);  
   strcpy(new_item->content.ptr, in_string);  
   new_item->type= string;  
100    
101    push(stack_head, new_item);    nitem->item= nval;
102    return 1;    nitem->next= env->gc_ref;
 }  
103    
104  /* Create a new hash entry. */    env->gc_ref= nitem;
 int mk_hashentry(hashtbl in_hashtbl, stackitem* in_item, const char* id)  
 {  
   in_item->id= malloc(strlen(id)+1);  
105    
106    strcpy(in_item->id, id);    env->gc_count += sizeof(value);
107    push(hash(in_hashtbl, id), in_item);    nval->gc.flag.mark= 0;
108      nval->gc.flag.protect= 0;
109    
110    return 1;    return nval;
111  }  }
112    
113  /* Define a new function in the hash table. */  
114  void def_func(hashtbl in_hashtbl, funcp in_func, const char* id)  /* Mark values recursively.
115       Marked values are not collected by the GC. */
116    inline void gc_mark(value *val)
117  {  {
118    stackitem* temp= malloc(sizeof(stackitem));    if(val==NULL || val->gc.flag.mark)
119        return;
120    
121    temp->type= func;    val->gc.flag.mark= 1;
   temp->content.ptr= in_func;  
122    
123    mk_hashentry(in_hashtbl, temp, id);    if(val->type==tcons) {
124        gc_mark(CAR(val));
125        gc_mark(CDR(val));
126      }
127  }  }
128    
 /* Define a new symbol in the hash table. */  
 void def_sym(hashtbl in_hashtbl, const char* id)  
 {  
   stackitem* temp= malloc(sizeof(stackitem));  
     
   temp->type= symbol;  
   mk_hashentry(in_hashtbl, temp, id);  
 }  
129    
130  /* Push a reference to an entry in the hash table onto the stack. */  /* Start GC */
131  int push_ref(stackitem** stack_head, hashtbl in_hash, const char* in_string)  extern void gc_init(environment *env)
132  {  {
133    static void* handle= NULL;    stackitem *new_head= NULL, *titem;
134    void* symbol;    symbol *tsymb;
135      int i;
136    
137    stackitem* new_item= malloc(sizeof(stackitem));    if(env->interactive)
138    new_item->content.ptr= *hash(in_hash, in_string);      printf("Garbage collecting.");
   new_item->type= ref;  
139    
140    if(new_item->content.ptr==NULL) { /* If hash entry empty */    /* Mark values on stack */
141      if(handle==NULL)            /* If no handle */    gc_mark(env->head);
       handle= dlopen(NULL, RTLD_LAZY);      
142    
143      symbol= dlsym(handle, in_string); /* Get function pointer */    if(env->interactive)
144      if(dlerror()==NULL)         /* If existing function pointer */      printf(".");
       def_func(in_hash, symbol, in_string); /* Store function pointer */  
     else  
       def_sym(in_hash, in_string); /* Make symbol */  
         
     new_item->content.ptr= *hash(in_hash, in_string); /* The new reference  
                                                          shouldn't point at  
                                                          NULL */  
     new_item->type= ref;  
   }  
145    
146    push(stack_head, new_item);    /* Mark values in hashtable */
147    return 1;    for(i= 0; i<HASHTBLSIZE; i++)
148  }      for(tsymb= env->symbols[i]; tsymb!=NULL; tsymb= tsymb->next)
149          if (tsymb->val != NULL)
150            gc_mark(tsymb->val);
151    
152      if(env->interactive)
153        printf(".");
154    
155      env->gc_count= 0;
156    
157      while(env->gc_ref!=NULL) {    /* Sweep unused values */
158        if(!(env->gc_ref->item->gc.no_gc)){ /* neither mark nor protect */
159    
160          /* Remove content */
161          switch(env->gc_ref->item->type){
162          case string:
163            free(env->gc_ref->item->content.string);
164            break;
165          case tcons:
166            free(env->gc_ref->item->content.c);
167            break;
168          case port:
169          case empty:
170          case unknown:
171          case integer:
172          case tfloat:
173          case func:
174          case symb:
175            /* Symbol strings are freed when walking the hash table */
176            break;
177          }
178    
179  void printerr(const char* in_string) {        free(env->gc_ref->item);  /* Remove from gc_ref */
180    fprintf(stderr, "Err: %s\n", in_string);        titem= env->gc_ref->next;
181  }        free(env->gc_ref);        /* Remove value */
182          env->gc_ref= titem;
183          continue;
184        }
185    
186  /* Discard the top element of the stack. */  #ifdef DEBUG
187  extern void toss(stackitem** stack_head)      printf("Kept value (%p)", env->gc_ref->item);
188  {      if(env->gc_ref->item->gc.flag.mark)
189    stackitem* temp= *stack_head;        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    if((*stack_head)==NULL) {      /* Keep values */    
213      printerr("Stack empty");      env->gc_count += sizeof(value);
214      return;      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    }    }
     
   if((*stack_head)->type==string)  
     free((*stack_head)->content.ptr);  
223    
224    *stack_head= (*stack_head)->next;    if (env->gc_limit < env->gc_count*2)
225    free(temp);      env->gc_limit= env->gc_count*2;
226    
227      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  /* Print newline. */  
235  extern void nl()  inline void gc_maybe(environment *env)
236  {  {
237    printf("\n");    if(env->gc_count < env->gc_limit)
238        return;
239      else
240        return gc_init(env);
241  }  }
242    
 /* Prints the top element of the stack. */  
 extern void print_(stackitem** stack_head)  
 {  
   stackitem* temp= *stack_head;  
243    
244    if(temp==NULL) {  /* Protect values from GC */
245      printerr("Stack empty");  void protect(value *val)
246    {
247      if(val==NULL || val->gc.flag.protect)
248      return;      return;
249    
250      val->gc.flag.protect= 1;
251    
252      if(val->type==tcons) {
253        protect(CAR(val));
254        protect(CDR(val));
255    }    }
256    }
257    
   while(temp->type==ref)  
     temp= temp->content.ptr;  
258    
259    switch(temp->type) {  /* Unprotect values from GC */
260    case value:  void unprotect(value *val)
261      printf("%d", temp->content.val);  {
262      break;    if(val==NULL || !(val->gc.flag.protect))
263    case string:      return;
264      printf("\"%s\"", (char*)temp->content.ptr);  
265      break;    val->gc.flag.protect= 0;
266    case symbol:  
267      printf("%s", temp->id);    if(val->type==tcons) {
268      break;      unprotect(CAR(val));
269    default:      unprotect(CDR(val));
     printf("%p", temp->content.ptr);  
     break;  
270    }    }
271  }  }
272    
273  /* Prints the top element of the stack and then discards it. */  
274  extern void print(stackitem** stack_head)  /* Push a value onto the stack */
275    void push_val(environment *env, value *val)
276    {
277      value *new_value= new_val(env);
278    
279      new_value->content.c= malloc(sizeof(pair));
280      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    
289    /* Push an integer onto the stack */
290    void push_int(environment *env, int in_val)
291  {  {
292    print_(stack_head);    value *new_value= new_val(env);
293    toss(stack_head);    
294      new_value->content.i= in_val;
295      new_value->type= integer;
296    
297      push_val(env, new_value);
298  }  }
299    
 /* Only to be called by function printstack. */  
 void print_st(stackitem* stack_head, long counter)  
 {  
   if(stack_head->next != NULL)  
     print_st(stack_head->next, counter+1);  
300    
301    printf("%ld: ", counter);  /* Push a floating point number onto the stack */
302    print_(&stack_head);  void push_float(environment *env, float in_val)
303    nl();  {
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  /* Prints the stack. */  
313  extern void printstack(stackitem** stack_head)  /* Copy a string onto the stack. */
314    void push_cstring(environment *env, const char *in_string)
315  {  {
316    if(*stack_head != NULL) {    value *new_value= new_val(env);
317      print_st(*stack_head, 1);    int length= strlen(in_string)+1;
318      nl();  
319    } else {    new_value->content.string= malloc(length);
320      printerr("Stack empty");    assert(new_value != NULL);
321    }    env->gc_count += length;
322      strcpy(new_value->content.string, in_string);
323      new_value->type= string;
324    
325      push_val(env, new_value);
326  }  }
327    
328  /* If the top element is a reference, determine if it's a reference to a  
329     function, and if it is, toss the reference and execute the function. */  /* Mangle a symbol name to a valid C identifier name */
330  extern void eval(stackitem** stack_head)  char *mangle_str(const char *old_string)
331  {  {
332    funcp in_func;    char validchars[]= "0123456789abcdef";
333    stackitem* temp= *stack_head;    char *new_string, *current;
334    
335    if(temp==NULL) {    new_string= malloc((strlen(old_string)*2)+4);
336      printerr("Stack empty");    assert(new_string != NULL);
337      return;    strcpy(new_string, "sx_");    /* Stack eXternal */
338    }    current= new_string+3;
339    
340    while(temp->type==ref)    while(old_string[0] != '\0'){
341      temp= temp->content.ptr;      current[0]= validchars[(unsigned char)(old_string[0])/16];
342        current[1]= validchars[(unsigned char)(old_string[0])%16];
343        current+= 2;
344        old_string++;
345      }
346      current[0]= '\0';
347    
348    if(temp->type==func) {    return new_string;            /* The caller must free() it */
     in_func= (funcp)(temp->content.ptr);  
     toss(stack_head);  
     (*in_func)(stack_head);  
     return;  
   }  
       
   printerr("Couldn't evaluate");  
349  }  }
350    
351  /* Make a list. */  
352  extern void pack(stackitem** stack_head)  /* Push a symbol onto the stack. */
353    void push_sym(environment *env, const char *in_string)
354  {  {
355    void* delimiter;    value *new_value;             /* A new symbol value */
356    stackitem *iterator, *temp, *pack;    /* ...which might point to... */
357      symbol **new_symbol;          /* (if needed) A new actual symbol */
358      /* ...which, if possible, will be bound to... */
359      value *new_fvalue;            /* (if needed) A new function value */
360      /* ...which will point to... */
361      void *funcptr;                /* A function pointer */
362    
363    delimiter= (*stack_head)->content.ptr; /* Get delimiter */    static void *handle= NULL;    /* Dynamic linker handle */
364    toss(stack_head);    const char *dlerr;            /* Dynamic linker error */
365      char *mangled;                /* Mangled function name */
366    
367    iterator= *stack_head;    new_value= new_val(env);
368      new_fvalue= new_val(env);
369    
370    if(iterator==NULL || iterator->content.ptr==delimiter) {    /* The new value is a symbol */
371      temp= NULL;    new_value->type= symb;
     toss(stack_head);  
   } else {  
     /* Search for first delimiter */  
     while(iterator->next!=NULL && iterator->next->content.ptr!=delimiter)  
       iterator= iterator->next;  
       
     /* Extract list */  
     temp= *stack_head;  
     *stack_head= iterator->next;  
     iterator->next= NULL;  
       
     if(*stack_head!=NULL && (*stack_head)->content.ptr==delimiter)  
       toss(stack_head);  
   }  
372    
373    /* Push list */    /* Look up the symbol name in the hash table */
374    pack= malloc(sizeof(stackitem));    new_symbol= hash(env->symbols, in_string);
375    pack->type= list;    new_value->content.sym= *new_symbol;
   pack->content.ptr= temp;  
376    
377    push(stack_head, pack);    if(*new_symbol==NULL) { /* If symbol was undefined */
378    
379        /* Create a new symbol */
380        (*new_symbol)= malloc(sizeof(symbol));
381        assert((*new_symbol) != NULL);
382        (*new_symbol)->val= NULL;   /* undefined value */
383        (*new_symbol)->next= NULL;
384        (*new_symbol)->id= malloc(strlen(in_string)+1);
385        assert((*new_symbol)->id != NULL);
386        strcpy((*new_symbol)->id, in_string);
387    
388        /* Intern the new symbol in the hash table */
389        new_value->content.sym= *new_symbol;
390    
391        /* 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 */
393        if(handle==NULL)            /* If no handle */
394          handle= dlopen(NULL, RTLD_LAZY);
395    
396        mangled= mangle_str(in_string); /* mangle the name */
397        funcptr= dlsym(handle, mangled); /* and try to find it */
398    
399        dlerr= dlerror();
400        if(dlerr != NULL) {         /* If no function was found */
401          funcptr= dlsym(handle, in_string); /* Get function pointer */
402          dlerr= dlerror();
403        }
404    
405        if(dlerr==NULL) {           /* If a function was found */
406          new_fvalue->type= func;   /* The new value is a function pointer */
407          new_fvalue->content.func= funcptr; /* Store function pointer */
408          (*new_symbol)->val= new_fvalue; /* Bind the symbol to the new
409                                             function value */
410        }
411    
412        free(mangled);
413      }
414    
415      push_val(env, new_value);
416  }  }
417    
 /* Parse input. */  
 int stack_read(stackitem** stack_head, hashtbl in_hash, char* in_line)  
 {  
   char *temp, *rest;  
   int itemp;  
   size_t inlength= strlen(in_line)+1;  
   int convert= 0;  
   static int non_eval_flag= 0;  
418    
419    temp= malloc(inlength);  /* Print a value */
420    rest= malloc(inlength);  void print_val(environment *env, value *val, int noquote, stackitem *stack,
421                   FILE *stream)
422    {
423      stackitem *titem, *tstack;
424      int depth;
425    
426    do {    switch(val->type) {
427      /* If string */    case empty:
428      if((convert= sscanf(in_line, "\"%[^\"\n\r]\" %[^\n\r]", temp, rest))) {      if(fprintf(stream, "[]") < 0){
429        push_cstring(stack_head, temp);        perror("print_val");
430        break;        env->err= 5;
431          return;
432      }      }
433      /* If value */      break;
434      if((convert= sscanf(in_line, "%d %[^\n\r]", &itemp, rest))) {    case unknown:
435        push_val(stack_head, itemp);      if(fprintf(stream, "UNKNOWN") < 0){
436        break;        perror("print_val");
437          env->err= 5;
438          return;
439      }      }
440      /* Escape ';' with '\' */      break;
441      if((convert= sscanf(in_line, "\\%c%[^\n\r]", temp, rest))) {    case integer:
442        temp[1]= '\0';      if(fprintf(stream, "%d", val->content.i) < 0){
443        push_ref(stack_head, in_hash, temp);        perror("print_val");
444        break;        env->err= 5;
445      }        return;
     /* If symbol */  
     if((convert= sscanf(in_line, "%[^][ ;\n\r]%[^\n\r]", temp, rest))) {  
         push_ref(stack_head, in_hash, temp);  
         break;  
446      }      }
447      /* If single char */      break;
448      if((convert= sscanf(in_line, "%c%[^\n\r]", temp, rest))) {    case tfloat:
449        if(*temp==';') {      if(fprintf(stream, "%f", val->content.f) < 0){
450          if(!non_eval_flag) {        perror("print_val");
451            eval(stack_head);             /* Evaluate top element */        env->err= 5;
452            break;        return;
453          }      }
454                break;
455          push_ref(stack_head, in_hash, ";");    case string:
456          break;      if(noquote){
457          if(fprintf(stream, "%s", val->content.string) < 0){
458            perror("print_val");
459            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;
470      case symb:
471        if(fprintf(stream, "%s", val->content.sym->id) < 0){
472          perror("print_val");
473          env->err= 5;
474          return;
475        }
476        break;
477      case func:
478        if(fprintf(stream, "#<function %p>", val->content.func) < 0){
479          perror("print_val");
480          env->err= 5;
481          return;
482        }
483        break;
484      case port:
485        if(fprintf(stream, "#<port %p>", val->content.p) < 0){
486          perror("print_val");
487          env->err= 5;
488          return;
489        }
490        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        if(*temp==']') {      do {
500          push_ref(stack_head, in_hash, "[");        titem=malloc(sizeof(stackitem));
501          pack(stack_head);        assert(titem != NULL);
502          if(non_eval_flag!=0)        titem->item=val;
503            non_eval_flag--;        titem->next=tstack;
504          break;        tstack=titem;             /* Put it on the stack */
505          /* Search a stack of values being printed to see if we are already
506             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        if(*temp=='[') {        if(titem != NULL){        /* If we found it on the stack, */
516          push_ref(stack_head, in_hash, "[");          if(fprintf(stream, "#%d#", depth) < 0){ /* print a depth reference */
517          non_eval_flag++;            perror("print_val");
518              env->err= 5;
519              free(titem);
520              return;
521            }
522          } else {
523            print_val(env, CAR(val), noquote, tstack, stream);
524          }
525    
526          val= CDR(val);
527          switch(val->type){
528          case empty:
529          break;          break;
530          case tcons:
531            /* Search a stack of values being printed to see if we are already
532               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);
   } while(0);  
563    
564      printval_end:
565    
566    free(temp);      titem=tstack;
567        while(titem != stack){
568          tstack=titem->next;
569          free(titem);
570          titem=tstack;
571        }
572    
573    if(convert<2) {      if(! (env->err)){
574      free(rest);        if(fprintf(stream, " ]") < 0){
575      return 0;          perror("print_val");
576            env->err= 5;
577          }
578        }
579        break;
580    }    }
     
   stack_read(stack_head, in_hash, rest);  
     
   free(rest);  
   return 1;  
581  }  }
582    
583  /* Relocate elements of the list on the stack. */  
584  extern void expand(stackitem** stack_head)  /* Swap the two top elements on the stack. */
585    extern void swap(environment *env)
586  {  {
587    stackitem *temp, *new_head;    value *temp= env->head;
588    
589    /* Is top element a list? */    switch(check_args(env, unknown, unknown, empty)) {
590    if((*stack_head)==NULL || (*stack_head)->type!=list) {    case 1:
591      printerr("Stack empty or not a list");      printerr(env, "Too Few Arguments");
592        return;
593      case 2:
594        printerr(env, "Bad Argument Type");
595      return;      return;
596      default:
597        break;
598    }    }
599      
600      env->head= CDR(env->head);
601      CDR(temp)= CDR(env->head);
602      CDR(env->head)= temp;
603    }
604    
   /* The first list element is the new stack head */  
   new_head= temp= (*stack_head)->content.ptr;  
   toss(stack_head);  
605    
606    if(temp==NULL)  /* Recall a value from a symbol, if bound */
607      return;  extern void rcl(environment *env)
608    {
609      value *val;
610    
611    /* Search the end of the list */    switch(check_args(env, symb, empty)) {
612    while(temp->next!=NULL)    case 1:
613      temp= temp->next;      printerr(env, "Too Few Arguments");
614        return;
615      case 2:
616        printerr(env, "Bad Argument Type");
617        return;
618      default:
619        break;
620      }
621    
622    /* Connect the the tail of the list with the old stack head */    val= CAR(env->head)->content.sym->val;
623    temp->next= *stack_head;    if(val == NULL){
624    *stack_head= new_head;        /* ...and voila! */      printerr(env, "Unbound Variable");
625        env->err= 3;
626        return;
627      }
628      push_val(env, val);           /* Return the symbol's bound value */
629      swap(env);
630      if(env->err) return;
631      env->head= CDR(env->head);
632  }  }
633    
634  /* Swap the two top elements on the stack. */  
635  extern void swap(stackitem** stack_head)  /* If the top element is a symbol, determine if it's bound to a
636       function value, and if it is, toss the symbol and execute the
637       function. */
638    extern void eval(environment *env)
639  {  {
640    stackitem* temp= (*stack_head);    funcp in_func;
641        value* temp_val;
642    if((*stack_head)==NULL) {    value* iterator;
643      printerr("Stack empty");  
644     eval_start:
645    
646      gc_maybe(env);
647    
648      switch(check_args(env, unknown, empty)) {
649      case 1:
650        printerr(env, "Too Few Arguments");
651        return;
652      case 2:
653        printerr(env, "Bad Argument Type");
654      return;      return;
655      default:
656        break;
657    }    }
658    
659    if((*stack_head)->next==NULL)    switch(CAR(env->head)->type) {
660        /* if it's a symbol */
661      case symb:
662        env->errsymb= CAR(env->head)->content.sym->id;
663        rcl(env);                   /* get its contents */
664        if(env->err) return;
665        if(CAR(env->head)->type!=symb){ /* don't recurse symbols */
666          goto eval_start;
667        }
668      return;      return;
669    
670    *stack_head= (*stack_head)->next;      /* If it's a lone function value, run it */
671    temp->next= (*stack_head)->next;    case func:
672    (*stack_head)->next= temp;      in_func= CAR(env->head)->content.func;
673  }      env->head= CDR(env->head);
674        return in_func(env);
675    
676        /* If it's a list */
677      case tcons:
678        temp_val= CAR(env->head);
679        protect(temp_val);
680    
681  /* Compares two elements by reference. */      env->head= CDR(env->head);
682  extern void eq(stackitem** stack_head)      iterator= temp_val;
683  {      
684    void *left, *right;      while(iterator->type != empty) {
685    int result;        push_val(env, CAR(iterator));
686          
687         if(CAR(env->head)->type==symb
688             && CAR(env->head)->content.sym->id[0]==';') {
689            env->head= CDR(env->head);
690            
691            if(CDR(iterator)->type == empty){
692              goto eval_start;
693            }
694            eval(env);
695            if(env->err) return;
696          }
697          if (CDR(iterator)->type == empty || CDR(iterator)->type == tcons)
698            iterator= CDR(iterator);
699          else {
700            printerr(env, "Bad Argument Type"); /* Improper list */
701            env->err= 2;
702            return;
703          }
704        }
705        unprotect(temp_val);
706        return;
707    
708    if((*stack_head)==NULL || (*stack_head)->next==NULL) {    case empty:
709      printerr("Not enough elements to compare");      env->head= CDR(env->head);
710      case integer:
711      case tfloat:
712      case string:
713      case port:
714      case unknown:
715      return;      return;
716    }    }
717    }
718    
719    left= (*stack_head)->content.ptr;  
720    swap(stack_head);  /* Internal forget function */
721    right= (*stack_head)->content.ptr;  void forget_sym(symbol **hash_entry)
722    result= (left==right);  {
723      symbol *temp;
724    
725      temp= *hash_entry;
726      *hash_entry= (*hash_entry)->next;
727        
728    toss(stack_head); toss(stack_head);    free(temp->id);
729    push_val(stack_head, (left==right));    free(temp);
730  }  }
731    
732  /* Negates the top element on the stack. */  
733  extern void not(stackitem** stack_head)  int main(int argc, char **argv)
734  {  {
735    int value;    environment myenv;
736      int c;                        /* getopt option character */
737    
738    if((*stack_head)==NULL || (*stack_head)->type!=value) {  #ifdef __linux__
739      printerr("Stack empty or element is not a value");    mtrace();
740      return;  #endif
741    
742      init_env(&myenv);
743    
744      myenv.interactive = isatty(STDIN_FILENO) && isatty(STDOUT_FILENO);
745    
746      while ((c = getopt (argc, argv, "i")) != -1)
747        switch (c)
748          {
749          case 'i':
750            myenv.interactive = 1;
751            break;
752          case '?':
753            fprintf (stderr,
754                     "Unknown option character '\\x%x'.\n",
755                     optopt);
756            return EX_USAGE;
757          default:
758            abort ();
759          }
760      
761      if (optind < argc) {
762        myenv.interactive = 0;
763        myenv.inputstream= fopen(argv[optind], "r");
764        if(myenv.inputstream== NULL) {
765          perror(argv[0]);
766          exit (EX_NOINPUT);
767        }
768    }    }
769    
770    value= (*stack_head)->content.val;    if(myenv.interactive)
771    toss(stack_head);      puts(start_message);
772    push_val(stack_head, !value);  
773      while(1) {
774        if(myenv.in_string==NULL) {
775          if (myenv.interactive) {
776            if(myenv.err) {
777              printf("(error %d)\n", myenv.err);
778              myenv.err= 0;
779            }
780            printf("\n");
781            printstack(&myenv);
782            printf("> ");
783          }
784          myenv.err=0;
785        }
786        readstream(&myenv, myenv.inputstream);
787        if (myenv.err) {            /* EOF or other error */
788          myenv.err=0;
789          quit(&myenv);
790        } else if(myenv.head->type!=empty
791                  && CAR(myenv.head)->type==symb
792                  && CAR(myenv.head)->content.sym->id[0] == ';') {
793          if(myenv.head->type != empty)
794            myenv.head= CDR(myenv.head);
795          eval(&myenv);
796        } else {
797          gc_maybe(&myenv);
798        }
799      }
800      quit(&myenv);
801      return EXIT_FAILURE;
802    }
803    
804    
805    /* Return copy of a value */
806    value *copy_val(environment *env, value *old_value)
807    {
808      value *new_value;
809    
810      if(old_value==NULL)
811        return NULL;
812    
813      new_value= new_val(env);
814      new_value->type= old_value->type;
815    
816      switch(old_value->type){
817      case tfloat:
818      case integer:
819      case func:
820      case symb:
821      case empty:
822      case unknown:
823      case port:
824        new_value->content= old_value->content;
825        break;
826      case string:
827        new_value->content.string= strdup(old_value->content.string);
828        break;
829      case tcons:
830    
831        new_value->content.c= malloc(sizeof(pair));
832        assert(new_value->content.c!=NULL);
833        env->gc_count += sizeof(pair);
834    
835        CAR(new_value)= copy_val(env, CAR(old_value)); /* recurse */
836        CDR(new_value)= copy_val(env, CDR(old_value)); /* recurse */
837        break;
838      }
839    
840      return new_value;
841  }  }
842    
843  /* Compares the two top elements on the stack and return 0 if they're the  
844     same. */  /* read a line from a stream; used by readline */
845  extern void neq(stackitem** stack_head)  void readlinestream(environment *env, FILE *stream)
846  {  {
847    eq(stack_head);    char in_string[101];
848    not(stack_head);  
849      if(fgets(in_string, 100, stream)==NULL) {
850        push_cstring(env, "");
851        if (! feof(stream)){
852          perror("readline");
853          env->err= 5;
854        }
855      } else {
856        push_cstring(env, in_string);
857      }
858  }  }
859    
860  /* Give a symbol some content. */  
861  extern void def(stackitem** stack_head)  /* Reverse (flip) a list */
862    extern void rev(environment *env)
863  {  {
864    stackitem *temp, *value;    value *old_head, *new_head, *item;
865    
866      if(CAR(env->head)->type==empty)
867        return;                     /* Don't reverse an empty list */
868    
869    if(*stack_head==NULL || (*stack_head)->next==NULL    switch(check_args(env, tcons, empty)) {
870       || (*stack_head)->type!=ref) {    case 1:
871      printerr("Define what?");      printerr(env, "Too Few Arguments");
872      return;      return;
873      case 2:
874        printerr(env, "Bad Argument Type");
875        return;
876      default:
877        break;
878    }    }
879    
880    temp= (*stack_head)->content.ptr;    old_head= CAR(env->head);
881    value= (*stack_head)->next;    new_head= new_val(env);
882    temp->content= value->content;    while(old_head->type != empty) {
883    value->content.ptr=NULL;      item= old_head;
884    temp->type= value->type;      old_head= CDR(old_head);
885        CDR(item)= new_head;
886        new_head= item;
887      }
888      CAR(env->head)= new_head;
889    }
890    
   toss(stack_head); toss(stack_head);  
 }  
891    
892  /* Quit stack. */  /* Make a list. */
893  extern void quit()  extern void pack(environment *env)
894  {  {
895    exit(EXIT_SUCCESS);    value *iterator, *temp, *ending;
896    
897      ending=new_val(env);
898    
899      iterator= env->head;
900      if(iterator->type == empty
901         || (CAR(iterator)->type==symb
902         && CAR(iterator)->content.sym->id[0]=='[')) {
903        temp= ending;
904        if(env->head->type != empty)
905          env->head= CDR(env->head);
906      } else {
907        /* Search for first delimiter */
908        while(CDR(iterator)->type != empty
909              && (CAR(CDR(iterator))->type!=symb
910               || CAR(CDR(iterator))->content.sym->id[0]!='['))
911          iterator= CDR(iterator);
912        
913        /* Extract list */
914        temp= env->head;
915        env->head= CDR(iterator);
916        CDR(iterator)= ending;
917    
918        if(env->head->type != empty)
919          env->head= CDR(env->head);
920      }
921    
922      /* Push list */
923    
924      push_val(env, temp);
925      rev(env);
926  }  }
927    
928  /* Clear stack */  
929  extern void clear(stackitem** stack_head)  /* read from a stream; used by "read" and "readport" */
930    void readstream(environment *env, FILE *stream)
931  {  {
932    while(*stack_head!=NULL)    const char symbform[]= "%[a-zA-Z0-9!$%*+./:<=>?@^_~-]%n";
933      toss(stack_head);    const char strform[]= "\"%[^\"]\"%n";
934      const char intform[]= "%i%n";
935      const char fltform[]= "%f%n";
936      const char blankform[]= "%*[ \t]%n";
937      const char ebrackform[]= "]%n";
938      const char semicform[]= ";%n";
939      const char bbrackform[]= "[%n";
940    
941      int itemp, readlength= -1;
942      int count= -1;
943      float ftemp;
944      static int depth= 0;
945      char *match;
946      size_t inlength;
947    
948      if(env->in_string==NULL) {
949        if(depth > 0 && env->interactive) {
950          printf("]> ");
951        }
952        readlinestream(env, env->inputstream);
953        if(env->err) return;
954    
955        if((CAR(env->head)->content.string)[0]=='\0'){
956          env->err= 4;              /* "" means EOF */
957          return;
958        }
959        
960        env->in_string= malloc(strlen(CAR(env->head)->content.string)+1);
961        assert(env->in_string != NULL);
962        env->free_string= env->in_string; /* Save the original pointer */
963        strcpy(env->in_string, CAR(env->head)->content.string);
964        env->head= CDR(env->head);
965      }
966      
967      inlength= strlen(env->in_string)+1;
968      match= malloc(inlength);
969      assert(match != NULL);
970    
971      if(sscanf(env->in_string, blankform, &readlength) != EOF
972         && readlength != -1) {
973        ;
974      } else if(sscanf(env->in_string, fltform, &ftemp, &readlength) != EOF
975                && readlength != -1) {
976        if(sscanf(env->in_string, intform, &itemp, &count) != EOF
977           && count==readlength) {
978          push_int(env, itemp);
979        } else {
980          push_float(env, ftemp);
981        }
982      } else if(sscanf(env->in_string, "\"\"%n", &readlength) != EOF
983                && readlength != -1) {
984        push_cstring(env, "");
985      } else if(sscanf(env->in_string, strform, match, &readlength) != EOF
986                && readlength != -1) {
987        push_cstring(env, match);
988      } else if(sscanf(env->in_string, symbform, match, &readlength) != EOF
989                && readlength != -1) {
990        push_sym(env, match);
991      } else if(sscanf(env->in_string, ebrackform, &readlength) != EOF
992                && readlength != -1) {
993        pack(env); if(env->err) return;
994        if(depth != 0) depth--;
995      } else if(sscanf(env->in_string, semicform, &readlength) != EOF
996                && readlength != -1) {
997        push_sym(env, ";");
998      } else if(sscanf(env->in_string, bbrackform, &readlength) != EOF
999                && readlength != -1) {
1000        push_sym(env, "[");
1001        depth++;
1002      } else {
1003        free(env->free_string);
1004        env->in_string = env->free_string = NULL;
1005      }
1006      if (env->in_string != NULL) {
1007        env->in_string += readlength;
1008      }
1009    
1010      free(match);
1011    
1012      if(depth)
1013        return readstream(env, env->inputstream);
1014  }  }
1015    
1016  int main()  
1017    int check_args(environment *env, ...)
1018  {  {
1019    stackitem* s= NULL;    va_list ap;
1020    hashtbl myhash;    enum type_enum mytype;
   char in_string[100];  
1021    
1022    init_hashtbl(myhash);    value *iter= env->head;
1023      int errval= 0;
1024    
1025    printf("okidok\n ");    va_start(ap, env);
1026      while(1) {
1027        mytype= va_arg(ap, enum type_enum);
1028        //    fprintf(stderr, "%s\n", env->errsymb);
1029    
1030    while(fgets(in_string, 100, stdin) != NULL) {      if(mytype==empty)
1031      stack_read(&s, myhash, in_string);        break;
1032      printf("okidok\n ");      
1033        if(iter->type==empty || iter==NULL) {
1034          errval= 1;
1035          break;
1036        }
1037    
1038        if(mytype==unknown) {
1039          iter=CDR(iter);
1040          continue;
1041        }
1042    
1043        if(CAR(iter)->type!=mytype) {
1044          errval= 2;
1045          break;
1046        }
1047    
1048        iter= CDR(iter);
1049    }    }
1050    
1051    exit(EXIT_SUCCESS);    va_end(ap);
 }  
1052    
1053  /* Local Variables: */    env->err= errval;
1054  /* compile-command:"make CFLAGS=\"-Wall -g -rdynamic -ldl\" stack" */    return errval;
1055  /* End: */  }

Legend:
Removed from v.1.24  
changed lines
  Added in v.1.134

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26