iris-pex-embedded-python 2.3.27b2__py3-none-any.whl → 3.2.1b3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of iris-pex-embedded-python might be problematic. Click here for more details.
- grongier/cls/Grongier/PEX/BusinessOperation.cls +1 -28
- grongier/cls/Grongier/PEX/BusinessProcess.cls +1 -100
- grongier/cls/Grongier/PEX/BusinessService.cls +1 -28
- grongier/cls/Grongier/PEX/Common.cls +1 -194
- grongier/cls/Grongier/PEX/Director.cls +1 -48
- grongier/cls/Grongier/PEX/Duplex/Operation.cls +1 -26
- grongier/cls/Grongier/PEX/Duplex/Process.cls +1 -217
- grongier/cls/Grongier/PEX/Duplex/Service.cls +1 -6
- grongier/cls/Grongier/PEX/InboundAdapter.cls +1 -15
- grongier/cls/Grongier/PEX/Message.cls +1 -116
- grongier/cls/Grongier/PEX/OutboundAdapter.cls +1 -29
- grongier/cls/Grongier/PEX/PickleMessage.cls +1 -46
- grongier/cls/Grongier/PEX/PrivateSession/Duplex.cls +1 -253
- grongier/cls/Grongier/PEX/PrivateSession/Message/Ack.cls +1 -19
- grongier/cls/Grongier/PEX/PrivateSession/Message/Poll.cls +1 -19
- grongier/cls/Grongier/PEX/PrivateSession/Message/Start.cls +1 -19
- grongier/cls/Grongier/PEX/PrivateSession/Message/Stop.cls +1 -35
- grongier/cls/Grongier/PEX/Test.cls +1 -53
- grongier/cls/Grongier/PEX/Utils.cls +1 -365
- grongier/cls/Grongier/Service/WSGI.cls +1 -307
- grongier/pex/__init__.py +11 -11
- grongier/pex/__main__.py +1 -1
- grongier/pex/_business_host.py +1 -511
- grongier/pex/_cli.py +2 -150
- grongier/pex/_common.py +1 -347
- grongier/pex/_director.py +1 -286
- grongier/pex/_utils.py +1 -369
- intersystems_iris/_ConnectionInformation.py +22 -20
- intersystems_iris/dbapi/_DBAPI.py +6 -1
- intersystems_iris/dbapi/_ResultSetRow.py +26 -15
- intersystems_iris/dbapi/preparser/_PreParser.py +4 -1
- iop/__init__.py +24 -0
- iop/__main__.py +4 -0
- iop/_business_host.py +675 -0
- iop/_business_operation.py +71 -0
- iop/_business_process.py +220 -0
- {grongier/pex → iop}/_business_service.py +2 -2
- iop/_cli.py +196 -0
- iop/_common.py +352 -0
- iop/_director.py +301 -0
- {grongier/pex → iop}/_inbound_adapter.py +1 -1
- iop/_log_manager.py +81 -0
- {grongier/pex → iop}/_message.py +1 -1
- {grongier/pex → iop}/_outbound_adapter.py +1 -1
- {grongier/pex → iop}/_private_session_duplex.py +3 -2
- {grongier/pex → iop}/_private_session_process.py +2 -2
- iop/_utils.py +458 -0
- iop/cls/IOP/BusinessOperation.cls +35 -0
- iop/cls/IOP/BusinessProcess.cls +124 -0
- iop/cls/IOP/BusinessService.cls +35 -0
- iop/cls/IOP/Common.cls +344 -0
- iop/cls/IOP/Director.cls +62 -0
- iop/cls/IOP/Duplex/Operation.cls +29 -0
- iop/cls/IOP/Duplex/Process.cls +229 -0
- iop/cls/IOP/Duplex/Service.cls +9 -0
- iop/cls/IOP/InboundAdapter.cls +22 -0
- iop/cls/IOP/Message/JSONSchema.cls +125 -0
- iop/cls/IOP/Message.cls +729 -0
- iop/cls/IOP/OutboundAdapter.cls +36 -0
- iop/cls/IOP/PickleMessage.cls +58 -0
- iop/cls/IOP/PrivateSession/Duplex.cls +260 -0
- iop/cls/IOP/PrivateSession/Message/Ack.cls +32 -0
- iop/cls/IOP/PrivateSession/Message/Poll.cls +32 -0
- iop/cls/IOP/PrivateSession/Message/Start.cls +32 -0
- iop/cls/IOP/PrivateSession/Message/Stop.cls +48 -0
- iop/cls/IOP/Service/WSGI.cls +310 -0
- iop/cls/IOP/Test.cls +85 -0
- iop/cls/IOP/Utils.cls +378 -0
- iop/wsgi/handlers.py +104 -0
- iris_pex_embedded_python-3.2.1b3.dist-info/METADATA +90 -0
- iris_pex_embedded_python-3.2.1b3.dist-info/RECORD +139 -0
- {iris_pex_embedded_python-2.3.27b2.dist-info → iris_pex_embedded_python-3.2.1b3.dist-info}/WHEEL +1 -1
- iris_pex_embedded_python-3.2.1b3.dist-info/entry_points.txt +2 -0
- {iris_pex_embedded_python-2.3.27b2.dist-info → iris_pex_embedded_python-3.2.1b3.dist-info}/top_level.txt +1 -1
- grongier/pex/_business_operation.py +0 -70
- grongier/pex/_business_process.py +0 -215
- iris/__init__.py +0 -60
- iris/__init__.pyi +0 -236
- iris/iris_ipm.py +0 -40
- iris/iris_ipm.pyi +0 -17
- iris_pex_embedded_python-2.3.27b2.dist-info/METADATA +0 -1384
- iris_pex_embedded_python-2.3.27b2.dist-info/RECORD +0 -113
- iris_pex_embedded_python-2.3.27b2.dist-info/entry_points.txt +0 -2
- {grongier/pex → iop}/_pickle_message.py +0 -0
- {iris_pex_embedded_python-2.3.27b2.dist-info → iris_pex_embedded_python-3.2.1b3.dist-info}/LICENSE +0 -0
|
@@ -1,61 +1,9 @@
|
|
|
1
1
|
/// Description
|
|
2
|
-
Class Grongier.PEX.Test Extends
|
|
2
|
+
Class Grongier.PEX.Test Extends IOP.Test
|
|
3
3
|
{
|
|
4
4
|
|
|
5
|
-
/// Register
|
|
6
|
-
ClassMethod Register() As %Status
|
|
7
|
-
{
|
|
8
|
-
Set sc = $$$OK
|
|
9
|
-
zw ##class(Grongier.PEX.Utils).RegisterComponent("MyBusinessOperationWithAdapter","MyBusinessOperationWithAdapter","/irisdev/app/src/python/demo/",1,"PEX.MyBusinessOperationWithAdapter")
|
|
10
|
-
#dim array as %ArrayOfObjects
|
|
11
|
-
Return sc
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
ClassMethod TestBO() As %Status
|
|
15
|
-
{
|
|
16
|
-
try {
|
|
17
|
-
Set sc = $$$OK
|
|
18
|
-
set mybo = ##class(Grongier.PEX.BusinessOperation).%New("mybo")
|
|
19
|
-
set mybo.%classpaths = "/irisdev/app/src/python/demo"
|
|
20
|
-
set mybo.%module = "MyBusinessOperationWithAdapter"
|
|
21
|
-
set mybo.%classname = "MyBusinessOperationWithAdapter"
|
|
22
|
-
$$$ThrowOnError(mybo.OnInit())
|
|
23
|
-
set request = ##class(Ens.StringRequest).%New("hello")
|
|
24
|
-
set request = ##class(EnsLib.PEX.Message).%New()
|
|
25
|
-
set request.%classname = "MyRequest.MyRequest"
|
|
26
|
-
set dyna = {"requestString":"hello!"}
|
|
27
|
-
set request.%jsonObject = dyna
|
|
28
|
-
Try {
|
|
29
|
-
$$$ThrowOnError(mybo.OnMessage(request,.response))
|
|
30
|
-
zw response
|
|
31
|
-
} catch importEx {
|
|
32
|
-
WRITE $System.Status.GetOneStatusText(importEx.AsStatus(),1),!
|
|
33
|
-
}
|
|
34
|
-
} catch ex {
|
|
35
|
-
WRITE $System.Status.GetOneStatusText(ex.AsStatus(),1),!
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
Return sc
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
/// List
|
|
42
|
-
ClassMethod PythonList() [ Language = python ]
|
|
43
|
-
{
|
|
44
|
-
return [ 1, 3 ]
|
|
45
|
-
}
|
|
46
|
-
|
|
47
5
|
Storage Default
|
|
48
6
|
{
|
|
49
|
-
<Data name="TestDefaultData">
|
|
50
|
-
<Value name="1">
|
|
51
|
-
<Value>%%CLASSNAME</Value>
|
|
52
|
-
</Value>
|
|
53
|
-
</Data>
|
|
54
|
-
<DataLocation>^Grongier.PEX.TestD</DataLocation>
|
|
55
|
-
<DefaultData>TestDefaultData</DefaultData>
|
|
56
|
-
<IdLocation>^Grongier.PEX.TestD</IdLocation>
|
|
57
|
-
<IndexLocation>^Grongier.PEX.TestI</IndexLocation>
|
|
58
|
-
<StreamLocation>^Grongier.PEX.TestS</StreamLocation>
|
|
59
7
|
<Type>%Storage.Persistent</Type>
|
|
60
8
|
}
|
|
61
9
|
|
|
@@ -4,371 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
Include Ensemble
|
|
6
6
|
|
|
7
|
-
Class Grongier.PEX.Utils Extends
|
|
7
|
+
Class Grongier.PEX.Utils Extends IOP.Utils
|
|
8
8
|
{
|
|
9
9
|
|
|
10
|
-
ClassMethod dispatchRegisterComponent(
|
|
11
|
-
pModule As %String,
|
|
12
|
-
pRemoteClassname As %String,
|
|
13
|
-
pCLASSPATHS As %String = "",
|
|
14
|
-
pOverwrite As %Boolean = 0,
|
|
15
|
-
pProxyClassname As %String = "") As %Status
|
|
16
|
-
{
|
|
17
|
-
set tSc = $$$OK
|
|
18
|
-
$$$ThrowOnError(##class(Grongier.PEX.Utils).RegisterComponent(pModule, pRemoteClassname, pCLASSPATHS, pOverwrite , pProxyClassname))
|
|
19
|
-
return tSc
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/// "bo","Duplex","/irisdev/app/src/python/demo/duplex/",1,"Duplex.Duplex"
|
|
23
|
-
ClassMethod RegisterComponent(
|
|
24
|
-
pModule As %String,
|
|
25
|
-
pRemoteClassname As %String,
|
|
26
|
-
pCLASSPATHS As %String = "",
|
|
27
|
-
pOverwrite As %Boolean = 0,
|
|
28
|
-
pProxyClassname As %String = "") As %Status
|
|
29
|
-
{
|
|
30
|
-
#dim tSC As %Status = $$$OK
|
|
31
|
-
#dim ex As %Exception.AbstractException
|
|
32
|
-
#dim tLanguage,tExtraClasspaths,tDelimiter,tOnePath As %String = ""
|
|
33
|
-
#dim tClassDetails,tRemoteSettings As %String = ""
|
|
34
|
-
#dim tClasspaths As %ListOfDataTypes
|
|
35
|
-
|
|
36
|
-
Quit:(""=pRemoteClassname) $$$ERROR($$$EnsErrGeneral,"Remote Classname must be specified in order to register a Production EXtensions component")
|
|
37
|
-
Quit:(""=pModule) $$$ERROR($$$EnsErrGeneral,"Must specify the module of the remote code.")
|
|
38
|
-
|
|
39
|
-
Try {
|
|
40
|
-
|
|
41
|
-
$$$ThrowOnError(..GetRemoteClassInfo(pRemoteClassname,pModule,pCLASSPATHS,.tClassDetails,.tRemoteSettings))
|
|
42
|
-
|
|
43
|
-
Set tConnectionSettings("Classpaths") = pCLASSPATHS
|
|
44
|
-
Set tConnectionSettings("Module") = pModule
|
|
45
|
-
Set tConnectionSettings("Classname") = pRemoteClassname
|
|
46
|
-
Set:(""=pProxyClassname) pProxyClassname = "User."_pRemoteClassname
|
|
47
|
-
|
|
48
|
-
$$$ThrowOnError(..GenerateProxyClass(pProxyClassname,.tConnectionSettings,tClassDetails,tRemoteSettings,pOverwrite))
|
|
49
|
-
|
|
50
|
-
} Catch ex {
|
|
51
|
-
set msg = $System.Status.GetOneStatusText(ex.AsStatus(),1)
|
|
52
|
-
set tSC = $$$ERROR($$$EnsErrGeneral,msg)
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
Quit tSC
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
ClassMethod DeleteComponentProxy(pClassname As %String = "") As %Status
|
|
59
|
-
{
|
|
60
|
-
#dim tSC As %Status = $$$OK
|
|
61
|
-
#dim ex As %Exception.AbstractException
|
|
62
|
-
#dim tIsPEX As %Boolean = 0
|
|
63
|
-
#dim tClass As %Dictionary.CompiledClass
|
|
64
|
-
|
|
65
|
-
Quit:(""=pClassname) $$$ERROR($$$EnsErrGeneral,"Remote class name must be specified.")
|
|
66
|
-
|
|
67
|
-
Try {
|
|
68
|
-
|
|
69
|
-
If '##class(%Dictionary.ClassDefinition).%ExistsId(pClassname) {
|
|
70
|
-
Set tSC = $$$ERROR($$$EnsErrGeneral,$$$FormatText("No proxy class defined for remote class '%1'.",pClassname))
|
|
71
|
-
Quit
|
|
72
|
-
}
|
|
73
|
-
If $classmethod(pClassname,"%Extends","Grongier.PEX.Common") {
|
|
74
|
-
Set tClass = ##class(%Dictionary.CompiledClass).%OpenId(pClassname,,.tSC)
|
|
75
|
-
Quit:$$$ISERR(tSC)
|
|
76
|
-
If '$IsObject(tClass) {
|
|
77
|
-
Set tSC = $$$ERROR($$$EnsErrGeneral,$$$FormatText("Proxy class for remote class '%1' could not be opened.",pClassname))
|
|
78
|
-
Quit
|
|
79
|
-
}
|
|
80
|
-
Set tIsPEX = ("Grongier.PEX.Utils" = tClass.GeneratedBy)
|
|
81
|
-
}
|
|
82
|
-
If tIsPEX {
|
|
83
|
-
Set tSC = ##class(%Dictionary.ClassDefinition).%DeleteId(pClassname)
|
|
84
|
-
If $$$ISERR(tSC) {
|
|
85
|
-
Set tSC = $$$ERROR($$$EnsErrGeneral,$$$FormatText("Unable to delete proxy class for remote class '%1' : '%2'.",pClassname,$System.Status.GetErrorText(tSC)))
|
|
86
|
-
Quit
|
|
87
|
-
}
|
|
88
|
-
} Else {
|
|
89
|
-
Set tSC = $$$ERROR($$$EnsErrGeneral,$$$FormatText("Cannot delete class '%1' because it is not a PEX proxy class.",pClassname))
|
|
90
|
-
Quit
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
} Catch ex {
|
|
94
|
-
Set tSC = ex.AsStatus()
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
Quit tSC
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
// ..GetRemoteClassInfo(pRemoteClassname,pModule,pCLASSPATHS,.tClassDetails,.tRemoteSettings)
|
|
101
|
-
|
|
102
|
-
ClassMethod GetRemoteClassInfo(
|
|
103
|
-
pRemoteClassname As %String,
|
|
104
|
-
pModule As %String,
|
|
105
|
-
pClasspaths As %String,
|
|
106
|
-
ByRef pClassDetails,
|
|
107
|
-
ByRef pRemoteSettings) As %Status [ Internal, Private ]
|
|
108
|
-
{
|
|
109
|
-
#dim tSC As %Status = $$$OK
|
|
110
|
-
#dim ex As %Exception.AbstractException
|
|
111
|
-
#dim tGateway As %External.Gateway
|
|
112
|
-
#dim tGatewayProxy As %Net.Remote.Object
|
|
113
|
-
|
|
114
|
-
Try {
|
|
115
|
-
if pClasspaths '="" {
|
|
116
|
-
set sys = ##class(%SYS.Python).Import("sys")
|
|
117
|
-
set delimiter = $s($system.Version.GetOS()="Windows":";",1:":")
|
|
118
|
-
set extraClasspaths = $tr(pClasspaths,delimiter,"|")
|
|
119
|
-
for i=1:1:$l(extraClasspaths,"|") {
|
|
120
|
-
set onePath = $p(extraClasspaths,"|",i)
|
|
121
|
-
set onePath = ##class(%File).NormalizeDirectory(onePath)
|
|
122
|
-
if onePath?1"$$IRISHOME"1P.E set onePath = $e($system.Util.InstallDirectory(),1,*-1)_$e(onePath,11,*)
|
|
123
|
-
if onePath'="" do sys.path.append(onePath)
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
;
|
|
127
|
-
|
|
128
|
-
set importlib = ##class(%SYS.Python).Import("importlib")
|
|
129
|
-
set builtins = ##class(%SYS.Python).Import("builtins")
|
|
130
|
-
set module = importlib."import_module"(pModule)
|
|
131
|
-
set class = builtins.getattr(module, pRemoteClassname)
|
|
132
|
-
set tClass = class."__new__"(class)
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
If $IsObject(tClass) {
|
|
136
|
-
#; List of information about the class as a whole - $lb(SuperClass, Description, InfoURL, IconURL, Adapter)
|
|
137
|
-
Set pClassDetails = tClass."_get_info"()
|
|
138
|
-
#; List of information about the various properties of the class
|
|
139
|
-
#; List of lists of form $lb(propName,dataType,defaultVal,required,category,description)
|
|
140
|
-
Set pRemoteSettings = tClass."_get_properties"()
|
|
141
|
-
} Else {
|
|
142
|
-
Set tSC = $$$ERROR($$$EnsErrGeneral,$$$FormatText("Error opening gateway proxy for class '%1'"),pRemoteClassname)
|
|
143
|
-
}
|
|
144
|
-
} Catch ex {
|
|
145
|
-
set msg = $System.Status.GetOneStatusText(ex.AsStatus(),1)
|
|
146
|
-
set tSC = $$$ERROR($$$EnsErrGeneral,msg)
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
Quit tSC
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
/// Set tConnectionSettings("Classpaths") = pCLASSPATHS
|
|
153
|
-
/// Set tConnectionSettings("Module") = pModule
|
|
154
|
-
/// Set tConnectionSettings("Classname") = pRemoteClassname
|
|
155
|
-
/// Set:(""=pProxyClassname) pProxyClassname = pRemoteClassname
|
|
156
|
-
///
|
|
157
|
-
/// Set tSC = ..GenerateProxyClass(pProxyClassname,.tConnectionSettings,tClassDetails,tRemoteSettings,pOverwrite)
|
|
158
|
-
/// "bo","Duplex","/irisdev/app/src/python/demo/duplex/",1,"Duplex.Duplex"
|
|
159
|
-
ClassMethod GenerateProxyClass(
|
|
160
|
-
pClassname As %String,
|
|
161
|
-
ByRef pConnectionSettings,
|
|
162
|
-
pClassDetails As %String = "",
|
|
163
|
-
pRemoteSettings As %String = "",
|
|
164
|
-
pOverwrite As %Boolean = 0) As %Status [ Internal, Private ]
|
|
165
|
-
{
|
|
166
|
-
#dim tSC As %Status = $$$OK
|
|
167
|
-
#dim ex As %Exception.AbstractException
|
|
168
|
-
|
|
169
|
-
Quit:(""=pClassname) $$$ERROR($$$EnsErrGeneral,"Class name must be specified in order to generate a proxy class for this Production EXtensions component")
|
|
170
|
-
|
|
171
|
-
Try {
|
|
172
|
-
|
|
173
|
-
If ##class(%Dictionary.ClassDefinition).%ExistsId(pClassname) {
|
|
174
|
-
If 'pOverwrite {
|
|
175
|
-
Set tSC = $$$ERROR($$$EnsErrGeneral,$$$FormatText("Proxy class '%1' already exists.",pClassname))
|
|
176
|
-
Quit
|
|
177
|
-
} Else {
|
|
178
|
-
#dim tIsPEX As %Boolean = 0
|
|
179
|
-
If $classmethod(pClassname,"%Extends","Grongier.PEX.Common") {
|
|
180
|
-
#dim tClass As %Dictionary.CompiledClass = ##class(%Dictionary.CompiledClass).%OpenId(pClassname)
|
|
181
|
-
If '$IsObject(tClass) {
|
|
182
|
-
Set tSC = $$$ERROR($$$EnsErrGeneral,"Class not found")
|
|
183
|
-
Quit
|
|
184
|
-
}
|
|
185
|
-
Set tIsPEX = ("Grongier.PEX.Utils" = tClass.GeneratedBy)
|
|
186
|
-
}
|
|
187
|
-
If tIsPEX {
|
|
188
|
-
Set tSC = ##class(%Dictionary.ClassDefinition).%DeleteId(pClassname)
|
|
189
|
-
If $$$ISERR(tSC) {
|
|
190
|
-
Set tSC = $$$ERROR($$$EnsErrGeneral,$$$FormatText("Unable to delete existing proxy class '%1' : '%2'.",pClassname,$System.Status.GetErrorText(tSC)))
|
|
191
|
-
Quit
|
|
192
|
-
}
|
|
193
|
-
} Else {
|
|
194
|
-
Set tSC = $$$ERROR($$$EnsErrGeneral,$$$FormatText("Cannot overwrite class '%1' because it is not a PEX proxy class.",pClassname))
|
|
195
|
-
Quit
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
#; create subclass of the ObjectScript Business Host
|
|
201
|
-
#dim tCOSClass As %Dictionary.ClassDefinition
|
|
202
|
-
Set tCOSClass = ##class(%Dictionary.ClassDefinition).%New()
|
|
203
|
-
Set tCOSClass.Name = pClassname
|
|
204
|
-
|
|
205
|
-
#dim tSuperClass As %String = pClassDetails."__getitem__"(0)
|
|
206
|
-
If (""=tSuperClass) {
|
|
207
|
-
Set tSC = $$$ERROR($$$EnsErrGeneral,"No PEX superclass found.")
|
|
208
|
-
Quit
|
|
209
|
-
}
|
|
210
|
-
If '$Case($P(tSuperClass,".",*),"DuplexProcess":1,"DuplexService":1,"DuplexOperation":1,"InboundAdapter":1,"OutboundAdapter":1,"BusinessService":1,"BusinessProcess":1,"BusinessOperation":1,:0) {
|
|
211
|
-
Set tSC = $$$ERROR($$$EnsErrGeneral,"Invalid superclass")
|
|
212
|
-
Quit
|
|
213
|
-
}
|
|
214
|
-
Set tSuperClass = "Grongier.PEX."_$P(tSuperClass,".",*)
|
|
215
|
-
|
|
216
|
-
Set tCOSClass.Super = tSuperClass
|
|
217
|
-
Set tCOSClass.GeneratedBy = $CLASSNAME()
|
|
218
|
-
Set tCOSClass.ClassVersion = $$$CLASSDEFINITIONVERSION
|
|
219
|
-
#dim tDescription As %String = pClassDetails."__getitem__"(1)
|
|
220
|
-
If (""'=tDescription) {
|
|
221
|
-
Set tCOSClass.Description = $Replace(tDescription,$C(10),$C(13,10))
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
#; Do not display any of the connection settings
|
|
225
|
-
#dim tSETTINGSParamValue As %String = "%classname:Python $type,%module:Python $type,%settings:Python $type,%classpaths:Python $type"
|
|
226
|
-
|
|
227
|
-
#dim tPropClassname As %Dictionary.PropertyDefinition = ##class(%Dictionary.PropertyDefinition).%New()
|
|
228
|
-
Set tPropClassname.Name = "%classname"
|
|
229
|
-
Set tPropClassname.Type = "%String"
|
|
230
|
-
Set tPropClassname.InitialExpression = $$$quote(pConnectionSettings("Classname"))
|
|
231
|
-
Set tPropClassname.Internal = 1
|
|
232
|
-
Set tSC = tCOSClass.Properties.Insert(tPropClassname)
|
|
233
|
-
Quit:$$$ISERR(tSC)
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
#dim tPropClasspaths As %Dictionary.PropertyDefinition = ##class(%Dictionary.PropertyDefinition).%New()
|
|
237
|
-
Set tPropClasspaths.Name = "%classpaths"
|
|
238
|
-
Set tPropClasspaths.Type = "%String"
|
|
239
|
-
Set tSC = tPropClasspaths.Parameters.SetAt("","MAXLEN")
|
|
240
|
-
Quit:$$$ISERR(tSC)
|
|
241
|
-
Set tPropClasspaths.InitialExpression = $$$quote(pConnectionSettings("Classpaths"))
|
|
242
|
-
Set tPropClasspaths.Description = "One or more Classpaths (separated by '|' character) needed in addition to the ones configured in the Remote Gateway"
|
|
243
|
-
Set tSC = tCOSClass.Properties.Insert(tPropClasspaths)
|
|
244
|
-
Quit:$$$ISERR(tSC)
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
#dim tPropLanguage As %Dictionary.PropertyDefinition = ##class(%Dictionary.PropertyDefinition).%New()
|
|
248
|
-
Set tPropLanguage.Name = "%module"
|
|
249
|
-
Set tPropLanguage.Type = "%String"
|
|
250
|
-
Set tPropLanguage.Internal = 1
|
|
251
|
-
Set tPropLanguage.InitialExpression = $$$quote(pConnectionSettings("Module"))
|
|
252
|
-
Set tSC = tCOSClass.Properties.Insert(tPropLanguage)
|
|
253
|
-
Quit:$$$ISERR(tSC)
|
|
254
|
-
|
|
255
|
-
If $Case(tSuperClass,"Grongier.PEX.BusinessService":1,"Grongier.PEX.BusinessOperation":1,"Grongier.PEX.DuplexService":1,"Grongier.PEX.DuplexOperation":1,:0) {
|
|
256
|
-
set builtins = ##class(%SYS.Python).Import("builtins")
|
|
257
|
-
If (builtins.len(pClassDetails)>4) { //Adaptor
|
|
258
|
-
|
|
259
|
-
#dim tAdapterClass = pClassDetails."__getitem__"(4)
|
|
260
|
-
#; May want to issue a warning in the UI if the Adapter class does not exist
|
|
261
|
-
#; but we don't check here because it does compile and may just be that the user is registering the Service/Operation before the Adapter
|
|
262
|
-
#dim tADAPTERParam As %Dictionary.ParameterDefinition = ##class(%Dictionary.ParameterDefinition).%New()
|
|
263
|
-
Set tADAPTERParam.Name = "ADAPTER"
|
|
264
|
-
Set tADAPTERParam.Default = tAdapterClass
|
|
265
|
-
Set tSC = tCOSClass.Parameters.Insert(tADAPTERParam)
|
|
266
|
-
Quit:$$$ISERR(tSC)
|
|
267
|
-
}
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
set type = ""
|
|
271
|
-
set:($Case(tSuperClass,"Grongier.PEX.InboundAdapter":1,"Grongier.PEX.OutboundAdapter":1,:0)) type = "Adapter"
|
|
272
|
-
set tSETTINGSParamValue = $REPLACE(tSETTINGSParamValue,"$type",type)
|
|
273
|
-
|
|
274
|
-
#dim tSETTINGSParam As %Dictionary.ParameterDefinition = ##class(%Dictionary.ParameterDefinition).%New()
|
|
275
|
-
Set tSETTINGSParam.Name = "SETTINGS"
|
|
276
|
-
Set tSETTINGSParam.Default = tSETTINGSParamValue
|
|
277
|
-
Set tSC = tCOSClass.Parameters.Insert(tSETTINGSParam)
|
|
278
|
-
Quit:$$$ISERR(tSC)
|
|
279
|
-
|
|
280
|
-
Set tSC = tCOSClass.%Save()
|
|
281
|
-
Quit:$$$ISERR(tSC)
|
|
282
|
-
|
|
283
|
-
Set tSC = $System.OBJ.Compile(pClassname,"-d")
|
|
284
|
-
|
|
285
|
-
} Catch ex {
|
|
286
|
-
Set tSC = ex.AsStatus()
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
Quit tSC
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
ClassMethod CreateProduction(
|
|
293
|
-
package As %String = "test",
|
|
294
|
-
name As %String = "AutoCreatedProduction",
|
|
295
|
-
xdata As %CharacterStream) As %Status
|
|
296
|
-
{
|
|
297
|
-
#Dim produtionClassName As %String = package _ "." _ name
|
|
298
|
-
If ('$ZName(produtionClassName, 4))
|
|
299
|
-
{
|
|
300
|
-
Return $System.Status.Error(5001, "Invalid Production package or name.")
|
|
301
|
-
}
|
|
302
|
-
#Dim productionDefinition As %Dictionary.ClassDefinition
|
|
303
|
-
// Check if the production already exists
|
|
304
|
-
If (##class(%Dictionary.ClassDefinition).%ExistsId(produtionClassName))
|
|
305
|
-
{
|
|
306
|
-
// Open the production
|
|
307
|
-
set productionDefinition = ##class(%Dictionary.ClassDefinition).%OpenId(produtionClassName)
|
|
308
|
-
}
|
|
309
|
-
Else
|
|
310
|
-
{
|
|
311
|
-
// Create the production definition
|
|
312
|
-
set productionDefinition = ##Class(%Dictionary.ClassDefinition).%New()
|
|
313
|
-
}
|
|
314
|
-
//
|
|
315
|
-
Set productionDefinition.Name = produtionClassName
|
|
316
|
-
Set productionDefinition.Super = "Ens.Production"
|
|
317
|
-
Set productionDefinition.ClassVersion = 25
|
|
318
|
-
//
|
|
319
|
-
// Check if the XData Definition already exists
|
|
320
|
-
If (##Class(%Dictionary.XDataDefinition).%ExistsId(produtionClassName_"||ProductionDefinition"))
|
|
321
|
-
{
|
|
322
|
-
// delete the XData Definition
|
|
323
|
-
$$$ThrowOnError(##Class(%Dictionary.XDataDefinition).%DeleteId(produtionClassName_"||ProductionDefinition"))
|
|
324
|
-
}
|
|
325
|
-
#Dim xdataDefinition As %Dictionary.XDataDefinition = ##Class(%Dictionary.XDataDefinition).%New()
|
|
326
|
-
//
|
|
327
|
-
Set xdataDefinition.Name = "ProductionDefinition"
|
|
328
|
-
//
|
|
329
|
-
Do xdataDefinition.Data.CopyFrom(xdata)
|
|
330
|
-
//
|
|
331
|
-
// Insert XData Definition into Production Definition
|
|
332
|
-
Do productionDefinition.XDatas.Insert(xdataDefinition)
|
|
333
|
-
//
|
|
334
|
-
#Dim statusCode As %Status = productionDefinition.%Save()
|
|
335
|
-
//
|
|
336
|
-
If ($System.Status.IsError(statusCode))
|
|
337
|
-
{
|
|
338
|
-
Return statusCode
|
|
339
|
-
}
|
|
340
|
-
// Compile the production class
|
|
341
|
-
return $System.OBJ.Compile(produtionClassName,"k-d")
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
/// Export a production to an XML string
|
|
345
|
-
ClassMethod ExportProduction(pProductionName As %String) As %String
|
|
346
|
-
{
|
|
347
|
-
Set sc = $$$OK
|
|
348
|
-
set xdata = ""
|
|
349
|
-
// Check if the XData Definition exists
|
|
350
|
-
If (##Class(%Dictionary.XDataDefinition).%ExistsId(pProductionName_"||ProductionDefinition"))
|
|
351
|
-
{
|
|
352
|
-
// Open the XData Definition
|
|
353
|
-
Set xdataDefinition = ##Class(%Dictionary.XDataDefinition).%OpenId(pProductionName_"||ProductionDefinition")
|
|
354
|
-
Set xdata = xdataDefinition.Data
|
|
355
|
-
}
|
|
356
|
-
Else
|
|
357
|
-
{
|
|
358
|
-
$$$ThrowOnError($System.Status.Error(5001, "Production does not exist."))
|
|
359
|
-
}
|
|
360
|
-
Return xdata
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
ClassMethod dispatchTestComponent(
|
|
364
|
-
pTargetName As %String,
|
|
365
|
-
pInput As Ens.Request) As Ens.Response
|
|
366
|
-
{
|
|
367
|
-
#dim tService as EnsLib.Testing.Service
|
|
368
|
-
set tOutput = ""
|
|
369
|
-
$$$ThrowOnError(##class(Ens.Director).CreateBusinessService("EnsLib.Testing.Service", .tService))
|
|
370
|
-
$$$ThrowOnError(tService.SendTestRequest(pTargetName, pInput, .tOutput, .sessionID , 1))
|
|
371
|
-
Quit tOutput
|
|
372
|
-
}
|
|
373
|
-
|
|
374
10
|
}
|