forked from stepcode/stepcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclasses_python.c
More file actions
1325 lines (1202 loc) · 43.7 KB
/
classes_python.c
File metadata and controls
1325 lines (1202 loc) · 43.7 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
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
** Fed-x parser output module for generating C++ class definitions
** December 5, 1989
** release 2 17-Feb-1992
** release 3 March 1993
** release 4 December 1993
** K. C. Morris
**
** Development of Fed-x was funded by the United States Government,
** and is not subject to copyright.
*******************************************************************
The conventions used in this binding follow the proposed specification
for the STEP Standard Data Access Interface as defined in document
N350 ( August 31, 1993 ) of ISO 10303 TC184/SC4/WG7.
*******************************************************************/
/******************************************************************
*** The functions in this file generate the C++ code for ENTITY **
*** classes, TYPEs, and TypeDescriptors. ***
** **/
/* this is used to add new dictionary calls */
/* #define NEWDICT */
#include <stdlib.h>
#include "classes.h"
int isAggregateType( const Type t );
int isAggregate( Variable a );
Variable VARis_type_shifter( Variable a );
const char * ENTITYget_CORBAname( Entity ent );
const char * GetTypeDescriptorName( Type t );
char * FundamentalType( const Type t, int report_reftypes );
int multiple_inheritance = 1;
int print_logging = 0;
int corba_binding = 0;
int old_accessors = 0;
/* several classes use attr_count for naming attr dictionary entry
variables. All but the last function generating code for a particular
entity increment a copy of it for naming each attr in the entity.
Here are the functions:
ENTITYhead_print (Entity entity, FILE* file,Schema schema)
LIBdescribe_entity (Entity entity, FILE* file, Schema schema)
LIBcopy_constructor (Entity ent, FILE* file)
LIBstructor_print (Entity entity, FILE* file, Schema schema)
LIBstructor_print_w_args (Entity entity, FILE* file, Schema schema)
ENTITYincode_print (Entity entity, FILE* file,Schema schema)
DAS
*/
static int attr_count; /* number each attr to avoid inter-entity clashes */
static int type_count; /* number each temporary type for same reason above */
extern int any_duplicates_in_select( const Linked_List list );
extern int unique_types( const Linked_List list );
extern char * non_unique_types_string( const Type type );
static void printEnumCreateHdr( FILE *, const Type );
static void printEnumCreateBody( FILE *, const Type );
static void printEnumAggrCrHdr( FILE *, const Type );
static void printEnumAggrCrBody( FILE *, const Type );
void printAccessHookFriend( FILE *, const char * );
void printAccessHookHdr( FILE *, const char * );
int TYPEget_RefTypeVarNm( const Type t, char * buf, Schema schema );
void TypeBody_Description( TypeBody body, char * buf );
/*
Turn the string into a new string that will be printed the same as the
original string. That is, turn backslash into a quoted backslash and
turn \n into "\n" (i.e. 2 chars).
*/
char * format_for_stringout( char * orig_buf, char * return_buf ) {
char * optr = orig_buf;
char * rptr = return_buf;
while( *optr ) {
if( *optr == '\n' ) {
*rptr = '\\';
rptr++;
*rptr = 'n';
} else if( *optr == '\\' ) {
*rptr = '\\';
rptr++;
*rptr = '\\';
} else {
*rptr = *optr;
}
rptr++;
optr++;
}
*rptr = '\0';
return return_buf;
}
void
USEREFout( Schema schema, Dictionary refdict, Linked_List reflist, char * type, FILE * file ) {
Dictionary dict;
DictionaryEntry de;
struct Rename * r;
Linked_List list;
char td_name[BUFSIZ];
char sch_name[BUFSIZ];
strncpy( sch_name, PrettyTmpName( SCHEMAget_name( schema ) ), BUFSIZ );
LISTdo( reflist, s, Schema ) {
fprintf( file, "\t// %s FROM %s; (all objects)\n", type, s->symbol.name );
fprintf( file, "\tis = new Interface_spec(\"%s\",\"%s\");\n", sch_name, PrettyTmpName( s->symbol.name ) );
fprintf( file, "\tis->all_objects_(1);\n" );
if( !strcmp( type, "USE" ) ) {
fprintf( file, "\t%s%s->use_interface_list_()->Append(is);\n", SCHEMA_PREFIX, SCHEMAget_name( schema ) );
} else {
fprintf( file, "\t%s%s->ref_interface_list_()->Append(is);\n", SCHEMA_PREFIX, SCHEMAget_name( schema ) );
}
}
LISTod
if( !refdict ) {
return;
}
dict = DICTcreate( 10 );
/* sort each list by schema */
/* step 1: for each entry, store it in a schema-specific list */
DICTdo_init( refdict, &de );
while( 0 != ( r = ( struct Rename * )DICTdo( &de ) ) ) {
Linked_List list;
list = ( Linked_List )DICTlookup( dict, r->schema->symbol.name );
if( !list ) {
list = LISTcreate();
DICTdefine( dict, r->schema->symbol.name, list,
( Symbol * )0, OBJ_UNKNOWN );
}
LISTadd( list, r );
}
/* step 2: for each list, print out the renames */
DICTdo_init( dict, &de );
while( 0 != ( list = ( Linked_List )DICTdo( &de ) ) ) {
bool first_time = true;
LISTdo( list, r, struct Rename * )
/*
Interface_spec_ptr is;
Used_item_ptr ui;
is = new Interface_spec(const char * cur_sch_id);
schemadescriptor->use_interface_list_()->Append(is);
ui = new Used_item(TypeDescriptor *ld, const char *oi, const char *ni) ;
is->_explicit_items->Append(ui);
*/
/* note: SCHEMAget_name(r->schema) equals r->schema->symbol.name) */
if( first_time ) {
fprintf( file, "\t// %s FROM %s (selected objects)\n", type, r->schema->symbol.name );
fprintf( file, "\tis = new Interface_spec(\"%s\",\"%s\");\n", sch_name, PrettyTmpName( r->schema->symbol.name ) );
if( !strcmp( type, "USE" ) ) {
fprintf( file, "\t%s%s->use_interface_list_()->Append(is);\n", SCHEMA_PREFIX, SCHEMAget_name( schema ) );
} else {
fprintf( file, "\t%s%s->ref_interface_list_()->Append(is);\n", SCHEMA_PREFIX, SCHEMAget_name( schema ) );
}
}
if( first_time ) {
first_time = false;
}
if( r->type == OBJ_TYPE ) {
sprintf( td_name, "%s", TYPEtd_name( ( Type )r->object ) );
} else if( r->type == OBJ_FUNCTION ) {
sprintf( td_name, "/* Function not implemented */ 0" );
} else if( r->type == OBJ_PROCEDURE ) {
sprintf( td_name, "/* Procedure not implemented */ 0" );
} else if( r->type == OBJ_RULE ) {
sprintf( td_name, "/* Rule not implemented */ 0" );
} else if( r->type == OBJ_ENTITY ) {
sprintf( td_name, "%s%s%s",
SCOPEget_name( ( ( Entity )r->object )->superscope ),
ENT_PREFIX, ENTITYget_name( ( Entity )r->object ) );
} else {
sprintf( td_name, "/* %c from OBJ_? in expbasic.h not implemented */ 0", r->type );
}
if( r->old != r->nnew ) {
fprintf( file, "\t// object %s AS %s\n", r->old->name,
r->nnew->name );
if( !strcmp( type, "USE" ) ) {
fprintf( file, "\tui = new Used_item(\"%s\", %s, \"%s\", \"%s\");\n", r->schema->symbol.name, td_name, r->old->name, r->nnew->name );
fprintf( file, "\tis->explicit_items_()->Append(ui);\n" );
fprintf( file, "\t%s%s->interface_().explicit_items_()->Append(ui);\n", SCHEMA_PREFIX, SCHEMAget_name( schema ) );
} else {
fprintf( file, "\tri = new Referenced_item(\"%s\", %s, \"%s\", \"%s\");\n", r->schema->symbol.name, td_name, r->old->name, r->nnew->name );
fprintf( file, "\tis->explicit_items_()->Append(ri);\n" );
fprintf( file, "\t%s%s->interface_().explicit_items_()->Append(ri);\n", SCHEMA_PREFIX, SCHEMAget_name( schema ) );
}
} else {
fprintf( file, "\t// object %s\n", r->old->name );
if( !strcmp( type, "USE" ) ) {
fprintf( file, "\tui = new Used_item(\"%s\", %s, \"\", \"%s\");\n", r->schema->symbol.name, td_name, r->nnew->name );
fprintf( file, "\tis->explicit_items_()->Append(ui);\n" );
fprintf( file, "\t%s%s->interface_().explicit_items_()->Append(ui);\n", SCHEMA_PREFIX, SCHEMAget_name( schema ) );
} else {
fprintf( file, "\tri = new Referenced_item(\"%s\", %s, \"\", \"%s\");\n", r->schema->symbol.name, td_name, r->nnew->name );
fprintf( file, "\tis->explicit_items_()->Append(ri);\n" );
fprintf( file, "\t%s%s->interface_().explicit_items_()->Append(ri);\n", SCHEMA_PREFIX, SCHEMAget_name( schema ) );
}
}
LISTod
}
HASHdestroy( dict );
}
const char *
IdlEntityTypeName( Type t ) {
}
int Handle_FedPlus_Args( int i, char * arg ) {
if( ( ( char )i == 's' ) || ( ( char )i == 'S' ) ) {
multiple_inheritance = 0;
}
if( ( ( char )i == 'a' ) || ( ( char )i == 'A' ) ) {
old_accessors = 1;
}
if( ( char )i == 'L' ) {
print_logging = 1;
}
if( ( ( char )i == 'c' ) || ( ( char )i == 'C' ) ) {
corba_binding = 1;
}
return 0;
}
bool is_python_keyword(char * word) {
bool python_keyword = false;
if (strcmp(word,"class")==0) python_keyword = true;
return python_keyword;
}
/******************************************************************
** Procedure: generate_attribute_name
** Parameters: Variable a, an Express attribute; char *out, the C++ name
** Description: converts an Express name into the corresponding C++ name
** see relation to generate_dict_attr_name() DAS
** Side Effects:
** Status: complete 8/5/93
******************************************************************/
char *
generate_attribute_name( Variable a, char * out ) {
char * temp, *p, *q;
int j;
temp = EXPRto_string( VARget_name( a ) );
p = temp;
if( ! strncmp( StrToLower( p ), "self\\", 5 ) ) {
p = p + 5;
}
/* copy p to out */
/* DAR - fixed so that '\n's removed */
for( j = 0, q = out; j < BUFSIZ; p++ ) {
/* copy p to out, 1 char at time. Skip \n's and spaces, convert */
/* '.' to '_', and convert to lowercase. */
if( ( *p != '\n' ) && ( *p != ' ' ) ) {
if( *p == '.' ) {
*q = '_';
} else {
*q = tolower( *p );
}
j++;
q++;
}
}
free(temp);
// python generator : we should prevend an attr name to be a python reserved keyword
if (is_python_keyword(out)) strcat(out,"_");
return out;
}
char *
generate_attribute_func_name( Variable a, char * out ) {
generate_attribute_name( a, out );
strncpy( out, CheckWord( StrToLower( out ) ), BUFSIZ );
if( old_accessors ) {
out[0] = toupper( out[0] );
} else {
out[strlen( out )] = '_';
}
return out;
}
/******************************************************************
** Procedure: generate_dict_attr_name
** Parameters: Variable a, an Express attribute; char *out, the C++ name
** Description: converts an Express name into the corresponding SCL
** dictionary name. The difference between this and the
** generate_attribute_name() function is that for derived
** attributes the name will have the form <parent>.<attr_name>
** where <parent> is the name of the parent containing the
** attribute being derived and <attr_name> is the name of the
** derived attribute. Both <parent> and <attr_name> may
** contain underscores but <parent> and <attr_name> will be
** separated by a period. generate_attribute_name() generates
** the same name except <parent> and <attr_name> will be
** separated by an underscore since it is illegal to have a
** period in a variable name. This function is used for the
** dictionary name (a string) and generate_attribute_name()
** will be used for variable and access function names.
** Side Effects:
** Status: complete 8/5/93
******************************************************************/
char *
generate_dict_attr_name( Variable a, char * out ) {
char * temp, *p, *q;
int j;
temp = EXPRto_string( VARget_name( a ) );
p = temp;
if( ! strncmp( StrToLower( p ), "self\\", 5 ) ) {
p = p + 5;
}
/* copy p to out */
strncpy( out, StrToLower( p ), BUFSIZ );
/* DAR - fixed so that '\n's removed */
for( j = 0, q = out; j < BUFSIZ; p++ ) {
/* copy p to out, 1 char at time. Skip \n's, and convert to lc. */
if( *p != '\n' ) {
*q = tolower( *p );
j++;
q++;
}
}
free( temp );
return out;
}
/******************************************************************
** Entity Generation */
/******************************************************************
** Procedure: ENTITYhead_print
** Parameters: const Entity entity
** FILE* file -- file being written to
** Returns:
** Description: prints the beginning of the entity class definition for the
** c++ code and the declaration of extern attr descriptors for
** the registry. In the .h file
** Side Effects: generates c++ code
** Status: good 1/15/91
** added registry things 12-Apr-1993
******************************************************************/
void
ENTITYhead_print( Entity entity, FILE * file, Schema schema ) {
char entnm [BUFSIZ];
char attrnm [BUFSIZ];
Linked_List list;
int attr_count_tmp = attr_count;
Entity super = 0;
strncpy( entnm, ENTITYget_classname( entity ), BUFSIZ );
/* DAS print all the attr descriptors and inverse attr descriptors for an
entity as extern defs in the .h file. */
LISTdo( ENTITYget_attributes( entity ), v, Variable )
generate_attribute_name( v, attrnm );
fprintf( file, "extern %s *%s%d%s%s;\n",
( VARget_inverse( v ) ? "Inverse_attribute" : ( VARis_derived( v ) ? "Derived_attribute" : "AttrDescriptor" ) ),
ATTR_PREFIX, attr_count_tmp++,
( VARis_derived( v ) ? "D" : ( VARis_type_shifter( v ) ? "R" : ( VARget_inverse( v ) ? "I" : "" ) ) ),
attrnm );
/* **** testing the functions **** */
/*
if( !(VARis_derived(v) &&
VARget_initializer(v) &&
VARis_type_shifter(v) &&
VARis_overrider(entity, v)) )
fprintf(file,"// %s Attr is not derived, a type shifter, overrider, no initializer.\n",attrnm);
if(VARis_derived (v))
fprintf(file,"// %s Attr is derived\n",attrnm);
if (VARget_initializer (v))
fprintf(file,"// %s Attr has an initializer\n",attrnm);
if(VARis_type_shifter (v))
fprintf(file,"// %s Attr is a type shifter\n",attrnm);
if(VARis_overrider (entity, v))
fprintf(file,"// %s Attr is an overrider\n",attrnm);
*/
/* ****** */
LISTod
fprintf( file, "\nclass %s : ", entnm );
/* inherit from either supertype entity class or root class of
all - i.e. SCLP23(Application_instance) */
if( multiple_inheritance ) {
list = ENTITYget_supertypes( entity );
if( ! LISTempty( list ) ) {
super = ( Entity )LISTpeek_first( list );
}
} else { /* the old way */
super = ENTITYput_superclass( entity );
}
if( super ) {
fprintf( file, " public %s {\n ", ENTITYget_classname( super ) );
} else {
fprintf( file, " public SCLP23(Application_instance) {\n" );
}
}
/******************************************************************
** Procedure: DataMemberPrint
** Parameters: const Entity entity -- entity being processed
** FILE* file -- file being written to
** Returns:
** Description: prints out the data members for an entity's c++ class
** definition
** Side Effects: generates c++ code
** Status: ok 1/15/91
******************************************************************/
void
DataMemberPrint( Entity entity, FILE * file, Schema schema ) {
}
/******************************************************************
** Procedure: MemberFunctionSign
** Parameters: Entity *entity -- entity being processed
** FILE* file -- file being written to
** Returns:
** Description: prints the signature for member functions
of an entity's class definition
** DAS prints the end of the entity class def and the creation
** function that the EntityTypeDescriptor uses.
** Side Effects: prints c++ code to a file
** Status: ok 1/1/5/91
** updated 17-Feb-1992 to print only the signature
and not the function definitions
******************************************************************/
void
MemberFunctionSign( Entity entity, FILE * file ) {
}
/******************************************************************
** Procedure: LIBdescribe_entity (entity, file, schema)
** Parameters: Entity entity -- entity being processed
** FILE* file -- file being written to
** Schema schema -- schema being processed
** Returns:
** Description: declares the global pointer to the EntityDescriptor
representing a particular entity
** DAS also prints the attr descs and inverse attr descs
** This function creates the storage space for the externs defs
** that were defined in the .h file. These global vars go in
** the .cc file.
** Side Effects: prints c++ code to a file
** Status: ok 12-Apr-1993
******************************************************************/
char *
GetAttrTypeName(Type t) {
char * attr_type;
if (TYPEis_string(t))
{
attr_type = "STRING";
}
else if (TYPEis_logical(t))
{
attr_type = "LOGICAL";
}
else if (TYPEis_boolean(t))
{
attr_type = "BOOLEAN";
}
else if (TYPEis_real(t))
{
attr_type = "REAL";
}
else if (TYPEis_integer(t))
{
attr_type = "INTEGER";
}
else
{
attr_type = TYPEget_name(t);
}
return attr_type;
}
/*
*
* A function that prints BAG, ARRAY, SET or LIST to the file
*
*/
void
print_aggregate_type(FILE *file, Type t) {
switch(TYPEget_body( t )->type) {
case array_:
fprintf(file,"ARRAY");
break;
case bag_:
fprintf(file,"BAG");
break;
case set_:
fprintf(file,"SET");
break;
case list_:
fprintf(file,"LIST");
break;
default:
break;
}
}
/*
*
* A recursive function to export aggregate to python
*
*/
void
process_aggregate (FILE *file, Type t) {
Expression lower = AGGR_TYPEget_lower_limit(t);
char *lower_str = EXPRto_string(lower);
Expression upper = AGGR_TYPEget_upper_limit(t);
char *upper_str = NULL;
Type base_type;
if (upper == LITERAL_INFINITY) {
upper_str = "None";
}
else {
upper_str = EXPRto_string(upper);
}
switch(TYPEget_body( t )->type) {
case array_:
fprintf(file,"ARRAY");
break;
case bag_:
fprintf(file,"BAG");
break;
case set_:
fprintf(file,"SET");
break;
case list_:
fprintf(file,"LIST");
break;
default:
break;
}
fprintf(file,"(%s,%s,",lower_str,upper_str);
//write base type
base_type = TYPEget_base_type(t);
if (TYPEis_aggregate(base_type)) {
process_aggregate(file,base_type);
fprintf(file,")"); //close parenthesis
}
else {
char * array_base_type = GetAttrTypeName(TYPEget_base_type(t));
//fprintf(file,"%s)",array_base_type);
fprintf(file,"'%s')",array_base_type);
}
}
void
LIBdescribe_entity( Entity entity, FILE * file, Schema schema ) {
int attr_count_tmp = attr_count;
char attrnm [BUFSIZ], parent_attrnm[BUFSIZ];
char * attr_type;
bool generate_constructor = true; //by default, generates a python constructor
bool inheritance = false;
Type t;
Linked_List list;
int num_parent = 0;
int num_derived_inverse_attr = 0;
int index_attribute = 0;
/* class name
need to use new-style classes for properties to work correctly
so class must inherit from object */
if (is_python_keyword(ENTITYget_name(entity))) {fprintf(file,"class %s_(",ENTITYget_name(entity));}
else {fprintf(file,"class %s(",ENTITYget_name(entity));}
/*
* Look for inheritance and super classes
*/
list = ENTITYget_supertypes( entity );
num_parent = 0;
if( ! LISTempty( list ) ) {
inheritance = true;
LISTdo( list, e, Entity )
/* if there\'s no super class yet,
or the super class doesn\'t have any attributes
*/
if (num_parent > 0) fprintf(file,","); //separator for parent classes names
if (is_python_keyword(ENTITYget_name(e))) {fprintf(file,"%s_",ENTITYget_name(e));}
else {fprintf(file,"%s",ENTITYget_name(e));}
num_parent++;
LISTod;
}
else {
//inherit from BaeEntityClass by default, in order to enable decorators
// as well as advanced __repr__ feature
fprintf(file,"BaseEntityClass");
}
fprintf(file,"):\n");
/*
* Write docstrings in a Sphinx compliant manner
*/
fprintf(file,"\t'''Entity %s definition.\n",ENTITYget_name(entity));
LISTdo(ENTITYget_attributes( entity ), v, Variable)
generate_attribute_name( v, attrnm );
t = VARget_type( v );
fprintf(file,"\n\t:param %s\n",attrnm);
fprintf(file,"\t:type %s:",attrnm);
if( TYPEis_aggregate( t ) ) {
process_aggregate(file,t);
fprintf(file,"\n");
}
else {
fprintf(file,"%s\n",GetAttrTypeName(t));
}
attr_count_tmp++;
LISTod
fprintf(file,"\t'''\n");
/*
* Before writing constructor, check if this entity has any attribute
* other wise just a 'pass' statement is enough
*/
attr_count_tmp = 0;
num_derived_inverse_attr = 0;
LISTdo(ENTITYget_attributes( entity ), v, Variable)
if (VARis_derived(v) || VARget_inverse(v)) {
num_derived_inverse_attr++;
}
else {
attr_count_tmp++;
}
LISTod
if ((attr_count_tmp == 0) && !inheritance) {
fprintf(file,"\t# This class does not define any attribute.\n");
fprintf(file,"\tpass\n");
generate_constructor = false;
}
if (false) {}
else {
/*
* write class constructor
*/
if (generate_constructor) {
fprintf(file,"\tdef __init__( self , ");
}
// if inheritance, first write the inherited parameters
list = ENTITYget_supertypes( entity );
num_parent = 0;
index_attribute = 0;
if( ! LISTempty( list ) ) {
LISTdo( list, e, Entity )
/* search attribute names for superclass */
LISTdo(ENTITYget_attributes( e ), v2, Variable)
generate_attribute_name( v2, parent_attrnm );
fprintf(file,"%s__%s , ",ENTITYget_name(e),parent_attrnm);
index_attribute++;
LISTod
num_parent++;
LISTod;
}
LISTdo(ENTITYget_attributes( entity ), v, Variable)
generate_attribute_name( v, attrnm );
if (!VARis_derived(v) && !VARget_inverse(v)) {
fprintf(file,"%s,",attrnm);
}
LISTod
// close constructor method
if (generate_constructor) fprintf(file," ):\n");
/** if inheritance, first init base class **/
list = ENTITYget_supertypes( entity );
if( ! LISTempty( list ) ) {
LISTdo( list, e, Entity )
fprintf(file,"\t\t%s.__init__(self , ",ENTITYget_name(e));
/* search and write attribute names for superclass */
LISTdo(ENTITYget_attributes( e ), v2, Variable)
generate_attribute_name( v2, parent_attrnm );
fprintf(file,"%s__%s , ",ENTITYget_name(e),parent_attrnm);
LISTod
fprintf(file,")\n"); //separator for parent classes names
LISTod;
}
// init variables in constructor
LISTdo(ENTITYget_attributes( entity ), v, Variable)
generate_attribute_name( v, attrnm );
if (!VARis_derived(v) && !VARget_inverse(v)) fprintf(file,"\t\tself.%s = %s\n",attrnm,attrnm);
//attr_count_tmp++;
LISTod
/*
* write attributes as python properties
*/
LISTdo( ENTITYget_attributes( entity ), v, Variable )
generate_attribute_name( v, attrnm );
fprintf(file,"\n\t@apply\n");
fprintf(file,"\tdef %s():\n",attrnm);
// fget
fprintf(file,"\t\tdef fget( self ):\n");
if (!VARis_derived(v)) {
fprintf(file,"\t\t\treturn self._%s\n",attrnm);
}
else {
// expression initializer
char * expression_string = EXPRto_string( v->initializer );
fprintf(file,"\t\t\treturn EvalDerivedAttribute(self,'''%s''')\n",expression_string);
free( expression_string );
}
// fset
fprintf(file,"\t\tdef fset( self, value ):\n");
t = VARget_type( v );
attr_type = GetAttrTypeName(t);
if (!VARis_derived(v) && !VARget_inverse(v)) {
// if the argument is not optional
if (!VARget_optional(v)) {
fprintf(file, "\t\t# Mandatory argument\n");
fprintf(file,"\t\t\tif value==None:\n");
fprintf(file,"\t\t\t\traise AssertionError('Argument %s is mantatory and can not be set to None')\n",attrnm);
fprintf(file,"\t\t\tif not check_type(value,");
if( TYPEis_aggregate( t ) ) {
process_aggregate(file,t);
fprintf(file,"):\n");
}
else {
fprintf(file,"%s):\n",attr_type);
}
}
else {
fprintf(file,"\t\t\tif value != None: # OPTIONAL attribute\n\t");
fprintf(file,"\t\t\tif not check_type(value,");
if( TYPEis_aggregate( t ) ) {
process_aggregate(file,t);
fprintf(file,"):\n\t");
}
else {
fprintf(file,"%s):\n\t",attr_type);
}
}
// check wether attr_type is aggr or explicit
if( TYPEis_aggregate( t ) ) {
fprintf(file, "\t\t\t\tself._%s = ",attrnm);
print_aggregate_type(file,t);
fprintf(file,"(value)\n");
fprintf(file, "\t\t\telse:\n\t");
}
else {
fprintf(file, "\t\t\t\tself._%s = %s(value)\n",attrnm,attr_type);
fprintf(file, "\t\t\telse:\n\t");
}
fprintf(file,"\t\t\tself._%s = value\n",attrnm);
}
// if the attribute is derived, prevent fset to attribute to be set
else if (VARis_derived(v)){
fprintf(file,"\t\t# DERIVED argument\n");
fprintf(file,"\t\t\traise AssertionError('Argument %s is DERIVED. It is computed and can not be set to any value')\n",attrnm);
}
else if (VARget_inverse(v)) {
fprintf(file,"\t\t# INVERSE argument\n");
fprintf(file,"\t\t\traise AssertionError('Argument %s is INVERSE. It is computed and can not be set to any value')\n",attrnm);
}
fprintf(file,"\t\treturn property(**locals())\n");
LISTod
}
}
int
get_local_attribute_number( Entity entity ) {
int i = 0;
Linked_List local = ENTITYget_attributes( entity );
LISTdo( local, a, Variable )
/* go to the child's first explicit attribute */
if( ( ! VARget_inverse( a ) ) && ( ! VARis_derived( a ) ) ) ++i;
LISTod;
return i;
}
int
get_attribute_number( Entity entity ) {
int i = 0;
int found = 0;
Linked_List local, complete;
complete = ENTITYget_all_attributes( entity );
local = ENTITYget_attributes( entity );
LISTdo( local, a, Variable )
/* go to the child's first explicit attribute */
if( ( ! VARget_inverse( a ) ) && ( ! VARis_derived( a ) ) ) {
LISTdo( complete, p, Variable )
/* cycle through all the explicit attributes until the
child's attribute is found */
if( !found && ( ! VARget_inverse( p ) ) && ( ! VARis_derived( p ) ) ) {
if( p != a ) {
++i;
} else {
found = 1;
}
}
LISTod;
if( found ) {
return i;
} else printf( "Internal error: %s:%d\n"
"Attribute %s not found. \n"
/* In this case, a is a Variable - so macro VARget_name (a) expands *
* to an Expression. The first element of an Expression is a Symbol. *
* The first element of a Symbol is char * name. */
, __FILE__, __LINE__, VARget_name( a )->symbol.name );
}
LISTod;
return -1;
}
void
LIBstructor_print( Entity entity, FILE * file, Schema schema ) {
}
/********************/
/* print the constructor that accepts a SCLP23(Application_instance) as an argument used
when building multiply inherited entities.
*/
void
LIBstructor_print_w_args( Entity entity, FILE * file, Schema schema ) {
}
/******************************************************************
** Procedure: ENTITYlib_print
** Parameters: Entity *entity -- entity being processed
** FILE* file -- file being written to
** Returns:
** Description: drives the printing of the code for the class library
** additional member functions can be generated by writing a routine
** to generate the code and calling that routine from this procedure
** Side Effects: generates code segment for c++ library file
** Status: ok 1/15/91
******************************************************************/
void
ENTITYlib_print( Entity entity, FILE * file, Schema schema ) {
LIBdescribe_entity( entity, file, schema );
}
//FIXME should return bool
/* return 1 if types are predefined by us */
int
TYPEis_builtin( const Type t ) {
switch( TYPEget_body( t )->type ) { /* dunno if correct*/
case integer_:
case real_:
case string_:
case binary_:
case boolean_:
case number_:
case logical_:
return 1;
break;
default:
break;
}
return 0;
}
void
print_typechain( FILE * f, const Type t, char * buf, Schema schema ) {
}
void
ENTITYincode_print( Entity entity, FILE * file, Schema schema ) {
}
/******************************************************************
** Procedure: ENTITYPrint
** Parameters: Entity *entity -- entity being processed
** FILE* file -- file being written to
** Returns:
** Description: drives the functions for printing out code in lib,
** include, and initialization files for a specific entity class
** Side Effects: generates code in 3 files
** Status: complete 1/15/91
******************************************************************/
void
ENTITYPrint( Entity entity, FILES * files, Schema schema ) {
char * n = ENTITYget_name( entity );
DEBUG( "Entering ENTITYPrint for %s\n", n );
fprintf( files->lib, "\n####################\n # ENTITY %s #\n####################\n", n );
ENTITYlib_print( entity, files -> lib, schema );
DEBUG( "DONE ENTITYPrint\n" ) ;
}
void
MODELPrintConstructorBody( Entity entity, FILES * files, Schema schema
/*, int index*/ ) {
}
void
MODELPrint( Entity entity, FILES * files, Schema schema, int index ) {
}
void
ENTITYprint_new( Entity entity, FILES * files, Schema schema, int externMap ) {
}
void
MODELprint_new( Entity entity, FILES * files, Schema schema ) {
}
/******************************************************************
** TYPE GENERATION **/
/******************************************************************
** Procedure: TYPEprint_enum
** Parameters: const Type type - type to print
** FILE* f - file on which to print
** Returns:
** Requires: TYPEget_class(type) == TYPE_ENUM
** Description: prints code to represent an enumerated type in c++
** Side Effects: prints to header file
** Status: ok 1/15/91
** Changes: Modified to check for appropiate key words as described
** in "SDAI C++ Binding for PDES, Inc. Prototyping" by
** Stephen Clark.
** - Changed to match CD2 Part 23, 1/14/97 DAS
** Change Date: 5/22/91 CD
******************************************************************/
const char *
EnumCElementName( Type type, Expression expr ) {
}
char *
CheckEnumSymbol( char * s ) {
}
void
TYPEenum_lib_print( const Type type, FILE * f ) {
DictionaryEntry de;
Expression expr;
char c_enum_ele [BUFSIZ];
// begin the new enum type
if (is_python_keyword(TYPEget_name( type ))) {
fprintf( f, "\n# ENUMERATION TYPE %s_\n", TYPEget_name( type ) );
}
else {
fprintf( f, "\n# ENUMERATION TYPE %s\n", TYPEget_name( type ) );
}
// first write all the values of the enum
DICTdo_type_init( ENUM_TYPEget_items( type ), &de, OBJ_ENUM );
while( 0 != ( expr = ( Expression )DICTdo( &de ) ) ) {
strncpy( c_enum_ele, EnumCElementName( type, expr ), BUFSIZ );
fprintf(f,"if (not '%s' in globals().keys()):\n",EXPget_name(expr));
if (is_python_keyword(EXPget_name(expr))) {
fprintf(f,"\t%s_ = '%s_'\n",EXPget_name(expr),EXPget_name(expr));
}
else {
fprintf(f,"\t%s = '%s'\n",EXPget_name(expr),EXPget_name(expr));
}
}
// then outputs the enum
if (is_python_keyword(TYPEget_name( type ))) {
fprintf(f,"%s_ = ENUMERATION(",TYPEget_name( type ));
}
else {
fprintf(f,"%s = ENUMERATION(",TYPEget_name( type ));
}
/* set up the dictionary info */
//fprintf( f, "const char * \n%s::element_at (int n) const {\n", n );
//fprintf( f, " switch (n) {\n" );
DICTdo_type_init( ENUM_TYPEget_items( type ), &de, OBJ_ENUM );
while( 0 != ( expr = ( Expression )DICTdo( &de ) ) ) {
strncpy( c_enum_ele, EnumCElementName( type, expr ), BUFSIZ );
if (is_python_keyword(EXPget_name(expr))) {
fprintf(f,"\n\'%s_',",EXPget_name(expr));
}
else {
fprintf(f,"\n\t'%s',",EXPget_name(expr));
}
}
fprintf(f,"\n\t)\n");
}
void Type_Description( const Type, char * );