forked from stepcode/stepcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexpress.c
More file actions
874 lines (755 loc) · 26.3 KB
/
express.c
File metadata and controls
874 lines (755 loc) · 26.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
/** **********************************************************************
** \file express.c
** Express package manager.
************************************************************************/
/*
* This code was developed with the support of the United States Government,
* and is not subject to copyright.
*
* $Log: express.c,v $
* Revision 1.20 1997/01/21 19:53:20 dar
* made C++ compatible
*
* Revision 1.18 1995/06/08 22:59:59 clark
* bug fixes
*
* Revision 1.17 1995/05/17 14:25:56 libes
* Fixed bug in EXPRESS_PATH handling. Improved debugging diagnostics.
*
* Revision 1.16 1995/04/05 13:55:40 clark
* CADDETC preval
*
* Revision 1.15 1995/03/09 18:42:21 clark
* various fixes for caddetc - before interface clause changes
*
* Revision 1.14 1995/02/09 18:00:49 clark
* update version string
*
* Revision 1.13 1994/11/10 19:20:03 clark
* Update to IS
*
* Revision 1.12 1994/05/11 19:51:24 libes
* numerous fixes
*
* Revision 1.11 1993/10/15 18:48:48 libes
* CADDETC certified
*
* Revision 1.9 1993/02/22 21:45:06 libes
* fix pass print bug
*
* Revision 1.8 1993/02/16 03:19:56 libes
* added unwriteable error
*
* Revision 1.7 1993/01/19 22:44:17 libes
* *** empty log message ***
*
* Revision 1.6 1992/09/16 18:19:14 libes
* fixed bug in EXPRESS_PATH searching
*
* Revision 1.5 1992/08/27 23:38:35 libes
* removed redundant call to initialize much of EXPRESS
* rewrote schema-rename-connect to use fifo instead of dictionary
* fixed smashing of file names by new schema files
*
* Revision 1.4 1992/08/18 17:13:43 libes
* rm'd extraneous error messages
*
* Revision 1.3 1992/06/08 18:06:57 libes
* prettied up interface to print_objects_when_running
*
* Revision 1.2 1992/05/31 08:35:51 libes
* multiple files
*
* Revision 1.1 1992/05/28 03:55:04 libes
* Initial revision
*
*/
#include <scl_cf.h>
#include <scl_memmgr.h>
#define EXPRESS_C
#include "express/basic.h"
#include <ctype.h>
#include <stdlib.h>
#include <setjmp.h>
#include <errno.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include "express/express.h"
#include "express/resolve.h"
#include "stack.h"
#include "express/scope.h"
extern FILE * yyin;
extern Express yyexpresult;
static Error ERROR_ref_nonexistent;
static Error ERROR_tilde_expansion_failed;
static Error ERROR_schema_not_in_own_schema_file;
extern Linked_List PARSEnew_schemas;
void SCOPEinitialize( void );
static Express PARSERrun PROTO( ( char *, FILE * ) );
char * EXPRESSversion( void ) {
return( "Express Language, IS (N65), October 24, 1994" );
}
SCL_EXPRESS_EXPORT int skip_exp_pause = false;
void exp_pause() {
if( !skip_exp_pause ) {
#ifdef __WIN32__
getchar();
abort();
#else
pause();
#endif
}
}
int EXPRESS_fail( Express model ) {
ERRORflush_messages();
if( EXPRESSfail ) {
return( ( *EXPRESSfail )( model ) );
}
fprintf( stderr, "Errors in input\n" );
return 1;
}
int EXPRESS_succeed( Express model ) {
if( EXPRESSsucceed ) {
return( ( *EXPRESSsucceed )( model ) );
}
fprintf( stderr, "No errors in input\n" );
return 0;
}
Symbol * EXPRESS_get_symbol( Generic e ) {
return( &( ( Express )e )->symbol );
}
Express EXPRESScreate() {
Express model = SCOPEcreate( OBJ_EXPRESS );
model->u.express = ( struct Express_ * )scl_calloc( 1, sizeof( struct Express_ ) );
return model;
}
void EXPRESSdestroy( Express model ) {
if ( model->u.express->basename )
scl_free( model->u.express->basename );
if ( model->u.express->filename )
scl_free( model->u.express->filename );
scl_free( model->u.express );
SCOPEdestroy( model );
}
#define MAX_SCHEMA_FILENAME_SIZE 256
typedef struct Dir {
char full[MAX_SCHEMA_FILENAME_SIZE];
char * leaf;
} Dir;
static void EXPRESS_PATHinit() {
char * p;
Dir * dir;
int done = 0;
EXPRESS_path = LISTcreate();
p = getenv( "EXPRESS_PATH" );
if( !p ) {
/* if no EXPRESS_PATH, search current directory anyway */
dir = ( Dir * )scl_malloc( sizeof( Dir ) );
dir->leaf = dir->full;
LISTadd( EXPRESS_path, ( Generic )dir );
} else {
while( !done ) {
char * start; /* start of current dir */
int length; /* length of dir */
char * slash; /* last slash in dir */
char save; /* place to character from where we */
/* temporarily null terminate */
/* get next directory */
while( isspace( *p ) ) {
p++;
}
if( *p == '\0' ) {
break;
}
start = p;
/* find the end of the directory */
while( *p != '\0' && !isspace( *p ) ) {
p++;
}
save = *p;
if( *p == 0 ) {
done = 1;
} else {
*p = '\0';
}
p++; /* leave p after terminating null */
dir = ( Dir * )scl_malloc( sizeof( Dir ) );
/* if it's just ".", make it as if it was */
/* just "" to make error messages cleaner */
if( streq( ".", start ) ) {
dir->leaf = dir->full;
LISTadd( EXPRESS_path, ( Generic )dir );
*( p - 1 ) = save; /* put char back where */
/* temp null was */
continue;
}
//removed tilde logic; below line is all that's left
length = ( p - 1 ) - start;
/* if slash present at end, don't add another */
slash = strrchr( start, '/' );
if( slash && ( slash[1] == '\0' ) ) {
strcpy( dir->full, start );
dir->leaf = dir->full + length;
} else {
sprintf( dir->full, "%s/", start );
dir->leaf = dir->full + length + 1;
}
LISTadd( EXPRESS_path, ( Generic )dir );
*( p - 1 ) = save; /* put char back where temp null was */
}
}
}
static void EXPRESS_PATHfree( void ) {
LISTdo( EXPRESS_path, dir, Dir * )
scl_free( dir );
LISTod
LISTfree( EXPRESS_path );
}
/** inform object system about bit representation for handling pass diagnostics */
void PASSinitialize() {
OBJcreate( OBJ_PASS, UNK_get_symbol, "pass", OBJ_PASS_BITS );
}
/** Initialize the Express package. */
void EXPRESSinitialize( void ) {
Function
func_abs, func_acos, func_asin, func_atan,
func_blength,
func_cos, func_exists, func_exp, func_format,
func_hibound, func_hiindex, func_length, func_lobound,
func_log, func_log10, func_log2, func_loindex,
func_odd, func_rolesof, func_sin, func_sizeof,
func_sqrt, func_tan, func_typeof,
func_value, func_value_in, func_value_unique;
Procedure
proc_insert, proc_remove;
_MEMinitialize();
ERRORinitialize();
OBJinitialize();
HASHinitialize(); /* comes first - used by just about everything else! */
DICTinitialize();
LISTinitialize(); /* ditto */
ERRORinitialize_after_LIST();
STACKinitialize();
PASSinitialize();
RESOLVEinitialize();
SYMBOLinitialize();
SCOPEinitialize();
TYPEinitialize(); /* cannot come before SCOPEinitialize */
VARinitialize();
ALGinitialize();
ENTITYinitialize();
SCHEMAinitialize();
CASE_ITinitialize();
EXPinitialize();
/* LOOP_CTLinitialize();*/
STMTinitialize();
SCANinitialize();
EXPRESSbuiltins = DICTcreate( 35 );
#define funcdef(x,y,c,r) \
x = ALGcreate(OBJ_FUNCTION);\
x->symbol.name = y;\
x->u.func->pcount = c; \
x->u.func->return_type = r; \
x->u.func->builtin = true; \
resolved_all(x); \
DICTdefine(EXPRESSbuiltins,y,(Generic)x,0,OBJ_FUNCTION);
#define procdef(x,y,c) x = ALGcreate(OBJ_PROCEDURE);\
x->symbol.name = y;\
x->u.proc->pcount = c; \
x->u.proc->builtin = true; \
resolved_all(x); \
DICTdefine(EXPRESSbuiltins,y,(Generic)x,0,OBJ_PROCEDURE);
/* third arg is # of parameters */
/* eventually everything should be data-driven, but for now */
/* uppercase def's are global to allow passing necessary information */
/* into resolver */
procdef( proc_insert, KW_INSERT, 3 );
procdef( proc_remove, KW_REMOVE, 2 );
funcdef( func_abs, KW_ABS, 1, Type_Number );
funcdef( func_acos, KW_ACOS, 1, Type_Real );
funcdef( func_asin, KW_ASIN, 1, Type_Real );
funcdef( func_atan, KW_ATAN, 2, Type_Real );
funcdef( func_blength, KW_BLENGTH, 1, Type_Integer );
funcdef( func_cos, KW_COS, 1, Type_Real );
funcdef( func_exists, KW_EXISTS, 1, Type_Boolean );
funcdef( func_exp, KW_EXP, 1, Type_Real );
funcdef( func_format, KW_FORMAT, 2, Type_String );
funcdef( func_hibound, KW_HIBOUND, 1, Type_Integer );
funcdef( func_hiindex, KW_HIINDEX, 1, Type_Integer );
funcdef( func_length, KW_LENGTH, 1, Type_Integer );
funcdef( func_lobound, KW_LOBOUND, 1, Type_Integer );
funcdef( func_log, KW_LOG, 1, Type_Real );
funcdef( func_log10, KW_LOG10, 1, Type_Real );
funcdef( func_log2, KW_LOG2, 1, Type_Real );
funcdef( func_loindex, KW_LOINDEX, 1, Type_Integer );
funcdef( FUNC_NVL, KW_NVL, 2, Type_Generic );
funcdef( func_odd, KW_ODD, 1, Type_Logical );
funcdef( func_rolesof, KW_ROLESOF, 1, Type_Set_Of_String );
funcdef( func_sin, KW_SIN, 1, Type_Real );
funcdef( func_sizeof, KW_SIZEOF, 1, Type_Integer );
funcdef( func_sqrt, KW_SQRT, 1, Type_Real );
funcdef( func_tan, KW_TAN, 1, Type_Real );
funcdef( func_typeof, KW_TYPEOF, 1, Type_Set_Of_String );
funcdef( FUNC_USEDIN, KW_USEDIN, 2, Type_Bag_Of_Generic );
funcdef( func_value, KW_VALUE, 1, Type_Number );
funcdef( func_value_in, KW_VALUE_IN, 2, Type_Logical );
funcdef( func_value_unique, KW_VALUE_UNIQUE, 1, Type_Logical );
ERROR_bail_out =
ERRORcreate( "Aborting due to internal error(s)", SEVERITY_DUMP );
ERROR_syntax =
ERRORcreate( "%s in %s %s", SEVERITY_EXIT );
/* i.e., "syntax error in procedure foo" */
ERROR_ref_nonexistent = ERRORcreate(
"USE/REF of non-existent object (%s in schema %s)", SEVERITY_ERROR );
ERROR_tilde_expansion_failed = ERRORcreate(
"Tilde expansion for %s failed in EXPRESS_PATH environment variable", SEVERITY_ERROR );
ERROR_schema_not_in_own_schema_file = ERRORcreate(
"Schema %s was not found in its own schema file (%s)", SEVERITY_ERROR );
ERROR_unlabelled_param_type = ERRORcreate(
"Return type or local variable requires type label in `%s'", SEVERITY_ERROR );
ERROR_file_unreadable = ERRORcreate( "Could not read file %s: %s", SEVERITY_ERROR );
ERROR_file_unwriteable = ERRORcreate( "Could not write file %s: %s", SEVERITY_ERROR );
ERROR_warn_unsupported_lang_feat = ERRORcreate("Unsupported language feature (%s) at %s:%d",SEVERITY_WARNING);
OBJcreate( OBJ_EXPRESS, EXPRESS_get_symbol, "express file", OBJ_UNUSED_BITS );
ERRORcreate_warning( "unknown_subtype", ERROR_unknown_subtype );
ERRORcreate_warning( "unsupported", ERROR_warn_unsupported_lang_feat );
EXPRESS_PATHinit(); /* note, must follow defn of errors it needs! */
}
/** Clean up the EXPRESS package. */
void EXPRESScleanup( void ) {
EXPRESS_PATHfree();
ERRORdestroy( ERROR_bail_out );
ERRORdestroy( ERROR_syntax );
ERRORdestroy( ERROR_ref_nonexistent );
ERRORdestroy( ERROR_tilde_expansion_failed );
ERRORdestroy( ERROR_schema_not_in_own_schema_file );
ERRORdestroy( ERROR_unlabelled_param_type );
ERRORdestroy( ERROR_file_unreadable );
ERRORdestroy( ERROR_file_unwriteable );
ERRORdestroy( ERROR_warn_unsupported_lang_feat );
DICTcleanup();
OBJcleanup();
ERRORcleanup();
RESOLVEcleanup();
TYPEcleanup();
EXPcleanup();
SCANcleanup();
LISTcleanup();
}
/**
** \param file - Express source file to parse
** \return resulting Working Form model
** Parse an Express source file into the Working Form.
*/
void EXPRESSparse( Express model, FILE * fp, char * filename ) {
yyexpresult = model;
if( !fp ) {
fp = fopen( filename, "r" );
}
if( !fp ) {
/* go down path looking for file */
LISTdo( EXPRESS_path, dir, Dir * )
sprintf( dir->leaf, "%s", filename );
if( 0 != ( fp = fopen( dir->full, "r" ) ) ) {
filename = dir->full;
break;
}
LISTod
}
if( !fp ) {
ERRORreport( ERROR_file_unreadable, filename, strerror( errno ) );
return;
}
if( filename ) {
char * dot = strrchr( filename, '.' );
char * slash = strrchr( filename, '/' );
/* get beginning of basename */
char * start = slash ? ( slash + 1 ) : filename;
int length = strlen( start );
/* drop .exp suffix if present */
if( dot && streq( dot, ".exp" ) ) {
length -= 4;
}
model->u.express->basename = ( char * )scl_malloc( length + 1 );
memcpy( model->u.express->basename, filename, length );
model->u.express->basename[length] = '\0';
/* get new copy of filename to avoid being smashed */
/* by subsequent lookups on EXPRESS_path */
model->u.express->filename = SCANstrdup( filename );
filename = model->u.express->filename;
}
PARSEnew_schemas = LISTcreate();
PARSERrun( filename, model->u.express->file = fp );
}
/** start parsing a new schema file */
static Express PARSERrun( char * filename, FILE * fp ) {
extern int yyparse();
extern void SCAN_lex_init PROTO( ( char *, FILE * ) );
if( print_objects_while_running & OBJ_PASS_BITS ) {
fprintf( stdout, "parse (pass %d)\n", EXPRESSpass );
}
if( print_objects_while_running & OBJ_SCHEMA_BITS ) {
fprintf( stdout, "parse: %s (schema file)\n", filename );
}
yyin = fp;
SCAN_lex_init( filename, fp );
if( yyparse() != 0 ) {
ERRORreport( ERROR_bail_out );
/* free model and model->u.express */
return 0;
}
EXPRESSpass = 1;
return yyexpresult;
}
static void RENAMEresolve( Rename * r, Schema s );
/**
* find the final object to which a rename points
* i.e., follow chain of USEs or REFs
* sets DICT_type
*/
static Generic SCOPEfind_for_rename( Scope schema, char * name, enum rename_type type ) {
Generic result;
Rename * rename;
/* object can only appear in top level symbol table */
/* OR in another rename clause */
result = DICTlookup( schema->symbol_table, name );
if( result ) {
return result;
}
/* Occurs in a fully USE'd schema? */
LISTdo( schema->u.schema->use_schemas, schema, Schema )
/* follow chain'd USEs */
result = SCOPEfind_for_rename( schema, name, use );
if( result ) {
return( result );
}
LISTod;
/* Occurs in a partially USE'd schema? */
rename = ( Rename * )DICTlookup( schema->u.schema->usedict, name );
if( rename ) {
RENAMEresolve( rename, schema );
DICT_type = rename->type;
return( rename->object );
}
LISTdo( schema->u.schema->uselist, r, Rename * )
if( streq( ( r->nnew ? r->nnew : r->old )->name, name ) ) {
RENAMEresolve( r, schema );
DICT_type = r->type;
return( r->object );
}
LISTod;
/* we are searching for an object to be interfaced from this schema. */
/* therefore, we *never* want to look at things which are REFERENCE'd */
/* *into* the current schema. -snc */
#if 0
if( type == ref ) {
return( 0 );
}
/*NOTREACHED*/
/* Occurs in a fully REF'd schema? */
LISTdo( schema->u.schema->ref_schemas, schema, Schema )
result = SCOPEfind_for_rename( schema, name, ref );
if( result ) {
return result;
} else {
continue; /* try another schema */
}
LISTod;
/* Occurs in a partially REF'd schema? */
rename = ( Rename * )DICTlookup( schema->u.schema->refdict, name );
if( rename ) {
RENAMEresolve( rename );
DICT_type = rename->type;
return( rename->object );
}
#endif
return 0;
}
static void RENAMEresolve( Rename * r, Schema s ) {
Generic remote;
/* if (is_resolved_rename_raw(r->old)) return;*/
if( r->object ) {
return;
}
if( is_resolve_failed_raw( r->old ) ) {
return;
}
if( is_resolve_in_progress_raw( r->old ) ) {
ERRORreport_with_symbol( ERROR_circular_reference,
r->old, r->old->name );
resolve_failed_raw( r->old );
return;
}
resolve_in_progress_raw( r->old );
remote = SCOPEfind_for_rename( r->schema, r->old->name, r->rename_type );
if( remote == 0 ) {
ERRORreport_with_symbol( ERROR_ref_nonexistent, r->old,
r->old->name, r->schema->symbol.name );
resolve_failed_raw( r->old );
} else {
r->object = remote;
r->type = DICT_type;
switch( r->rename_type ) {
case use:
SCHEMAdefine_use( s, r );
break;
case ref:
SCHEMAdefine_reference( s, r );
break;
}
/* resolve_rename_raw(r->old);*/
}
resolve_not_in_progress_raw( r->old );
}
#ifdef using_enum_items_is_a_pain
static void RENAMEresolve_enum( Type t, Schema s ) {
Dictionary d = TYPEget_enum_tags( t );
DictionaryEntry de;
Expression x;
DICTdo_type_init( t->symbol_table, &de, OBJ_EXPRESSION );
while( 0 != ( x = ( Expression )DICTdo( &de ) ) ) {
/* SCHEMAadd_use(s, v*/
/* raw(x->symbol.name);*/
}
}
#endif
Schema EXPRESSfind_schema( Dictionary modeldict, char * name ) {
Schema s;
FILE * fp;
char * src, *dest;
char lower[MAX_SCHEMA_FILENAME_SIZE]; /* avoid lowerizing original */
if( print_objects_while_running & OBJ_SCHEMA_BITS ) {
fprintf( stdout, "pass %d: %s (schema reference)\n",
EXPRESSpass, name );
}
s = ( Schema )DICTlookup( modeldict, name );
if( s ) {
#if 0
if( print_objects_while_running & OBJ_SCHEMA_BITS ) {
fprintf( stdout, "pass %d: (found schema %s in model already)\n" );
}
#endif
return s;
}
dest = lower;
for( src = name; *src; src++ ) {
*dest++ = tolower( *src );
}
*dest = '\0';
/* go down path looking for file */
LISTdo( EXPRESS_path, dir, Dir * )
sprintf( dir->leaf, "%s.exp", lower );
if( print_objects_while_running & OBJ_SCHEMA_BITS ) {
fprintf( stdout, "pass %d: %s (schema file?)\n",
EXPRESSpass, dir->full );
}
fp = fopen( dir->full, "r" );
if( fp ) {
Express express;
if( print_objects_while_running & OBJ_SCHEMA_BITS ) {
fprintf( stdout, "pass %d: %s (schema file found)\n",
EXPRESSpass, dir->full );
}
express = PARSERrun( SCANstrdup( dir->full ), fp );
if( express ) {
s = ( Schema )DICTlookup( modeldict, name );
}
if( s ) {
return s;
}
ERRORreport( ERROR_schema_not_in_own_schema_file,
name, dir->full );
return 0;
} else {
if( print_objects_while_running & OBJ_SCHEMA_BITS ) {
fprintf( stdout, "pass %d: %s (schema file not found), errno = %d\n", EXPRESSpass, dir->full, errno );
}
}
LISTod
return 0;
}
/**
* make the initial connections from one schema to another
* dictated by USE/REF clauses that use dictionaries, i.e.,
* because of partial schema references
*/
static void connect_lists( Dictionary modeldict, Schema schema, Linked_List list ) {
Rename * r;
/* translate symbols to schemas */
LISTdo_links( list, l )
r = ( Rename * )l->data;
r->schema = EXPRESSfind_schema( modeldict, r->schema_sym->name );
if( !r->schema ) {
ERRORreport_with_symbol( ERROR_undefined_schema,
r->schema_sym,
r->schema_sym->name );
resolve_failed_raw( r->old );
resolve_failed( schema );
}
LISTod
}
/**
* same as `connect_lists` except for full schemas
* \sa connect_lists
*/
static void connect_schema_lists( Dictionary modeldict, Schema schema, Linked_List schema_list ) {
Symbol * sym;
Schema ref_schema;
/* translate symbols to schemas */
LISTdo_links( schema_list, list )
sym = ( Symbol * )list->data;
ref_schema = EXPRESSfind_schema( modeldict, sym->name );
if( !ref_schema ) {
ERRORreport_with_symbol( ERROR_undefined_schema, sym, sym->name );
resolve_failed( schema );
list->data = 0;
} else {
list->data = ( Generic )ref_schema;
}
LISTod
}
/**
** \param model - Working Form model to resolve
** Perform symbol resolution on a loosely-coupled WF.
*/
void EXPRESSresolve( Express model ) {
/* resolve multiple schemas. Schemas will be resolved here or when */
/* they are first encountered by a use/reference clause, whichever */
/* comes first - DEL */
Schema schema;
DictionaryEntry de; /* imaginative, eh? */
jmp_buf env;
if( setjmp( env ) ) {
return;
}
ERRORsafe( env );
EXPRESSpass++;
if( print_objects_while_running & OBJ_PASS_BITS ) {
fprintf( stdout, "pass %d: resolving schema references\n", EXPRESSpass );
}
/* connect the real schemas to all the rename clauses */
/* we may be adding new schemas (to dictionary) as we traverse it, */
/* so to avoid confusing dictionary, use a list as a fifo. I.e., */
/* add news schemas to end, drop old ones off the front as we */
/* process them. */
LISTdo( PARSEnew_schemas, schema, Schema )
if( print_objects_while_running & OBJ_SCHEMA_BITS ) {
fprintf( stdout, "pass %d: %s (schema)\n",
EXPRESSpass, schema->symbol.name );
}
if( schema->u.schema->uselist )
connect_lists( model->symbol_table,
schema, schema->u.schema->uselist );
if( schema->u.schema->reflist )
connect_lists( model->symbol_table,
schema, schema->u.schema->reflist );
connect_schema_lists( model->symbol_table,
schema, schema->u.schema->use_schemas );
connect_schema_lists( model->symbol_table,
schema, schema->u.schema->ref_schemas );
LISTod;
LISTfree( PARSEnew_schemas );
PARSEnew_schemas = 0; /* just in case */
EXPRESSpass++;
if( print_objects_while_running & OBJ_PASS_BITS ) {
fprintf( stdout, "pass %d: resolving objects references to other schemas\n", EXPRESSpass );
}
/* connect the object in each rename clause to the real object */
DICTdo_type_init( model->symbol_table, &de, OBJ_SCHEMA );
while( 0 != ( schema = ( Schema )DICTdo( &de ) ) ) {
if( is_not_resolvable( schema ) ) {
continue;
}
if( print_objects_while_running & OBJ_SCHEMA_BITS ) {
fprintf( stdout, "pass %d: %s (schema)\n",
EXPRESSpass, schema->symbol.name );
}
/* do USE's first because they take precedence */
if( schema->u.schema->uselist ) {
LISTdo( schema->u.schema->uselist, r, Rename * )
RENAMEresolve( r, schema );
LISTod;
LISTfree( schema->u.schema->uselist );
schema->u.schema->uselist = 0;
}
if( schema->u.schema->reflist ) {
LISTdo( schema->u.schema->reflist, r, Rename * )
RENAMEresolve( r, schema );
LISTod;
LISTfree( schema->u.schema->reflist );
schema->u.schema->reflist = 0;
}
}
/* resolve sub- and supertype references. also resolve all */
/* defined types */
EXPRESSpass++;
if( print_objects_while_running & OBJ_PASS_BITS ) {
fprintf( stdout, "pass %d: resolving sub and supertypes\n", EXPRESSpass );
}
DICTdo_type_init( model->symbol_table, &de, OBJ_SCHEMA );
while( 0 != ( schema = ( Schema )DICTdo( &de ) ) ) {
if( is_not_resolvable( schema ) ) {
continue;
}
SCOPEresolve_subsupers( schema );
}
if( ERRORoccurred ) {
ERRORunsafe();
}
/* resolve types */
EXPRESSpass++;
if( print_objects_while_running & OBJ_PASS_BITS ) {
fprintf( stdout, "pass %d: resolving types\n", EXPRESSpass );
}
SCOPEresolve_types( model );
if( ERRORoccurred ) {
ERRORunsafe();
}
#ifdef using_enum_items_is_a_pain
/* resolve USE'd enumerations */
/* doesn't really deserve its own pass, but needs to come after */
/* type resolution */
EXPRESSpass++;
if( print_objects_while_running & OBJ_PASS_BITS ) {
fprintf( stdout, "pass %d: resolving implied USE's\n", EXPRESSpass );
}
DICTdo_type_init( model->symbol_table, &de, OBJ_SCHEMA );
while( 0 != ( schema = ( Schema )DICTdo( &de ) ) ) {
if( is_not_resolvable( schema ) ) {
continue;
}
if( print_objects_while_running & OBJ_SCHEMA_BITS ) {
fprintf( stdout, "pass %d: %s (schema)\n",
EXPRESSpass, schema->symbol.name );
}
if( schema->u.schema->usedict ) {
DICTdo_init( schema->u.schema->usedict, &fg )
while( 0 != ( r = ( Rename )DICTdo( &fg ) ) ) {
if( ( r->type = OBJ_TYPE ) && ( ( Type )r->object )->body &&
TYPEis_enumeration( ( Type )r->object ) ) {
RENAMEresolve_enum( ( Type )r->object, schema );
}
}
}
}
if( ERRORoccurred ) {
ERRORunsafe();
}
#endif
EXPRESSpass++;
if( print_objects_while_running & OBJ_PASS_BITS ) {
fprintf( stdout, "pass %d: resolving expressions and statements\n", EXPRESSpass );
}
SCOPEresolve_expressions_statements( model );
if( ERRORoccurred ) {
ERRORunsafe();
}
/* mark everything resolved if possible */
DICTdo_init( model->symbol_table, &de );
while( 0 != ( schema = ( Schema )DICTdo( &de ) ) ) {
if( is_resolvable( schema ) ) {
resolved_all( schema );
}
}
}