-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathWebTerminal-v4.0.0-alpha.73.xml
1884 lines (1702 loc) · 312 KB
/
WebTerminal-v4.0.0-alpha.73.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<Export generator="Cache" version="25" zv="Cache for Windows (x86-64) 2016.2 (Build 636U)" ts="2016-09-18 17:08:25">
<Class name="WebTerminal.Analytics">
<Description>
This class includes methods which collect WebTerminal's analytics such as error and installation reports.</Description>
<TimeChanged>64156,2938.359142</TimeChanged>
<TimeCreated>64154,83594.957495</TimeCreated>
<Method name="ReportInstallStatus">
<Description>
This method sends a report about installation status, including error message if any errors happened.</Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>status:%Status=1,type:%String="Install"</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
set req = ##class(%Net.HttpRequest).%New()
set req.Server = "www.google-analytics.com"
do req.EntityBody.Write("v=1&tid=UA-83005064-2&cid="_##class(%SYS.System).InstanceGUID()
_"&ds=web&an=WebTerminal&av="_##class(WebTerminal.Installer).#VERSION
_"&t=event&aiid="_$ZCONVERT($zv, "O", "URL")_"&ec="_$ZCONVERT(type, "O", "URL")_"&ea="
_$case($$$ISOK(status), 1: "Success", : "Failure")_"&el="
_$ZCONVERT($System.Status.GetErrorText(status), "O", "URL"))
return req.Post("/collect")
]]></Implementation>
</Method>
</Class>
<Class name="WebTerminal.Autocomplete">
<Super>Common</Super>
<TimeChanged>64158,30936.478852</TimeChanged>
<TimeCreated>63906,49098.662696</TimeCreated>
<Method name="GetGlobals">
<Description>
Returns a comma-delimited string of globals names in the namespace, which begin from "beginning".</Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>namespace:%String="%SYS",beginning:%String=""</FormalSpec>
<ReturnType>%String</ReturnType>
<Implementation><![CDATA[
set result = ""
set pattern = beginning _ "*"
new $Namespace
set $Namespace = namespace
set rset = ##class(%ResultSet).%New("%SYS.GlobalQuery:NameSpaceList")
do rset.Execute($Namespace, pattern, 0)
while (rset.Next()) {
set result = result _ $case(result = "", 1:"", :",") _ rset.GetData(1)
}
return result
]]></Implementation>
</Method>
<Method name="GetClass">
<Description>
Returns a comma-delimited string of class names in the namespace, which begin from "beginning".</Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>namespace:%String="%SYS",beginning:%String=""</FormalSpec>
<ReturnType>%String</ReturnType>
<Implementation><![CDATA[
new $Namespace
set $Namespace = namespace
set pattern = $REPLACE(beginning, "%", "!%") _ "%"
&sql(select LIST(ID) into :ids from %Dictionary.CompiledClass where ID like :pattern ESCAPE '!' and deployed <> 2)
return ids
]]></Implementation>
</Method>
<Method name="GetPublicClassMembers">
<Description>
Returns a comma-delimited string of public class members (accessible through ##class() construction) in the class of namespace.</Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>namespace:%String="%SYS",className:%String="",beginning:%String=""</FormalSpec>
<ReturnType>%String</ReturnType>
<Implementation><![CDATA[
new $Namespace
set $Namespace = namespace
set pattern = $REPLACE(beginning, "%", "!%") _ "%"
&sql(select LIST(Name) into :names from %Dictionary.CompiledMethod WHERE parent=:className AND ClassMethod=1 AND Name like :pattern ESCAPE '!')
return names
]]></Implementation>
</Method>
<Method name="GetClassMembers">
<Description>
Returns a comma-delimited string of class members in the class of namespace.</Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>namespace:%String="%SYS",className:%String="",beginning:%String="",methodsOnly=""</FormalSpec>
<ReturnType>%String</ReturnType>
<Implementation><![CDATA[
new $Namespace
set $Namespace = namespace
if $EXTRACT(beginning, 1) = "#" {
set ps = ..GetParameters(namespace, className, $EXTRACT(beginning, 2, $LENGTH(beginning)))
return:(ps = "") ps
return "#"_$REPLACE(ps, ",", ",#")
}
set pattern = $REPLACE(beginning, "%", "!%") _ "%"
set props = ""
&sql(select LIST(Name) into :methods from %Dictionary.CompiledMethod WHERE parent=:className AND Private = 0 AND Name like :pattern ESCAPE '!')
if (methodsOnly = "") {
&sql(select LIST(Name) into :props from %Dictionary.CompiledProperty WHERE parent=:className AND Name like :pattern ESCAPE '!')
}
return $case((methods '= "") && (props '= ""), 1: methods _ "," _ props, : methods _ props)
]]></Implementation>
</Method>
<Method name="GetParameters">
<Description>
Returns a comma-delimited string of class members in the class of namespace.</Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>namespace:%String="%SYS",className:%String="",beginning:%String=""</FormalSpec>
<ReturnType>%String</ReturnType>
<Implementation><![CDATA[
new $Namespace
set $Namespace = namespace
set pattern = $REPLACE(beginning, "%", "!%") _ "%"
&sql(select LIST(Name) into :names from %Dictionary.CompiledParameter WHERE parent=:className AND Name like :pattern ESCAPE '!')
return names
]]></Implementation>
</Method>
<Method name="GetRoutines">
<Description>
Returns a comma-delimited string of routine names in the namespace, which begin from "beginning".</Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>namespace:%String="%SYS",beginning:%String=""</FormalSpec>
<ReturnType>%String</ReturnType>
<Implementation><![CDATA[
set result = ""
set pattern = beginning _ "*.*"
new $Namespace
set $Namespace = namespace
set rset = ##class(%ResultSet).%New("%Library.Routine:RoutineList")
do rset.Execute(pattern, , , $Namespace)
while (rset.Next()) {
set result = result _ $case(result = "", 1:"", :",") _ $PIECE(rset.GetData(1), ".", 1, *-1)
}
return result
]]></Implementation>
</Method>
</Class>
<Class name="WebTerminal.Common">
<IncludeCode>%sySystem</IncludeCode>
<TimeChanged>64158,30936.470692</TimeChanged>
<TimeCreated>63906,39668.673891</TimeCreated>
<Parameter name="ChunkSize">
<Description>
Interprocess communication cannot handle big messages at once, so they need to be split.</Description>
<Default>45</Default>
</Parameter>
<Method name="SendChunk">
<Description>
Send the chunk of data to another process. The process need to receive the chunk with the
appropriate function ReceiveChunk. Consider event length less than 44 characters long.</Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>pid:%Numeric,flag:%String,data:%String=""</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
set pos = 1
set len = $LENGTH(data) + 1 // send the last empty message if the data size = ChunkSize
for {
try {
set st = $system.Event.Signal(
pid,
$LB(flag, $EXTRACT(data, pos, pos + ..#ChunkSize - 1))
)
} catch (e) { return $$$NOTOK }
if (st '= 1) { return $$$NOTOK }
set pos = pos + ..#ChunkSize
if (pos > len) { quit }
}
return $$$OK
]]></Implementation>
</Method>
<Method name="ReceiveChunk">
<Description>
Receives the chunk of data from another process. Returns the $LISTBUILD string which contains
flag at the first position and string at the second. This method also terminates the process
if the parent process is gone.</Description>
<ClassMethod>1</ClassMethod>
<ReturnType>%String</ReturnType>
<Implementation><![CDATA[
set flag = ""
set str = ""
for {
set message = $system.Event.WaitMsg("", 1)
set status = $LISTGET(message, 1)
if (status <= 0) {
do:'$data(^$Job($ZPARENT)) $system.Process.Terminate($JOB, 0)
continue
}
set data = $LISTGET(message, 2)
set flag = $LISTGET(data, 1)
set m = $LISTGET(data, 2)
set str = str _ m
quit:($LENGTH(m) '= ..#ChunkSize)
}
return $LISTBUILD(flag, str)
]]></Implementation>
</Method>
<Method name="GetJSONString">
<Description><![CDATA[
Returns the contents of the proxy object to the current device in JSON format.<br/>
This method is called when a proxy object is used in conjunction with
the <class>%ZEN.Auxiliary.jsonProvider</class> component.<br/>
<var>format</var> is a flags string to control output formatting options.<br/>
The following character option codes are supported:<br/>
1-9 : indent with this number of spaces (4 is the default with the 'i' format specifier)<br/>
a - output null arrays/objects<br/>
b - line break before opening { of objects<br/>
c - output the Caché-specific "_class" and "_id" properties (if a child property is an instance of a concrete object class)<br/>
e - output empty object properties<br/>
i - indent with 4 spaces unless 't' or 1-9<br/>
l - output empty lists<br/>
n - newline (lf)<br/>
o - output empty arrays/objects<br/>
q - output numeric values unquoted even when they come from a non-numeric property<br/>
s - use strict JSON output - <strong>NOTE:</strong> special care should be taken when sending data to a browser, as using this flag
may expose you to cross site scripting (XSS) vulnerabilities if the data is sent inside <code><script></code> tags. Zen uses
this technique extensively, so this flag should <strong>NOT</strong> be specified for jsonProviders in Zen pages.<br/>
t - indent with tab character<br/>
u - output pre-converted to UTF-8 instead of in native internal format<br/>
w - Windows-style cr/lf newline<br/>]]></Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>obj:%ZEN.proxyObject,format:%String="aeos"</FormalSpec>
<ProcedureBlock>0</ProcedureBlock>
<ReturnType>%String</ReturnType>
<Implementation><![CDATA[
set tOldIORedirected = ##class(%Device).ReDirectIO()
set tOldMnemonic = ##class(%Device).GetMnemonicRoutine()
set tOldIO = $io
try {
set str = ""
use $io::("^" _ $ZNAME)
do ##class(%Device).ReDirectIO(1)
do ##class(%ZEN.Auxiliary.jsonProvider).%ObjectToJSON(obj,,,format)
} catch ex {
set str = ""
}
if (tOldMnemonic '= "") {
use tOldIO::("^" _ tOldMnemonic)
} else {
use tOldIO
}
do ##class(%Device).ReDirectIO(tOldIORedirected)
return str
rchr(c)
quit
rstr(sz,to)
quit
wchr(s)
do output($char(s))
quit
wff()
do output($char(12))
quit
wnl()
do output($char(13,10))
quit
wstr(s)
do output(s)
quit
wtab(s)
do output($char(9))
quit
output(s)
set str = str _ s
quit
]]></Implementation>
</Method>
<Parameter name="AuthorizationTimeout">
<Description>
How long to wait for authorization key when connection established</Description>
<Default>5</Default>
</Parameter>
<Parameter name="ServerActionExecute">
<Type>%Char</Type>
<Default>EXEC</Default>
</Parameter>
<Parameter name="ServerActionExecuteSQL">
<Type>%Char</Type>
<Default>SQL</Default>
</Parameter>
<Parameter name="ServerActionGenerateAutocomplete">
<Type>%Char</Type>
<Default>AC</Default>
</Parameter>
<Parameter name="ServerActionTrace">
<Type>%Char</Type>
<Default>TRACE</Default>
</Parameter>
<Parameter name="ServerActionStopTraceAll">
<Type>%Char</Type>
<Default>STOP_TRACE_ALL</Default>
</Parameter>
<Parameter name="ServerActionCheckTrace">
<Type>%Char</Type>
<Default>CT</Default>
</Parameter>
<Parameter name="ServerActionReset">
<Type>%Char</Type>
<Default>R</Default>
</Parameter>
<Parameter name="ServerActionEcho">
<Type>%Char</Type>
<Default>E</Default>
</Parameter>
<Parameter name="ServerActionCheckUpdate">
<Type>%Char</Type>
<Default>CU</Default>
</Parameter>
<Parameter name="ServerActionUpdate">
<Type>%Char</Type>
<Default>U</Default>
</Parameter>
<Parameter name="ServerActionRename">
<Type>%Char</Type>
<Default>RENAME</Default>
</Parameter>
<Parameter name="ClientPrompt">
<Type>%String</Type>
<Default>PROMPT#</Default>
</Parameter>
<Parameter name="ClientStartExec">
<Type>%String</Type>
<Default>EST#</Default>
</Parameter>
<Parameter name="ClientEndExec">
<Type>%String</Type>
<Default>END#</Default>
</Parameter>
<Parameter name="ClientOutputMessage">
<Type>%String</Type>
<Default>O#</Default>
</Parameter>
<Parameter name="ClientOutputLocalized">
<Type>%String</Type>
<Default>OL#</Default>
</Parameter>
<Parameter name="ClientChangeNamespace">
<Type>%String</Type>
<Default>NS#</Default>
</Parameter>
<Parameter name="ClientLoadAutocomplete">
<Type>%String</Type>
<Default>AC#</Default>
</Parameter>
<Parameter name="ClientReadString">
<Type>%String</Type>
<Default>R#</Default>
</Parameter>
<Parameter name="ClientReadChar">
<Type>%String</Type>
<Default>RC#</Default>
</Parameter>
<Parameter name="ClientAuthorizationStatus">
<Type>%String</Type>
<Default>AUTH#</Default>
</Parameter>
<Parameter name="ClientTrace">
<Type>%String</Type>
<Default>TRACE#</Default>
</Parameter>
<Parameter name="ClientStopTrace">
<Type>%String</Type>
<Default>STOP_TRACE#</Default>
</Parameter>
<Parameter name="ClientLoginInfo">
<Type>%String</Type>
<Default>I#</Default>
</Parameter>
<Parameter name="ClientClearScreen">
<Type>%String</Type>
<Default>CLRSCR#</Default>
</Parameter>
<Parameter name="ClientPromptUpdate">
<Type>%String</Type>
<Default>PROMPT_UPDATE#</Default>
</Parameter>
<Method name="SendData">
<FormalSpec>query:%String="",action:%String=""</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
write query,$c(9),action
quit $$$OK
]]></Implementation>
</Method>
</Class>
<Class name="WebTerminal.Core">
<Description>
Cache WEB Terminal version 4.0.0-alpha.73 core.
Class which handles client requests and executes code.</Description>
<ProcedureBlock>0</ProcedureBlock>
<Super>Common</Super>
<TimeChanged>64179,61705.128517</TimeChanged>
<TimeCreated>64075,84588.808108</TimeCreated>
<Method name="redirects">
<Description>
Write and read redirects used when redirecting i/o.
Each of the redirects signals to $ZPARENT process the $LISTBUILD string.
There is several actions defined in the WebTerminal.Engine handler class for received list.
"o" is for output. Resulting with $lb("o", {string})
"r" is for reading string. Resulting with $lb("r", {length}, {timeout})
"rc" is for reading char. Resulting with $lb("rc", {timeout})
"end" symbolizes that execution end is reached. Resulting with $lb("end", {error message})</Description>
<Private>1</Private>
<ProcedureBlock>0</ProcedureBlock>
<Implementation><![CDATA[
wstr(str)
quit ##class(WebTerminal.Common).SendChunk($ZPARENT, "o", str)
wchr(c)
quit ##class(WebTerminal.Common).SendChunk($ZPARENT, "o", $CHAR(c))
wnl
quit ##class(WebTerminal.Common).SendChunk($ZPARENT, "o", $CHAR(13, 10))
wff
quit ##class(WebTerminal.Common).SendChunk($ZPARENT, "o", $CHAR(12))
wtab(s)
quit ##class(WebTerminal.Common).SendChunk($ZPARENT, "o", $CHAR(27) _ "[" _ (s + 1) _ "G")
rstr(length = 32656, timeout = 86400)
do ##class(WebTerminal.Common).SendChunk($ZPARENT, "r", $lb(length, timeout))
quit $LISTGET(##class(WebTerminal.Common).ReceiveChunk(), 2)
rchr(timeout = 86400)
do ##class(WebTerminal.Common).SendChunk($ZPARENT, "c", timeout)
quit $LISTGET(##class(WebTerminal.Common).ReceiveChunk(), 2)
]]></Implementation>
</Method>
<Method name="VarList">
<ClassMethod>1</ClassMethod>
<ProcedureBlock>1</ProcedureBlock>
<ReturnType>%String</ReturnType>
<Implementation><![CDATA[
if $data(%)
new % set %=$select($test:$LISTBUILD("%"),1:"")
set:$data(%0) %=%_$LISTBUILD("%0")
new %0 set %0="%0"
for {
set %0=$ORDER(@%0)
quit:%0=""
set %=%_$LISTBUILD(%0, $IsObject(@%0), @%0)
}
return %
]]></Implementation>
</Method>
<Method name="WaitCommand">
<Description>
Retrieves a command text from the parent process.
Terminates itself if the parent process is dead.</Description>
<ClassMethod>1</ClassMethod>
<ProcedureBlock>1</ProcedureBlock>
<ReturnType>%String</ReturnType>
<Implementation><![CDATA[
for {
set data = ..ReceiveChunk()
set flag = $LISTGET(data, 1)
if (flag = "m") { // message
return $LISTGET(data, 2)
} elseif (flag = "a") { // autocomplete
do ##class(WebTerminal.Common).SendChunk($ZPARENT, "a", ..VarList())
} else { // end or unexpected
do $system.Process.Terminate($JOB, 2)
return ""
}
}
]]></Implementation>
</Method>
<Method name="Loop">
<Description>
Starts new terminal loop. Must be called with JOB command.</Description>
<ClassMethod>1</ClassMethod>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
if ($ZPARENT = 0) {
write "This method is for JOB use only."
return 0
}
open "terminal"::"^%X364"
use $io::"^" _ $ZName
kill // kill any temporary variables ProcedureBlock may have
for {
do ##class(%Device).ReDirectIO($$$YES)
set $ZERROR = ""
try { xecute ..WaitCommand() } catch {}
do ##class(%Device).ReDirectIO($$$NO)
do ..SendChunk($ZPARENT, "e", $LISTBUILD($NAMESPACE, $ZERROR))
}
quit $$$OK
]]></Implementation>
</Method>
</Class>
<Class name="WebTerminal.Engine">
<Description>
Cache WEB Terminal version 4.0.0-alpha.73 WebSocket client.
This class represents a connected client via WebSocket.</Description>
<Super>%CSP.WebSocket,Common,Trace,Autocomplete</Super>
<TimeChanged>64179,61705.144245</TimeChanged>
<TimeCreated>63891,56786.028532</TimeCreated>
<Parameter name="WSKEYEXPIRES">
<Description>
Connection key expires in 1 hour.</Description>
<Default>3600</Default>
</Parameter>
<Property name="CurrentNamespace">
<Type>%String</Type>
</Property>
<Property name="InitialZName">
<Type>%String</Type>
</Property>
<Property name="InitialZNamespace">
<Type>%String</Type>
</Property>
<Property name="corePID">
<Description>
The process ID of the terminal core.</Description>
<Type>%Numeric</Type>
<InitialExpression>0</InitialExpression>
</Property>
<Property name="childNamespace">
<Description>
The last known namespace in child process.</Description>
<Type>%String</Type>
</Property>
<Property name="echo">
<Description>
Output flag</Description>
<Type>%Boolean</Type>
<InitialExpression>1</InitialExpression>
</Property>
<Property name="handler">
<Description>
Output flag</Description>
<Type>%Boolean</Type>
<InitialExpression>0</InitialExpression>
<Private>1</Private>
</Property>
<Method name="GetMessage">
<FormalSpec>timeout:%Integer=86400</FormalSpec>
<ReturnType>%ZEN.proxyObject</ReturnType>
<Implementation><![CDATA[
#define err(%e, %s) if (%e '= $$$OK) { set obj = ##class(%ZEN.proxyObject).%New() set obj.error = %s return obj }
set data = ..Read(, .st, timeout)
$$$err(st, "%wsReadErr: "_$System.Status.GetErrorText(st))
set st = ##class(%ZEN.Auxiliary.jsonProvider).%ConvertJSONToObject(data, , .obj, 1)
$$$err(st, "%wsParseErr: "_$System.Status.GetErrorText(st))
return obj
]]></Implementation>
</Method>
<Method name="Send">
<Description>
Do not remove this method in future versions of WebTerminal, it is used by update.</Description>
<FormalSpec>handler:%String="",data=""</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
return:((handler = "o") && (..echo = 0)) $$$OK
return:(handler = "o") ..Write("o"_data) // Enables 2013.2 support (no JSON)
set obj = ##class(%ZEN.proxyObject).%New()
set obj.h = handler
if (..handler '= 0) {
set obj."_cb" = ..handler
}
set obj.d = data
return ..Write(..GetJSONString(obj))
]]></Implementation>
</Method>
<Method name="OnPreServer">
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
set ..InitialZName = $zname
set ..InitialZNamespace = $znspace
quit $$$OK
]]></Implementation>
</Method>
<Method name="OnPostServer">
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
if (..corePID '= 0) {
do ..SendChunk(..corePID, "e")
}
quit $$$OK
]]></Implementation>
</Method>
<Method name="WriteToFile">
<ClassMethod>1</ClassMethod>
<FormalSpec>filename:%String,data:%String</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
set file=##class(%File).%New(filename)
do file.Open("WSN")
do file.WriteLine(data)
do file.Close()
]]></Implementation>
</Method>
<Method name="ExecuteSQL">
<FormalSpec>query:%String=""</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
set tStatement = ##class(%SQL.Statement).%New()
set qStatus = tStatement.%Prepare(query)
if qStatus'=1 {
write $System.Status.DisplayError(qStatus)
} else {
set rset = tStatement.%Execute()
do rset.%Display()
}
quit $$$OK
]]></Implementation>
</Method>
<Method name="RequireAuthorization">
<Description>
This method holds process and expects only one package from
the client - it includes authorization key.</Description>
<ReturnType>%List</ReturnType>
<Implementation><![CDATA[
set data = ..GetMessage(..#AuthorizationTimeout)
return:('$IsObject(data.d)) $LB($case(data.error = "", 1: "Unresolved request format", :data.error))
set authKey = data.d.key
set key = $ORDER(^WebTerminal("AuthUser", ""))
set list = ""
while (key '= "") {
set lb = $GET(^WebTerminal("AuthUser", key))
if ((lb '= "") && (key = authKey)) {
set list = lb
}
set time = $LISTGET(lb, 2)
if (time '= "") && ($System.SQL.DATEDIFF("s", time, $h) > ..#WSKEYEXPIRES) {
kill ^WebTerminal("AuthUser", key)
}
set key = $ORDER(^WebTerminal("AuthUser", key))
}
if (list = "") { // not found
return $LB("Invalid key")
}
set username = $LISTGET(list, 1)
set namespace = $LISTGET(list, 3)
set ns = $Namespace
znspace "%SYS"
do ##class(Security.Users).Get(username, .userProps)
znspace ns
if $get(userProps("Enabled")) '= 1 {
return $LB("User " _ username _ " is not enabled in the system")
}
set namespace = $case(namespace, "":userProps("NameSpace"), :namespace)
set loginStatus = $System.Security.Login(username)
if (loginStatus '= 1) {
return $LB($System.Status.GetErrorText(loginStatus))
}
return $LB("", namespace)
]]></Implementation>
</Method>
<Method name="ProcessRequest">
<Description>
See WebTerminal.Handlers</Description>
<FormalSpec>handler:%String,data</FormalSpec>
<Private>1</Private>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
try {
return $CLASSMETHOD("WebTerminal.Handlers", handler, $this, data)
} catch (e) {
set ..echo = 1
return e.AsSystemError()
}
]]></Implementation>
</Method>
<Method name="ClientLoop">
<Description>
Main method for every new client.</Description>
<Private>1</Private>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
job ##class(WebTerminal.Core).Loop():($NAMESPACE)
if ($TEST '= 1) {
do ..Send("error", "%noJob")
return $$$NOTOK
}
set ..corePID = $ZCHILD
set ..childNamespace = $NAMESPACE
do ..Send("prompt", ..childNamespace)
//try { // temp
for {
set message = ..GetMessage()
quit:(message = "") // if client is gone, finish looping
if (message.error) {
set st = ..Send("error", message.error)
quit
}
if (message."_cb" '= "") { set ..handler = message."_cb" }
set status = ..ProcessRequest(message.h, message.d)
set ..handler = 0
set ..echo = 1
if (status '= "") && (status '= $$$OK) {
set eType = $EXTRACT(status, 1, 1)
do ..Send("execError", $case(eType = 0, 1: $System.Status.GetErrorText(status), :status))
continue
}
}
//} catch (e) { do ..Send("o", $System.Status.GetErrorText(e)) } // temp
]]></Implementation>
</Method>
<Method name="SendLoginInfo">
<Description>
This method sends basic login info to the user. Use this method to set client variables
during the WebTerminal initialization.</Description>
<Implementation><![CDATA[
set obj = ##class(%ZEN.proxyObject).%New()
set obj.username = $USERNAME
set obj.name = $get(^WebTerminal("Name"))
set obj.system = $SYSTEM
set obj.firstLaunch = ($get(^WebTerminal("FirstLaunch"), 1) '= 0)
set obj.InstanceGUID = ##class(%SYS.System).InstanceGUID()
set obj.zv = $ZVersion
set ^WebTerminal("FirstLaunch") = 0
do ..Send("init", obj)
]]></Implementation>
</Method>
<Method name="Server">
<Description>
Triggered when new connection established.</Description>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
set authRes = ..RequireAuthorization()
set authMessage = $ListGet(authRes, 1)
if (authMessage = "") {
set namespace = $ListGet(authRes, 2)
if (namespace '= "") {
try { znspace namespace } catch (e) { }
}
set ..CurrentNamespace = $Namespace
do ..SendLoginInfo()
do ..ClientLoop()
do ..Send("oLocalized", "%wsAbnormal")
} else {
do ..Send("oLocalized", "%wsRefuse(" _ authMessage _ ")")
do ..EndServer()
}
quit $$$OK
]]></Implementation>
</Method>
</Class>
<Class name="WebTerminal.Handlers">
<Description>
Cache WEB Terminal version 4.0.0-alpha.73 WebSocket handlers class.
This class describes handlers for WebSocket client. Each handler method takes WS client instance
as a first argument, and a given data as second. For example, handler for "execute"
command will be names as "HandleExecute". Note that all the processing is synchronous and it
blocks the WebSocket input while processing.
This class is inherited by WebTerminal.Engine class.
Methods must return positive status or an error if one happened.
Method must take two arguments, the first is the WebTerminal.Engine instance, and data as second</Description>
<TimeChanged>64179,61705.135239</TimeChanged>
<TimeCreated>64093,55627.951301</TimeCreated>
<Method name="Execute">
<Description>
data can be either string or %ZEN.proxyObject. In case of proxyObject, the command is hold in
data.command property, and it may have some other control properties.</Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>client:WebTerminal.Engine,data</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
if $IsObject(data) {
set command = data.command
if (data.echo = 0) {
set client.echo = 0
}
} else {
set command = data
}
do client.Send("o", $CHAR(13, 10))
do client.SendChunk(client.corePID, "m", command)
for {
set message = client.ReceiveChunk()
set flag = $LISTGET(message, 1)
set chunk = $LISTGET(message, 2)
if (flag = "o") {
do client.Send("o", chunk)
} elseif (flag = "r") {
set obj = ##class(%ZEN.proxyObject).%New()
set obj.length = $LISTGET(chunk, 1)
set obj.timeout = $LISTGET(chunk, 2)
do client.Send("readString", obj)
do client.SendChunk(client.corePID, "m", client.GetMessage().d)
} elseif (flag = "c") {
set obj = ##class(%ZEN.proxyObject).%New()
set obj.timeout = chunk
do client.Send("readChar", obj)
do client.SendChunk(client.corePID, "m", client.GetMessage().d)
} elseif (flag = "e") {
set client.childNamespace = $LISTGET(chunk, 1)
set err = $LISTGET(chunk, 2)
if (err '= "") {
do client.Send("execError", err)
}
quit // break for cycle
} else { // unknown response - just send it to the client
do client.Send("o", chunk)
}
}
do client.Send("o", $CHAR(13, 10))
if $IsObject(data) {
if (data.echo = 0) {
set client.echo = 1
}
}
do:('($IsObject(data) && (data.prompt = 0))) client.Send("prompt", client.childNamespace)
return $$$OK
]]></Implementation>
</Method>
<Method name="Update">
<ClassMethod>1</ClassMethod>
<FormalSpec>client:WebTerminal.Engine,URL:%String</FormalSpec>
<Implementation><![CDATA[
set st = ##class(WebTerminal.Updater).Update(client, URL)
do:($$$ISERR(st)) ##class(WebTerminal.Analytics).ReportInstallStatus(st)
return st
]]></Implementation>
</Method>
<Method name="LocalAutocomplete">
<ClassMethod>1</ClassMethod>
<FormalSpec>client:WebTerminal.Engine,data</FormalSpec>
<Implementation><![CDATA[
do client.SendChunk(client.corePID, "a")
set list = $LISTGET(client.ReceiveChunk(), 2)
set obj = ##class(%ZEN.proxyObject).%New()
for i=3:3:$LISTLENGTH(list) {
set obj2 = ##class(%ZEN.proxyObject).%New()
set obj2.isOref = $LISTGET(list, i - 1)
set obj2.value = $LISTGET(list, i)
set $PROPERTY(obj, $LISTGET(list, i - 2)) = obj2
}
do client.Send("ac", obj)
return $$$OK
]]></Implementation>
</Method>
<Method name="GlobalAutocomplete">
<ClassMethod>1</ClassMethod>
<FormalSpec>client:WebTerminal.Engine,part:%String</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
do client.Send(, ##class(WebTerminal.Autocomplete).GetGlobals(client.childNamespace, part))
return $$$OK
]]></Implementation>
</Method>
<Method name="ClassAutocomplete">
<ClassMethod>1</ClassMethod>
<FormalSpec>client:WebTerminal.Engine,part:%String</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
do client.Send(, ##class(WebTerminal.Autocomplete).GetClass(client.childNamespace, part))
return $$$OK
]]></Implementation>
</Method>
<Method name="RoutineAutocomplete">
<ClassMethod>1</ClassMethod>
<FormalSpec>client:WebTerminal.Engine,part:%String</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
do client.Send(, ##class(WebTerminal.Autocomplete).GetRoutines(client.childNamespace, part))
return $$$OK
]]></Implementation>
</Method>
<Method name="ClassMemberAutocomplete">
<ClassMethod>1</ClassMethod>
<FormalSpec>client:WebTerminal.Engine,data:%ZEN.proxyObject</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
do client.Send(, ##class(WebTerminal.Autocomplete).GetPublicClassMembers(client.childNamespace, data.className, data.part))
return $$$OK
]]></Implementation>
</Method>
<Method name="MemberAutocomplete">
<ClassMethod>1</ClassMethod>
<FormalSpec>client:WebTerminal.Engine,data:%ZEN.proxyObject</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
do client.SendChunk(client.corePID, "a")
set list = $LISTGET(client.ReceiveChunk(), 2)
set isOref = 0
set value = ""
for i=3:3:$LISTLENGTH(list) {
if $LISTGET(list, i - 2) = data.variable {
set isOref = $LISTGET(list, i - 1)
set value = $LISTGET(list, i)
quit
}
}
if isOref {
do client.Send(, ##class(WebTerminal.Autocomplete).GetClassMembers(
client.childNamespace, $PIECE(value, "@", 2), data.part, data.methodsOnly
))
} else {
do client.Send(, 0)
}
return $$$OK
]]></Implementation>
</Method>
<Method name="ParameterAutocomplete">
<ClassMethod>1</ClassMethod>
<FormalSpec>client:WebTerminal.Engine,data:%ZEN.proxyObject</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
do client.Send(, ##class(WebTerminal.Autocomplete).GetParameters(client.childNamespace, data.className, data.part))
return $$$OK
]]></Implementation>
</Method>
<Method name="serverNameConfigSet">
<ClassMethod>1</ClassMethod>
<FormalSpec>client:WebTerminal.Engine,value:%String=""</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
set ^WebTerminal("Name") = value
do client.Send(, 1)
return $$$OK