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

Contents of /stack/stack.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.76 - (show annotations)
Wed Feb 13 00:47:36 2002 UTC (22 years, 2 months ago) by masse
Branch: MAIN
Changes since 1.75: +10 -9 lines
File MIME type: text/plain
(rev) Rewritten to allow reversion of lists with up to 1000000 elements.

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

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26