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

Annotation of /stack/stack.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.73 - (hide annotations)
Tue Feb 12 23:16:56 2002 UTC (22 years, 2 months ago) by masse
Branch: MAIN
Changes since 1.72: +5 -8 lines
File MIME type: text/plain
(pack) Changed so that it only accepts '[' and ']' as
delimiters (all callers changed).

1 teddy 1.52 /* printf, sscanf, fgets, fprintf */
2 masse 1.1 #include <stdio.h>
3 teddy 1.52 /* exit, EXIT_SUCCESS, malloc, free */
4 masse 1.1 #include <stdlib.h>
5     /* NULL */
6     #include <stddef.h>
7 teddy 1.3 /* dlopen, dlsym, dlerror */
8 masse 1.1 #include <dlfcn.h>
9 teddy 1.52 /* strcmp, strcpy, strlen, strcat, strdup */
10 masse 1.47 #include <string.h>
11 masse 1.1
12 masse 1.72 #define HASHTBLSIZE 2048
13 masse 1.1
14 teddy 1.28 /* First, define some types. */
15    
16     /* A value of some type */
17     typedef struct {
18 masse 1.16 enum {
19 teddy 1.28 integer,
20 teddy 1.18 string,
21 masse 1.16 func, /* Function pointer */
22 teddy 1.28 symb,
23 masse 1.16 list
24 teddy 1.18 } type; /* Type of stack element */
25    
26 masse 1.1 union {
27 teddy 1.28 void *ptr; /* Pointer to the content */
28 masse 1.16 int val; /* ...or an integer */
29     } content; /* Stores a pointer or an integer */
30 masse 1.1
31 teddy 1.28 int refcount; /* Reference counter */
32    
33     } value;
34    
35     /* A symbol with a name and possible value */
36     /* (These do not need reference counters, they are kept unique by
37     hashing.) */
38     typedef struct symbol_struct {
39     char *id; /* Symbol name */
40     value *val; /* The value (if any) bound to it */
41     struct symbol_struct *next; /* In case of hashing conflicts, a */
42     } symbol; /* symbol is a kind of stack item. */
43    
44     /* A type for a hash table for symbols */
45     typedef symbol *hashtbl[HASHTBLSIZE]; /* Hash table declaration */
46    
47     /* An item (value) on a stack */
48     typedef struct stackitem_struct
49     {
50     value *item; /* The value on the stack */
51 teddy 1.56 /* (This is never NULL) */
52 teddy 1.28 struct stackitem_struct *next; /* Next item */
53 masse 1.1 } stackitem;
54    
55 teddy 1.28 /* An environment; gives access to the stack and a hash table of
56     defined symbols */
57     typedef struct {
58     stackitem *head; /* Head of the stack */
59     hashtbl symbols; /* Hash table of all variable bindings */
60 teddy 1.33 int err; /* Error flag */
61 masse 1.46 int non_eval_flag;
62 masse 1.70 char *in_string; /* Input pending to be read */
63 teddy 1.28 } environment;
64    
65     /* A type for pointers to external functions */
66     typedef void (*funcp)(environment *); /* funcp is a pointer to a void
67     function (environment *) */
68 masse 1.1
69 teddy 1.28 /* Initialize a newly created environment */
70     void init_env(environment *env)
71 masse 1.1 {
72 masse 1.46 int i;
73 masse 1.1
74 masse 1.70 env->in_string= NULL;
75 masse 1.46 env->err= 0;
76     env->non_eval_flag= 0;
77 masse 1.1 for(i= 0; i<HASHTBLSIZE; i++)
78 teddy 1.28 env->symbols[i]= NULL;
79 masse 1.1 }
80    
81 teddy 1.48 void printerr(const char* in_string) {
82     fprintf(stderr, "Err: %s\n", in_string);
83     }
84    
85     /* Throw away a value */
86     void free_val(value *val){
87     stackitem *item, *temp;
88    
89     val->refcount--; /* Decrease the reference count */
90     if(val->refcount == 0){
91     switch (val->type){ /* and free the contents if necessary */
92     case string:
93     free(val->content.ptr);
94     break;
95     case list: /* lists needs to be freed recursively */
96     item=val->content.ptr;
97     while(item != NULL) { /* for all stack items */
98     free_val(item->item); /* free the value */
99     temp=item->next; /* save next ptr */
100     free(item); /* free the stackitem */
101     item=temp; /* go to next stackitem */
102     }
103     free(val); /* Free the actual list value */
104     break;
105 teddy 1.54 case integer:
106     case func:
107     case symb:
108 teddy 1.48 break;
109     }
110     }
111     }
112    
113     /* Discard the top element of the stack. */
114     extern void toss(environment *env)
115     {
116     stackitem *temp= env->head;
117    
118     if((env->head)==NULL) {
119     printerr("Too Few Arguments");
120     env->err=1;
121     return;
122     }
123    
124     free_val(env->head->item); /* Free the value */
125     env->head= env->head->next; /* Remove the top stack item */
126     free(temp); /* Free the old top stack item */
127     }
128    
129 teddy 1.27 /* Returns a pointer to a pointer to an element in the hash table. */
130 teddy 1.28 symbol **hash(hashtbl in_hashtbl, const char *in_string)
131 masse 1.1 {
132 masse 1.46 int i= 0;
133     unsigned int out_hash= 0;
134 teddy 1.18 char key= '\0';
135 teddy 1.28 symbol **position;
136 masse 1.1
137 masse 1.16 while(1){ /* Hash in_string */
138 masse 1.1 key= in_string[i++];
139     if(key=='\0')
140     break;
141     out_hash= out_hash*32+key;
142     }
143    
144     out_hash= out_hash%HASHTBLSIZE;
145     position= &(in_hashtbl[out_hash]);
146    
147 masse 1.25 while(1){
148 teddy 1.18 if(*position==NULL) /* If empty */
149 masse 1.1 return position;
150    
151 teddy 1.18 if(strcmp(in_string, (*position)->id)==0) /* If match */
152 masse 1.1 return position;
153    
154 masse 1.16 position= &((*position)->next); /* Try next */
155 masse 1.1 }
156     }
157    
158 masse 1.14 /* Generic push function. */
159 masse 1.72 void push(environment *env, stackitem* in_item)
160 masse 1.1 {
161 masse 1.72 in_item->next= env->head;
162     env->head= in_item;
163 masse 1.1 }
164    
165 teddy 1.29 /* Push a value onto the stack */
166 masse 1.72 void push_val(environment *env, value *val)
167 teddy 1.29 {
168     stackitem *new_item= malloc(sizeof(stackitem));
169     new_item->item= val;
170     val->refcount++;
171 masse 1.72 push(env, new_item);
172 teddy 1.29 }
173    
174 teddy 1.28 /* Push an integer onto the stack. */
175 masse 1.72 void push_int(environment *env, int in_val)
176 masse 1.1 {
177 teddy 1.28 value *new_value= malloc(sizeof(value));
178     stackitem *new_item= malloc(sizeof(stackitem));
179     new_item->item= new_value;
180    
181     new_value->content.val= in_val;
182     new_value->type= integer;
183     new_value->refcount=1;
184 masse 1.1
185 masse 1.72 push(env, new_item);
186 masse 1.1 }
187    
188 masse 1.14 /* Copy a string onto the stack. */
189 masse 1.72 void push_cstring(environment *env, const char *in_string)
190 masse 1.1 {
191 teddy 1.28 value *new_value= malloc(sizeof(value));
192     stackitem *new_item= malloc(sizeof(stackitem));
193     new_item->item=new_value;
194    
195     new_value->content.ptr= malloc(strlen(in_string)+1);
196     strcpy(new_value->content.ptr, in_string);
197     new_value->type= string;
198     new_value->refcount=1;
199 masse 1.1
200 masse 1.72 push(env, new_item);
201 masse 1.1 }
202    
203 teddy 1.48 /* Mangle a symbol name to a valid C identifier name */
204 teddy 1.51 char *mangle_str(const char *old_string){
205 teddy 1.48 char validchars[]
206     ="0123456789abcdef";
207     char *new_string, *current;
208    
209 teddy 1.50 new_string=malloc((strlen(old_string)*2)+4);
210 teddy 1.48 strcpy(new_string, "sx_"); /* Stack eXternal */
211     current=new_string+3;
212     while(old_string[0] != '\0'){
213 teddy 1.53 current[0]=validchars[(unsigned char)(old_string[0])/16];
214     current[1]=validchars[(unsigned char)(old_string[0])%16];
215 teddy 1.48 current+=2;
216     old_string++;
217     }
218     current[0]='\0';
219    
220     return new_string; /* The caller must free() it */
221     }
222    
223     extern void mangle(environment *env){
224     value *new_value;
225     char *new_string;
226    
227     if((env->head)==NULL) {
228     printerr("Too Few Arguments");
229     env->err=1;
230     return;
231     }
232    
233     if(env->head->item->type!=string) {
234     printerr("Bad Argument Type");
235     env->err=2;
236     return;
237     }
238    
239 teddy 1.51 new_string= mangle_str((const char *)(env->head->item->content.ptr));
240 teddy 1.48
241     toss(env);
242     if(env->err) return;
243    
244     new_value= malloc(sizeof(value));
245     new_value->content.ptr= new_string;
246     new_value->type= string;
247     new_value->refcount=1;
248    
249 masse 1.72 push_val(env, new_value);
250 teddy 1.48 }
251    
252 teddy 1.28 /* Push a symbol onto the stack. */
253 teddy 1.35 void push_sym(environment *env, const char *in_string)
254 masse 1.1 {
255 teddy 1.28 stackitem *new_item; /* The new stack item */
256     /* ...which will contain... */
257     value *new_value; /* A new symbol value */
258     /* ...which might point to... */
259 teddy 1.29 symbol **new_symbol; /* (if needed) A new actual symbol */
260 teddy 1.28 /* ...which, if possible, will be bound to... */
261     value *new_fvalue; /* (if needed) A new function value */
262     /* ...which will point to... */
263     void *funcptr; /* A function pointer */
264    
265     static void *handle= NULL; /* Dynamic linker handle */
266 teddy 1.48 const char *dlerr; /* Dynamic linker error */
267     char *mangled; /* Mangled function name */
268 teddy 1.28
269     /* Create a new stack item containing a new value */
270     new_item= malloc(sizeof(stackitem));
271     new_value= malloc(sizeof(value));
272     new_item->item=new_value;
273    
274     /* The new value is a symbol */
275     new_value->type= symb;
276     new_value->refcount= 1;
277    
278     /* Look up the symbol name in the hash table */
279 teddy 1.29 new_symbol= hash(env->symbols, in_string);
280     new_value->content.ptr= *new_symbol;
281 teddy 1.28
282 teddy 1.30 if(*new_symbol==NULL) { /* If symbol was undefined */
283 teddy 1.28
284     /* Create a new symbol */
285 teddy 1.30 (*new_symbol)= malloc(sizeof(symbol));
286 teddy 1.29 (*new_symbol)->val= NULL; /* undefined value */
287     (*new_symbol)->next= NULL;
288     (*new_symbol)->id= malloc(strlen(in_string)+1);
289     strcpy((*new_symbol)->id, in_string);
290 masse 1.1
291 teddy 1.28 /* Intern the new symbol in the hash table */
292 teddy 1.29 new_value->content.ptr= *new_symbol;
293 masse 1.1
294 teddy 1.28 /* Try to load the symbol name as an external function, to see if
295     we should bind the symbol to a new function pointer value */
296 masse 1.16 if(handle==NULL) /* If no handle */
297 teddy 1.28 handle= dlopen(NULL, RTLD_LAZY);
298 masse 1.6
299 teddy 1.28 funcptr= dlsym(handle, in_string); /* Get function pointer */
300 teddy 1.48 dlerr=dlerror();
301     if(dlerr != NULL) { /* If no function was found */
302 teddy 1.51 mangled=mangle_str(in_string);
303 teddy 1.48 funcptr= dlsym(handle, mangled); /* try mangling it */
304     free(mangled);
305     dlerr=dlerror();
306     }
307     if(dlerr==NULL) { /* If a function was found */
308 teddy 1.28 new_fvalue= malloc(sizeof(value)); /* Create a new value */
309     new_fvalue->type=func; /* The new value is a function pointer */
310     new_fvalue->content.ptr=funcptr; /* Store function pointer */
311 teddy 1.29 (*new_symbol)->val= new_fvalue; /* Bind the symbol to the new
312     function value */
313 teddy 1.28 new_fvalue->refcount= 1;
314     }
315 masse 1.1 }
316 masse 1.72 push(env, new_item);
317 masse 1.1 }
318    
319 masse 1.14 /* Print newline. */
320 masse 1.34 extern void nl()
321 masse 1.8 {
322     printf("\n");
323     }
324 masse 1.1
325 teddy 1.37 /* Gets the type of a value */
326     extern void type(environment *env){
327     int typenum;
328    
329     if((env->head)==NULL) {
330     printerr("Too Few Arguments");
331     env->err=1;
332     return;
333     }
334     typenum=env->head->item->type;
335     toss(env);
336     switch(typenum){
337     case integer:
338     push_sym(env, "integer");
339     break;
340     case string:
341     push_sym(env, "string");
342     break;
343     case symb:
344     push_sym(env, "symbol");
345     break;
346     case func:
347     push_sym(env, "function");
348     break;
349     case list:
350     push_sym(env, "list");
351     break;
352     }
353     }
354    
355 masse 1.14 /* Prints the top element of the stack. */
356 teddy 1.28 void print_h(stackitem *stack_head)
357 masse 1.8 {
358 teddy 1.28 switch(stack_head->item->type) {
359     case integer:
360     printf("%d", stack_head->item->content.val);
361 teddy 1.2 break;
362     case string:
363 masse 1.58 printf("%s", (char*)stack_head->item->content.ptr);
364 teddy 1.2 break;
365 teddy 1.28 case symb:
366 teddy 1.45 printf("%s", ((symbol *)(stack_head->item->content.ptr))->id);
367 masse 1.6 break;
368 teddy 1.35 case func:
369     printf("#<function %p>", (funcp)(stack_head->item->content.ptr));
370     break;
371     case list:
372 teddy 1.38 /* A list is just a stack, so make stack_head point to it */
373     stack_head=(stackitem *)(stack_head->item->content.ptr);
374     printf("[ ");
375     while(stack_head != NULL) {
376     print_h(stack_head);
377     printf(" ");
378     stack_head=stack_head->next;
379     }
380 teddy 1.39 printf("]");
381 teddy 1.35 break;
382 teddy 1.2 }
383 masse 1.1 }
384    
385 teddy 1.28 extern void print_(environment *env) {
386 teddy 1.35 if(env->head==NULL) {
387 teddy 1.36 printerr("Too Few Arguments");
388 teddy 1.35 env->err=1;
389     return;
390     }
391 teddy 1.28 print_h(env->head);
392     }
393    
394 masse 1.14 /* Prints the top element of the stack and then discards it. */
395 teddy 1.28 extern void print(environment *env)
396 masse 1.8 {
397 teddy 1.28 print_(env);
398 teddy 1.35 if(env->err) return;
399 teddy 1.28 toss(env);
400 masse 1.8 }
401    
402 masse 1.14 /* Only to be called by function printstack. */
403 teddy 1.28 void print_st(stackitem *stack_head, long counter)
404 masse 1.8 {
405     if(stack_head->next != NULL)
406     print_st(stack_head->next, counter+1);
407     printf("%ld: ", counter);
408 teddy 1.28 print_h(stack_head);
409 masse 1.8 nl();
410     }
411    
412 masse 1.14 /* Prints the stack. */
413 teddy 1.28 extern void printstack(environment *env)
414 masse 1.1 {
415 teddy 1.35 if(env->head == NULL) {
416     return;
417 masse 1.1 }
418 teddy 1.35 print_st(env->head, 1);
419     nl();
420 masse 1.1 }
421    
422 masse 1.26 /* Swap the two top elements on the stack. */
423 teddy 1.28 extern void swap(environment *env)
424 masse 1.26 {
425 teddy 1.28 stackitem *temp= env->head;
426 masse 1.26
427 masse 1.46 if(env->head==NULL || env->head->next==NULL) {
428 teddy 1.36 printerr("Too Few Arguments");
429 teddy 1.35 env->err=1;
430 masse 1.26 return;
431 teddy 1.28 }
432 masse 1.26
433 teddy 1.28 env->head= env->head->next;
434     temp->next= env->head->next;
435     env->head->next= temp;
436 masse 1.26 }
437    
438 teddy 1.56 /* Rotate the first three elements on the stack. */
439     extern void rot(environment *env)
440     {
441     stackitem *temp= env->head;
442    
443     if(env->head==NULL || env->head->next==NULL
444     || env->head->next->next==NULL) {
445     printerr("Too Few Arguments");
446     env->err=1;
447     return;
448     }
449    
450     env->head= env->head->next->next;
451     temp->next->next= env->head->next;
452     env->head->next= temp;
453     }
454    
455 teddy 1.33 /* Recall a value from a symbol, if bound */
456 teddy 1.31 extern void rcl(environment *env)
457     {
458     value *val;
459    
460     if(env->head == NULL) {
461 teddy 1.36 printerr("Too Few Arguments");
462 teddy 1.35 env->err=1;
463 teddy 1.31 return;
464     }
465    
466     if(env->head->item->type!=symb) {
467 teddy 1.36 printerr("Bad Argument Type");
468     env->err=2;
469 teddy 1.31 return;
470     }
471 teddy 1.35
472 teddy 1.31 val=((symbol *)(env->head->item->content.ptr))->val;
473 teddy 1.33 if(val == NULL){
474 teddy 1.36 printerr("Unbound Variable");
475     env->err=3;
476 teddy 1.33 return;
477     }
478 teddy 1.31 toss(env); /* toss the symbol */
479 teddy 1.35 if(env->err) return;
480 masse 1.72 push_val(env, val); /* Return its bound value */
481 teddy 1.31 }
482 masse 1.26
483 teddy 1.29 /* If the top element is a symbol, determine if it's bound to a
484     function value, and if it is, toss the symbol and execute the
485     function. */
486 teddy 1.28 extern void eval(environment *env)
487 masse 1.1 {
488     funcp in_func;
489 masse 1.44 value* temp_val;
490     stackitem* iterator;
491    
492 teddy 1.29 if(env->head==NULL) {
493 teddy 1.36 printerr("Too Few Arguments");
494 teddy 1.35 env->err=1;
495 masse 1.1 return;
496 masse 1.17 }
497 masse 1.1
498 teddy 1.64 eval_start:
499    
500 masse 1.46 switch(env->head->item->type) {
501     /* if it's a symbol */
502     case symb:
503 teddy 1.35 rcl(env); /* get its contents */
504     if(env->err) return;
505     if(env->head->item->type!=symb){ /* don't recurse symbols */
506 teddy 1.64 goto eval_start;
507 teddy 1.29 }
508 teddy 1.59 return;
509 masse 1.22
510 masse 1.46 /* If it's a lone function value, run it */
511     case func:
512 teddy 1.29 in_func= (funcp)(env->head->item->content.ptr);
513 teddy 1.28 toss(env);
514 teddy 1.35 if(env->err) return;
515 teddy 1.59 return (*in_func)(env);
516 masse 1.44
517 masse 1.46 /* If it's a list */
518     case list:
519 masse 1.44 temp_val= env->head->item;
520     env->head->item->refcount++;
521     toss(env);
522     if(env->err) return;
523     iterator= (stackitem*)temp_val->content.ptr;
524 teddy 1.59 while(iterator!=NULL) {
525 masse 1.72 push_val(env, iterator->item);
526 masse 1.44 if(env->head->item->type==symb
527     && strcmp(";", ((symbol*)(env->head->item->content.ptr))->id)==0) {
528     toss(env);
529     if(env->err) return;
530 teddy 1.59 if(iterator->next == NULL){
531     free_val(temp_val);
532 teddy 1.64 goto eval_start;
533 teddy 1.59 }
534 masse 1.44 eval(env);
535 masse 1.46 if(env->err) return;
536 masse 1.44 }
537     iterator= iterator->next;
538     }
539     free_val(temp_val);
540 teddy 1.59 return;
541 masse 1.46
542 masse 1.71 default:
543 teddy 1.59 return;
544 masse 1.26 }
545 masse 1.1 }
546    
547 masse 1.44 /* Reverse (flip) a list */
548 teddy 1.40 extern void rev(environment *env){
549     stackitem *old_head, *new_head, *item;
550    
551     if((env->head)==NULL) {
552     printerr("Too Few Arguments");
553     env->err=1;
554     return;
555     }
556    
557     if(env->head->item->type!=list) {
558     printerr("Bad Argument Type");
559     env->err=2;
560     return;
561     }
562    
563     old_head=(stackitem *)(env->head->item->content.ptr);
564     new_head=NULL;
565     while(old_head != NULL){
566     item=old_head;
567     old_head=old_head->next;
568     item->next=new_head;
569     new_head=item;
570     }
571     env->head->item->content.ptr=new_head;
572     }
573    
574 masse 1.19 /* Make a list. */
575 teddy 1.28 extern void pack(environment *env)
576 masse 1.19 {
577 teddy 1.28 stackitem *iterator, *temp;
578     value *pack;
579 masse 1.19
580 teddy 1.28 iterator= env->head;
581 masse 1.19
582 masse 1.73 if(iterator==NULL
583     || (iterator->item->type==symb
584     && ((symbol*)(iterator->item->content.ptr))->id[0]=='[')) {
585 masse 1.24 temp= NULL;
586 teddy 1.28 toss(env);
587 masse 1.24 } else {
588     /* Search for first delimiter */
589 teddy 1.28 while(iterator->next!=NULL
590 masse 1.73 && (iterator->next->item->type!=symb
591     || ((symbol*)(iterator->next->item->content.ptr))->id[0]!='['))
592 masse 1.24 iterator= iterator->next;
593    
594     /* Extract list */
595 teddy 1.28 temp= env->head;
596     env->head= iterator->next;
597 masse 1.24 iterator->next= NULL;
598    
599 teddy 1.28 if(env->head!=NULL)
600     toss(env);
601 masse 1.24 }
602 masse 1.19
603     /* Push list */
604 teddy 1.28 pack= malloc(sizeof(value));
605 masse 1.19 pack->type= list;
606     pack->content.ptr= temp;
607 teddy 1.28 pack->refcount= 1;
608    
609     temp= malloc(sizeof(stackitem));
610     temp->item= pack;
611 masse 1.19
612 masse 1.72 push(env, temp);
613 teddy 1.40 rev(env);
614 masse 1.19 }
615    
616 masse 1.16 /* Relocate elements of the list on the stack. */
617 teddy 1.28 extern void expand(environment *env)
618 masse 1.1 {
619 masse 1.8 stackitem *temp, *new_head;
620    
621 masse 1.16 /* Is top element a list? */
622 teddy 1.36 if(env->head==NULL) {
623     printerr("Too Few Arguments");
624 teddy 1.35 env->err=1;
625 masse 1.8 return;
626 masse 1.17 }
627 teddy 1.36 if(env->head->item->type!=list) {
628     printerr("Bad Argument Type");
629     env->err=2;
630     return;
631     }
632 masse 1.43
633     rev(env);
634    
635     if(env->err)
636     return;
637 masse 1.8
638 masse 1.16 /* The first list element is the new stack head */
639 teddy 1.28 new_head= temp= env->head->item->content.ptr;
640 masse 1.8
641 teddy 1.28 env->head->item->refcount++;
642     toss(env);
643 masse 1.24
644 teddy 1.28 /* Find the end of the list */
645 masse 1.8 while(temp->next!=NULL)
646     temp= temp->next;
647    
648 teddy 1.28 /* Connect the tail of the list with the old stack head */
649     temp->next= env->head;
650     env->head= new_head; /* ...and voila! */
651    
652 teddy 1.5 }
653 masse 1.11
654 masse 1.14 /* Compares two elements by reference. */
655 teddy 1.28 extern void eq(environment *env)
656 masse 1.11 {
657     void *left, *right;
658     int result;
659    
660 teddy 1.28 if((env->head)==NULL || env->head->next==NULL) {
661 teddy 1.36 printerr("Too Few Arguments");
662 teddy 1.35 env->err=1;
663 masse 1.11 return;
664 masse 1.17 }
665 masse 1.11
666 teddy 1.28 left= env->head->item->content.ptr;
667     swap(env);
668     right= env->head->item->content.ptr;
669 masse 1.11 result= (left==right);
670    
671 teddy 1.28 toss(env); toss(env);
672 masse 1.72 push_int(env, result);
673 masse 1.11 }
674    
675 masse 1.14 /* Negates the top element on the stack. */
676 teddy 1.28 extern void not(environment *env)
677 masse 1.11 {
678 teddy 1.28 int val;
679 masse 1.11
680 teddy 1.36 if((env->head)==NULL) {
681     printerr("Too Few Arguments");
682 teddy 1.35 env->err=1;
683 masse 1.11 return;
684 masse 1.17 }
685 masse 1.11
686 teddy 1.36 if(env->head->item->type!=integer) {
687     printerr("Bad Argument Type");
688     env->err=2;
689     return;
690     }
691    
692 teddy 1.28 val= env->head->item->content.val;
693     toss(env);
694 masse 1.72 push_int(env, !val);
695 masse 1.11 }
696    
697 masse 1.14 /* Compares the two top elements on the stack and return 0 if they're the
698     same. */
699 teddy 1.28 extern void neq(environment *env)
700 masse 1.11 {
701 teddy 1.28 eq(env);
702     not(env);
703 masse 1.11 }
704 masse 1.12
705 masse 1.14 /* Give a symbol some content. */
706 teddy 1.28 extern void def(environment *env)
707 masse 1.12 {
708 teddy 1.28 symbol *sym;
709 masse 1.12
710 teddy 1.28 /* Needs two values on the stack, the top one must be a symbol */
711 teddy 1.36 if(env->head==NULL || env->head->next==NULL) {
712     printerr("Too Few Arguments");
713 teddy 1.35 env->err=1;
714 masse 1.12 return;
715 masse 1.17 }
716 masse 1.12
717 teddy 1.36 if(env->head->item->type!=symb) {
718     printerr("Bad Argument Type");
719     env->err=2;
720     return;
721     }
722    
723 teddy 1.28 /* long names are a pain */
724     sym=env->head->item->content.ptr;
725    
726     /* if the symbol was bound to something else, throw it away */
727     if(sym->val != NULL)
728     free_val(sym->val);
729    
730     /* Bind the symbol to the value */
731     sym->val= env->head->next->item;
732     sym->val->refcount++; /* Increase the reference counter */
733 masse 1.12
734 teddy 1.28 toss(env); toss(env);
735 masse 1.12 }
736 masse 1.10
737 masse 1.14 /* Quit stack. */
738 teddy 1.28 extern void quit(environment *env)
739 teddy 1.5 {
740     exit(EXIT_SUCCESS);
741 masse 1.24 }
742    
743     /* Clear stack */
744 teddy 1.28 extern void clear(environment *env)
745 masse 1.24 {
746 teddy 1.28 while(env->head!=NULL)
747     toss(env);
748 masse 1.1 }
749    
750 teddy 1.33 /* List all defined words */
751 masse 1.32 extern void words(environment *env)
752     {
753     symbol *temp;
754     int i;
755    
756     for(i= 0; i<HASHTBLSIZE; i++) {
757     temp= env->symbols[i];
758     while(temp!=NULL) {
759     printf("%s\n", temp->id);
760     temp= temp->next;
761     }
762     }
763     }
764 masse 1.34
765     /* Forgets a symbol (remove it from the hash table) */
766     extern void forget(environment *env)
767     {
768     char* sym_id;
769     stackitem *stack_head= env->head;
770     symbol **hash_entry, *temp;
771    
772 teddy 1.36 if(stack_head==NULL) {
773     printerr("Too Few Arguments");
774     env->err=1;
775     return;
776     }
777    
778     if(stack_head->item->type!=symb) {
779     printerr("Bad Argument Type");
780     env->err=2;
781 masse 1.34 return;
782     }
783    
784     sym_id= ((symbol*)(stack_head->item->content.ptr))->id;
785     toss(env);
786    
787     hash_entry= hash(env->symbols, sym_id);
788     temp= *hash_entry;
789     *hash_entry= (*hash_entry)->next;
790    
791     if(temp->val!=NULL) {
792     free_val(temp->val);
793     }
794     free(temp->id);
795     free(temp);
796 teddy 1.36 }
797    
798     /* Returns the current error number to the stack */
799     extern void errn(environment *env){
800 masse 1.72 push_int(env, env->err);
801 teddy 1.36 }
802 masse 1.32
803 masse 1.69 extern void read(environment*);
804    
805 masse 1.1 int main()
806     {
807 teddy 1.28 environment myenv;
808 masse 1.1
809 teddy 1.28 init_env(&myenv);
810 masse 1.1
811 masse 1.69 while(1) {
812 masse 1.70 if(myenv.in_string==NULL)
813 masse 1.71 printstack(&myenv);
814 masse 1.69 read(&myenv);
815 teddy 1.35 if(myenv.err) {
816     printf("(error %d) ", myenv.err);
817     myenv.err=0;
818 masse 1.71 } else if(myenv.head!=NULL
819     && myenv.head->item->type==symb
820 masse 1.69 && ((symbol*)(myenv.head->item->content.ptr))->id[0]==';') {
821     toss(&myenv); /* No error check in main */
822     eval(&myenv);
823 teddy 1.35 }
824 masse 1.1 }
825 teddy 1.41 quit(&myenv);
826 teddy 1.42 return EXIT_FAILURE;
827 teddy 1.48 }
828    
829     /* + */
830     extern void sx_2b(environment *env) {
831     int a, b;
832 masse 1.49 size_t len;
833     char* new_string;
834     value *a_val, *b_val;
835 teddy 1.48
836     if((env->head)==NULL || env->head->next==NULL) {
837     printerr("Too Few Arguments");
838     env->err=1;
839 masse 1.49 return;
840     }
841    
842     if(env->head->item->type==string
843     && env->head->next->item->type==string) {
844     a_val= env->head->item;
845     b_val= env->head->next->item;
846     a_val->refcount++;
847     b_val->refcount++;
848     toss(env); if(env->err) return;
849     toss(env); if(env->err) return;
850     len= strlen(a_val->content.ptr)+strlen(b_val->content.ptr)+1;
851     new_string= malloc(len);
852     strcpy(new_string, b_val->content.ptr);
853     strcat(new_string, a_val->content.ptr);
854     free_val(a_val); free_val(b_val);
855 masse 1.72 push_cstring(env, new_string);
856 masse 1.49 free(new_string);
857 teddy 1.48 return;
858     }
859    
860     if(env->head->item->type!=integer
861     || env->head->next->item->type!=integer) {
862     printerr("Bad Argument Type");
863     env->err=2;
864     return;
865     }
866     a=env->head->item->content.val;
867     toss(env);
868     if(env->err) return;
869 teddy 1.62 if(env->head->item->refcount == 1)
870     env->head->item->content.val += a;
871     else {
872     b=env->head->item->content.val;
873     toss(env);
874     if(env->err) return;
875 masse 1.72 push_int(env, a+b);
876 teddy 1.62 }
877 masse 1.1 }
878 teddy 1.55
879 teddy 1.60 /* - */
880     extern void sx_2d(environment *env) {
881 teddy 1.62 int a, b;
882 teddy 1.60
883     if((env->head)==NULL || env->head->next==NULL) {
884     printerr("Too Few Arguments");
885     env->err=1;
886     return;
887     }
888    
889     if(env->head->item->type!=integer
890     || env->head->next->item->type!=integer) {
891     printerr("Bad Argument Type");
892     env->err=2;
893     return;
894     }
895     a=env->head->item->content.val;
896     toss(env);
897     if(env->err) return;
898 teddy 1.62 if(env->head->item->refcount == 1)
899     env->head->item->content.val -= a;
900     else {
901     b=env->head->item->content.val;
902     toss(env);
903     if(env->err) return;
904 masse 1.72 push_int(env, b-a);
905 teddy 1.62 }
906 teddy 1.60 }
907    
908 teddy 1.61 /* > */
909     extern void sx_3e(environment *env) {
910 teddy 1.62 int a, b;
911 teddy 1.61
912     if((env->head)==NULL || env->head->next==NULL) {
913     printerr("Too Few Arguments");
914     env->err=1;
915     return;
916     }
917    
918     if(env->head->item->type!=integer
919     || env->head->next->item->type!=integer) {
920     printerr("Bad Argument Type");
921     env->err=2;
922     return;
923     }
924     a=env->head->item->content.val;
925     toss(env);
926     if(env->err) return;
927 teddy 1.62 if(env->head->item->refcount == 1)
928     env->head->item->content.val = (env->head->item->content.val > a);
929     else {
930     b=env->head->item->content.val;
931     toss(env);
932     if(env->err) return;
933 masse 1.72 push_int(env, b>a);
934 teddy 1.62 }
935 teddy 1.61 }
936    
937 teddy 1.55 /* Return copy of a value */
938     value *copy_val(value *old_value){
939     stackitem *old_item, *new_item, *prev_item;
940    
941     value *new_value=malloc(sizeof(value));
942    
943     new_value->type=old_value->type;
944     new_value->refcount=0; /* This is increased if/when this
945     value is referenced somewhere, like
946     in a stack item or a variable */
947     switch(old_value->type){
948     case integer:
949     new_value->content.val=old_value->content.val;
950     break;
951     case string:
952     (char *)(new_value->content.ptr)
953     = strdup((char *)(old_value->content.ptr));
954     break;
955     case func:
956     case symb:
957     new_value->content.ptr=old_value->content.ptr;
958     break;
959     case list:
960     new_value->content.ptr=NULL;
961    
962     prev_item=NULL;
963     old_item=(stackitem *)(old_value->content.ptr);
964    
965     while(old_item != NULL) { /* While list is not empty */
966     new_item= malloc(sizeof(stackitem));
967     new_item->item=copy_val(old_item->item); /* recurse */
968     new_item->next=NULL;
969     if(prev_item != NULL) /* If this wasn't the first item */
970     prev_item->next=new_item; /* point the previous item to the
971     new item */
972     else
973     new_value->content.ptr=new_item;
974     old_item=old_item->next;
975     prev_item=new_item;
976     }
977     break;
978     }
979     return new_value;
980     }
981    
982     /* duplicates an item on the stack */
983     extern void dup(environment *env) {
984     if((env->head)==NULL) {
985     printerr("Too Few Arguments");
986     env->err=1;
987     return;
988     }
989 masse 1.72 push_val(env, copy_val(env->head->item));
990 teddy 1.55 }
991 teddy 1.56
992 teddy 1.59 /* "if", If-Then */
993 masse 1.57 extern void sx_6966(environment *env) {
994 teddy 1.56
995     int truth;
996    
997     if((env->head)==NULL || env->head->next==NULL) {
998     printerr("Too Few Arguments");
999     env->err=1;
1000     return;
1001     }
1002    
1003     if(env->head->next->item->type != integer) {
1004     printerr("Bad Argument Type");
1005     env->err=2;
1006     return;
1007     }
1008    
1009     swap(env);
1010     if(env->err) return;
1011    
1012     truth=env->head->item->content.val;
1013    
1014     toss(env);
1015     if(env->err) return;
1016    
1017     if(truth)
1018     eval(env);
1019     else
1020     toss(env);
1021     }
1022    
1023     /* If-Then-Else */
1024 masse 1.57 extern void ifelse(environment *env) {
1025 teddy 1.56
1026     int truth;
1027    
1028     if((env->head)==NULL || env->head->next==NULL
1029     || env->head->next->next==NULL) {
1030     printerr("Too Few Arguments");
1031     env->err=1;
1032     return;
1033     }
1034    
1035     if(env->head->next->next->item->type != integer) {
1036     printerr("Bad Argument Type");
1037     env->err=2;
1038     return;
1039     }
1040    
1041     rot(env);
1042     if(env->err) return;
1043    
1044     truth=env->head->item->content.val;
1045    
1046     toss(env);
1047     if(env->err) return;
1048    
1049     if(!truth)
1050     swap(env);
1051     if(env->err) return;
1052    
1053     toss(env);
1054     if(env->err) return;
1055    
1056     eval(env);
1057 masse 1.58 }
1058    
1059     /* while */
1060     extern void sx_7768696c65(environment *env) {
1061    
1062     int truth;
1063 masse 1.63 value *loop, *test;
1064 masse 1.58
1065     if((env->head)==NULL || env->head->next==NULL) {
1066     printerr("Too Few Arguments");
1067     env->err=1;
1068     return;
1069     }
1070    
1071 masse 1.63 loop= env->head->item;
1072     loop->refcount++;
1073     toss(env); if(env->err) return;
1074    
1075     test= env->head->item;
1076     test->refcount++;
1077     toss(env); if(env->err) return;
1078    
1079 masse 1.58 do {
1080 masse 1.72 push_val(env, test);
1081 masse 1.63 eval(env);
1082 masse 1.58
1083     if(env->head->item->type != integer) {
1084     printerr("Bad Argument Type");
1085     env->err=2;
1086     return;
1087     }
1088    
1089     truth= env->head->item->content.val;
1090     toss(env); if(env->err) return;
1091    
1092     if(truth) {
1093 masse 1.72 push_val(env, loop);
1094 masse 1.58 eval(env);
1095     } else {
1096     toss(env);
1097     }
1098    
1099     } while(truth);
1100 masse 1.63
1101     free_val(test);
1102     free_val(loop);
1103 teddy 1.56 }
1104 masse 1.65
1105     /* For-loop */
1106     extern void sx_666f72(environment *env) {
1107    
1108     value *loop, *foo;
1109     stackitem *iterator;
1110    
1111     if((env->head)==NULL || env->head->next==NULL) {
1112     printerr("Too Few Arguments");
1113     env->err=1;
1114     return;
1115     }
1116    
1117     if(env->head->next->item->type != list) {
1118     printerr("Bad Argument Type");
1119     env->err=2;
1120     return;
1121     }
1122    
1123     loop= env->head->item;
1124     loop->refcount++;
1125     toss(env); if(env->err) return;
1126    
1127     foo= env->head->item;
1128     foo->refcount++;
1129     toss(env); if(env->err) return;
1130    
1131     iterator= foo->content.ptr;
1132    
1133     while(iterator!=NULL) {
1134 masse 1.72 push_val(env, iterator->item);
1135     push_val(env, loop);
1136 masse 1.65 eval(env); if(env->err) return;
1137     iterator= iterator->next;
1138     }
1139    
1140     free_val(loop);
1141     free_val(foo);
1142     }
1143 masse 1.66
1144     /* 'to' */
1145     extern void to(environment *env) {
1146     int i, start, ending;
1147    
1148     if((env->head)==NULL || env->head->next==NULL) {
1149     printerr("Too Few Arguments");
1150     env->err=1;
1151     return;
1152     }
1153    
1154     if(env->head->item->type!=integer
1155     || env->head->next->item->type!=integer) {
1156     printerr("Bad Argument Type");
1157     env->err=2;
1158     return;
1159     }
1160    
1161     ending= env->head->item->content.val;
1162     toss(env); if(env->err) return;
1163     start= env->head->item->content.val;
1164     toss(env); if(env->err) return;
1165    
1166     push_sym(env, "[");
1167    
1168 masse 1.67 if(ending>=start) {
1169     for(i= start; i<=ending; i++)
1170 masse 1.72 push_int(env, i);
1171 masse 1.67 } else {
1172     for(i= start; i>=ending; i--)
1173 masse 1.72 push_int(env, i);
1174 masse 1.67 }
1175 masse 1.66
1176     pack(env); if(env->err) return;
1177     }
1178 masse 1.68
1179     /* Read a string */
1180     extern void readline(environment *env) {
1181     char in_string[101];
1182    
1183     fgets(in_string, 100, stdin);
1184 masse 1.72 push_cstring(env, in_string);
1185 masse 1.68 }
1186    
1187     /* Read a value and place on stack */
1188     extern void read(environment *env) {
1189 masse 1.71 const char symbform[]= "%[a-zA-Z0-9!$%*+./:<=>?@^_~-]%[\001-\377]";
1190     const char strform[]= "\"%[^\"]\"%[\001-\377]";
1191     const char intform[]= "%i%[\001-\377]";
1192     const char blankform[]= "%*[ \t]%[\001-\377]";
1193     const char ebrackform[]= "%*1[]]%[\001-\377]";
1194     const char semicform[]= "%*1[;]%[\001-\377]";
1195     const char bbrackform[]= "%*1[[]%[\001-\377]";
1196 masse 1.68
1197 masse 1.71 int itemp;
1198 masse 1.68 static int depth= 0;
1199     char *rest, *match;
1200     size_t inlength;
1201    
1202 masse 1.70 if(env->in_string==NULL) {
1203 masse 1.68 readline(env); if(env->err) return;
1204    
1205 masse 1.70 env->in_string= malloc(strlen(env->head->item->content.ptr)+1);
1206     strcpy(env->in_string, env->head->item->content.ptr);
1207 masse 1.68 toss(env); if(env->err) return;
1208     }
1209    
1210 masse 1.70 inlength= strlen(env->in_string)+1;
1211 masse 1.68 match= malloc(inlength);
1212     rest= malloc(inlength);
1213    
1214 masse 1.70 if(sscanf(env->in_string, blankform, rest)) {
1215 masse 1.71 ;
1216 masse 1.70 } else if(sscanf(env->in_string, intform, &itemp, rest) > 0) {
1217 masse 1.72 push_int(env, itemp);
1218 masse 1.70 } else if(sscanf(env->in_string, strform, match, rest) > 0) {
1219 masse 1.72 push_cstring(env, match);
1220 masse 1.70 } else if(sscanf(env->in_string, symbform, match, rest) > 0) {
1221 masse 1.68 push_sym(env, match);
1222 masse 1.70 } else if(sscanf(env->in_string, ebrackform, rest) > 0) {
1223 masse 1.68 pack(env); if(env->err) return;
1224     if(depth!=0) depth--;
1225 masse 1.70 } else if(sscanf(env->in_string, semicform, rest) > 0) {
1226 masse 1.68 push_sym(env, ";");
1227 masse 1.70 } else if(sscanf(env->in_string, bbrackform, rest) > 0) {
1228 masse 1.68 push_sym(env, "[");
1229     depth++;
1230     } else {
1231     free(rest);
1232     rest= NULL;
1233     }
1234    
1235 masse 1.70 free(env->in_string);
1236 masse 1.68 free(match);
1237    
1238 masse 1.70 env->in_string= rest;
1239 masse 1.68
1240 masse 1.71 if(depth)
1241 masse 1.68 return read(env);
1242     }

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26