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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
|
"""
Fortran block statements.
-----
Permission to use, modify, and distribute this software is given under the
terms of the NumPy License. See http://scipy.org.
NO WARRANTY IS EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
Author: Pearu Peterson <pearu@cens.ioc.ee>
Created: May 2006
-----
"""
__all__ = ['BeginSource','Module','PythonModule','Program','BlockData','Interface',
'Subroutine','Function','Select','WhereConstruct','ForallConstruct',
'IfThen','If','Do','Associate','TypeDecl','Enum',
'EndSource','EndModule','EndPythonModule','EndProgram','EndBlockData','EndInterface',
'EndSubroutine','EndFunction','EndSelect','EndWhere','EndForall',
'EndIfThen','EndDo','EndAssociate','EndType','EndEnum',
]
import re
import sys
from base_classes import BeginStatement, EndStatement, Statement,\
AttributeHolder, ProgramBlock, Variable
from readfortran import Line
from utils import filter_stmts, parse_bind, parse_result, AnalyzeError, is_name
class HasImplicitStmt:
a = AttributeHolder(implicit_rules = {})
def get_type_by_name(self, name):
implicit_rules = self.a.implicit_rules
if implicit_rules is None:
raise AnalyzeError,'Implicit rules mapping is null while getting %r type' % (name)
l = name[0].lower()
if l in implicit_rules:
return implicit_rules[l]
# default rules:
if l in 'ijklmn':
l = 'default_integer'
else:
l = 'default_real'
t = implicit_rules.get(l, None)
if t is None:
if l[8:]=='real':
implicit_rules[l] = t = Real(self, self.item.copy('real'))
else:
implicit_rules[l] = t = Integer(self, self.item.copy('integer'))
return t
def topyf(self, tab=' '):
implicit_rules = self.a.implicit_rules
if implicit_rules is None:
return tab + 'IMPLICIT NONE\n'
items = {}
for c,t in implicit_rules.items():
if c.startswith('default'):
continue
st = t.tostr()
if st in items:
items[st].append(c)
else:
items[st] = [c]
if not items:
return tab + '! default IMPLICIT rules apply\n'
s = 'IMPLICIT'
ls = []
for st,l in items.items():
l.sort()
ls.append(st + ' (%s)' % (', '.join(l)))
s += ' ' + ', '.join(ls)
return tab + s + '\n'
class HasUseStmt:
a = AttributeHolder(use = {},
use_provides = {})
def get_entity(self, name):
for modname, modblock in self.top.a.module.items():
for stmt in modblock.content:
if getattr(stmt,'name','') == name:
return stmt
return
def topyf(self, tab=' '):
sys.stderr.write('HasUseStmt.topyf not implemented\n')
return ''
class AccessSpecs:
a = AttributeHolder(private_id_list = [], public_id_list = [])
def topyf(self, tab=' '):
private_list = self.a.private_id_list
public_list = self.a.public_id_list
l = []
if '' in private_list: l.append(tab + 'PRIVATE\n')
if '' in public_list: l.append(tab + 'PUBLIC\n')
for a in private_list:
if not a: continue
l.append(tab + 'PRIVATE :: %s\n' % (a))
for a in public_list:
if not a: continue
l.append(tab + 'PUBLIC :: %s\n' % (a))
return ''.join(l)
class HasVariables:
a = AttributeHolder(variables = {},
variable_names = [] # defines the order of declarations
)
def get_variable_by_name(self, name):
variables = self.a.variables
if name in variables:
var = variables[name]
else:
var = variables[name] = Variable(self, name)
self.a.variable_names.append(name)
return var
def topyf(self,tab='', only_variables = None):
s = ''
if only_variables is None:
only_variables = self.a.variables.keys()
for name in only_variables:
var = self.a.variables[name]
s += tab + str(var) + '\n'
return s
class HasTypeDecls:
a = AttributeHolder(type_decls = {})
def topyf(self, tab=''):
s = ''
for name, stmt in self.a.type_decls.items():
s += stmt.topyf(tab=' '+tab)
return s
def get_type_decl_by_kind(self, kind):
type_decls = self.a.type_decls
type_decl = type_decls.get(kind, None)
if type_decl is None:
return self.get_entity(kind)
return type_decl
class HasAttributes:
known_attributes = []
a = AttributeHolder(attributes = [])
def topyf(self, tab=''):
s = ''
for attr in self.a.attributes:
s += tab + attr + '\n'
return s
def update_attributes(self,*attrs):
attributes = self.a.attributes
known_attributes = self.known_attributes
if len(attrs)==1 and isinstance(attrs[0],(tuple,list)):
attrs = attrs[0]
for attr in attrs:
uattr = attr.upper()
if uattr not in attributes:
if isinstance(known_attributes,(list, tuple)):
if uattr not in known_attributes:
self.warning('unknown attribute %r' % (attr))
elif not known_attributes(uattr):
self.warning('unknown attribute %r' % (attr))
attributes.append(uattr)
return
class HasModuleProcedures:
a = AttributeHolder(module_procedures = [])
# File block
class EndSource(EndStatement):
"""
Dummy End statement for BeginSource.
"""
match = staticmethod(lambda s: False)
class BeginSource(BeginStatement):
"""
Fortran source content.
"""
match = staticmethod(lambda s: True)
end_stmt_cls = EndSource
a = AttributeHolder(module = {},
external_subprogram = {},
blockdata = {},
)
def tostr(self):
return '!' + self.blocktype.upper() + ' '+ self.name
def process_item(self):
self.name = self.reader.name
self.top = self
self.fill(end_flag = True)
return
def analyze(self):
for stmt in self.content:
if isinstance(stmt, Module):
stmt.analyze()
self.a.module[stmt.name] = stmt
elif isinstance(stmt, SubProgramStatement):
stmt.analyze()
self.a.external_subprogram[stmt.name] = stmt
elif isinstance(stmt, BlockData):
stmt.analyze()
self.a.blockdata[stmt.name] = stmt
else:
stmt.analyze()
return
def get_classes(self):
if self.reader.ispyf:
return [PythonModule] + program_unit
return program_unit
def process_subitem(self, item):
# MAIN block does not define start/end line conditions,
# so it should never end until all lines are read.
# However, sometimes F77 programs lack the PROGRAM statement,
# and here we fix that:
if self.reader.isfix77:
line = item.get_line()
if line=='end':
message = item.reader.format_message(\
'WARNING',
'assuming the end of undefined PROGRAM statement',
item.span[0],item.span[1])
print >> sys.stderr, message
p = Program(self)
p.content.extend(self.content)
p.content.append(EndProgram(p,item))
self.content[:] = [p]
return
return BeginStatement.process_subitem(self, item)
def topyf(self, tab=''): # XXXX
s = ''
for name, stmt in self.a.module.items():
s += stmt.topyf(tab=tab)
for name, stmt in self.a.external_subprogram.items():
s += stmt.topyf(tab=tab)
for name, stmt in self.a.blockdata.items():
s += stmt.topyf(tab=tab)
return s
# Module
class EndModule(EndStatement):
match = re.compile(r'end(\s*module\s*\w*|)\Z', re.I).match
class Module(BeginStatement, HasAttributes,
HasImplicitStmt, HasUseStmt, HasVariables,
HasTypeDecls, AccessSpecs):
"""
MODULE <name>
..
END [MODULE [name]]
"""
match = re.compile(r'module\s*\w+\Z', re.I).match
end_stmt_cls = EndModule
a = AttributeHolder(module_subprogram = {},
module_provides = {}, # all symbols that are public and so
# can be imported via USE statement
# by other blocks
module_interface = {}
)
known_attributes = ['PUBLIC', 'PRIVATE']
def get_classes(self):
return access_spec + specification_part + module_subprogram_part
def process_item(self):
name = self.item.get_line().replace(' ','')[len(self.blocktype):].strip()
self.name = name
return BeginStatement.process_item(self)
def get_provides(self):
return self.a.module_provides
def get_interface(self):
return self.a.module_interface
def analyze(self):
content = self.content[:]
while content:
stmt = content.pop(0)
if isinstance(stmt, Contains):
for stmt in filter_stmts(content, SubProgramStatement):
stmt.analyze()
self.a.module_subprogram[stmt.name] = stmt
stmt = content.pop(0)
assert isinstance(stmt, EndModule),`stmt`
continue
stmt.analyze()
if content:
self.show_message('Not analyzed content: %s' % content)
#module_provides = self.a.module_provides
#for name, var in self.a.variables.items():
# if var.is_public():
# if name in module_provides:
# self.warning('module data object name conflict with %s, overriding.' % (name))
# module_provides[name] = var
return
def topyf(self, tab=''):
s = tab + 'MODULE '+self.name + '\n'
s += HasImplicitStmt.topyf(self, tab=tab+' ')
s += AccessSpecs.topyf(self, tab=tab+' ')
s += HasAttributes.topyf(self, tab=tab+' ')
s += HasTypeDecls.topyf(self, tab=tab+' ')
s += HasVariables.topyf(self, tab=tab+' ')
for name, stmt in self.a.module_interface.items():
s += stmt.topyf(tab=tab+' ')
s += tab + ' CONTAINS\n'
for name, stmt in self.a.module_subprogram.items():
s += stmt.topyf(tab=tab+' ')
s += tab + 'END MODULE ' + self.name + '\n'
return s
# Python Module
class EndPythonModule(EndStatement):
match = re.compile(r'end(\s*python\s*module\s*\w*|)\Z', re.I).match
class PythonModule(BeginStatement, HasImplicitStmt, HasUseStmt):
"""
PYTHON MODULE <name>
..
END [PYTHON MODULE [name]]
"""
modes = ['pyf']
match = re.compile(r'python\s*module\s*\w+\Z', re.I).match
end_stmt_cls = EndPythonModule
def get_classes(self):
return [Interface, Function, Subroutine, Module]
def process_item(self):
self.name = self.item.get_line().replace(' ','')\
[len(self.blocktype):].strip()
return BeginStatement.process_item(self)
# Program
class EndProgram(EndStatement):
"""
END [PROGRAM [name]]
"""
match = re.compile(r'end(\s*program\s*\w*|)\Z', re.I).match
class Program(BeginStatement, ProgramBlock,
#HasAttributes, # XXX: why Program needs .attributes?
HasImplicitStmt, HasUseStmt, AccessSpecs):
""" PROGRAM [name]
"""
match = re.compile(r'program\s*\w*\Z', re.I).match
end_stmt_cls = EndProgram
def get_classes(self):
return specification_part + execution_part + internal_subprogram_part
def process_item(self):
if self.item is not None:
name = self.item.get_line().replace(' ','')\
[len(self.blocktype):].strip()
if name:
self.name = name
return BeginStatement.process_item(self)
# BlockData
class EndBlockData(EndStatement):
"""
END [ BLOCK DATA [ <block-data-name> ] ]
"""
match = re.compile(r'end(\s*block\s*data\s*\w*|)\Z', re.I).match
blocktype = 'blockdata'
class BlockData(BeginStatement, HasImplicitStmt, HasUseStmt,
HasVariables, AccessSpecs):
"""
BLOCK DATA [ <block-data-name> ]
"""
end_stmt_cls = EndBlockData
match = re.compile(r'block\s*data\s*\w*\Z', re.I).match
def process_item(self):
self.name = self.item.get_line()[5:].lstrip()[4:].lstrip()
return BeginStatement.process_item(self)
def get_classes(self):
return specification_part
# Interface
class EndInterface(EndStatement):
match = re.compile(r'end\s*interface\s*\w*\Z', re.I).match
blocktype = 'interface'
class Interface(BeginStatement, HasAttributes, HasImplicitStmt, HasUseStmt,
HasModuleProcedures, AccessSpecs
):
"""
INTERFACE [<generic-spec>] | ABSTRACT INTERFACE
END INTERFACE [<generic-spec>]
<generic-spec> = <generic-name>
| OPERATOR ( <defined-operator> )
| ASSIGNMENT ( = )
| <dtio-generic-spec>
<dtio-generic-spec> = READ ( FORMATTED )
| READ ( UNFORMATTED )
| WRITE ( FORMATTED )
| WRITE ( UNFORMATTED )
"""
modes = ['free90', 'fix90', 'pyf']
match = re.compile(r'(interface\s*(\w+\s*\(.*\)|\w*)|abstract\s*interface)\Z',re.I).match
end_stmt_cls = EndInterface
blocktype = 'interface'
a = AttributeHolder(interface_provides = {})
def get_classes(self):
l = intrinsic_type_spec + interface_specification
if self.reader.mode=='pyf':
return [Subroutine, Function] + l
return l
def process_item(self):
line = self.item.get_line()
self.isabstract = line.startswith('abstract')
if self.isabstract:
self.generic_spec = ''
else:
self.generic_spec = line[len(self.blocktype):].strip()
self.name = self.generic_spec # XXX
return BeginStatement.process_item(self)
def tostr(self):
if self.isabstract:
return 'ABSTRACT INTERFACE'
return 'INTERFACE '+ str(self.generic_spec)
#def get_provides(self):
# return self.a.interface_provides
def analyze(self):
content = self.content[:]
while content:
stmt = content.pop(0)
if isinstance(stmt, self.end_stmt_cls):
break
stmt.analyze()
#assert isinstance(stmt, SubProgramStatement),`stmt.__class__.__name__`
if content:
self.show_message('Not analyzed content: %s' % content)
if self.name in self.parent.a.variables:
var = self.parent.a.variables.pop(self.name)
self.update_attributes(var.attributes)
parent_interface = self.parent.get_interface()
if self.name in parent_interface:
p = parent_interface[self.name]
last = p.content.pop()
assert isinstance(last,EndInterface),`last.__class__`
p.content += self.content
p.update_attributes(self.a.attributes)
else:
parent_interface[self.name] = self
return
def topyf(self, tab=''):
s = tab + self.tostr() + '\n'
s += HasImplicitStmt.topyf(self, tab=tab+' ')
s += HasAttributes.topyf(self, tab=tab+' ')
s += HasUseStmt.topyf(self, tab=tab+' ')
s += tab + 'END' + self.tostr() + '\n'
return s
# Subroutine
class SubProgramStatement(BeginStatement, ProgramBlock,
HasImplicitStmt, HasAttributes,
HasUseStmt,
HasVariables, HasTypeDecls, AccessSpecs
):
"""
[ <prefix> ] <FUNCTION|SUBROUTINE> <name> [ ( <args> ) ] [ <suffix> ]
"""
a = AttributeHolder(internal_subprogram = {})
def process_item(self):
clsname = self.__class__.__name__.lower()
item = self.item
line = item.get_line()
m = self.match(line)
i = line.lower().find(clsname)
assert i!=-1,`clsname, line`
self.prefix = line[:i].rstrip()
self.name = line[i:m.end()].lstrip()[len(clsname):].strip()
line = line[m.end():].lstrip()
args = []
if line.startswith('('):
i = line.find(')')
assert i!=-1,`line`
line2 = item.apply_map(line[:i+1])
for a in line2[1:-1].split(','):
a=a.strip()
if not a: continue
args.append(a)
line = line[i+1:].lstrip()
suffix = item.apply_map(line)
self.bind, suffix = parse_bind(suffix, item)
self.result = None
if isinstance(self, Function):
self.result, suffix = parse_result(suffix, item)
if suffix:
assert self.bind is None,`self.bind`
self.bind, suffix = parse_result(suffix, item)
if self.result is None:
self.result = self.name
assert not suffix,`suffix`
self.args = args
self.typedecl = None
return BeginStatement.process_item(self)
def tostr(self):
clsname = self.__class__.__name__.upper()
s = ''
if self.prefix:
s += self.prefix + ' '
if self.typedecl is not None:
assert isinstance(self, Function),`self.__class__.__name__`
s += self.typedecl.tostr() + ' '
s += clsname
suf = ''
if self.result and self.result!=self.name:
suf += ' RESULT ( %s )' % (self.result)
if self.bind:
suf += ' BIND ( %s )' % (', '.join(self.bind))
return '%s %s(%s)%s' % (s, self.name,', '.join(self.args),suf)
def get_classes(self):
return f2py_stmt + specification_part + execution_part \
+ internal_subprogram_part
def analyze(self):
content = self.content[:]
if self.prefix:
self.update_attributes(prefix.upper().split())
variables = self.a.variables
for a in self.args:
assert a not in variables
assert is_name(a)
variables[a] = Variable(self, a)
if isinstance(self, Function):
var = variables[self.result] = Variable(self, self.result)
if self.typedecl is not None:
var.set_type(self.typedecl)
while content:
stmt = content.pop(0)
if isinstance(stmt, Contains):
for stmt in filter_stmts(content, SubProgramStatement):
stmt.analyze()
self.a.internal_subprogram[stmt.name] = stmt
stmt = content.pop(0)
assert isinstance(stmt, self.end_stmt_cls),`stmt`
elif isinstance(stmt, self.end_stmt_cls):
continue
else:
stmt.analyze()
if content:
self.show_message('Not analyzed content: %s' % content)
#parent_provides = self.parent.get_provides()
#if parent_provides is not None:
# if self.is_public():
# if self.name in parent_provides:
# self.warning('module subprogram name conflict with %s, overriding.' % (self.name))
# parent_provides[self.name] = self
return
def topyf(self, tab=''):
s = tab + self.__class__.__name__.upper()
s += ' ' + self.name + ' (%s)' % (', '.join(self.args))
if isinstance(self, Function) and self.result != self.name:
s += ' RESULT (%s)' % (self.result)
s += '\n'
s += HasImplicitStmt.topyf(self, tab=tab+' ')
s += AccessSpecs.topyf(self, tab=tab+' ')
s += HasTypeDecls.topyf(self, tab=tab+' ')
s += HasVariables.topyf(self, tab=tab+' ', only_variables = self.args)
s += tab + 'END ' + self.__class__.__name__.upper() + ' ' + self.name + '\n'
return s
class EndSubroutine(EndStatement):
"""
END [SUBROUTINE [name]]
"""
match = re.compile(r'end(\s*subroutine\s*\w*|)\Z', re.I).match
class Subroutine(SubProgramStatement):
"""
[ <prefix> ] SUBROUTINE <name> [ ( [ <dummy-arg-list> ] ) [ <proc-language-binding-spec> ]]
"""
end_stmt_cls = EndSubroutine
match = re.compile(r'(recursive|pure|elemental|\s)*subroutine\s*\w+', re.I).match
_repr_attr_names = ['prefix','bind','suffix','args'] + Statement._repr_attr_names
# Function
class EndFunction(EndStatement):
"""
END [FUNCTION [name]]
"""
match = re.compile(r'end(\s*function\s*\w*|)\Z', re.I).match
class Function(SubProgramStatement):
"""
[ <prefix> ] FUNCTION <name> ( [<dummy-arg-list>] ) [<suffix>]
<prefix> = <prefix-spec> [ <prefix-spec> ]...
<prefix-spec> = <declaration-type-spec>
| RECURSIVE | PURE | ELEMENTAL
<suffix> = <proc-language-binding-spec> [ RESULT ( <result-name> ) ]
| RESULT ( <result-name> ) [ <proc-language-binding-spec> ]
"""
end_stmt_cls = EndFunction
match = re.compile(r'(recursive|pure|elemental|\s)*function\s*\w+', re.I).match
_repr_attr_names = ['prefix','bind','suffix','args','typedecl'] + Statement._repr_attr_names
def subroutine_wrapper_code(self):
name = 'f2pywrap_' + self.name
args = ['f2pyvalue_'+self.result] + self.args
var = self.a.variables[self.result]
typedecl = var.get_typedecl().astypedecl()
lines = []
tab = ' '*6
lines.append('%sSUBROUTINE %s(%s)' % (tab, name, ', '.join(args)))
if isinstance(self.parent,Module):
lines.append('%s USE %s' % (tab, self.parent.name))
else:
if isinstance(typedecl, TypeStmt):
type_decl = typedecl.get_type_decl(typedecl.name)
if type_decl.parent is self:
for line in str(type_decl).split('\n'):
lines.append('%s %s' % (tab, line.lstrip()))
lines.append('%s EXTERNAL %s' % (tab, self.name))
lines.append('%s %s %s' % (tab, str(typedecl).lstrip(), self.name))
lines.append('%s %s %s' % (tab, str(typedecl).lstrip(), args[0]))
lines.append('!f2py intent(out) %s' % (args[0]))
for a in self.args:
v = self.a.variables[a]
lines.append('%s %s' % (tab, str(v).lstrip()))
lines.append('%s %s = %s(%s)' % (tab, args[0], self.name, ', '.join(self.args)))
#lines.append('%s print*,"%s=",%s' % (tab, args[0], args[0])) # debug line
lines.append('%sEND SUBROUTINE %s' % (tab, name))
return '\n'.join(lines)
def subroutine_wrapper(self):
code = self.subroutine_wrapper_code()
from api import parse
block = parse(code) # XXX: set include_dirs
while len(block.content)==1:
block = block.content[0]
return block
# Handle subprogram prefixes
class SubprogramPrefix(Statement):
"""
<prefix> <declaration-type-spec> <function|subroutine> ...
"""
match = re.compile(r'(pure|elemental|recursive|\s)+\b',re.I).match
def process_item(self):
line = self.item.get_line()
m = self.match(line)
prefix = line[:m.end()].rstrip()
rest = self.item.get_line()[m.end():].lstrip()
if rest:
self.parent.put_item(self.item.copy(prefix))
self.item.clone(rest)
self.isvalid = False
return
if self.parent.__class__ not in [Function, Subroutine]:
self.isvalid = False
return
prefix = prefix + ' ' + self.parent.prefix
self.parent.prefix = prefix.strip()
self.ignore = True
return
# SelectCase
class EndSelect(EndStatement):
match = re.compile(r'end\s*select\s*\w*\Z', re.I).match
blocktype = 'select'
class Select(BeginStatement):
"""
[ <case-construct-name> : ] SELECT CASE ( <case-expr> )
"""
match = re.compile(r'select\s*case\s*\(.*\)\Z',re.I).match
end_stmt_cls = EndSelect
name = ''
def tostr(self):
return 'SELECT CASE ( %s )' % (self.expr)
def process_item(self):
self.expr = self.item.get_line()[6:].lstrip()[4:].lstrip()[1:-1].strip()
self.name = self.item.label
return BeginStatement.process_item(self)
def get_classes(self):
return [Case] + execution_part_construct
# Where
class EndWhere(EndStatement):
"""
END WHERE [ <where-construct-name> ]
"""
match = re.compile(r'end\s*\where\s*\w*\Z',re.I).match
class Where(BeginStatement):
"""
[ <where-construct-name> : ] WHERE ( <mask-expr> )
<mask-expr> = <logical-expr>
"""
match = re.compile(r'where\s*\([^)]*\)\Z',re.I).match
end_stmt_cls = EndWhere
name = ''
def tostr(self):
return 'WHERE ( %s )' % (self.expr)
def process_item(self):
self.expr = self.item.get_line()[5:].lstrip()[1:-1].strip()
self.name = self.item.label
return BeginStatement.process_item(self)
def get_classes(self):
return [Assignment, WhereStmt,
WhereConstruct, ElseWhere
]
WhereConstruct = Where
# Forall
class EndForall(EndStatement):
"""
END FORALL [ <forall-construct-name> ]
"""
match = re.compile(r'end\s*forall\s*\w*\Z',re.I).match
class Forall(BeginStatement):
"""
[ <forall-construct-name> : ] FORALL <forall-header>
[ <forall-body-construct> ]...
<forall-body-construct> = <forall-assignment-stmt>
| <where-stmt>
| <where-construct>
| <forall-construct>
| <forall-stmt>
<forall-header> = ( <forall-triplet-spec-list> [ , <scalar-mask-expr> ] )
<forall-triplet-spec> = <index-name> = <subscript> : <subscript> [ : <stride> ]
<subscript|stride> = <scalar-int-expr>
<forall-assignment-stmt> = <assignment-stmt> | <pointer-assignment-stmt>
"""
end_stmt_cls = EndForall
match = re.compile(r'forarr\s*\(.*\)\Z',re.I).match
name = ''
def process_item(self):
self.specs = self.item.get_line()[6:].lstrip()[1:-1].strip()
return BeginStatement.process_item(self)
def tostr(self):
return 'FORALL (%s)' % (self.specs)
def get_classes(self):
return [GeneralAssignment, WhereStmt, WhereConstruct,
ForallConstruct, ForallStmt]
ForallConstruct = Forall
# IfThen
class EndIfThen(EndStatement):
"""
END IF [ <if-construct-name> ]
"""
match = re.compile(r'end\s*if\s*\w*\Z', re.I).match
blocktype = 'if'
class IfThen(BeginStatement):
"""
[<if-construct-name> :] IF ( <scalar-logical-expr> ) THEN
IfThen instance has the following attributes:
expr
"""
match = re.compile(r'if\s*\(.*\)\s*then\Z',re.I).match
end_stmt_cls = EndIfThen
name = ''
def tostr(self):
return 'IF (%s) THEN' % (self.expr)
def process_item(self):
item = self.item
line = item.get_line()[2:-4].strip()
assert line[0]=='(' and line[-1]==')',`line`
self.expr = line[1:-1].strip()
self.name = item.label
return BeginStatement.process_item(self)
def get_classes(self):
return [Else, ElseIf] + execution_part_construct
class If(BeginStatement):
"""
IF ( <scalar-logical-expr> ) action-stmt
"""
match = re.compile(r'if\s*\(',re.I).match
def process_item(self):
item = self.item
mode = self.reader.mode
classes = self.get_classes()
classes = [cls for cls in classes if mode in cls.modes]
line = item.get_line()[2:].lstrip()
i = line.find(')')
expr = line[1:i].strip()
line = line[i+1:].strip()
if line.lower()=='then':
self.isvalid = False
return
self.expr = item.apply_map(expr)
if not line:
newitem = self.get_item()
else:
newitem = item.copy(line)
newline = newitem.get_line()
for cls in classes:
if cls.match(newline):
stmt = cls(self, newitem)
if stmt.isvalid:
self.content.append(stmt)
return
if not line:
self.put_item(newitem)
self.isvalid = False
return
def tostr(self):
assert len(self.content)==1,`self.content`
return 'IF (%s) %s' % (self.expr, str(self.content[0]).lstrip())
def tofortran(self,isfix=None):
return self.get_indent_tab(colon=':',isfix=isfix) + self.tostr()
def get_classes(self):
return action_stmt
# Do
class EndDo(EndStatement):
"""
END DO [ <do-construct-name> ]
"""
match = re.compile(r'end\s*do\s*\w*\Z', re.I).match
blocktype = 'do'
class Do(BeginStatement):
"""
[ <do-construct-name> : ] DO label [loopcontrol]
[ <do-construct-name> : ] DO [loopcontrol]
"""
match = re.compile(r'do\b\s*\d*',re.I).match
item_re = re.compile(r'do\b\s*(?P<label>\d*)\s*,?\s*(?P<loopcontrol>.*)\Z',re.I).match
end_stmt_cls = EndDo
name = ''
def tostr(self):
return 'DO %s %s' % (self.endlabel, self.loopcontrol)
def process_item(self):
item = self.item
line = item.get_line()
m = self.item_re(line)
self.endlabel = m.group('label').strip()
self.name = item.label
self.loopcontrol = m.group('loopcontrol').strip()
return BeginStatement.process_item(self)
def process_subitem(self, item):
r = False
if self.endlabel:
label = item.label
if label == self.endlabel:
r = True
if isinstance(self.parent, Do) and label==self.parent.endlabel:
# the same item label may be used for different block ends
self.put_item(item)
return BeginStatement.process_subitem(self, item) or r
def get_classes(self):
return execution_part_construct
# Associate
class EndAssociate(EndStatement):
"""
END ASSOCIATE [ <associate-construct-name> ]
"""
match = re.compile(r'end\s*associate\s*\w*\Z',re.I).match
class Associate(BeginStatement):
"""
[ <associate-construct-name> : ] ASSOCIATE ( <association-list> )
<block>
<association> = <associate-name> => <selector>
<selector> = <expr> | <variable>
"""
match = re.compile(r'associate\s*\(.*\)\Z',re.I).match
end_stmt_cls = EndAssociate
def process_item(self):
line = self.item.get_line()[9:].lstrip()
self.associations = line[1:-1].strip()
return BeginStatement.process_item(self)
def tostr(self):
return 'ASSOCIATE (%s)' % (self.associations)
def get_classes(self):
return execution_part_construct
# Type
class EndType(EndStatement):
"""
END TYPE [<type-name>]
"""
match = re.compile(r'end\s*type\s*\w*\Z', re.I).match
blocktype = 'type'
class Type(BeginStatement, HasVariables, HasAttributes, AccessSpecs):
"""
TYPE [ [ , <type-attr-spec-list>] :: ] <type-name> [ ( <type-param-name-list> ) ]
<type-attr-spec> = <access-spec> | EXTENDS ( <parent-type-name> )
| ABSTRACT | BIND(C)
"""
match = re.compile(r'type\b\s*').match
end_stmt_cls = EndType
a = AttributeHolder(extends = None,
parameters = {},
component_names = [], # specifies component order for sequence types
components = {}
)
known_attributes = re.compile(r'\A(PUBLIC|PRIVATE|SEQUENCE|ABSTRACT|BIND\s*\(.*\))\Z',re.I).match
def process_item(self):
line = self.item.get_line()[4:].lstrip()
if line.startswith('('):
self.isvalid = False
return
specs = []
i = line.find('::')
if i!=-1:
for s in line[:i].split(','):
s = s.strip()
if s: specs.append(s)
line = line[i+2:].lstrip()
self.specs = specs
i = line.find('(')
if i!=-1:
self.name = line[:i].rstrip()
assert line[-1]==')',`line`
self.params = split_comma(line[i+1:-1].lstrip())
else:
self.name = line
self.params = []
if not is_name(self.name):
self.isvalid = False
return
return BeginStatement.process_item(self)
def tostr(self):
s = 'TYPE'
if self.specs:
s += ', '.join(['']+self.specs) + ' ::'
s += ' ' + self.name
if self.params:
s += ' ('+', '.join(self.params)+')'
return s
def get_classes(self):
return [Integer] + private_or_sequence + component_part +\
type_bound_procedure_part
def analyze(self):
BeginStatement.analyze(self)
for spec in self.specs:
i = spec.find('(')
if i!=-1:
assert spec.endswith(')'),`spec`
s = spec[:i].rstrip().upper()
n = spec[i+1:-1].strip()
if s=='EXTENDS':
self.a.extends = n
continue
elif s=='BIND':
args,rest = parse_bind(spec)
assert not rest,`rest`
spec = 'BIND(%s)' % (', '.join(args))
else:
spec = '%s(%s)' % (s,n)
else:
spec = spec.upper()
self.update_attributes(spec)
component_names = self.a.component_names
content = self.content[:]
while content:
stmt = content.pop(0)
if isinstance(stmt, self.end_stmt_cls):
break
stmt.analyze()
if content:
self.show_message('Not analyzed content: %s' % content)
parameters = self.a.parameters
components = self.a.components
component_names = self.a.component_names
for name in self.a.variable_names:
var = self.a.variables[name]
if name in self.params:
parameters[name] = var
else:
component_names.append(name)
components[name] = var
self.parent.a.type_decls[self.name] = self
#parent_provides = self.parent.get_provides()
#if parent_provides is not None:
# if self.is_public():
# if self.name in parent_provides:
# self.warning('type declaration name conflict with %s, overriding.' % (self.name))
# parent_provides[self.name] = self
return
def topyf(self, tab=''):
s = tab + 'TYPE'
if self.a.extends is not None:
s += ', EXTENDS(%s) ::' % (self.a.extends)
s += ' ' + self.name
if self.a.parameters:
s += ' (%s)' % (', '.join(self.a.parameters))
s += '\n'
s += AccessSpecs.topyf(self, tab=tab+' ')
s += HasAttributes.topyf(self, tab=tab+' ')
s += HasVariables.topyf(self, tab=tab+' ')
s += tab + 'END TYPE ' + self.name + '\n'
return s
# Wrapper methods:
def get_bit_size(self, _cache={}):
try:
return _cache[id(self)]
except KeyError:
s = 0
for name,var in self.a.components.items():
s += var.get_bit_size()
_cache[id(self)] = s
return s
TypeDecl = Type
# Enum
class EndEnum(EndStatement):
"""
END ENUM
"""
match = re.compile(r'end\s*enum\Z',re.I).match
blocktype = 'enum'
class Enum(BeginStatement):
"""
ENUM , BIND(C)
<enumerator-def-stmt>
[ <enumerator-def-stmt> ]...
"""
blocktype = 'enum'
end_stmt_cls = EndEnum
match = re.compile(r'enum\s*,\s*bind\s*\(\s*c\s*\)\Z',re.I).match
def process_item(self):
return BeginStatement.process_item(self)
def get_classes(self):
return [Enumerator]
###################################################
import statements
import typedecl_statements
__all__.extend(statements.__all__)
__all__.extend(typedecl_statements.__all__)
from statements import *
from typedecl_statements import *
f2py_stmt = [Threadsafe, FortranName, Depend, Check, CallStatement,
CallProtoArgument]
access_spec = [Public, Private]
interface_specification = [Function, Subroutine,
ModuleProcedure
]
module_subprogram_part = [ Contains, Function, Subroutine ]
specification_stmt = access_spec + [ Allocatable, Asynchronous, Bind,
Common, Data, Dimension, Equivalence, External, Intent, Intrinsic,
Namelist, Optional, Pointer, Protected, Save, Target, Volatile,
Value ]
intrinsic_type_spec = [ SubprogramPrefix, Integer , Real,
DoublePrecision, Complex, DoubleComplex, Character, Logical, Byte
]
derived_type_spec = [ ]
type_spec = intrinsic_type_spec + derived_type_spec
declaration_type_spec = intrinsic_type_spec + [ TypeStmt, Class ]
type_declaration_stmt = declaration_type_spec
private_or_sequence = [ Private, Sequence ]
component_part = declaration_type_spec + [ ModuleProcedure ]
proc_binding_stmt = [SpecificBinding, GenericBinding, FinalBinding]
type_bound_procedure_part = [Contains, Private] + proc_binding_stmt
#R214
action_stmt = [ Allocate, GeneralAssignment, Assign, Backspace, Call, Close,
Continue, Cycle, Deallocate, Endfile, Exit, Flush, ForallStmt,
Goto, If, Inquire, Nullify, Open, Print, Read, Return, Rewind,
Stop, Wait, WhereStmt, Write, ArithmeticIf, ComputedGoto,
AssignedGoto, Pause ]
# GeneralAssignment = Assignment + PointerAssignment
# EndFunction, EndProgram, EndSubroutine - part of the corresponding blocks
executable_construct = [ Associate, Do, ForallConstruct, IfThen,
Select, WhereConstruct ] + action_stmt
#Case, see Select
execution_part_construct = executable_construct + [ Format, Entry,
Data ]
execution_part = execution_part_construct[:]
#C201, R208
for cls in [EndFunction, EndProgram, EndSubroutine]:
try: execution_part.remove(cls)
except ValueError: pass
internal_subprogram = [Function, Subroutine]
internal_subprogram_part = [ Contains, ] + internal_subprogram
declaration_construct = [ TypeDecl, Entry, Enum, Format, Interface,
Parameter, ModuleProcedure, ] + specification_stmt + \
type_declaration_stmt
# stmt-function-stmt
implicit_part = [ Implicit, Parameter, Format, Entry ]
specification_part = [ Use, Import ] + implicit_part + \
declaration_construct
external_subprogram = [Function, Subroutine]
main_program = [Program] + specification_part + execution_part + \
internal_subprogram_part
program_unit = main_program + external_subprogram + [Module,
BlockData ]
|