-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathclasses_python.c
More file actions
2025 lines (1888 loc) · 68.1 KB
/
classes_python.c
File metadata and controls
2025 lines (1888 loc) · 68.1 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 <errno.h>
#include "sc_memmgr.h"
#include "classes.h"
#include "expr.h"
#define EXPRESSION_out(e,p,f) EXPRESSION__out(e,p,OP_UNKNOWN,f)
#define EXPRESSIONop2_out(oe,string,paren,pad,f) \
EXPRESSIONop2__out(oe,string,paren,pad,OP_UNKNOWN,f)
#define EXPRESSIONop_out(oe,paren,f) EXPRESSIONop__out(oe,paren,OP_UNKNOWN,f)
#define ATTRIBUTE_INITIALIZER_out(e,p,f) ATTRIBUTE_INITIALIZER__out(e,p,OP_UNKNOWN,f)
#define ATTRIBUTE_INITIALIZERop2_out(oe,string,paren,pad,f) \
ATTRIBUTE_INITIALIZERop2__out(oe,string,paren,pad,OP_UNKNOWN,f)
#define ATTRIBUTE_INITIALIZERop_out(oe,paren,f) ATTRIBUTE_INITIALIZERop__out(oe,paren,OP_UNKNOWN,f)
#define PAD 1
#define NOPAD 0
#if defined(_MSC_VER) && _MSC_VER < 1900
# include "sc_stdio.h"
# define snprintf c99_snprintf
#endif
int isAggregateType( const Type t );
int isAggregate( Variable a );
Variable VARis_type_shifter( Variable a );
const char * GetTypeDescriptorName( Type t );
void TYPEselect_lib_print( const Type type, FILE * f );
int multiple_inheritance = 1;
int print_logging = 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) // NOTE definition removed - not used in exp2python
LIBdescribe_entity (Entity entity, FILE* file, Schema schema)
LIBcopy_constructor (Entity ent, FILE* file)
LIBstructor_print (Entity entity, FILE* file, Schema schema) // NOTE definition removed - not used in exp2python
LIBstructor_print_w_args (Entity entity, FILE* file, Schema schema) // NOTE definition removed - not used in exp2python
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; NOTE unused / * 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 ); //NOTE - unused
* 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 );
void STATEMENTSPrint( Linked_List stmts , int indent_level, FILE * file );
void STATEMENTPrint( Statement s, int indent_level, FILE * file );
void STATEMENTlist_out( Linked_List stmts, int indent_level, FILE * file );
void EXPRESSION__out( Expression e, int paren, Op_Code previous_op , FILE * file );
void EXPRESSIONop__out( struct Op_Subexpression * oe, int paren, Op_Code previous_op , FILE * file );
void EXPRESSIONop1_out( struct Op_Subexpression * eo, char * opcode, int paren, FILE * file );
void EXPRESSIONop2__out( struct Op_Subexpression * eo, char * opcode, int paren, int pad, Op_Code previous_op, FILE* file );
void ATTRIBUTE_INITIALIZER__out( Expression e, int paren, int previous_op , FILE * file );
void ATTRIBUTE_INITIALIZERop__out( struct Op_Subexpression * oe, int paren, Op_Code previous_op , FILE * file );
void ATTRIBUTE_INITIALIZERop1_out( struct Op_Subexpression * eo, char * opcode, int paren, FILE * file );
void ATTRIBUTE_INITIALIZERop2__out( struct Op_Subexpression * eo, char * opcode, int paren, int pad, Op_Code previous_op, FILE* file );
void CASEout( struct Case_Statement_ *c, int level, FILE * file );
void LOOPpyout( struct Loop_ *loop, int level, FILE * file );
void WHEREPrint( Linked_List wheres, int level , FILE * file );
void Type_Description( const Type, char * );
char * EXPRto_python( Expression e );
/*
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;
}
char * strliteral_py_dup( char * orig_buf ) {
char * new_buf = strdup(orig_buf);
char * tmp = new_buf;
while ((tmp = strstr(tmp, "\\x9"))) {
tmp++ ; *tmp = 't'; tmp++;
memmove(tmp, tmp+1, strlen(tmp));
}
tmp = new_buf;
while ((tmp = strstr(tmp, "\\xA"))) {
tmp++ ; *tmp = 'n'; tmp++;
memmove(tmp, tmp+1, strlen(tmp));
}
tmp = new_buf;
while ((tmp = strstr(tmp, "\\xD"))) {
tmp++ ; *tmp = 'r'; tmp++;
memmove(tmp, tmp+1, strlen(tmp));
}
return new_buf;
}
int Handle_FedPlus_Args( int i, char * arg ) {
(void) arg; /* unused param */
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;
}
return 0;
}
bool is_python_keyword( char * word ) {
int i;
const char* keyword_list[] = {"class", "pass", NULL};
bool python_keyword = false;
for( i = 0; keyword_list[i] != NULL; i++ ) {
if( strcmp( word, keyword_list[i] ) == 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;
Expression name = VARget_name( a );
temp = strdup( EXPget_name( name ) );
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;
Expression name = VARget_name( a );
temp = strdup( EXPget_name( name ) );
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 */
/* ENTITYhead_print
* NOTE removed - not translated from c++ to py, not used
*/
/* DataMemberPrint
* NOTE removed - not used
*/
/* MemberFunctionSign
* NOTE removed - not used
*/
/******************************************************************
** 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;
}
}
#define BIGBUFSIZ 100000
char* EXPRto_python( Expression e ) {
char * buf;
char * temp;
unsigned int bufsize = BIGBUFSIZ;
buf = ( char * )sc_malloc( bufsize );
if( !buf ) {
fprintf( stderr, "%s failed to allocate buffer: %s\n", __func__, strerror( errno ) );
abort();
}
switch( TYPEis( e->type ) ) {
case integer_:
snprintf( buf, bufsize, "%d", e->u.integer );
break;
case real_:
if( e == LITERAL_PI ) {
strcpy( buf, "math.pi" );
} else if( e == LITERAL_E ) {
strcpy( buf, "math.e" );
} else {
snprintf( buf, bufsize, "%e", e->u.real );
}
break;
case binary_:
snprintf( buf, bufsize, "%s", e->u.binary );
break;
case logical_:
switch( e->u.logical ) {
case Ltrue:
strcpy( buf, "True" );
break;
case Lfalse:
strcpy( buf, "False" );
break;
default:
strcpy( buf, "None" );
break;
}
break;
case boolean_:
switch( e->u.logical ) {
case Ltrue:
strcpy( buf, "True" );
break;
case Lfalse:
strcpy( buf, "False" );
break;
}
break;
case string_:
if( TYPEis_encoded( e->type ) ) {
snprintf( buf, bufsize, "binascii.unhexlify('%s')", e->symbol.name );
} else {
temp = strliteral_py_dup( e->symbol.name );
strncpy( buf, temp, bufsize );
free(temp);
}
break;
case entity_:
case identifier_:
case attribute_:
case enumeration_:
snprintf( buf, bufsize, "%s.%s", TYPEget_name(e->type), e->symbol.name );
break;
case query_:
strcpy( buf, "# query_ NOT_IMPLEMENTED!" );
break;
case self_:
strcpy( buf, "self" );
break;
case funcall_:
{
int i = 0;
snprintf( buf, bufsize, "%s(", e->symbol.name );
LISTdo( e->u.funcall.list, arg, Expression ) {
i++;
if( i != 1 ) {
strcat( buf, ", " );
}
temp = EXPRto_python( arg );
strcat( buf, temp );
free( temp );
} LISTod
strcat( buf, ")" );
break;
}
case op_:
strcpy( buf, "# op_ NOT_IMPLEMENTED!" );
break;
case aggregate_:
strcpy( buf, "# aggregate_ NOT_IMPLEMENTED!" );
break;
case oneof_: {
strcpy( buf, "# oneof_ NOT_IMPLEMENTED!" );
break;
}
default:
fprintf( stderr, "%s:%d: ERROR - unknown expression, type %d", e->symbol.filename, e->symbol.line, TYPEis( e->type ) );
abort();
}
temp = ( char * )sc_realloc( buf, 1 + strlen(buf) );
if( temp == 0 ) {
fprintf( stderr, "%s failed to realloc buffer: %s\n", __func__, strerror( errno ) );
abort();
}
return temp;
}
/*
*
* 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_python( 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_python( 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', scope = schema_scope)", array_base_type );
}
}
int count_supertypes(Entity f) {
int top_count;
int child_count;
Linked_List list;
list = ENTITYget_supertypes(f);
top_count = 0;
LISTdo( list, e, Entity )
child_count = 1;
child_count += count_supertypes(e);
if (child_count > top_count)
top_count = child_count;
LISTod;
return top_count;
}
int cmp_python_mro( void * e1, void * e2 ) {
int e1_chain_len, e2_chain_len;
/* TODO: This should do something more intelligent */
e1_chain_len = count_supertypes( ( Entity ) e1);
e2_chain_len = count_supertypes( ( Entity ) e2);
if (e1_chain_len == e2_chain_len) {
return 0;
} else if (e1_chain_len > e2_chain_len) {
return 1;
} else {
return -1;
}
}
void
LIBdescribe_entity( Entity entity, FILE * file ) {
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 single_inheritance = false;
bool ent_multiple_inheritance = false;
bool rename_python_property = 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 );
LISTsort(list, cmp_python_mro);
num_parent = 0;
if( ! LISTempty( list ) ) {
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;
if( num_parent == 1 ) {
single_inheritance = true;
ent_multiple_inheritance = false;
} else {
single_inheritance = false;
ent_multiple_inheritance = true;
}
} else {
/*inherit from BaseEntityClass 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 {
if( TYPEget_name( t ) == NULL ) {
attr_type = GetAttrTypeName( t );
} else {
attr_type = TYPEget_name( t );
}
fprintf( file, "%s\n", attr_type );
}
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 ) && !single_inheritance && !ent_multiple_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_n( ENTITYget_all_attributes( e ), v2, Variable, b ) {
generate_attribute_name( v2, parent_attrnm );
if( !VARis_derived( v2 ) && !VARget_inverse( v2 ) ) {
fprintf( file, "inherited%i__%s , ", index_attribute, 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 );
index_attribute = 0;
if( ! LISTempty( list ) ) {
LISTdo( list, e, Entity ) {
if (is_python_keyword(ENTITYget_name( e ))) {
fprintf( file, "\t\t%s_.__init__(self , ", ENTITYget_name( e ) );
} else {
fprintf( file, "\t\t%s.__init__(self , ", ENTITYget_name( e ) );
}
/* search and write attribute names for superclass */
LISTdo_n( ENTITYget_all_attributes( e ), v2, Variable, b ) {
generate_attribute_name( v2, parent_attrnm );
if( !VARis_derived( v2 ) && !VARget_inverse( v2 ) ) {
fprintf( file, "inherited%i__%s , ", index_attribute, parent_attrnm );
index_attribute++;
}
} LISTod
num_parent++;
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@property\n" );
if ( !strcmp(attrnm, "property") ) {
fprintf( file, "\tdef __%s(self):\n", attrnm );
rename_python_property = true;
} else {
fprintf( file, "\tdef %s(self):\n", attrnm );
}
/* fget */
if( !VARis_derived( v ) ) {
fprintf( file, "\t\treturn self._%s\n", attrnm );
} else {
/* evaluation of attribute */
fprintf( file, "\t\tattribute_eval = " );
/* outputs expression initializer */
ATTRIBUTE_INITIALIZER_out( v->initializer, 1, file );
/* then returns the value */
fprintf( file, "\n\t\treturn attribute_eval\n" );
}
/* fset */
if ( !strcmp(attrnm, "property") ) {
fprintf( file, "\t@__%s.setter\n", attrnm );
fprintf( file, "\tdef __%s(self, value):\n", attrnm );
} else {
fprintf( file, "\t@%s.setter\n", attrnm );
fprintf( file, "\tdef %s(self, value):\n", attrnm );
}
t = VARget_type( v );
/* find attr type name */
if( TYPEget_name( t ) == NULL ) {
attr_type = GetAttrTypeName( t );
} else {
attr_type = TYPEget_name( 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\tassert value != None, 'Argument \"value\" is mandatory and cannot be set to None'\n" );
fprintf( file, "\t\tif not check_type(value," );
if( TYPEis_aggregate( t ) ) {
process_aggregate( file, t );
fprintf( file, "):\n" );
} else if (attr_type && is_python_keyword(attr_type)) {
fprintf( file, "%s_):\n", attr_type );
} else {
fprintf( file, "%s):\n", attr_type );
}
} else {
fprintf( file, "\t\tif value != None: # OPTIONAL attribute\n\t" );
fprintf( file, "\t\tif not check_type(value," );
if( TYPEis_aggregate( t ) ) {
process_aggregate( file, t );
fprintf( file, "):\n\t" );
} else if (attr_type && is_python_keyword(attr_type)) {
fprintf( file, "%s_):\n\t", attr_type );
} else {
fprintf( file, "%s):\n\t", attr_type );
}
}
/* check whether attr_type is aggr or explicit */
if( TYPEis_aggregate( t ) ) {
fprintf( file, "\t\t\tself._%s = ", attrnm );
print_aggregate_type( file, t );
fprintf( file, "(value)\n" );
} else if (attr_type && is_python_keyword(attr_type)) {
fprintf( file, "\t\t\tself._%s = %s_(value)\n", attrnm, attr_type );
} else {
fprintf( file, "\t\t\tself._%s = %s(value)\n", attrnm, attr_type );
}
if( VARget_optional( v ) ) {
fprintf( file, "\t\t\telse:\n" );
fprintf( file, "\t\t\t\tself._%s = value\n", attrnm );
}
fprintf( file, "\t\telse:\n\t" );
fprintf( file, "\t\tself._%s = value\n", attrnm );
}
/* if the attribute is derived, prevent fset to attribute to be set */
/* TODO: this can be done by NOT writing the setter method */
else if( VARis_derived( v ) ) {
fprintf( file, "\t# DERIVED argument\n" );
fprintf( file, "\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# INVERSE argument\n" );
fprintf( file, "\t\traise AssertionError('Argument %s is INVERSE. It is computed and can not be set to any value')\n", attrnm );
}
LISTod
}
/* before exiting, process where rules */
WHEREPrint( entity->where, 0, file );
if ( rename_python_property ) {
fprintf( file, "\tproperty = __property\n" );
}
}
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_n( complete, p, Variable, b ) {
/* 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 {
/* 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. */
fprintf( stderr, "Internal error: %s:%d\nAttribute %s not found. \n", __FILE__, __LINE__, VARget_name( a )->symbol.name );
}
}
} LISTod
return -1;
}
/******************************************************************
** 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 ) {
LIBdescribe_entity( entity, file );
}
/*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;
}
/******************************************************************
** Procedure: RULEPrint
** Parameters: Rule *rule -- rule being processed
** FILE* file -- file being written to
** Returns:
** Description: drives the functions for printing out code in lib
** and initialization files for a specific rule
** Status: started 2012/3/1
******************************************************************/
void
RULEPrint( Rule rule, FILES * files ) {
char * n = RULEget_name( rule );
fprintf( files->lib, "\n####################\n # RULE %s #\n####################\n", n );
/* write function definition */
fprintf( files->lib, "%s = Rule()\n", n );
}
/******************************************************************
** Procedure: FUNCPrint
** Parameters: Function *function -- function being processed
** FILE* file -- file being written to
** Returns:
** Description: drives the functions for printing out code in lib
** and initialization files for a specific function
** Status: started 2012/3/1
******************************************************************/
void
FUNCPrint( Function function, FILES * files ) {
char * function_name = FUNCget_name( function );
char * param_name;
Expression expr_name = EXPRESSION_NULL;
fprintf( files->lib, "\n####################\n # FUNCTION %s #\n####################\n", function_name );
/* write function definition */
fprintf( files->lib, "def %s(", function_name );
/* write parameter list */
LISTdo( FUNCget_parameters( function ), v, Variable ) {
expr_name = VARget_name( v );
param_name = strdup( EXPget_name( expr_name ) );
fprintf( files->lib, "%s,", param_name );
} LISTod
fprintf( files->lib, "):\n" );
/* print function docstring */
fprintf( files->lib, "\t'''\n" );
LISTdo( FUNCget_parameters( function ), v, Variable ) {
expr_name = VARget_name( v );
param_name = strdup( EXPget_name( expr_name ) );
fprintf( files->lib, "\t:param %s\n", param_name );
fprintf( files->lib, "\t:type %s:%s\n", param_name, GetAttrTypeName( VARget_type( v ) ) );
} LISTod
fprintf( files->lib, "\t'''\n" );
/* process statements. The indent_level is set to 1 (the number of tabs \t) */
STATEMENTSPrint( function->u.proc->body, 1, files->lib );
}
void
STATEMENTSPrint( Linked_List stmts , int indent_level, FILE * file ) {
LISTdo( stmts, stmt, Statement )
STATEMENTPrint( stmt, indent_level, file );
LISTod
}
void python_indent( FILE * file, int indent_level ) {
int i;
for( i = 0; i < indent_level; i++ ) {
fprintf( file, "\t" );
}
}
void
STATEMENTPrint( Statement s, int indent_level, FILE * file ) {
bool first_time = true;
python_indent( file, indent_level );
if( !s ) { /* null statement */
fprintf( file, "pass" );
return;
}
switch( s->type ) {
case STMT_ASSIGN:
EXPRESSION_out( s->u.assign->lhs, 0, file );
fprintf( file, " = " );
EXPRESSION_out( s->u.assign->rhs, 0, file );
fprintf( file, "\n" );
break;
case STMT_CASE:
CASEout( s->u.Case, indent_level, file );
break;
case STMT_RETURN: