@hpcc-js/comms 2.102.2 → 2.102.3

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.
Files changed (103) hide show
  1. package/LICENSE +43 -43
  2. package/README.md +50 -50
  3. package/dist/index.es6.js +2 -2
  4. package/dist/index.es6.js.map +1 -1
  5. package/dist/index.js +2 -2
  6. package/dist/index.js.map +1 -1
  7. package/dist/index.min.js +1 -1
  8. package/dist/index.min.js.map +1 -1
  9. package/dist/index.node.js +2 -2
  10. package/dist/index.node.js.map +1 -1
  11. package/dist/index.node.min.js +1 -1
  12. package/dist/index.node.min.js.map +1 -1
  13. package/lib-es6/__package__.js +2 -2
  14. package/package.json +4 -4
  15. package/src/__package__.ts +3 -3
  16. package/src/__tests__/dfuXRef.ts +22 -22
  17. package/src/__tests__/https.ts +69 -69
  18. package/src/__tests__/workunit.ts +35 -35
  19. package/src/clienttools/eclMeta.ts +506 -506
  20. package/src/clienttools/eclcc.ts +628 -628
  21. package/src/connection.ts +295 -295
  22. package/src/ecl/activity.ts +82 -82
  23. package/src/ecl/dfuWorkunit.ts +363 -363
  24. package/src/ecl/graph.ts +196 -196
  25. package/src/ecl/logicalFile.ts +195 -195
  26. package/src/ecl/machine.ts +63 -63
  27. package/src/ecl/query.ts +252 -252
  28. package/src/ecl/queryGraph.ts +813 -813
  29. package/src/ecl/resource.ts +39 -39
  30. package/src/ecl/result.ts +236 -236
  31. package/src/ecl/scope.ts +192 -192
  32. package/src/ecl/sourceFile.ts +34 -34
  33. package/src/ecl/store.ts +154 -154
  34. package/src/ecl/targetCluster.ts +149 -149
  35. package/src/ecl/timer.ts +42 -42
  36. package/src/ecl/topology.ts +131 -131
  37. package/src/ecl/workunit.ts +1314 -1314
  38. package/src/ecl/xsdParser.ts +268 -268
  39. package/src/espConnection.ts +172 -172
  40. package/src/index-common.ts +41 -41
  41. package/src/index.node.ts +68 -68
  42. package/src/index.ts +3 -3
  43. package/src/pem/trustwave.ts +909 -909
  44. package/src/services/fileSpray.ts +48 -48
  45. package/src/services/wsAccess.ts +8 -8
  46. package/src/services/wsAccount.ts +27 -27
  47. package/src/services/wsCloud.ts +73 -73
  48. package/src/services/wsCodesign.ts +94 -94
  49. package/src/services/wsDFU.ts +34 -34
  50. package/src/services/wsDFUXRef.ts +308 -308
  51. package/src/services/wsDali.ts +40 -40
  52. package/src/services/wsEcl.ts +123 -123
  53. package/src/services/wsElk.ts +8 -8
  54. package/src/services/wsLogaccess.ts +263 -263
  55. package/src/services/wsMachine.ts +89 -89
  56. package/src/services/wsPackageProcess.ts +8 -8
  57. package/src/services/wsResources.ts +8 -8
  58. package/src/services/wsSMC.ts +24 -24
  59. package/src/services/wsSasha.ts +7 -7
  60. package/src/services/wsStore.ts +230 -230
  61. package/src/services/wsTopology.ts +45 -45
  62. package/src/services/wsWorkunits.ts +160 -160
  63. package/src/services/wsdl/FileSpray/v1.23/FileSpray.ts +1008 -1008
  64. package/src/services/wsdl/FileSpray/v1.25/FileSpray.ts +1040 -1040
  65. package/src/services/wsdl/FileSpray/v1.26/FileSpray.ts +929 -929
  66. package/src/services/wsdl/WsCloud/v1/WsCloud.ts +38 -38
  67. package/src/services/wsdl/WsCloud/v1.02/WsCloud.ts +77 -77
  68. package/src/services/wsdl/WsDFUXRef/v1.02/WsDFUXRef.ts +224 -224
  69. package/src/services/wsdl/WsDali/v1.04/WsDali.ts +216 -216
  70. package/src/services/wsdl/WsDfu/v1.62/WsDfu.ts +1455 -1455
  71. package/src/services/wsdl/WsDfu/v1.63/WsDfu.ts +1465 -1465
  72. package/src/services/wsdl/WsDfu/v1.65/WsDfu.ts +1244 -1244
  73. package/src/services/wsdl/WsFileIO/v1.01/WsFileIO.ts +107 -107
  74. package/src/services/wsdl/WsPackageProcess/v1.04/WsPackageProcess.ts +519 -519
  75. package/src/services/wsdl/WsResources/v1.01/WsResources.ts +119 -119
  76. package/src/services/wsdl/WsSMC/v1.24/WsSMC.ts +665 -665
  77. package/src/services/wsdl/WsSMC/v1.27/WsSMC.ts +670 -670
  78. package/src/services/wsdl/WsTopology/v1.31/WsTopology.ts +856 -856
  79. package/src/services/wsdl/WsTopology/v1.32/WsTopology.ts +885 -885
  80. package/src/services/wsdl/WsWorkunits/v1.88/WsWorkunits.ts +2944 -2944
  81. package/src/services/wsdl/WsWorkunits/v1.94/WsWorkunits.ts +3072 -3072
  82. package/src/services/wsdl/WsWorkunits/v1.95/WsWorkunits.ts +3073 -3073
  83. package/src/services/wsdl/WsWorkunits/v1.97/WsWorkunits.ts +3134 -3134
  84. package/src/services/wsdl/WsWorkunits/v1.98/WsWorkunits.ts +3182 -3182
  85. package/src/services/wsdl/WsWorkunits/v1.99/WsWorkunits.ts +3162 -3162
  86. package/src/services/wsdl/WsWorkunits/v2/WsWorkunits.ts +3153 -3153
  87. package/src/services/wsdl/WsWorkunits/v2.02/WsWorkunits.ts +3157 -3157
  88. package/src/services/wsdl/ws_access/v1.16/ws_access.ts +1086 -1086
  89. package/src/services/wsdl/ws_access/v1.17/ws_access.ts +1023 -1023
  90. package/src/services/wsdl/ws_account/v1.05/ws_account.ts +111 -111
  91. package/src/services/wsdl/ws_account/v1.06/ws_account.ts +109 -109
  92. package/src/services/wsdl/ws_codesign/v1.1/ws_codesign.ts +100 -100
  93. package/src/services/wsdl/ws_elk/v1/ws_elk.ts +47 -47
  94. package/src/services/wsdl/ws_logaccess/v1/ws_logaccess.ts +83 -83
  95. package/src/services/wsdl/ws_logaccess/v1.02/ws_logaccess.ts +161 -161
  96. package/src/services/wsdl/ws_logaccess/v1.03/ws_logaccess.ts +190 -190
  97. package/src/services/wsdl/ws_logaccess/v1.04/ws_logaccess.ts +215 -215
  98. package/src/services/wsdl/ws_logaccess/v1.05/ws_logaccess.ts +219 -219
  99. package/src/services/wsdl/ws_logaccess/v1.08/ws_logaccess.ts +267 -267
  100. package/src/services/wsdl/ws_machine/v1.17/ws_machine.ts +567 -567
  101. package/src/services/wsdl/wsstore/v1.02/wsstore.ts +250 -250
  102. package/types/__package__.d.ts +2 -2
  103. package/types-3.4/__package__.d.ts +2 -2
package/src/ecl/query.ts CHANGED
@@ -1,252 +1,252 @@
1
- import { Cache, StateObject, scopedLogger, RecursivePartial } from "@hpcc-js/util";
2
- import { format as d3Format } from "d3-format";
3
- import { IConnection, IOptions } from "../connection";
4
- import { EclService, IWsEclRequest, IWsEclResponse, IWsEclResult } from "../services/wsEcl";
5
- import { WorkunitsService, WsWorkunits } from "../services/wsWorkunits";
6
- import { Topology } from "./topology";
7
- import { Workunit, IScope } from "./workunit";
8
- import { QueryGraph } from "./queryGraph";
9
-
10
- export { QueryGraph };
11
-
12
- const logger = scopedLogger("@hpcc-js/comms/ecl/query.ts");
13
-
14
- const siFormatter = d3Format("~s");
15
-
16
- function isNumber(n) {
17
- return !isNaN(parseFloat(n)) && !isNaN(n - 0);
18
- }
19
- export interface QueryEx extends WsWorkunits.WUQueryDetailsResponse {
20
- BaseUrl: string;
21
- }
22
-
23
- class QueryCache extends Cache<QueryEx, Query> {
24
- constructor() {
25
- super((obj) => {
26
- return Cache.hash([obj.QueryId, obj.QuerySet]);
27
- });
28
- }
29
- }
30
- const _queries = new QueryCache();
31
-
32
- export class Query extends StateObject<QueryEx, QueryEx> implements QueryEx {
33
- protected wsWorkunitsService: WorkunitsService;
34
- get BaseUrl() { return this.wsWorkunitsService.baseUrl; }
35
- protected topology: Topology;
36
- protected _requestSchema: IWsEclRequest;
37
- protected _responseSchema: IWsEclResponse;
38
-
39
- get properties(): WsWorkunits.WUQueryDetailsResponse { return this.get(); }
40
- get Exceptions(): WsWorkunits.Exceptions { return this.get("Exceptions"); }
41
- get QueryId(): string { return this.get("QueryId"); }
42
- get QuerySet(): string { return this.get("QuerySet"); }
43
- get QueryName(): string { return this.get("QueryName"); }
44
- get Wuid(): string { return this.get("Wuid"); }
45
- get Dll(): string { return this.get("Dll"); }
46
- get Suspended(): boolean { return this.get("Suspended"); }
47
- get Activated(): boolean { return this.get("Activated"); }
48
- get SuspendedBy(): string { return this.get("SuspendedBy"); }
49
- get Clusters(): WsWorkunits.Clusters2 { return this.get("Clusters"); }
50
- get PublishedBy(): string { return this.get("PublishedBy"); }
51
- get Comment() { return this.get("Comment"); }
52
- get LogicalFiles(): WsWorkunits.LogicalFiles { return this.get("LogicalFiles"); }
53
- get SuperFiles(): WsWorkunits.SuperFiles { return this.get("SuperFiles"); }
54
- get IsLibrary(): boolean { return this.get("IsLibrary"); }
55
- get Priority(): string { return this.get("Priority"); }
56
- get WUSnapShot(): string { return this.get("WUSnapShot"); }
57
- get CompileTime(): string { return this.get("CompileTime"); }
58
- get LibrariesUsed(): WsWorkunits.LibrariesUsed { return this.get("LibrariesUsed"); }
59
- get CountGraphs(): number { return this.get("CountGraphs"); }
60
- get ResourceURLCount(): number { return this.get("ResourceURLCount"); }
61
- get WsEclAddresses(): WsWorkunits.WsEclAddresses { return this.get("WsEclAddresses"); }
62
- get WUGraphs(): WsWorkunits.WUGraphs { return this.get("WUGraphs"); }
63
- get WUTimers(): WsWorkunits.WUTimers { return this.get("WUTimers"); }
64
- get PriorityID(): number { return this.get("PriorityID"); }
65
-
66
- private constructor(optsConnection: IOptions | IConnection | WorkunitsService, querySet: string, queryID: string, queryDetails?: WsWorkunits.WUQueryDetailsResponse) {
67
- super();
68
- if (optsConnection instanceof WorkunitsService) {
69
- this.wsWorkunitsService = optsConnection;
70
- } else {
71
- this.wsWorkunitsService = new WorkunitsService(optsConnection);
72
- }
73
- this.topology = Topology.attach(this.wsWorkunitsService.opts());
74
- this.set({
75
- QuerySet: querySet,
76
- QueryId: queryID,
77
- ...queryDetails
78
- } as QueryEx);
79
- }
80
-
81
- static attach(optsConnection: IOptions | IConnection, querySet: string, queryId: string, state?: QueryEx): Query {
82
- const retVal: Query = _queries.get({ BaseUrl: optsConnection.baseUrl, QuerySet: querySet, QueryId: queryId } as QueryEx, () => {
83
- return new Query(optsConnection, querySet, queryId);
84
- });
85
- if (state) {
86
- retVal.set(state);
87
- }
88
- return retVal;
89
- }
90
-
91
- private _eclService: Promise<EclService>;
92
- protected async wsEclService(): Promise<EclService | undefined> {
93
- if (!this._eclService) {
94
- this._eclService = this.topology.fetchServices({}).then(services => {
95
- for (const espServer of services?.TpEspServers?.TpEspServer ?? []) {
96
- for (const binding of espServer?.TpBindings?.TpBinding ?? []) {
97
- if (binding?.Service === "ws_ecl") {
98
- const baseUrl = `${binding.Protocol}://${globalThis.location.hostname}:${binding.Port}`;
99
- return new EclService({ baseUrl });
100
- }
101
- }
102
- }
103
- return undefined;
104
- });
105
- }
106
- return this._eclService;
107
- }
108
-
109
- private async fetchDetails(): Promise<void> {
110
- const queryDetails = await this.wsWorkunitsService.WUQueryDetails({
111
- QuerySet: this.QuerySet,
112
- QueryId: this.QueryId,
113
- IncludeStateOnClusters: true,
114
- IncludeSuperFiles: true,
115
- IncludeWsEclAddresses: true,
116
- CheckAllNodes: false
117
- });
118
- this.set({ ...queryDetails } as QueryEx);
119
- }
120
-
121
- private async fetchRequestSchema(): Promise<void> {
122
- const wsEclService = await this.wsEclService();
123
- try {
124
- this._requestSchema = await wsEclService?.requestJson(this.QuerySet, this.QueryId) ?? [];
125
- } catch (e) {
126
- // See: https://track.hpccsystems.com/browse/HPCC-29827
127
- logger.debug(e);
128
- this._requestSchema = [];
129
- }
130
- }
131
-
132
- private async fetchResponseSchema(): Promise<void> {
133
- const wsEclService = await this.wsEclService();
134
- try {
135
- this._responseSchema = await wsEclService?.responseJson(this.QuerySet, this.QueryId) ?? {};
136
- } catch (e) {
137
- // See: https://track.hpccsystems.com/browse/HPCC-29827
138
- logger.debug(e);
139
- this._responseSchema = {};
140
- }
141
- }
142
-
143
- private async fetchSchema(): Promise<void> {
144
- await Promise.all([this.fetchRequestSchema(), this.fetchResponseSchema()]);
145
- }
146
-
147
- fetchSummaryStats() {
148
- return this.wsWorkunitsService.WUQueryGetSummaryStats({ Target: this.QuerySet, QueryId: this.QueryId });
149
- }
150
-
151
- fetchGraph(GraphName: string = "", SubGraphId: string = ""): Promise<QueryGraph> {
152
- return this.wsWorkunitsService.WUQueryGetGraph({ Target: this.QuerySet, QueryId: this.QueryId, GraphName, SubGraphId }).then(response => {
153
- const graph = new QueryGraph();
154
- let first = true;
155
- for (const graphItem of response?.Graphs?.ECLGraphEx || []) {
156
- if (first) {
157
- graph.load(graphItem.Graph);
158
- first = false;
159
- } else {
160
- graph.merge(graphItem.Graph);
161
- }
162
- }
163
- return graph;
164
- });
165
- }
166
-
167
- fetchDetailsNormalized(request: RecursivePartial<WsWorkunits.WUDetails> = {}): Promise<{ meta: WsWorkunits.WUDetailsMetaResponse | undefined, columns: { [id: string]: any } | undefined, data: IScope[] | undefined }> {
168
- const wu = Workunit.attach(this.wsWorkunitsService, this.Wuid);
169
- if (wu) {
170
- return Promise.all([this.fetchGraph(), wu.fetchDetailsMeta(), wu.fetchDetailsRaw(request)]).then(promises => {
171
- const graph = promises[0];
172
- const meta = promises[1];
173
- const metrics: WsWorkunits.Scope[] = promises[2];
174
- const data = metrics.map(metric => {
175
- if (metric.Id[0] === "a" || metric.Id[0] === "e") {
176
- const item = graph.idx[metric.Id.substring(1)];
177
- for (const key in item) {
178
- if (key.charAt(0) !== "_" && key.charAt(0) === key.charAt(0).toUpperCase() && (typeof item[key] === "string" || typeof item[key] === "number" || typeof item[key] === "boolean")) {
179
-
180
- if (!metric.Properties.Property.some(row => row.Name === key)) {
181
- const isNum = isNumber(item[key]);
182
- let rawValue = isNum ? parseFloat(item[key] as string) : item[key];
183
- let formatted = item[key];
184
- if (key.indexOf("Time") >= 0) {
185
- rawValue = rawValue as number / 1000000000;
186
- formatted = siFormatter(rawValue) + "s";
187
- }
188
- metric.Properties.Property.push({
189
- Name: key,
190
- RawValue: rawValue as any,
191
- Formatted: formatted
192
- } as WsWorkunits.Property);
193
- }
194
- }
195
- }
196
- }
197
- return metric;
198
- });
199
-
200
- return wu.normalizeDetails(meta, data);
201
- });
202
- }
203
- return Promise.resolve({ meta: undefined, columns: undefined, data: undefined });
204
- }
205
-
206
- async submit(request: object): Promise<Array<{ [key: string]: object[] }>> {
207
- const wsEclService = await this.wsEclService();
208
- try {
209
- return wsEclService?.submit(this.QuerySet, this.QueryId, request).then(results => {
210
- for (const key in results) {
211
- results[key] = results[key].Row;
212
- }
213
- return results;
214
- }) ?? [];
215
- } catch (e) {
216
- // See: https://track.hpccsystems.com/browse/HPCC-29827
217
- logger.debug(e);
218
- return [];
219
- }
220
- }
221
-
222
- async refresh(): Promise<this> {
223
- await Promise.all([
224
- this.fetchDetails(),
225
- this.fetchSchema()
226
- ]);
227
- return this;
228
- }
229
-
230
- requestFields(): IWsEclRequest {
231
- if (!this._requestSchema) return [];
232
- return this._requestSchema;
233
- }
234
-
235
- responseFields(): IWsEclResponse {
236
- if (!this._responseSchema) return {};
237
- return this._responseSchema;
238
- }
239
-
240
- resultNames(): string[] {
241
- const retVal: string[] = [];
242
- for (const key in this.responseFields()) {
243
- retVal.push(key);
244
- }
245
- return retVal;
246
- }
247
-
248
- resultFields(resultName: string): IWsEclResult {
249
- if (!this._responseSchema[resultName]) return [];
250
- return this._responseSchema[resultName];
251
- }
252
- }
1
+ import { Cache, StateObject, scopedLogger, RecursivePartial } from "@hpcc-js/util";
2
+ import { format as d3Format } from "d3-format";
3
+ import { IConnection, IOptions } from "../connection";
4
+ import { EclService, IWsEclRequest, IWsEclResponse, IWsEclResult } from "../services/wsEcl";
5
+ import { WorkunitsService, WsWorkunits } from "../services/wsWorkunits";
6
+ import { Topology } from "./topology";
7
+ import { Workunit, IScope } from "./workunit";
8
+ import { QueryGraph } from "./queryGraph";
9
+
10
+ export { QueryGraph };
11
+
12
+ const logger = scopedLogger("@hpcc-js/comms/ecl/query.ts");
13
+
14
+ const siFormatter = d3Format("~s");
15
+
16
+ function isNumber(n) {
17
+ return !isNaN(parseFloat(n)) && !isNaN(n - 0);
18
+ }
19
+ export interface QueryEx extends WsWorkunits.WUQueryDetailsResponse {
20
+ BaseUrl: string;
21
+ }
22
+
23
+ class QueryCache extends Cache<QueryEx, Query> {
24
+ constructor() {
25
+ super((obj) => {
26
+ return Cache.hash([obj.QueryId, obj.QuerySet]);
27
+ });
28
+ }
29
+ }
30
+ const _queries = new QueryCache();
31
+
32
+ export class Query extends StateObject<QueryEx, QueryEx> implements QueryEx {
33
+ protected wsWorkunitsService: WorkunitsService;
34
+ get BaseUrl() { return this.wsWorkunitsService.baseUrl; }
35
+ protected topology: Topology;
36
+ protected _requestSchema: IWsEclRequest;
37
+ protected _responseSchema: IWsEclResponse;
38
+
39
+ get properties(): WsWorkunits.WUQueryDetailsResponse { return this.get(); }
40
+ get Exceptions(): WsWorkunits.Exceptions { return this.get("Exceptions"); }
41
+ get QueryId(): string { return this.get("QueryId"); }
42
+ get QuerySet(): string { return this.get("QuerySet"); }
43
+ get QueryName(): string { return this.get("QueryName"); }
44
+ get Wuid(): string { return this.get("Wuid"); }
45
+ get Dll(): string { return this.get("Dll"); }
46
+ get Suspended(): boolean { return this.get("Suspended"); }
47
+ get Activated(): boolean { return this.get("Activated"); }
48
+ get SuspendedBy(): string { return this.get("SuspendedBy"); }
49
+ get Clusters(): WsWorkunits.Clusters2 { return this.get("Clusters"); }
50
+ get PublishedBy(): string { return this.get("PublishedBy"); }
51
+ get Comment() { return this.get("Comment"); }
52
+ get LogicalFiles(): WsWorkunits.LogicalFiles { return this.get("LogicalFiles"); }
53
+ get SuperFiles(): WsWorkunits.SuperFiles { return this.get("SuperFiles"); }
54
+ get IsLibrary(): boolean { return this.get("IsLibrary"); }
55
+ get Priority(): string { return this.get("Priority"); }
56
+ get WUSnapShot(): string { return this.get("WUSnapShot"); }
57
+ get CompileTime(): string { return this.get("CompileTime"); }
58
+ get LibrariesUsed(): WsWorkunits.LibrariesUsed { return this.get("LibrariesUsed"); }
59
+ get CountGraphs(): number { return this.get("CountGraphs"); }
60
+ get ResourceURLCount(): number { return this.get("ResourceURLCount"); }
61
+ get WsEclAddresses(): WsWorkunits.WsEclAddresses { return this.get("WsEclAddresses"); }
62
+ get WUGraphs(): WsWorkunits.WUGraphs { return this.get("WUGraphs"); }
63
+ get WUTimers(): WsWorkunits.WUTimers { return this.get("WUTimers"); }
64
+ get PriorityID(): number { return this.get("PriorityID"); }
65
+
66
+ private constructor(optsConnection: IOptions | IConnection | WorkunitsService, querySet: string, queryID: string, queryDetails?: WsWorkunits.WUQueryDetailsResponse) {
67
+ super();
68
+ if (optsConnection instanceof WorkunitsService) {
69
+ this.wsWorkunitsService = optsConnection;
70
+ } else {
71
+ this.wsWorkunitsService = new WorkunitsService(optsConnection);
72
+ }
73
+ this.topology = Topology.attach(this.wsWorkunitsService.opts());
74
+ this.set({
75
+ QuerySet: querySet,
76
+ QueryId: queryID,
77
+ ...queryDetails
78
+ } as QueryEx);
79
+ }
80
+
81
+ static attach(optsConnection: IOptions | IConnection, querySet: string, queryId: string, state?: QueryEx): Query {
82
+ const retVal: Query = _queries.get({ BaseUrl: optsConnection.baseUrl, QuerySet: querySet, QueryId: queryId } as QueryEx, () => {
83
+ return new Query(optsConnection, querySet, queryId);
84
+ });
85
+ if (state) {
86
+ retVal.set(state);
87
+ }
88
+ return retVal;
89
+ }
90
+
91
+ private _eclService: Promise<EclService>;
92
+ protected async wsEclService(): Promise<EclService | undefined> {
93
+ if (!this._eclService) {
94
+ this._eclService = this.topology.fetchServices({}).then(services => {
95
+ for (const espServer of services?.TpEspServers?.TpEspServer ?? []) {
96
+ for (const binding of espServer?.TpBindings?.TpBinding ?? []) {
97
+ if (binding?.Service === "ws_ecl") {
98
+ const baseUrl = `${binding.Protocol}://${globalThis.location.hostname}:${binding.Port}`;
99
+ return new EclService({ baseUrl });
100
+ }
101
+ }
102
+ }
103
+ return undefined;
104
+ });
105
+ }
106
+ return this._eclService;
107
+ }
108
+
109
+ private async fetchDetails(): Promise<void> {
110
+ const queryDetails = await this.wsWorkunitsService.WUQueryDetails({
111
+ QuerySet: this.QuerySet,
112
+ QueryId: this.QueryId,
113
+ IncludeStateOnClusters: true,
114
+ IncludeSuperFiles: true,
115
+ IncludeWsEclAddresses: true,
116
+ CheckAllNodes: false
117
+ });
118
+ this.set({ ...queryDetails } as QueryEx);
119
+ }
120
+
121
+ private async fetchRequestSchema(): Promise<void> {
122
+ const wsEclService = await this.wsEclService();
123
+ try {
124
+ this._requestSchema = await wsEclService?.requestJson(this.QuerySet, this.QueryId) ?? [];
125
+ } catch (e) {
126
+ // See: https://track.hpccsystems.com/browse/HPCC-29827
127
+ logger.debug(e);
128
+ this._requestSchema = [];
129
+ }
130
+ }
131
+
132
+ private async fetchResponseSchema(): Promise<void> {
133
+ const wsEclService = await this.wsEclService();
134
+ try {
135
+ this._responseSchema = await wsEclService?.responseJson(this.QuerySet, this.QueryId) ?? {};
136
+ } catch (e) {
137
+ // See: https://track.hpccsystems.com/browse/HPCC-29827
138
+ logger.debug(e);
139
+ this._responseSchema = {};
140
+ }
141
+ }
142
+
143
+ private async fetchSchema(): Promise<void> {
144
+ await Promise.all([this.fetchRequestSchema(), this.fetchResponseSchema()]);
145
+ }
146
+
147
+ fetchSummaryStats() {
148
+ return this.wsWorkunitsService.WUQueryGetSummaryStats({ Target: this.QuerySet, QueryId: this.QueryId });
149
+ }
150
+
151
+ fetchGraph(GraphName: string = "", SubGraphId: string = ""): Promise<QueryGraph> {
152
+ return this.wsWorkunitsService.WUQueryGetGraph({ Target: this.QuerySet, QueryId: this.QueryId, GraphName, SubGraphId }).then(response => {
153
+ const graph = new QueryGraph();
154
+ let first = true;
155
+ for (const graphItem of response?.Graphs?.ECLGraphEx || []) {
156
+ if (first) {
157
+ graph.load(graphItem.Graph);
158
+ first = false;
159
+ } else {
160
+ graph.merge(graphItem.Graph);
161
+ }
162
+ }
163
+ return graph;
164
+ });
165
+ }
166
+
167
+ fetchDetailsNormalized(request: RecursivePartial<WsWorkunits.WUDetails> = {}): Promise<{ meta: WsWorkunits.WUDetailsMetaResponse | undefined, columns: { [id: string]: any } | undefined, data: IScope[] | undefined }> {
168
+ const wu = Workunit.attach(this.wsWorkunitsService, this.Wuid);
169
+ if (wu) {
170
+ return Promise.all([this.fetchGraph(), wu.fetchDetailsMeta(), wu.fetchDetailsRaw(request)]).then(promises => {
171
+ const graph = promises[0];
172
+ const meta = promises[1];
173
+ const metrics: WsWorkunits.Scope[] = promises[2];
174
+ const data = metrics.map(metric => {
175
+ if (metric.Id[0] === "a" || metric.Id[0] === "e") {
176
+ const item = graph.idx[metric.Id.substring(1)];
177
+ for (const key in item) {
178
+ if (key.charAt(0) !== "_" && key.charAt(0) === key.charAt(0).toUpperCase() && (typeof item[key] === "string" || typeof item[key] === "number" || typeof item[key] === "boolean")) {
179
+
180
+ if (!metric.Properties.Property.some(row => row.Name === key)) {
181
+ const isNum = isNumber(item[key]);
182
+ let rawValue = isNum ? parseFloat(item[key] as string) : item[key];
183
+ let formatted = item[key];
184
+ if (key.indexOf("Time") >= 0) {
185
+ rawValue = rawValue as number / 1000000000;
186
+ formatted = siFormatter(rawValue) + "s";
187
+ }
188
+ metric.Properties.Property.push({
189
+ Name: key,
190
+ RawValue: rawValue as any,
191
+ Formatted: formatted
192
+ } as WsWorkunits.Property);
193
+ }
194
+ }
195
+ }
196
+ }
197
+ return metric;
198
+ });
199
+
200
+ return wu.normalizeDetails(meta, data);
201
+ });
202
+ }
203
+ return Promise.resolve({ meta: undefined, columns: undefined, data: undefined });
204
+ }
205
+
206
+ async submit(request: object): Promise<Array<{ [key: string]: object[] }>> {
207
+ const wsEclService = await this.wsEclService();
208
+ try {
209
+ return wsEclService?.submit(this.QuerySet, this.QueryId, request).then(results => {
210
+ for (const key in results) {
211
+ results[key] = results[key].Row;
212
+ }
213
+ return results;
214
+ }) ?? [];
215
+ } catch (e) {
216
+ // See: https://track.hpccsystems.com/browse/HPCC-29827
217
+ logger.debug(e);
218
+ return [];
219
+ }
220
+ }
221
+
222
+ async refresh(): Promise<this> {
223
+ await Promise.all([
224
+ this.fetchDetails(),
225
+ this.fetchSchema()
226
+ ]);
227
+ return this;
228
+ }
229
+
230
+ requestFields(): IWsEclRequest {
231
+ if (!this._requestSchema) return [];
232
+ return this._requestSchema;
233
+ }
234
+
235
+ responseFields(): IWsEclResponse {
236
+ if (!this._responseSchema) return {};
237
+ return this._responseSchema;
238
+ }
239
+
240
+ resultNames(): string[] {
241
+ const retVal: string[] = [];
242
+ for (const key in this.responseFields()) {
243
+ retVal.push(key);
244
+ }
245
+ return retVal;
246
+ }
247
+
248
+ resultFields(resultName: string): IWsEclResult {
249
+ if (!this._responseSchema[resultName]) return [];
250
+ return this._responseSchema[resultName];
251
+ }
252
+ }