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
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
|
############################################################################
# Monte M. Goode, LBNL
# See LBNLCopyright for copyright notice!
###########################################################################
# contains text container classes for new generation generator
# $Id: containers.py 1351 2007-01-30 20:03:06Z boverhof $
import types
from utility import StringWriter, TextProtect, TextProtectAttributeName,\
GetPartsSubNames
from utility import NamespaceAliasDict as NAD, NCName_to_ClassName as NC_to_CN
import ZSI
from ZSI.TC import _is_xsd_or_soap_ns
from ZSI.wstools import XMLSchema, WSDLTools
from ZSI.wstools.Namespaces import SCHEMA, SOAP, WSDL
from ZSI.wstools.logging import getLogger as _GetLogger
from ZSI.typeinterpreter import BaseTypeInterpreter
from ZSI.generate import WSISpec, WSInteropError, Wsdl2PythonError,\
WsdlGeneratorError, WSDLFormatError
ID1 = ' '
ID2 = 2*ID1
ID3 = 3*ID1
ID4 = 4*ID1
ID5 = 5*ID1
ID6 = 6*ID1
KW = {'ID1':ID1, 'ID2':ID2, 'ID3':ID3,'ID4':ID4, 'ID5':ID5, 'ID6':ID6,}
DEC = '_Dec'
DEF = '_Def'
"""
type_class_name -- function to return the name formatted as a type class.
element_class_name -- function to return the name formatted as an element class.
"""
type_class_name = lambda n: '%s%s' %(NC_to_CN(n), DEF)
element_class_name = lambda n: '%s%s' %(NC_to_CN(n), DEC)
def IsRPC(item):
"""item -- OperationBinding instance.
"""
if not isinstance(item, WSDLTools.OperationBinding):
raise TypeError, 'IsRPC takes 1 argument of type WSDLTools.OperationBinding'
soapbinding = item.getBinding().findBinding(WSDLTools.SoapBinding)
sob = item.findBinding(WSDLTools.SoapOperationBinding)
style = soapbinding.style
if sob is not None:
style = sob.style or soapbinding.style
return style == 'rpc'
def IsLiteral(item):
"""item -- MessageRoleBinding instance.
"""
if not isinstance(item, WSDLTools.MessageRoleBinding):
raise TypeError, 'IsLiteral takes 1 argument of type WSDLTools.MessageRoleBinding'
sbb = None
if item.type == 'input' or item.type == 'output':
sbb = item.findBinding(WSDLTools.SoapBodyBinding)
if sbb is None:
raise ValueError, 'Missing soap:body binding.'
return sbb.use == 'literal'
def SetTypeNameFunc(func):
global type_class_name
type_class_name = func
def SetElementNameFunc(func):
global element_class_name
element_class_name = func
def GetClassNameFromSchemaItem(item,do_extended=False):
'''
'''
assert isinstance(item, XMLSchema.XMLSchemaComponent), 'must be a schema item.'
alias = NAD.getAlias(item.getTargetNamespace())
if item.isDefinition() is True:
return '%s.%s' %(alias, NC_to_CN('%s' %type_class_name(item.getAttributeName())))
return None
def FromMessageGetSimpleElementDeclaration(message):
'''If message consists of one part with an element attribute,
and this element is a simpleType return a string representing
the python type, else return None.
'''
assert isinstance(message, WSDLTools.Message), 'expecting WSDLTools.Message'
if len(message.parts) == 1 and message.parts[0].element is not None:
part = message.parts[0]
nsuri,name = part.element
wsdl = message.getWSDL()
types = wsdl.types
if types.has_key(nsuri) and types[nsuri].elements.has_key(name):
e = types[nsuri].elements[name]
if isinstance(e, XMLSchema.ElementDeclaration) is True and e.getAttribute('type'):
typ = e.getAttribute('type')
bt = BaseTypeInterpreter()
ptype = bt.get_pythontype(typ[1], typ[0])
return ptype
return None
class AttributeMixIn:
'''for containers that can declare attributes.
Class Attributes:
attribute_typecode -- typecode attribute name typecode dict
built_in_refs -- attribute references that point to built-in
types. Skip resolving them into attribute declarations.
'''
attribute_typecode = 'self.attribute_typecode_dict'
built_in_refs = [(SOAP.ENC, 'arrayType'),]
def _setAttributes(self, attributes):
'''parameters
attributes -- a flat list of all attributes,
from this list all items in attribute_typecode_dict will
be generated into attrComponents.
returns a list of strings representing the attribute_typecode_dict.
'''
atd = self.attribute_typecode
atd_list = formatted_attribute_list = []
if not attributes:
return formatted_attribute_list
atd_list.append('# attribute handling code')
for a in attributes:
if a.isWildCard() and a.isDeclaration():
atd_list.append(\
'%s[("%s","anyAttribute")] = ZSI.TC.AnyElement()'\
% (atd, SCHEMA.XSD3)
)
elif a.isDeclaration():
tdef = a.getTypeDefinition('type')
if tdef is not None:
tc = '%s.%s(None)' %(NAD.getAlias(tdef.getTargetNamespace()),
self.mangle(type_class_name(tdef.getAttributeName()))
)
else:
# built-in
t = a.getAttribute('type')
try:
tc = BTI.get_typeclass(t[1], t[0])
except:
# hand back a string by default.
tc = ZSI.TC.String
if tc is not None:
tc = '%s()' %tc
key = None
if a.getAttribute('form') == 'qualified':
key = '("%s","%s")' % ( a.getTargetNamespace(),
a.getAttribute('name') )
elif a.getAttribute('form') == 'unqualified':
key = '"%s"' % a.getAttribute('name')
else:
raise ContainerError, \
'attribute form must be un/qualified %s' \
% a.getAttribute('form')
atd_list.append(\
'%s[%s] = %s' % (atd, key, tc)
)
elif a.isReference() and a.isAttributeGroup():
# flatten 'em out....
for ga in a.getAttributeGroup().getAttributeContent():
if not ga.isAttributeGroup():
attributes += (ga,)
continue
elif a.isReference():
try:
ga = a.getAttributeDeclaration()
except XMLSchema.SchemaError:
key = a.getAttribute('ref')
self.logger.debug('No schema item for attribute ref (%s, %s)' %key)
if key in self.built_in_refs: continue
raise
tp = None
if ga is not None:
tp = ga.getTypeDefinition('type')
key = '("%s","%s")' %(ga.getTargetNamespace(),
ga.getAttribute('name'))
if ga is None:
# TODO: probably SOAPENC:arrayType
key = '("%s","%s")' %(
a.getAttribute('ref').getTargetNamespace(),
a.getAttribute('ref').getName())
atd_list.append(\
'%s[%s] = ZSI.TC.String()' %(atd, key)
)
elif tp is None:
# built in simple type
try:
namespace,typeName = ga.getAttribute('type')
except TypeError, ex:
# TODO: attribute declaration could be anonymous type
# hack in something to work
atd_list.append(\
'%s[%s] = ZSI.TC.String()' %(atd, key)
)
else:
atd_list.append(\
'%s[%s] = %s()' %(atd, key,
BTI.get_typeclass(typeName, namespace))
)
else:
typeName = tp.getAttribute('name')
namespace = tp.getTargetNamespace()
alias = NAD.getAlias(namespace)
key = '("%s","%s")' \
% (ga.getTargetNamespace(),ga.getAttribute('name'))
atd_list.append(\
'%s[%s] = %s.%s(None)' \
% (atd, key, alias, type_class_name(typeName))
)
else:
raise TypeError, 'expecting an attribute: %s' %a.getItemTrace()
return formatted_attribute_list
class ContainerError(Exception):
pass
class ContainerBase:
'''Base class for all Containers.
func_aname -- function that takes name, and returns aname.
'''
func_aname = TextProtectAttributeName
func_aname = staticmethod(func_aname)
logger = _GetLogger("ContainerBase")
def __init__(self):
self.content = StringWriter('\n')
self.__setup = False
self.ns = None
def __str__(self):
return self.getvalue()
# - string content methods
def mangle(self, s):
'''class/variable name illegalities
'''
return TextProtect(s)
def write(self, s):
self.content.write(s)
def writeArray(self, a):
self.content.write('\n'.join(a))
def _setContent(self):
'''override in subclasses. formats the content in the desired way.
'''
raise NotImplementedError, 'abstract method not implemented'
def getvalue(self):
if not self.__setup:
self._setContent()
self.__setup = True
return self.content.getvalue()
# - namespace utility methods
def getNSAlias(self):
if self.ns:
return NAD.getAlias(self.ns)
raise ContainerError, 'no self.ns attr defined in %s' % self.__class__
def getNSModuleName(self):
if self.ns:
return NAD.getModuleName(self.ns)
raise ContainerError, 'no self.ns attr defined in %s' % self.__class__
def getAttributeName(self, name):
'''represents the aname
'''
if self.func_aname is None:
return name
assert callable(self.func_aname), \
'expecting callable method for attribute func_aname, not %s' %type(self.func_aname)
f = self.func_aname
return f(name)
# -- containers for services file components
class ServiceContainerBase(ContainerBase):
clientClassSuffix = "SOAP"
logger = _GetLogger("ServiceContainerBase")
class ServiceHeaderContainer(ServiceContainerBase):
imports = ['\nimport urlparse, types',
'from ZSI.TCcompound import ComplexType, Struct',
'from ZSI import client',
'import ZSI'
]
logger = _GetLogger("ServiceHeaderContainer")
def __init__(self, do_extended=False):
ServiceContainerBase.__init__(self)
self.basic = self.imports[:]
self.types = None
self.messages = None
self.extras = []
self.do_extended = do_extended
def setTypesModuleName(self, module):
self.types = module
def setMessagesModuleName(self, module):
self.messages = module
def appendImport(self, statement):
'''append additional import statement(s).
import_stament -- tuple or list or str
'''
if type(statement) in (list,tuple):
self.extras += statement
else:
self.extras.append(statement)
def _setContent(self):
if self.messages:
self.write('from %s import *' % self.messages)
if self.types:
self.write('from %s import *' % self.types)
imports = self.basic[:]
imports += self.extras
self.writeArray(imports)
class ServiceLocatorContainer(ServiceContainerBase):
logger = _GetLogger("ServiceLocatorContainer")
def __init__(self):
ServiceContainerBase.__init__(self)
self.serviceName = None
self.portInfo = []
self.locatorName = None
self.portMethods = []
def setUp(self, service):
assert isinstance(service, WSDLTools.Service), \
'expecting WDSLTools.Service instance.'
self.serviceName = service.name
for p in service.ports:
try:
ab = p.getAddressBinding()
except WSDLTools.WSDLError, ex:
self.logger.warning('Skip port(%s), missing address binding' %p.name)
continue
if isinstance(ab, WSDLTools.SoapAddressBinding) is False:
self.logger.warning('Skip port(%s), not a SOAP-1.1 address binding' %p.name)
continue
info = (p.getBinding().getPortType().name, p.getBinding().name, ab.location)
self.portInfo.append(info)
def getLocatorName(self):
'''return class name of generated locator.
'''
return self.locatorName
def getPortMethods(self):
'''list of get port accessor methods of generated locator class.
'''
return self.portMethods
def _setContent(self):
if not self.serviceName:
raise ContainerError, 'no service name defined!'
self.serviceName = self.mangle(self.serviceName)
self.locatorName = '%sLocator' %self.serviceName
locator = ['# Locator', 'class %s:' %self.locatorName, ]
self.portMethods = []
for p in self.portInfo:
ptName = NC_to_CN(p[0])
bName = NC_to_CN(p[1])
sAdd = p[2]
method = 'get%s' %ptName
pI = [
'%s%s_address = "%s"' % (ID1, ptName, sAdd),
'%sdef get%sAddress(self):' % (ID1, ptName),
'%sreturn %sLocator.%s_address' % (ID2,
self.serviceName,ptName),
'%sdef %s(self, url=None, **kw):' %(ID1, method),
'%sreturn %s%s(url or %sLocator.%s_address, **kw)' \
% (ID2, bName, self.clientClassSuffix, self.serviceName, ptName),
]
self.portMethods.append(method)
locator += pI
self.writeArray(locator)
class ServiceOperationContainer(ServiceContainerBase):
logger = _GetLogger("ServiceOperationContainer")
def __init__(self, useWSA=False, do_extended=False):
'''Parameters:
useWSA -- boolean, enable ws-addressing
do_extended -- boolean
'''
ServiceContainerBase.__init__(self)
self.useWSA = useWSA
self.do_extended = do_extended
def hasInput(self):
return self.inputName is not None
def hasOutput(self):
return self.outputName is not None
def isRPC(self):
return IsRPC(self.binding_operation)
def isLiteral(self, input=True):
msgrole = self.binding_operation.input
if input is False:
msgrole = self.binding_operation.output
return IsLiteral(msgrole)
def isSimpleType(self, input=True):
if input is False:
return self.outputSimpleType
return self.inputSimpleType
def getOperation(self):
return self.port.operations.get(self.name)
def getBOperation(self):
return self.port.get(self.name)
def getOperationName(self):
return self.name
def setUp(self, item):
'''
Parameters:
item -- WSDLTools BindingOperation instance.
'''
if not isinstance(item, WSDLTools.OperationBinding):
raise TypeError, 'Expecting WSDLTools Operation instance'
if not item.input:
raise WSDLFormatError('No <input/> in <binding name="%s"><operation name="%s">' %(
item.getBinding().name, item.name))
self.name = None
self.port = None
self.soapaction = None
self.inputName = None
self.outputName = None
self.inputSimpleType = None
self.outputSimpleType = None
self.inputAction = None
self.outputAction = None
self.port = port = item.getBinding().getPortType()
self._wsdl = item.getWSDL()
self.name = name = item.name
self.binding_operation = bop = item
op = port.operations.get(name)
if op is None:
raise WSDLFormatError(
'<portType name="%s"/> no match for <binding name="%s"><operation name="%s">' %(
port.name, item.getBinding().name, item.name))
soap_bop = bop.findBinding(WSDLTools.SoapOperationBinding)
if soap_bop is None:
raise SOAPBindingError, 'expecting SOAP Bindings'
self.soapaction = soap_bop.soapAction
sbody = bop.input.findBinding(WSDLTools.SoapBodyBinding)
if not sbody:
raise SOAPBindingError('Missing <binding name="%s"><operation name="%s"><input><soap:body>' %(
port.binding.name, bop.name))
self.encodingStyle = None
if sbody.use == 'encoded':
assert sbody.encodingStyle == SOAP.ENC,\
'Supporting encodingStyle=%s, not %s'%(SOAP.ENC, sbody.encodingStyle)
self.encodingStyle = sbody.encodingStyle
self.inputName = op.getInputMessage().name
self.inputSimpleType = \
FromMessageGetSimpleElementDeclaration(op.getInputMessage())
self.inputAction = op.getInputAction()
if bop.output is not None:
sbody = bop.output.findBinding(WSDLTools.SoapBodyBinding)
if not item.output:
raise WSDLFormatError, "Operation %s, no match for output binding" %name
self.outputName = op.getOutputMessage().name
self.outputSimpleType = \
FromMessageGetSimpleElementDeclaration(op.getOutputMessage())
self.outputAction = op.getOutputAction()
def _setContent(self):
'''create string representation of operation.
'''
kwstring = 'kw = {}'
tCheck = 'if isinstance(request, %s) is False:' % self.inputName
bindArgs = ''
if self.encodingStyle is not None:
bindArgs = 'encodingStyle="%s", ' %self.encodingStyle
if self.useWSA:
wsactionIn = 'wsaction = "%s"' % self.inputAction
wsactionOut = 'wsaction = "%s"' % self.outputAction
bindArgs += 'wsaction=wsaction, endPointReference=self.endPointReference, '
responseArgs = ', wsaction=wsaction'
else:
wsactionIn = '# no input wsaction'
wsactionOut = '# no output wsaction'
responseArgs = ''
bindArgs += '**kw)'
if self.do_extended:
inputName = self.getOperation().getInputMessage().name
wrap_str = ""
partsList = self.getOperation().getInputMessage().parts.values()
try:
subNames = GetPartsSubNames(partsList, self._wsdl)
except TypeError, ex:
raise Wsdl2PythonError,\
"Extended generation failure: only supports doc/lit, "\
+"and all element attributes (<message><part element="\
+"\"my:GED\"></message>) must refer to single global "\
+"element declaration with complexType content. "\
+"\n\n**** TRY WITHOUT EXTENDED ****\n"
args = []
for pa in subNames:
args += pa
for arg in args:
wrap_str += "%srequest.%s = %s\n" % (ID2,
self.getAttributeName(arg),
self.mangle(arg))
#args = [pa.name for pa in self.getOperation().getInputMessage().parts.values()]
argsStr = ",".join(args)
if len(argsStr) > 1: # add inital comma if args exist
argsStr = ", " + argsStr
method = [
'%s# op: %s' % (ID1, self.getOperation().getInputMessage()),
'%sdef %s(self%s):' % (ID1, self.name, argsStr),
'\n%srequest = %s()' % (ID2, self.inputName),
'%s' % (wrap_str),
'%s%s' % (ID2, kwstring),
'%s%s' % (ID2, wsactionIn),
'%sself.binding.Send(None, None, request, soapaction="%s", %s'\
%(ID2, self.soapaction, bindArgs),
]
else:
method = [
'%s# op: %s' % (ID1, self.name),
'%sdef %s(self, request):' % (ID1, self.name),
'%s%s' % (ID2, tCheck),
'%sraise TypeError, "%%s incorrect request type" %% (%s)' %(ID3, 'request.__class__'),
'%s%s' % (ID2, kwstring),
'%s%s' % (ID2, wsactionIn),
'%sself.binding.Send(None, None, request, soapaction="%s", %s'\
%(ID2, self.soapaction, bindArgs),
]
#
# BP 1.0: rpc/literal
# WSDL 1.1 Section 3.5 could be interpreted to mean the RPC response
# wrapper element must be named identical to the name of the
# wsdl:operation.
# R2729
#
# SOAP-1.1 Note: rpc/encoded
# Each parameter accessor has a name corresponding to the name of the
# parameter and type corresponding to the type of the parameter. The name of
# the return value accessor is not significant. Likewise, the name of the struct is
# not significant. However, a convention is to name it after the method name
# with the string "Response" appended.
#
if self.outputName:
response = ['%s%s' % (ID2, wsactionOut),]
if self.isRPC() and not self.isLiteral():
# rpc/encoded Replace wrapper name with None
response.append(\
'%stypecode = Struct(pname=None, ofwhat=%s.typecode.ofwhat, pyclass=%s.typecode.pyclass)' %(
ID2, self.outputName, self.outputName)
)
response.append(\
'%sresponse = self.binding.Receive(typecode%s)' %(
ID2, responseArgs)
)
else:
response.append(\
'%sresponse = self.binding.Receive(%s.typecode%s)' %(
ID2, self.outputName, responseArgs)
)
if self.outputSimpleType:
response.append('%sreturn %s(response)' %(ID2, self.outputName))
else:
if self.do_extended:
partsList = self.getOperation().getOutputMessage().parts.values()
subNames = GetPartsSubNames(partsList, self._wsdl)
args = []
for pa in subNames:
args += pa
for arg in args:
response.append('%s%s = response.%s' % (ID2, self.mangle(arg), self.getAttributeName(arg)) )
margs = ",".join(args)
response.append("%sreturn %s" % (ID2, margs) )
else:
response.append('%sreturn response' %ID2)
method += response
else:
method.append('%s#check for soap, assume soap:fault' %(ID2,))
method.append('%sif self.binding.IsSOAP(): self.binding.Receive(None, **kw)' % (ID2,))
self.writeArray(method)
class ServiceOperationsClassContainer(ServiceContainerBase):
'''
class variables:
readerclass --
writerclass --
operationclass -- representation of each operation.
'''
readerclass = None
writerclass = None
operationclass = ServiceOperationContainer
logger = _GetLogger("ServiceOperationsClassContainer")
def __init__(self, useWSA=False, do_extended=False, wsdl=None):
'''Parameters:
name -- binding name
property -- resource properties
useWSA -- boolean, enable ws-addressing
name -- binding name
'''
ServiceContainerBase.__init__(self)
self.useWSA = useWSA
self.rProp = None
self.bName = None
self.operations = None
self.do_extended = do_extended
self._wsdl = wsdl # None unless do_extended == True
def setReaderClass(cls, className):
'''specify a reader class name, this must be imported
in service module.
'''
cls.readerclass = className
setReaderClass = classmethod(setReaderClass)
def setWriterClass(cls, className):
'''specify a writer class name, this must be imported
in service module.
'''
cls.writerclass = className
setWriterClass = classmethod(setWriterClass)
def setOperationClass(cls, className):
'''specify an operation container class name.
'''
cls.operationclass = className
setOperationClass = classmethod(setOperationClass)
def setUp(self, port):
'''This method finds all SOAP Binding Operations, it will skip
all bindings that are not SOAP.
port -- WSDL.Port instance
'''
assert isinstance(port, WSDLTools.Port), 'expecting WSDLTools Port instance'
self.operations = []
self.bName = port.getBinding().name
self.rProp = port.getBinding().getPortType().getResourceProperties()
soap_binding = port.getBinding().findBinding(WSDLTools.SoapBinding)
if soap_binding is None:
raise Wsdl2PythonError,\
'port(%s) missing WSDLTools.SoapBinding' %port.name
for bop in port.getBinding().operations:
soap_bop = bop.findBinding(WSDLTools.SoapOperationBinding)
if soap_bop is None:
self.logger.warning(\
'Skip port(%s) operation(%s) no SOAP Binding Operation'\
%(port.name, bop.name),
)
continue
#soapAction = soap_bop.soapAction
if bop.input is not None:
soapBodyBind = bop.input.findBinding(WSDLTools.SoapBodyBinding)
if soapBodyBind is None:
self.logger.warning(\
'Skip port(%s) operation(%s) Bindings(%s) not supported'\
%(port.name, bop.name, bop.extensions)
)
continue
op = port.getBinding().getPortType().operations.get(bop.name)
if op is None:
raise Wsdl2PythonError,\
'no matching portType/Binding operation(%s)' % bop.name
c = self.operationclass(useWSA=self.useWSA,
do_extended=self.do_extended)
c.setUp(bop)
self.operations.append(c)
def _setContent(self):
if self.useWSA is True:
ctorArgs = 'endPointReference=None, **kw'
epr = 'self.endPointReference = endPointReference'
else:
ctorArgs = '**kw'
epr = '# no ws-addressing'
if self.rProp:
rprop = 'kw.setdefault("ResourceProperties", ("%s","%s"))'\
%(self.rProp[0], self.rProp[1])
else:
rprop = '# no resource properties'
methods = [
'# Methods',
'class %s%s:' % (NC_to_CN(self.bName), self.clientClassSuffix),
'%sdef __init__(self, url, %s):' % (ID1, ctorArgs),
'%skw.setdefault("readerclass", %s)' % (ID2, self.readerclass),
'%skw.setdefault("writerclass", %s)' % (ID2, self.writerclass),
'%s%s' % (ID2, rprop),
'%sself.binding = client.Binding(url=url, **kw)' %ID2,
'%s%s' % (ID2,epr),
]
for op in self.operations:
methods += [ op.getvalue() ]
self.writeArray(methods)
class MessageContainerInterface:
logger = _GetLogger("MessageContainerInterface")
def setUp(self, port, soc, input):
'''sets the attribute _simple which represents a
primitive type message represents, or None if not primitive.
soc -- WSDLTools.ServiceOperationContainer instance
port -- WSDLTools.Port instance
input-- boolean, input messasge or output message of operation.
'''
raise NotImplementedError, 'Message container must implemented setUp.'
class ServiceDocumentLiteralMessageContainer(ServiceContainerBase, MessageContainerInterface):
logger = _GetLogger("ServiceDocumentLiteralMessageContainer")
def __init__(self, do_extended=False):
ServiceContainerBase.__init__(self)
self.do_extended=do_extended
def setUp(self, port, soc, input):
content = self.content
# TODO: check soapbody for part name
simple = self._simple = soc.isSimpleType(soc.getOperationName())
name = soc.getOperationName()
# Document/literal
operation = port.getBinding().getPortType().operations.get(name)
bop = port.getBinding().operations.get(name)
soapBodyBind = None
if input is True:
soapBodyBind = bop.input.findBinding(WSDLTools.SoapBodyBinding)
message = operation.getInputMessage()
else:
soapBodyBind = bop.output.findBinding(WSDLTools.SoapBodyBinding)
message = operation.getOutputMessage()
# using underlying data structure to avoid phantom problem.
# parts = message.parts.data.values()
# if len(parts) > 1:
# raise Wsdl2PythonError, 'not suporting multi part doc/lit msgs'
if len(message.parts) == 0:
raise Wsdl2PythonError, 'must specify part for doc/lit msg'
p = None
if soapBodyBind.parts is not None:
if len(soapBodyBind.parts) > 1:
raise Wsdl2PythonError,\
'not supporting multiple parts in soap body'
if len(soapBodyBind.parts) == 0:
return
p = message.parts.get(soapBodyBind.parts[0])
# XXX: Allow for some slop
p = p or message.parts[0]
if p.type:
raise Wsdl2PythonError, 'no doc/lit suport for <part type>'
if not p.element:
return
content.ns = p.element[0]
content.pName = p.element[1]
content.mName = message.name
def _setContent(self):
'''create string representation of doc/lit message container. If
message element is simple(primitive), use python type as base class.
'''
try:
simple = self._simple
except AttributeError:
raise RuntimeError, 'call setUp first'
# TODO: Hidden contract. Must set self.ns before getNSAlias...
# File "/usr/local/python/lib/python2.4/site-packages/ZSI/generate/containers.py", line 625, in _setContent
# kw['message'],kw['prefix'],kw['typecode'] = \
# File "/usr/local/python/lib/python2.4/site-packages/ZSI/generate/containers.py", line 128, in getNSAlias
# raise ContainerError, 'no self.ns attr defined in %s' % self.__class__
# ZSI.generate.containers.ContainerError: no self.ns attr defined in ZSI.generate.containers.ServiceDocumentLiteralMessageContainer
#
self.ns = self.content.ns
kw = KW.copy()
kw['message'],kw['prefix'],kw['typecode'] = \
self.content.mName, self.getNSAlias(), element_class_name(self.content.pName)
# These messsages are just global element declarations
self.writeArray(['%(message)s = %(prefix)s.%(typecode)s().pyclass' %kw])
class ServiceRPCEncodedMessageContainer(ServiceContainerBase, MessageContainerInterface):
logger = _GetLogger("ServiceRPCEncodedMessageContainer")
def setUp(self, port, soc, input):
'''
Instance Data:
op -- WSDLTools Operation instance
bop -- WSDLTools BindingOperation instance
input -- boolean input/output
'''
name = soc.getOperationName()
bop = port.getBinding().operations.get(name)
op = port.getBinding().getPortType().operations.get(name)
assert op is not None, 'port has no operation %s' %name
assert bop is not None, 'port has no binding operation %s' %name
self.input = input
self.op = op
self.bop = bop
def _setContent(self):
try:
self.op
except AttributeError:
raise RuntimeError, 'call setUp first'
pname = self.op.name
msgRole = self.op.input
msgRoleB = self.bop.input
if self.input is False:
pname = '%sResponse' %self.op.name
msgRole = self.op.output
msgRoleB = self.bop.output
sbody = msgRoleB.findBinding(WSDLTools.SoapBodyBinding)
if not sbody or not sbody.namespace:
raise WSInteropError, WSISpec.R2717
assert sbody.use == 'encoded', 'Expecting use=="encoded"'
encodingStyle = sbody.encodingStyle
assert encodingStyle == SOAP.ENC,\
'Supporting encodingStyle=%s, not %s' %(SOAP.ENC, encodingStyle)
namespace = sbody.namespace
tcb = MessageTypecodeContainer(\
tuple(msgRole.getMessage().parts.list),
)
ofwhat = '[%s]' %tcb.getTypecodeList()
pyclass = msgRole.getMessage().name
fdict = KW.copy()
fdict['nspname'] = sbody.namespace
fdict['pname'] = pname
fdict['pyclass'] = None
fdict['ofwhat'] = ofwhat
fdict['encoded'] = namespace
#if self.input is False:
# fdict['typecode'] = \
# 'Struct(pname=None, ofwhat=%(ofwhat)s, pyclass=%(pyclass)s, encoded="%(encoded)s")'
#else:
fdict['typecode'] = \
'Struct(pname=("%(nspname)s","%(pname)s"), ofwhat=%(ofwhat)s, pyclass=%(pyclass)s, encoded="%(encoded)s")'
message = ['class %(pyclass)s:',
'%(ID1)sdef __init__(self):']
for aname in tcb.getAttributeNames():
message.append('%(ID2)sself.' + aname +' = None')
message.append('%(ID2)sreturn')
# TODO: This isn't a TypecodeContainerBase instance but it
# certaintly generates a pyclass and typecode.
#if self.metaclass is None:
if TypecodeContainerBase.metaclass is None:
fdict['pyclass'] = pyclass
fdict['typecode'] = fdict['typecode'] %fdict
message.append('%(pyclass)s.typecode = %(typecode)s')
else:
# Need typecode to be available when class is constructed.
fdict['typecode'] = fdict['typecode'] %fdict
fdict['pyclass'] = pyclass
fdict['metaclass'] = TypecodeContainerBase.metaclass
message.insert(0, '_%(pyclass)sTypecode = %(typecode)s')
message.insert(2, '%(ID1)stypecode = _%(pyclass)sTypecode')
message.insert(3, '%(ID1)s__metaclass__ = %(metaclass)s')
message.append('%(pyclass)s.typecode.pyclass = %(pyclass)s')
self.writeArray(map(lambda l: l %fdict, message))
class ServiceRPCLiteralMessageContainer(ServiceContainerBase, MessageContainerInterface):
logger = _GetLogger("ServiceRPCLiteralMessageContainer")
def setUp(self, port, soc, input):
'''
Instance Data:
op -- WSDLTools Operation instance
bop -- WSDLTools BindingOperation instance
input -- boolean input/output
'''
name = soc.getOperationName()
bop = port.getBinding().operations.get(name)
op = port.getBinding().getPortType().operations.get(name)
assert op is not None, 'port has no operation %s' %name
assert bop is not None, 'port has no binding operation %s' %name
self.op = op
self.bop = bop
self.input = input
def _setContent(self):
try:
self.op
except AttributeError:
raise RuntimeError, 'call setUp first'
operation = self.op
input = self.input
pname = operation.name
msgRole = operation.input
msgRoleB = self.bop.input
if input is False:
pname = '%sResponse' %operation.name
msgRole = operation.output
msgRoleB = self.bop.output
sbody = msgRoleB.findBinding(WSDLTools.SoapBodyBinding)
if not sbody or not sbody.namespace:
raise WSInteropError, WSISpec.R2717
namespace = sbody.namespace
tcb = MessageTypecodeContainer(\
tuple(msgRole.getMessage().parts.list),
)
ofwhat = '[%s]' %tcb.getTypecodeList()
pyclass = msgRole.getMessage().name
fdict = KW.copy()
fdict['nspname'] = sbody.namespace
fdict['pname'] = pname
fdict['pyclass'] = None
fdict['ofwhat'] = ofwhat
fdict['encoded'] = namespace
fdict['typecode'] = \
'Struct(pname=("%(nspname)s","%(pname)s"), ofwhat=%(ofwhat)s, pyclass=%(pyclass)s, encoded="%(encoded)s")'
message = ['class %(pyclass)s:',
'%(ID1)sdef __init__(self):']
for aname in tcb.getAttributeNames():
message.append('%(ID2)sself.' + aname +' = None')
message.append('%(ID2)sreturn')
# TODO: This isn't a TypecodeContainerBase instance but it
# certaintly generates a pyclass and typecode.
#if self.metaclass is None:
if TypecodeContainerBase.metaclass is None:
fdict['pyclass'] = pyclass
fdict['typecode'] = fdict['typecode'] %fdict
message.append('%(pyclass)s.typecode = %(typecode)s')
else:
# Need typecode to be available when class is constructed.
fdict['typecode'] = fdict['typecode'] %fdict
fdict['pyclass'] = pyclass
fdict['metaclass'] = TypecodeContainerBase.metaclass
message.insert(0, '_%(pyclass)sTypecode = %(typecode)s')
message.insert(2, '%(ID1)stypecode = _%(pyclass)sTypecode')
message.insert(3, '%(ID1)s__metaclass__ = %(metaclass)s')
message.append('%(pyclass)s.typecode.pyclass = %(pyclass)s')
self.writeArray(map(lambda l: l %fdict, message))
TypesContainerBase = ContainerBase
class TypesHeaderContainer(TypesContainerBase):
'''imports for all generated types modules.
'''
imports = [
'import ZSI',
'import ZSI.TCcompound',
'from ZSI.schema import LocalElementDeclaration, ElementDeclaration, TypeDefinition, GTD, GED',
]
logger = _GetLogger("TypesHeaderContainer")
def _setContent(self):
self.writeArray(TypesHeaderContainer.imports)
NamespaceClassContainerBase = TypesContainerBase
class NamespaceClassHeaderContainer(NamespaceClassContainerBase):
logger = _GetLogger("NamespaceClassHeaderContainer")
def _setContent(self):
head = [
'#' * 30,
'# targetNamespace',
'# %s' % self.ns,
'#' * 30 + '\n',
'class %s:' % self.getNSAlias(),
'%stargetNamespace = "%s"' % (ID1, self.ns)
]
self.writeArray(head)
class NamespaceClassFooterContainer(NamespaceClassContainerBase):
logger = _GetLogger("NamespaceClassFooterContainer")
def _setContent(self):
foot = [
'# end class %s (tns: %s)' % (self.getNSAlias(), self.ns),
]
self.writeArray(foot)
BTI = BaseTypeInterpreter()
class TypecodeContainerBase(TypesContainerBase):
'''Base class for all classes representing anything
with element content.
class variables:
mixed_content_aname -- text content will be placed in this attribute.
attributes_aname -- attributes will be placed in this attribute.
metaclass -- set this attribute to specify a pyclass __metaclass__
'''
mixed_content_aname = 'text'
attributes_aname = 'attrs'
metaclass = None
lazy = False
logger = _GetLogger("TypecodeContainerBase")
def __init__(self, do_extended=False, extPyClasses=None):
TypesContainerBase.__init__(self)
self.name = None
# attrs for model groups and others with elements, tclists, etc...
self.allOptional = False
self.mgContent = None
self.contentFlattened = False
self.elementAttrs = []
self.tcListElements = []
self.tcListSet = False
self.localTypes = []
# used when processing nested anonymous types
self.parentClass = None
# used when processing attribute content
self.mixed = False
self.extraFlags = ''
self.attrComponents = None
# --> EXTENDED
# Used if an external pyclass was specified for this type.
self.do_extended = do_extended
if extPyClasses is None:
self.extPyClasses = {}
else:
self.extPyClasses = extPyClasses
# <--
def getvalue(self):
out = ContainerBase.getvalue(self)
for item in self.localTypes:
content = None
assert True is item.isElement() is item.isLocal(), 'expecting local elements only'
etp = item.content
qName = item.getAttribute('type')
if not qName:
etp = item.content
local = True
else:
etp = item.getTypeDefinition('type')
if etp is None:
if local is True:
content = ElementLocalComplexTypeContainer(do_extended=self.do_extended)
else:
content = ElementSimpleTypeContainer()
elif etp.isLocal() is False:
content = ElementGlobalDefContainer()
elif etp.isSimple() is True:
content = ElementLocalSimpleTypeContainer()
elif etp.isComplex():
content = ElementLocalComplexTypeContainer(do_extended=self.do_extended)
else:
raise Wsdl2PythonError, "Unknown element declaration: %s" %item.getItemTrace()
content.setUp(item)
out += '\n\n'
if self.parentClass:
content.parentClass = \
'%s.%s' %(self.parentClass, self.getClassName())
else:
content.parentClass = '%s.%s' %(self.getNSAlias(), self.getClassName())
for l in content.getvalue().split('\n'):
if l: out += '%s%s\n' % (ID1, l)
else: out += '\n'
out += '\n\n'
return out
def getAttributeName(self, name):
'''represents the aname
'''
if self.func_aname is None:
return name
assert callable(self.func_aname), \
'expecting callable method for attribute func_aname, not %s' %type(self.func_aname)
f = self.func_aname
return f(name)
def getMixedTextAName(self):
'''returns an aname representing mixed text content.
'''
return self.getAttributeName(self.mixed_content_aname)
def getClassName(self):
if not self.name:
raise ContainerError, 'self.name not defined!'
if not hasattr(self.__class__, 'type'):
raise ContainerError, 'container type not defined!'
#suffix = self.__class__.type
if self.__class__.type == DEF:
classname = type_class_name(self.name)
elif self.__class__.type == DEC:
classname = element_class_name(self.name)
return self.mangle( classname )
# --> EXTENDED
def hasExtPyClass(self):
if self.name in self.extPyClasses:
return True
else:
return False
# <--
def getPyClass(self):
'''Name of generated inner class that will be specified as pyclass.
'''
# --> EXTENDED
if self.hasExtPyClass():
classInfo = self.extPyClasses[self.name]
return ".".join(classInfo)
# <--
return 'Holder'
def getPyClassDefinition(self):
'''Return a list containing pyclass definition.
'''
kw = KW.copy()
# --> EXTENDED
if self.hasExtPyClass():
classInfo = self.extPyClasses[self.name]
kw['classInfo'] = classInfo[0]
return ["%(ID3)simport %(classInfo)s" %kw ]
# <--
kw['pyclass'] = self.getPyClass()
definition = []
definition.append('%(ID3)sclass %(pyclass)s:' %kw)
if self.metaclass is not None:
kw['type'] = self.metaclass
definition.append('%(ID4)s__metaclass__ = %(type)s' %kw)
definition.append('%(ID4)stypecode = self' %kw)
#TODO: Remove pyclass holder __init__ -->
definition.append('%(ID4)sdef __init__(self):' %kw)
definition.append('%(ID5)s# pyclass' %kw)
# JRB HACK need to call _setElements via getElements
self._setUpElements()
# JRB HACK need to indent additional one level
for el in self.elementAttrs:
kw['element'] = el
definition.append('%(ID2)s%(element)s' %kw)
definition.append('%(ID5)sreturn' %kw)
# <--
# pyclass descriptive name
if self.name is not None:
kw['name'] = self.name
definition.append(\
'%(ID3)s%(pyclass)s.__name__ = "%(name)s_Holder"' %kw
)
return definition
def nsuriLogic(self):
'''set a variable "ns" that represents the targetNamespace in
which this item is defined. Used for namespacing local elements.
'''
if self.parentClass:
return 'ns = %s.%s.schema' %(self.parentClass, self.getClassName())
return 'ns = %s.%s.schema' %(self.getNSAlias(), self.getClassName())
def schemaTag(self):
if self.ns is not None:
return 'schema = "%s"' % self.ns
raise ContainerError, 'failed to set schema targetNamespace(%s)' %(self.__class__)
def typeTag(self):
if self.name is not None:
return 'type = (schema, "%s")' % self.name
raise ContainerError, 'failed to set type name(%s)' %(self.__class__)
def literalTag(self):
if self.name is not None:
return 'literal = "%s"' % self.name
raise ContainerError, 'failed to set element name(%s)' %(self.__class__)
def getExtraFlags(self):
if self.mixed:
self.extraFlags += 'mixed=True, mixed_aname="%s", ' %self.getMixedTextAName()
return self.extraFlags
def simpleConstructor(self, superclass=None):
if superclass:
return '%s.__init__(self, **kw)' % superclass
else:
return 'def __init__(self, **kw):'
def pnameConstructor(self, superclass=None):
if superclass:
return '%s.__init__(self, pname, **kw)' % superclass
else:
return 'def __init__(self, pname, **kw):'
def _setUpElements(self):
"""TODO: Remove this method
This method ONLY sets up the instance attributes.
Dependency instance attribute:
mgContent -- expected to be either a complex definition
with model group content, a model group, or model group
content. TODO: should only support the first two.
"""
self.logger.debug("_setUpElements: %s" %self._item.getItemTrace())
if hasattr(self, '_done'):
#return '\n'.join(self.elementAttrs)
return
self._done = True
flat = []
content = self.mgContent
if type(self.mgContent) is not tuple:
mg = self.mgContent
if not mg.isModelGroup():
mg = mg.content
content = mg.content
if mg.isAll():
flat = content
content = []
elif mg.isModelGroup() and mg.isDefinition():
mg = mg.content
content = mg.content
idx = 0
content = list(content)
while idx < len(content):
c = orig = content[idx]
if c.isElement():
flat.append(c)
idx += 1
continue
if c.isReference() and c.isModelGroup():
c = c.getModelGroupReference()
if c.isDefinition() and c.isModelGroup():
c = c.content
if c.isSequence() or c.isChoice():
begIdx = idx
endIdx = begIdx + len(c.content)
for i in range(begIdx, endIdx):
content.insert(i, c.content[i-begIdx])
content.remove(orig)
continue
raise ContainerError, 'unexpected schema item: %s' %c.getItemTrace()
for c in flat:
if c.isDeclaration() and c.isElement():
defaultValue = "None"
parent = c
defs = []
# stop recursion via global ModelGroupDefinition
while defs.count(parent) <= 1:
maxOccurs = parent.getAttribute('maxOccurs')
if maxOccurs == 'unbounded' or int(maxOccurs) > 1:
defaultValue = "[]"
break
parent = parent._parent()
if not parent.isModelGroup():
break
if parent.isReference():
parent = parent.getModelGroupReference()
if parent.isDefinition():
parent = parent.content
defs.append(parent)
if None == c.getAttribute('name') and c.isWildCard():
e = '%sself.%s = %s' %(ID3,
self.getAttributeName('any'), defaultValue)
else:
e = '%sself.%s = %s' %(ID3,
self.getAttributeName(c.getAttribute('name')), defaultValue)
self.elementAttrs.append(e)
continue
# TODO: This seems wrong
if c.isReference():
e = '%sself._%s = None' %(ID3,
self.mangle(c.getAttribute('ref')[1]))
self.elementAttrs.append(e)
continue
raise ContainerError, 'unexpected item: %s' % c.getItemTrace()
#return '\n'.join(self.elementAttrs)
return
def _setTypecodeList(self):
"""generates ofwhat content, minOccurs/maxOccurs facet generation.
Dependency instance attribute:
mgContent -- expected to be either a complex definition
with model group content, a model group, or model group
content. TODO: should only support the first two.
localTypes -- produce local class definitions later
tcListElements -- elements, local/global
"""
self.logger.debug("_setTypecodeList(%r): %s" %
(self.mgContent, self._item.getItemTrace()))
flat = []
content = self.mgContent
#TODO: too much slop permitted here, impossible
# to tell what is going on.
if type(content) is not tuple:
mg = content
if not mg.isModelGroup():
raise Wsdl2PythonErr("Expecting ModelGroup: %s" %
mg.getItemTrace())
self.logger.debug("ModelGroup(%r) contents(%r): %s" %
(mg, mg.content, mg.getItemTrace()))
#<group ref>
if mg.isReference():
raise RuntimeError("Unexpected modelGroup reference: %s" %
mg.getItemTrace())
#<group name>
if mg.isDefinition():
mg = mg.content
if mg.isAll():
flat = mg.content
content = []
elif mg.isSequence():
content = mg.content
elif mg.isChoice():
content = mg.content
else:
raise RuntimeError("Unknown schema item")
idx = 0
content = list(content)
self.logger.debug("content: %r" %content)
while idx < len(content):
c = orig = content[idx]
if c.isElement():
flat.append(c)
idx += 1
continue
if c.isReference() and c.isModelGroup():
c = c.getModelGroupReference()
if c.isDefinition() and c.isModelGroup():
c = c.content
if c.isSequence() or c.isChoice():
begIdx = idx
endIdx = begIdx + len(c.content)
for i in range(begIdx, endIdx):
content.insert(i, c.content[i-begIdx])
content.remove(orig)
continue
raise ContainerError, 'unexpected schema item: %s' %c.getItemTrace()
# TODO: Need to store "parents" in a dict[id] = list(),
# because cannot follow references, but not currently
# a big concern.
self.logger.debug("flat: %r" %list(flat))
for c in flat:
tc = TcListComponentContainer()
# TODO: Remove _getOccurs
min,max,nil = self._getOccurs(c)
min = max = None
maxOccurs = 1
parent = c
defs = []
# stop recursion via global ModelGroupDefinition
while defs.count(parent) <= 1:
max = parent.getAttribute('maxOccurs')
if max == 'unbounded':
maxOccurs = '"%s"' %max
break
maxOccurs = int(max) * maxOccurs
parent = parent._parent()
if not parent.isModelGroup():
break
if parent.isReference():
parent = parent.getModelGroupReference()
if parent.isDefinition():
parent = parent.content
defs.append(parent)
del defs
parent = c
while 1:
minOccurs = int(parent.getAttribute('minOccurs'))
if minOccurs == 0 or parent.isChoice():
minOccurs = 0
break
parent = parent._parent()
if not parent.isModelGroup():
minOccurs = int(c.getAttribute('minOccurs'))
break
if parent.isReference():
parent = parent.getModelGroupReference()
if parent.isDefinition():
parent = parent.content
tc.setOccurs(minOccurs, maxOccurs, nil)
processContents = self._getProcessContents(c)
tc.setProcessContents(processContents)
if c.isDeclaration() and c.isElement():
global_type = c.getAttribute('type')
content = getattr(c, 'content', None)
if c.isLocal() and c.isQualified() is False:
tc.unQualified()
if c.isWildCard():
tc.setStyleAnyElement()
elif global_type is not None:
tc.name = c.getAttribute('name')
ns = global_type[0]
tpc = None
if ns in SCHEMA.XSD_LIST:
tpc = BTI.get_typeclass(global_type[1],global_type[0])
tc.klass = tpc
elif ns == SOAP.ENC:
tpc = BTI.get_typeclass(global_type[1],global_type[0])
tc.klass = tpc
# elif (self.ns,self.name) == global_type:
# # elif self._isRecursiveElement(c)
# # TODO: Remove this, it only works for 1 level.
# tc.setStyleRecursion()
if tpc is None:
tc.setGlobalType(*global_type)
# tc.klass = '%s.%s' % (NAD.getAlias(ns),
# type_class_name(global_type[1]))
del ns
elif content is not None and content.isLocal() and content.isComplex():
tc.name = c.getAttribute('name')
tc.klass = 'self.__class__.%s' % (element_class_name(tc.name))
#TODO: Not an element reference, confusing nomenclature
tc.setStyleElementReference()
self.localTypes.append(c)
elif content is not None and content.isLocal() and content.isSimple():
# Local Simple Type
tc.name = c.getAttribute('name')
tc.klass = 'self.__class__.%s' % (element_class_name(tc.name))
#TODO: Not an element reference, confusing nomenclature
tc.setStyleElementReference()
self.localTypes.append(c)
else:
raise ContainerError, 'unexpected item: %s' % c.getItemTrace()
elif c.isReference():
# element references
ref = c.getAttribute('ref')
# tc.klass = '%s.%s' % (NAD.getAlias(ref[0]),
# element_class_name(ref[1]) )
tc.setStyleElementReference()
tc.setGlobalType(*ref)
else:
raise ContainerError, 'unexpected item: %s' % c.getItemTrace()
self.tcListElements.append(tc)
def getTypecodeList(self):
if not self.tcListSet:
# self._flattenContent()
self._setTypecodeList()
self.tcListSet = True
list = []
for e in self.tcListElements:
list.append(str(e))
return ', '.join(list)
# the following _methods() are utility methods used during
# TCList generation, et al.
def _getOccurs(self, e):
nillable = e.getAttribute('nillable')
if nillable == 'true':
nillable = True
else:
nillable = False
maxOccurs = e.getAttribute('maxOccurs')
if maxOccurs == 'unbounded':
maxOccurs = '"%s"' %maxOccurs
minOccurs = e.getAttribute('minOccurs')
if self.allOptional is True:
#JRB Hack
minOccurs = '0'
maxOccurs = '"unbounded"'
return minOccurs,maxOccurs,nillable
def _getProcessContents(self, e):
processContents = e.getAttribute('processContents')
return processContents
def getBasesLogic(self, indent):
try:
prefix = NAD.getAlias(self.sKlassNS)
except WsdlGeneratorError, ex:
# XSD or SOAP
raise
bases = []
bases.append(\
'if %s.%s not in %s.%s.__bases__:'\
%(NAD.getAlias(self.sKlassNS), type_class_name(self.sKlass), self.getNSAlias(), self.getClassName()),
)
bases.append(\
'%sbases = list(%s.%s.__bases__)'\
%(ID1,self.getNSAlias(),self.getClassName()),
)
bases.append(\
'%sbases.insert(0, %s.%s)'\
%(ID1,NAD.getAlias(self.sKlassNS), type_class_name(self.sKlass) ),
)
bases.append(\
'%s%s.%s.__bases__ = tuple(bases)'\
%(ID1, self.getNSAlias(), self.getClassName())
)
s = ''
for b in bases:
s += '%s%s\n' % (indent, b)
return s
class MessageTypecodeContainer(TypecodeContainerBase):
'''Used for RPC style messages, where we have
serveral parts serialized within a rpc wrapper name.
'''
logger = _GetLogger("MessageTypecodeContainer")
def __init__(self, parts=None):
TypecodeContainerBase.__init__(self)
self.mgContent = parts
def _getOccurs(self, e):
'''return a 3 item tuple
'''
minOccurs = maxOccurs = '1'
nillable = True
return minOccurs,maxOccurs,nillable
def _setTypecodeList(self):
self.logger.debug("_setTypecodeList: %s" %
str(self.mgContent))
assert type(self.mgContent) is tuple,\
'expecting tuple for mgContent not: %s' %type(self.mgContent)
for p in self.mgContent:
# JRB
# not sure what needs to be set for tc, this should be
# the job of the constructor or a setUp method.
min,max,nil = self._getOccurs(p)
if p.element:
raise WSInteropError, WSISpec.R2203
elif p.type:
nsuri,name = p.type
tc = RPCMessageTcListComponentContainer(qualified=False)
tc.setOccurs(min, max, nil)
tc.name = p.name
tpc = None
if nsuri in SCHEMA.XSD_LIST:
tpc = BTI.get_typeclass(name, nsuri)
tc.klass = tpc
elif nsuri == SOAP.ENC:
tpc = BTI.get_typeclass(name, nsuri)
tc.klass = tpc
if tpc is None:
tc.klass = '%s.%s' % (NAD.getAlias(nsuri), type_class_name(name) )
else:
raise ContainerError, 'part must define an element or type attribute'
self.tcListElements.append(tc)
def getTypecodeList(self):
if not self.tcListSet:
self._setTypecodeList()
self.tcListSet = True
list = []
for e in self.tcListElements:
list.append(str(e))
return ', '.join(list)
def getAttributeNames(self):
'''returns a list of anames representing the parts
of the message.
'''
return map(lambda e: self.getAttributeName(e.name), self.tcListElements)
def setParts(self, parts):
self.mgContent = parts
class TcListComponentContainer(ContainerBase):
'''Encapsulates a single value in the TClist list.
it inherits TypecodeContainerBase only to get the mangle() method,
it does not call the baseclass ctor.
TODO: Change this inheritance scheme.
'''
logger = _GetLogger("TcListComponentContainer")
def __init__(self, qualified=True):
'''
qualified -- qualify element. All GEDs should be qualified,
but local element declarations qualified if form attribute
is qualified, else they are unqualified. Only relevant for
standard style.
'''
#TypecodeContainerBase.__init__(self)
ContainerBase.__init__(self)
self.qualified = qualified
self.name = None
self.klass = None
self.global_type = None
self.min = None
self.max = None
self.nil = None
self.style = None
self.setStyleElementDeclaration()
def setOccurs(self, min, max, nil):
self.min = min
self.max = max
self.nil = nil
def setProcessContents(self, processContents):
self.processContents = processContents
def setGlobalType(self, namespace, name):
self.global_type = (namespace, name)
def setStyleElementDeclaration(self):
'''set the element style.
standard -- GED or local element
'''
self.style = 'standard'
def setStyleElementReference(self):
'''set the element style.
ref -- element reference
'''
self.style = 'ref'
def setStyleAnyElement(self):
'''set the element style.
anyElement -- <any> element wildcard
'''
self.name = 'any'
self.style = 'anyElement'
# def setStyleRecursion(self):
# '''TODO: Remove. good for 1 level
# '''
# self.style = 'recursion'
def unQualified(self):
'''Do not qualify element.
'''
self.qualified = False
def _getOccurs(self):
return 'minOccurs=%s, maxOccurs=%s, nillable=%s' \
% (self.min, self.max, self.nil)
def _getProcessContents(self):
return 'processContents="%s"' \
% (self.processContents)
def _getvalue(self):
kw = {'occurs':self._getOccurs(),
'aname':self.getAttributeName(self.name),
'klass':self.klass,
'lazy':TypecodeContainerBase.lazy,
'typed':'typed=False',
'encoded':'encoded=kw.get("encoded")'}
gt = self.global_type
if gt is not None:
kw['nsuri'],kw['type'] = gt
if self.style == 'standard':
kw['pname'] = '"%s"' %self.name
if self.qualified is True:
kw['pname'] = '(ns,"%s")' %self.name
if gt is None:
return '%(klass)s(pname=%(pname)s, aname="%(aname)s", %(occurs)s, %(typed)s, %(encoded)s)' %kw
return 'GTD("%(nsuri)s","%(type)s",lazy=%(lazy)s)(pname=%(pname)s, aname="%(aname)s", %(occurs)s, %(typed)s, %(encoded)s)' %kw
if self.style == 'ref':
if gt is None:
return '%(klass)s(%(occurs)s, %(encoded)s)' %kw
return 'GED("%(nsuri)s","%(type)s",lazy=%(lazy)s, isref=True)(%(occurs)s, %(encoded)s)' %kw
kw['process'] = self._getProcessContents()
if self.style == 'anyElement':
return 'ZSI.TC.AnyElement(aname="%(aname)s", %(occurs)s, %(process)s)' %kw
# if self.style == 'recursion':
# return 'ZSI.TC.AnyElement(aname="%(aname)s", %(occurs)s, %(process)s)' %kw
raise RuntimeError, 'Must set style for typecode list generation'
def __str__(self):
return self._getvalue()
class RPCMessageTcListComponentContainer(TcListComponentContainer):
'''Container for rpc/literal rpc/encoded message typecode.
'''
logger = _GetLogger("RPCMessageTcListComponentContainer")
def __init__(self, qualified=True, encoded=None):
'''
encoded -- encoded namespaceURI, if None treat as rpc/literal.
'''
TcListComponentContainer.__init__(self, qualified=qualified)
self._encoded = encoded
def _getvalue(self):
encoded = self._encoded
if encoded is not None:
encoded = '"%s"' %self._encoded
if self.style == 'standard':
pname = '"%s"' %self.name
if self.qualified is True:
pname = '(ns,"%s")' %self.name
return '%s(pname=%s, aname="%s", typed=False, encoded=%s, %s)' \
%(self.klass, pname, self.getAttributeName(self.name),
encoded, self._getOccurs())
elif self.style == 'ref':
return '%s(encoded=%s, %s)' % (self.klass, encoded, self._getOccurs())
elif self.style == 'anyElement':
return 'ZSI.TC.AnyElement(aname="%s", %s, %s)' \
%(self.getAttributeName(self.name), self._getOccurs(), self._getProcessContents())
# elif self.style == 'recursion':
# return 'ZSI.TC.AnyElement(aname="%s", %s, %s)' \
# % (self.getAttributeName(self.name), self._getOccurs(), self._getProcessContents())
raise RuntimeError('Must set style(%s) for typecode list generation' %
self.style)
class ElementSimpleTypeContainer(TypecodeContainerBase):
type = DEC
logger = _GetLogger("ElementSimpleTypeContainer")
def _setContent(self):
aname = self.getAttributeName(self.name)
pyclass = self.pyclass
# bool cannot be subclassed
if pyclass == 'bool': pyclass = 'int'
kw = KW.copy()
kw.update(dict(aname=aname, ns=self.ns, name=self.name,
subclass=self.sKlass,literal=self.literalTag(),
schema=self.schemaTag(), init=self.simpleConstructor(),
klass=self.getClassName(), element="ElementDeclaration"))
if self.local:
kw['element'] = 'LocalElementDeclaration'
element = map(lambda i: i %kw, [
'%(ID1)sclass %(klass)s(%(subclass)s, %(element)s):',
'%(ID2)s%(literal)s',
'%(ID2)s%(schema)s',
'%(ID2)s%(init)s',
'%(ID3)skw["pname"] = ("%(ns)s","%(name)s")',
'%(ID3)skw["aname"] = "%(aname)s"',
]
)
# TODO: What about getPyClass and getPyClassDefinition?
# I want to add pyclass metaclass here but this needs to be
# corrected first.
#
# anyType (?others) has no pyclass.
app = element.append
if pyclass is not None:
app('%sclass IHolder(%s): typecode=self' % (ID3, pyclass),)
app('%skw["pyclass"] = IHolder' %(ID3),)
app('%sIHolder.__name__ = "%s_immutable_holder"' %(ID3, aname),)
app('%s%s' % (ID3, self.simpleConstructor(self.sKlass)),)
self.writeArray(element)
def setUp(self, tp):
self._item = tp
self.local = tp.isLocal()
try:
self.name = tp.getAttribute('name')
self.ns = tp.getTargetNamespace()
qName = tp.getAttribute('type')
except Exception, ex:
raise Wsdl2PythonError('Error occured processing element: %s' %(
tp.getItemTrace()), *ex.args)
if qName is None:
raise Wsdl2PythonError('Missing QName for element type attribute: %s' %tp.getItemTrace())
tns,local = qName.getTargetNamespace(),qName.getName()
self.sKlass = BTI.get_typeclass(local, tns)
if self.sKlass is None:
raise Wsdl2PythonError('No built-in typecode for type definition("%s","%s"): %s' %(tns,local,tp.getItemTrace()))
try:
self.pyclass = BTI.get_pythontype(None, None, typeclass=self.sKlass)
except Exception, ex:
raise Wsdl2PythonError('Error occured processing element: %s' %(
tp.getItemTrace()), *ex.args)
class ElementLocalSimpleTypeContainer(TypecodeContainerBase):
'''local simpleType container
'''
type = DEC
logger = _GetLogger("ElementLocalSimpleTypeContainer")
def _setContent(self):
kw = KW.copy()
kw.update(dict(aname=self.getAttributeName(self.name), ns=self.ns, name=self.name,
subclass=self.sKlass,literal=self.literalTag(),
schema=self.schemaTag(), init=self.simpleConstructor(),
klass=self.getClassName(), element="ElementDeclaration",
baseinit=self.simpleConstructor(self.sKlass)))
if self.local:
kw['element'] = 'LocalElementDeclaration'
element = map(lambda i: i %kw, [
'%(ID1)sclass %(klass)s(%(subclass)s, %(element)s):',
'%(ID2)s%(literal)s',
'%(ID2)s%(schema)s',
'%(ID2)s%(init)s',
'%(ID3)skw["pname"] = ("%(ns)s","%(name)s")',
'%(ID3)skw["aname"] = "%(aname)s"',
'%(ID3)s%(baseinit)s',
]
)
self.writeArray(element)
def setUp(self, tp):
self._item = tp
assert tp.isElement() is True and tp.content is not None and \
tp.content.isLocal() is True and tp.content.isSimple() is True ,\
'expecting local simple type: %s' %tp.getItemTrace()
self.local = tp.isLocal()
self.name = tp.getAttribute('name')
self.ns = tp.getTargetNamespace()
content = tp.content.content
if content.isRestriction():
try:
base = content.getTypeDefinition()
except XMLSchema.SchemaError, ex:
base = None
qName = content.getAttributeBase()
if base is None:
self.sKlass = BTI.get_typeclass(qName[1], qName[0])
return
raise Wsdl2PythonError, 'unsupported local simpleType restriction: %s' \
%tp.content.getItemTrace()
if content.isList():
try:
base = content.getTypeDefinition()
except XMLSchema.SchemaError, ex:
base = None
if base is None:
qName = content.getItemType()
self.sKlass = BTI.get_typeclass(qName[1], qName[0])
return
raise Wsdl2PythonError, 'unsupported local simpleType List: %s' \
%tp.content.getItemTrace()
if content.isUnion():
raise Wsdl2PythonError, 'unsupported local simpleType Union: %s' \
%tp.content.getItemTrace()
raise Wsdl2PythonError, 'unexpected schema item: %s' \
%tp.content.getItemTrace()
class ElementLocalComplexTypeContainer(TypecodeContainerBase, AttributeMixIn):
type = DEC
logger = _GetLogger("ElementLocalComplexTypeContainer")
def _setContent(self):
kw = KW.copy()
try:
kw.update(dict(klass=self.getClassName(),
subclass='ZSI.TCcompound.ComplexType',
element='ElementDeclaration',
literal=self.literalTag(),
schema=self.schemaTag(),
init=self.simpleConstructor(),
ns=self.ns, name=self.name,
aname=self.getAttributeName(self.name),
nsurilogic=self.nsuriLogic(),
ofwhat=self.getTypecodeList(),
atypecode=self.attribute_typecode,
pyclass=self.getPyClass(),
))
except Exception, ex:
args = ['Failure processing an element w/local complexType: %s' %(
self._item.getItemTrace())]
args += ex.args
ex.args = tuple(args)
raise
if self.local:
kw['element'] = 'LocalElementDeclaration'
element = [
'%(ID1)sclass %(klass)s(%(subclass)s, %(element)s):',
'%(ID2)s%(literal)s',
'%(ID2)s%(schema)s',
'%(ID2)s%(init)s',
'%(ID3)s%(nsurilogic)s',
'%(ID3)sTClist = [%(ofwhat)s]',
'%(ID3)skw["pname"] = ("%(ns)s","%(name)s")',
'%(ID3)skw["aname"] = "%(aname)s"',
'%(ID3)s%(atypecode)s = {}',
'%(ID3)sZSI.TCcompound.ComplexType.__init__(self,None,TClist,inorder=0,**kw)',
]
for l in self.attrComponents: element.append('%(ID3)s'+str(l))
element += self.getPyClassDefinition()
element.append('%(ID3)sself.pyclass = %(pyclass)s' %kw)
self.writeArray(map(lambda l: l %kw, element))
def setUp(self, tp):
'''
{'xsd':['annotation', 'simpleContent', 'complexContent',\
'group', 'all', 'choice', 'sequence', 'attribute', 'attributeGroup',\
'anyAttribute', 'any']}
'''
#
# TODO: Need a Recursive solution, this is incomplete will ignore many
# extensions, restrictions, etc.
#
self._item = tp
# JRB HACK SUPPORTING element/no content.
assert tp.isElement() is True and \
(tp.content is None or (tp.content.isComplex() is True and tp.content.isLocal() is True)),\
'expecting element w/local complexType not: %s' %tp.content.getItemTrace()
self.name = tp.getAttribute('name')
self.ns = tp.getTargetNamespace()
self.local = tp.isLocal()
complex = tp.content
# JRB HACK SUPPORTING element/no content.
if complex is None:
self.mgContent = ()
return
#attributeContent = complex.getAttributeContent()
#self.mgContent = None
if complex.content is None:
self.mgContent = ()
self.attrComponents = self._setAttributes(complex.getAttributeContent())
return
is_simple = complex.content.isSimple()
if is_simple and complex.content.content.isExtension():
# TODO: Not really supported just passing thru
self.mgContent = ()
self.attrComponents = self._setAttributes(complex.getAttributeContent())
return
if is_simple and complex.content.content.isRestriction():
# TODO: Not really supported just passing thru
self.mgContent = ()
self.attrComponents = self._setAttributes(complex.getAttributeContent())
return
if is_simple:
raise ContainerError, 'not implemented local complexType/simpleContent: %s'\
%tp.getItemTrace()
is_complex = complex.content.isComplex()
if is_complex and complex.content.content is None:
# TODO: Recursion...
self.mgContent = ()
self.attrComponents = self._setAttributes(complex.getAttributeContent())
return
if (is_complex and complex.content.content.isExtension() and
complex.content.content.content is not None and
complex.content.content.content.isModelGroup()):
self.mgContent = complex.content.content.content.content
self.attrComponents = self._setAttributes(
complex.content.content.getAttributeContent()
)
return
if (is_complex and complex.content.content.isRestriction() and
complex.content.content.content is not None and
complex.content.content.content.isModelGroup()):
self.mgContent = complex.content.content.content.content
self.attrComponents = self._setAttributes(
complex.content.content.getAttributeContent()
)
return
if is_complex:
self.mgContent = ()
self.attrComponents = self._setAttributes(complex.getAttributeContent())
return
if complex.content.isModelGroup():
self.mgContent = complex.content.content
self.attrComponents = self._setAttributes(complex.getAttributeContent())
return
# TODO: Scary Fallthru
self.mgContent = ()
self.attrComponents = self._setAttributes(complex.getAttributeContent())
class ElementGlobalDefContainer(TypecodeContainerBase):
type = DEC
logger = _GetLogger("ElementGlobalDefContainer")
def _setContent(self):
'''GED defines element name, so also define typecode aname
'''
kw = KW.copy()
try:
kw.update(dict(klass=self.getClassName(),
element='ElementDeclaration',
literal=self.literalTag(),
schema=self.schemaTag(),
init=self.simpleConstructor(),
ns=self.ns, name=self.name,
aname=self.getAttributeName(self.name),
baseslogic=self.getBasesLogic(ID3),
#ofwhat=self.getTypecodeList(),
#atypecode=self.attribute_typecode,
#pyclass=self.getPyClass(),
alias=NAD.getAlias(self.sKlassNS),
subclass=type_class_name(self.sKlass),
))
except Exception, ex:
args = ['Failure processing an element w/local complexType: %s' %(
self._item.getItemTrace())]
args += ex.args
ex.args = tuple(args)
raise
if self.local:
kw['element'] = 'LocalElementDeclaration'
element = [
'%(ID1)sclass %(klass)s(%(element)s):',
'%(ID2)s%(literal)s',
'%(ID2)s%(schema)s',
'%(ID2)s%(init)s',
'%(ID3)skw["pname"] = ("%(ns)s","%(name)s")',
'%(ID3)skw["aname"] = "%(aname)s"',
'%(baseslogic)s',
'%(ID3)s%(alias)s.%(subclass)s.__init__(self, **kw)',
'%(ID3)sif self.pyclass is not None: self.pyclass.__name__ = "%(klass)s_Holder"',
]
self.writeArray(map(lambda l: l %kw, element))
def setUp(self, element):
# Save for debugging
self._item = element
self.local = element.isLocal()
self.name = element.getAttribute('name')
self.ns = element.getTargetNamespace()
tp = element.getTypeDefinition('type')
self.sKlass = tp.getAttribute('name')
self.sKlassNS = tp.getTargetNamespace()
class ComplexTypeComplexContentContainer(TypecodeContainerBase, AttributeMixIn):
'''Represents ComplexType with ComplexContent.
'''
type = DEF
logger = _GetLogger("ComplexTypeComplexContentContainer")
def __init__(self, do_extended=False):
TypecodeContainerBase.__init__(self, do_extended=do_extended)
def setUp(self, tp):
'''complexContent/[extension,restriction]
restriction
extension
extType -- used in figuring attrs for extensions
'''
self._item = tp
assert tp.content.isComplex() is True and \
(tp.content.content.isRestriction() or tp.content.content.isExtension() is True),\
'expecting complexContent/[extension,restriction]'
self.extType = None
self.restriction = False
self.extension = False
self._kw_array = None
self._is_array = False
self.name = tp.getAttribute('name')
self.ns = tp.getTargetNamespace()
# xxx: what is this for?
#self.attribute_typecode = 'attributes'
derivation = tp.content.content
# Defined in Schema instance?
try:
base = derivation.getTypeDefinition('base')
except XMLSchema.SchemaError, ex:
base = None
# anyType, arrayType, etc...
if base is None:
base = derivation.getAttributeQName('base')
if base is None:
raise ContainerError, 'Unsupported derivation: %s'\
%derivation.getItemTrace()
if base != (SOAP.ENC,'Array') and base != (SCHEMA.XSD3,'anyType'):
raise ContainerError, 'Unsupported base(%s): %s' %(
base, derivation.getItemTrace()
)
if base == (SOAP.ENC,'Array'):
# SOAP-ENC:Array expecting arrayType attribute reference
self.logger.debug("Derivation of soapenc:Array")
self._is_array = True
self._kw_array = {'atype':None, 'id3':ID3, 'ofwhat':None}
self.sKlass = BTI.get_typeclass(base[1], base[0])
self.sKlassNS = base[0]
attr = None
for a in derivation.getAttributeContent():
assert a.isAttribute() is True,\
'only attribute content expected: %s' %a.getItemTrace()
if a.isReference() is True:
if a.getAttribute('ref') == (SOAP.ENC,'arrayType'):
self._kw_array['atype'] = a.getAttributeQName((WSDL.BASE, 'arrayType'))
attr = a
break
qname = self._kw_array.get('atype')
if attr is not None:
qname = self._kw_array.get('atype')
ncname = qname[1].strip('[]')
namespace = qname[0]
try:
ofwhat = attr.getSchemaItem(XMLSchema.TYPES, namespace, ncname)
except XMLSchema.SchemaError, ex:
ofwhat = None
if ofwhat is None:
self._kw_array['ofwhat'] = BTI.get_typeclass(ncname, namespace)
else:
self._kw_array['ofwhat'] = GetClassNameFromSchemaItem(ofwhat, do_extended=self.do_extended)
if self._kw_array['ofwhat'] is None:
raise ContainerError, 'For Array could not resolve ofwhat typecode(%s,%s): %s'\
%(namespace, ncname, derivation.getItemTrace())
self.logger.debug('Attribute soapenc:arrayType="%s"' %
str(self._kw_array['ofwhat']))
elif isinstance(base, XMLSchema.XMLSchemaComponent):
self.sKlass = base.getAttribute('name')
self.sKlassNS = base.getTargetNamespace()
else:
# TypeDescriptionComponent
self.sKlass = base.getName()
self.sKlassNS = base.getTargetNamespace()
attrs = []
if derivation.isRestriction():
self.restriction = True
self.extension = False
# derivation.getAttributeContent subset of tp.getAttributeContent
attrs += derivation.getAttributeContent() or ()
else:
self.restriction = False
self.extension = True
attrs += tp.getAttributeContent() or ()
if isinstance(derivation, XMLSchema.XMLSchemaComponent):
attrs += derivation.getAttributeContent() or ()
# XXX: not sure what this is doing
if attrs:
self.extType = derivation
if derivation.content is not None \
and derivation.content.isModelGroup():
group = derivation.content
if group.isReference():
group = group.getModelGroupReference()
self.mgContent = group.content
elif derivation.content:
raise Wsdl2PythonError, \
'expecting model group, not: %s' %derivation.content.getItemTrace()
else:
self.mgContent = ()
self.attrComponents = self._setAttributes(tuple(attrs))
def _setContent(self):
'''JRB What is the difference between instance data
ns, name, -- type definition?
sKlass, sKlassNS? -- element declaration?
'''
kw = KW.copy()
definition = []
if self._is_array:
# SOAP-ENC:Array
if _is_xsd_or_soap_ns(self.sKlassNS) is False and self.sKlass == 'Array':
raise ContainerError, 'unknown type: (%s,%s)'\
%(self.sKlass, self.sKlassNS)
# No need to xsi:type array items since specify with
# SOAP-ENC:arrayType attribute.
definition += [\
'%sclass %s(ZSI.TC.Array, TypeDefinition):' % (ID1, self.getClassName()),
'%s#complexType/complexContent base="SOAP-ENC:Array"' %(ID2),
'%s%s' % (ID2, self.schemaTag()),
'%s%s' % (ID2, self.typeTag()),
'%s%s' % (ID2, self.pnameConstructor()),
'%(id3)sofwhat = %(ofwhat)s(None, typed=False)' %self._kw_array,
'%(id3)satype = %(atype)s' %self._kw_array,
'%s%s.__init__(self, atype, ofwhat, pname=pname, childnames=\'item\', **kw)'
%(ID3, self.sKlass),
]
self.writeArray(definition)
return
definition += [\
'%sclass %s(TypeDefinition):' % (ID1, self.getClassName()),
'%s%s' % (ID2, self.schemaTag()),
'%s%s' % (ID2, self.typeTag()),
'%s%s' % (ID2, self.pnameConstructor()),
'%s%s' % (ID3, self.nsuriLogic()),
'%sTClist = [%s]' % (ID3, self.getTypecodeList()),
]
definition.append(
'%(ID3)sattributes = %(atc)s = attributes or {}' %{
'ID3':ID3, 'atc':self.attribute_typecode}
)
#
# Special case: anyType restriction
isAnyType = (self.sKlassNS, self.sKlass) == (SCHEMA.XSD3, 'anyType')
if isAnyType:
del definition[0]
definition.insert(0,
'%sclass %s(ZSI.TC.ComplexType, TypeDefinition):' % (
ID1, self.getClassName())
)
definition.insert(1,
'%s#complexType/complexContent restrict anyType' %(
ID2)
)
# derived type support
definition.append('%sif extend: TClist += ofwhat'%(ID3))
definition.append('%sif restrict: TClist = ofwhat' %(ID3))
if len(self.attrComponents) > 0:
definition.append('%selse:' %(ID3))
for l in self.attrComponents:
definition.append('%s%s'%(ID4, l))
if isAnyType:
definition.append(\
'%sZSI.TC.ComplexType.__init__(self, None, TClist, pname=pname, **kw)' %(
ID3),
)
# pyclass class definition
definition += self.getPyClassDefinition()
kw['pyclass'] = self.getPyClass()
definition.append('%(ID3)sself.pyclass = %(pyclass)s' %kw)
self.writeArray(definition)
return
for l in self.attrComponents:
definition.append('%s%s'%(ID3, l))
definition.append('%s' % self.getBasesLogic(ID3))
prefix = NAD.getAlias(self.sKlassNS)
typeClassName = type_class_name(self.sKlass)
if self.restriction:
definition.append(\
'%s%s.%s.__init__(self, pname, ofwhat=TClist, restrict=True, **kw)' %(
ID3, prefix, typeClassName),
)
definition.insert(1, '%s#complexType/complexContent restriction' %ID2)
self.writeArray(definition)
return
if self.extension:
definition.append(\
'%s%s.%s.__init__(self, pname, ofwhat=TClist, extend=True, attributes=attributes, **kw)'%(
ID3, prefix, typeClassName),
)
definition.insert(1, '%s#complexType/complexContent extension' %(ID2))
self.writeArray(definition)
return
raise Wsdl2PythonError,\
'ComplexContent must be a restriction or extension'
def pnameConstructor(self, superclass=None):
if superclass:
return '%s.__init__(self, pname, ofwhat=(), extend=False, restrict=False, attributes=None, **kw)' % superclass
return 'def __init__(self, pname, ofwhat=(), extend=False, restrict=False, attributes=None, **kw):'
class ComplexTypeContainer(TypecodeContainerBase, AttributeMixIn):
'''Represents a global complexType definition.
'''
type = DEF
logger = _GetLogger("ComplexTypeContainer")
def setUp(self, tp, empty=False):
'''Problematic, loose all model group information.
<all>, <choice>, <sequence> ..
tp -- type definition
empty -- no model group, just use as a dummy holder.
'''
self._item = tp
self.name = tp.getAttribute('name')
self.ns = tp.getTargetNamespace()
self.mixed = tp.isMixed()
self.mgContent = ()
self.attrComponents = self._setAttributes(tp.getAttributeContent())
# Save reference to type for debugging
self._item = tp
if empty:
return
model = tp.content
if model.isReference():
model = model.getModelGroupReference()
if model is None:
return
if model.content is None:
return
# sequence, all or choice
#self.mgContent = model.content
self.mgContent = model
def _setContent(self):
try:
definition = [
'%sclass %s(ZSI.TCcompound.ComplexType, TypeDefinition):'
% (ID1, self.getClassName()),
'%s%s' % (ID2, self.schemaTag()),
'%s%s' % (ID2, self.typeTag()),
'%s%s' % (ID2, self.pnameConstructor()),
#'%s' % self.getElements(),
'%s%s' % (ID3, self.nsuriLogic()),
'%sTClist = [%s]' % (ID3, self.getTypecodeList()),
]
except Exception, ex:
args = ["Failure processing %s" %self._item.getItemTrace()]
args += ex.args
ex.args = tuple(args)
raise
definition.append('%s%s = attributes or {}' %(ID3,
self.attribute_typecode))
# IF EXTEND
definition.append('%sif extend: TClist += ofwhat'%(ID3))
# IF RESTRICT
definition.append('%sif restrict: TClist = ofwhat' %(ID3))
# ELSE
if len(self.attrComponents) > 0:
definition.append('%selse:' %(ID3))
for l in self.attrComponents: definition.append('%s%s'%(ID4, l))
definition.append(\
'%sZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, %s**kw)' \
%(ID3, self.getExtraFlags())
)
# pyclass class definition
definition += self.getPyClassDefinition()
# set pyclass
kw = KW.copy()
kw['pyclass'] = self.getPyClass()
definition.append('%(ID3)sself.pyclass = %(pyclass)s' %kw)
self.writeArray(definition)
def pnameConstructor(self, superclass=None):
''' TODO: Logic is a little tricky. If superclass is ComplexType this is not used.
'''
if superclass:
return '%s.__init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw)' % superclass
return 'def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw):'
class SimpleTypeContainer(TypecodeContainerBase):
type = DEF
logger = _GetLogger("SimpleTypeContainer")
def __init__(self):
'''
Instance Data From TypecodeContainerBase NOT USED...
mgContent
'''
TypecodeContainerBase.__init__(self)
def setUp(self, tp):
raise NotImplementedError, 'abstract method not implemented'
def _setContent(self, tp):
raise NotImplementedError, 'abstract method not implemented'
def getPythonType(self):
pyclass = eval(str(self.sKlass))
if issubclass(pyclass, ZSI.TC.String):
return 'str'
if issubclass(pyclass, ZSI.TC.Ilong) or issubclass(pyclass, ZSI.TC.IunsignedLong):
return 'long'
if issubclass(pyclass, ZSI.TC.Boolean) or issubclass(pyclass, ZSI.TC.Integer):
return 'int'
if issubclass(pyclass, ZSI.TC.Decimal):
return 'float'
if issubclass(pyclass, ZSI.TC.Gregorian) or issubclass(pyclass, ZSI.TC.Duration):
return 'tuple'
return None
def getPyClassDefinition(self):
definition = []
pt = self.getPythonType()
if pt is not None:
definition.append('%sclass %s(%s):' %(ID3,self.getPyClass(),pt))
definition.append('%stypecode = self' %ID4)
return definition
class RestrictionContainer(SimpleTypeContainer):
'''
simpleType/restriction
'''
logger = _GetLogger("RestrictionContainer")
def setUp(self, tp):
self._item = tp
assert tp.isSimple() is True and tp.isDefinition() is True and \
tp.content.isRestriction() is True,\
'expecting simpleType restriction, not: %s' %tp.getItemTrace()
if tp.content is None:
raise Wsdl2PythonError, \
'empty simpleType defintion: %s' %tp.getItemTrace()
self.name = tp.getAttribute('name')
self.ns = tp.getTargetNamespace()
self.sKlass = None
base = tp.content.getAttribute('base')
if base is not None:
try:
item = tp.content.getTypeDefinition('base')
except XMLSchema.SchemaError, ex:
item = None
if item is None:
self.sKlass = BTI.get_typeclass(base.getName(), base.getTargetNamespace())
if self.sKlass is not None:
return
raise Wsdl2PythonError('no built-in type nor schema instance type for base attribute("%s","%s"): %s' %(
base.getTargetNamespace(), base.getName(), tp.getItemTrace()))
raise Wsdl2PythonError, \
'Not Supporting simpleType/Restriction w/User-Defined Base: %s %s' %(tp.getItemTrace(),item.getItemTrace())
sc = tp.content.getSimpleTypeContent()
if sc is not None and True is sc.isSimple() is sc.isLocal() is sc.isDefinition():
base = None
if sc.content.isRestriction() is True:
try:
item = tp.content.getTypeDefinition('base')
except XMLSchema.SchemaError, ex:
pass
if item is None:
base = sc.content.getAttribute('base')
if base is not None:
self.sKlass = BTI.get_typeclass(base.getTargetNamespace(), base.getName())
return
raise Wsdl2PythonError, \
'Not Supporting simpleType/Restriction w/User-Defined Base: '\
%item.getItemTrace()
raise Wsdl2PythonError, \
'Not Supporting simpleType/Restriction w/User-Defined Base: '\
%item.getItemTrace()
if sc.content.isList() is True:
raise Wsdl2PythonError, \
'iction base in subtypes: %s'\
%sc.getItemTrace()
if sc.content.isUnion() is True:
raise Wsdl2PythonError, \
'could not get restriction base in subtypes: %s'\
%sc.getItemTrace()
return
raise Wsdl2PythonError, 'No Restriction @base/simpleType: %s' %tp.getItemTrace()
def _setContent(self):
definition = [
'%sclass %s(%s, TypeDefinition):' %(ID1, self.getClassName(),
self.sKlass),
'%s%s' % (ID2, self.schemaTag()),
'%s%s' % (ID2, self.typeTag()),
'%s%s' % (ID2, self.pnameConstructor()),
]
if self.getPythonType() is None:
definition.append('%s%s.__init__(self, pname, **kw)' %(ID3,
self.sKlass))
else:
definition.append('%s%s.__init__(self, pname, pyclass=None, **kw)' \
%(ID3, self.sKlass,))
# pyclass class definition
definition += self.getPyClassDefinition()
# set pyclass
kw = KW.copy()
kw['pyclass'] = self.getPyClass()
definition.append('%(ID3)sself.pyclass = %(pyclass)s' %kw)
self.writeArray(definition)
class ComplexTypeSimpleContentContainer(SimpleTypeContainer, AttributeMixIn):
'''Represents a ComplexType with simpleContent.
'''
type = DEF
logger = _GetLogger("ComplexTypeSimpleContentContainer")
def setUp(self, tp):
'''tp -- complexType/simpleContent/[Exention,Restriction]
'''
self._item = tp
assert tp.isComplex() is True and tp.content.isSimple() is True,\
'expecting complexType/simpleContent not: %s' %tp.content.getItemTrace()
simple = tp.content
dv = simple.content
assert dv.isExtension() is True or dv.isRestriction() is True,\
'expecting complexType/simpleContent/[Extension,Restriction] not: %s' \
%tp.content.getItemTrace()
self.name = tp.getAttribute('name')
self.ns = tp.getTargetNamespace()
# TODO: Why is this being set?
self.content.attributeContent = dv.getAttributeContent()
base = dv.getAttribute('base')
if base is not None:
self.sKlass = BTI.get_typeclass( base[1], base[0] )
if not self.sKlass:
self.sKlass,self.sKlassNS = base[1], base[0]
self.attrComponents = self._setAttributes(
self.content.attributeContent
)
return
raise Wsdl2PythonError,\
'simple content derivation bad base attribute: ' %tp.getItemTrace()
def _setContent(self):
# TODO: Add derivation logic to constructors.
if type(self.sKlass) in (types.ClassType, type):
definition = [
'%sclass %s(%s, TypeDefinition):' \
% (ID1, self.getClassName(), self.sKlass),
'%s# ComplexType/SimpleContent derivation of built-in type' %ID2,
'%s%s' % (ID2, self.schemaTag()),
'%s%s' % (ID2, self.typeTag()),
'%s%s' % (ID2, self.pnameConstructor()),
'%sif getattr(self, "attribute_typecode_dict", None) is None: %s = {}' %(
ID3, self.attribute_typecode),
]
for l in self.attrComponents:
definition.append('%s%s'%(ID3, l))
definition.append('%s%s.__init__(self, pname, **kw)' %(ID3, self.sKlass))
if self.getPythonType() is not None:
definition += self.getPyClassDefinition()
kw = KW.copy()
kw['pyclass'] = self.getPyClass()
definition.append('%(ID3)sself.pyclass = %(pyclass)s' %kw)
self.writeArray(definition)
return
definition = [
'%sclass %s(TypeDefinition):' % (ID1, self.getClassName()),
'%s# ComplexType/SimpleContent derivation of user-defined type' %ID2,
'%s%s' % (ID2, self.schemaTag()),
'%s%s' % (ID2, self.typeTag()),
'%s%s' % (ID2, self.pnameConstructor()),
'%s%s' % (ID3, self.nsuriLogic()),
'%s' % self.getBasesLogic(ID3),
'%sif getattr(self, "attribute_typecode_dict", None) is None: %s = {}' %(
ID3, self.attribute_typecode),
]
for l in self.attrComponents:
definition.append('%s%s'%(ID3, l))
definition.append('%s%s.%s.__init__(self, pname, **kw)' %(
ID3, NAD.getAlias(self.sKlassNS), type_class_name(self.sKlass)))
self.writeArray(definition)
def getPyClassDefinition(self):
definition = []
pt = self.getPythonType()
if pt is not None:
definition.append('%sclass %s(%s):' %(ID3,self.getPyClass(),pt))
if self.metaclass is not None:
definition.append('%s__metaclass__ = %s' %(ID4, self.metaclass))
definition.append('%stypecode = self' %ID4)
return definition
class UnionContainer(SimpleTypeContainer):
'''SimpleType Union
'''
type = DEF
logger = _GetLogger("UnionContainer")
def __init__(self):
SimpleTypeContainer.__init__(self)
self.memberTypes = None
def setUp(self, tp):
self._item = tp
if tp.content.isUnion() is False:
raise ContainerError, 'content must be a Union: %s' %tp.getItemTrace()
self.name = tp.getAttribute('name')
self.ns = tp.getTargetNamespace()
self.sKlass = 'ZSI.TC.Union'
self.memberTypes = tp.content.getAttribute('memberTypes')
def _setContent(self):
definition = [
'%sclass %s(%s, TypeDefinition):' \
% (ID1, self.getClassName(), self.sKlass),
'%smemberTypes = %s' % (ID2, self.memberTypes),
'%s%s' % (ID2, self.schemaTag()),
'%s%s' % (ID2, self.typeTag()),
'%s%s' % (ID2, self.pnameConstructor()),
'%s%s' % (ID3, self.pnameConstructor(self.sKlass)),
]
# TODO: Union pyclass is None
self.writeArray(definition)
class ListContainer(SimpleTypeContainer):
'''SimpleType List
'''
type = DEF
logger = _GetLogger("ListContainer")
def setUp(self, tp):
self._item = tp
if tp.content.isList() is False:
raise ContainerError, 'content must be a List: %s' %tp.getItemTrace()
self.name = tp.getAttribute('name')
self.ns = tp.getTargetNamespace()
self.sKlass = 'ZSI.TC.List'
self.itemType = tp.content.getAttribute('itemType')
def _setContent(self):
definition = [
'%sclass %s(%s, TypeDefinition):' \
% (ID1, self.getClassName(), self.sKlass),
'%sitemType = %s' % (ID2, self.itemType),
'%s%s' % (ID2, self.schemaTag()),
'%s%s' % (ID2, self.typeTag()),
'%s%s' % (ID2, self.pnameConstructor()),
'%s%s' % (ID3, self.pnameConstructor(self.sKlass)),
]
self.writeArray(definition)
|