@itwin/presentation-backend 4.0.0-dev.8 → 4.0.0-dev.80
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.
- package/CHANGELOG.md +47 -1
- package/lib/cjs/assets/supplemental-presentation-rules/BisCore.PresentationRuleSet.json +5 -3
- package/lib/cjs/presentation-backend/BackendLoggerCategory.d.ts +41 -41
- package/lib/cjs/presentation-backend/BackendLoggerCategory.js +50 -50
- package/lib/cjs/presentation-backend/Constants.d.ts +8 -8
- package/lib/cjs/presentation-backend/Constants.js +40 -36
- package/lib/cjs/presentation-backend/Constants.js.map +1 -1
- package/lib/cjs/presentation-backend/ElementPropertiesHelper.d.ts +11 -11
- package/lib/cjs/presentation-backend/ElementPropertiesHelper.js +260 -262
- package/lib/cjs/presentation-backend/ElementPropertiesHelper.js.map +1 -1
- package/lib/cjs/presentation-backend/NativePlatform.d.ts +87 -87
- package/lib/cjs/presentation-backend/NativePlatform.d.ts.map +1 -1
- package/lib/cjs/presentation-backend/NativePlatform.js +140 -140
- package/lib/cjs/presentation-backend/NativePlatform.js.map +1 -1
- package/lib/cjs/presentation-backend/Presentation.d.ts +106 -106
- package/lib/cjs/presentation-backend/Presentation.d.ts.map +1 -1
- package/lib/cjs/presentation-backend/Presentation.js +148 -150
- package/lib/cjs/presentation-backend/Presentation.js.map +1 -1
- package/lib/cjs/presentation-backend/PresentationIpcHandler.d.ts +12 -12
- package/lib/cjs/presentation-backend/PresentationIpcHandler.js +41 -41
- package/lib/cjs/presentation-backend/PresentationManager.d.ts +456 -445
- package/lib/cjs/presentation-backend/PresentationManager.d.ts.map +1 -1
- package/lib/cjs/presentation-backend/PresentationManager.js +309 -311
- package/lib/cjs/presentation-backend/PresentationManager.js.map +1 -1
- package/lib/cjs/presentation-backend/PresentationManagerDetail.d.ts +61 -61
- package/lib/cjs/presentation-backend/PresentationManagerDetail.js +430 -430
- package/lib/cjs/presentation-backend/PresentationManagerDetail.js.map +1 -1
- package/lib/cjs/presentation-backend/PresentationRpcImpl.d.ts +62 -62
- package/lib/cjs/presentation-backend/PresentationRpcImpl.d.ts.map +1 -1
- package/lib/cjs/presentation-backend/PresentationRpcImpl.js +388 -388
- package/lib/cjs/presentation-backend/PresentationRpcImpl.js.map +1 -1
- package/lib/cjs/presentation-backend/RulesetEmbedder.d.ts +102 -102
- package/lib/cjs/presentation-backend/RulesetEmbedder.d.ts.map +1 -1
- package/lib/cjs/presentation-backend/RulesetEmbedder.js +284 -279
- package/lib/cjs/presentation-backend/RulesetEmbedder.js.map +1 -1
- package/lib/cjs/presentation-backend/RulesetManager.d.ts +53 -53
- package/lib/cjs/presentation-backend/RulesetManager.js +73 -73
- package/lib/cjs/presentation-backend/RulesetVariablesManager.d.ts +140 -140
- package/lib/cjs/presentation-backend/RulesetVariablesManager.js +129 -129
- package/lib/cjs/presentation-backend/SelectionScopesHelper.d.ts +28 -28
- package/lib/cjs/presentation-backend/SelectionScopesHelper.js +210 -213
- package/lib/cjs/presentation-backend/SelectionScopesHelper.js.map +1 -1
- package/lib/cjs/presentation-backend/TemporaryStorage.d.ts +123 -123
- package/lib/cjs/presentation-backend/TemporaryStorage.js +151 -151
- package/lib/cjs/presentation-backend/UpdatesTracker.d.ts +27 -27
- package/lib/cjs/presentation-backend/UpdatesTracker.js +54 -54
- package/lib/cjs/presentation-backend/Utils.d.ts +49 -49
- package/lib/cjs/presentation-backend/Utils.d.ts.map +1 -1
- package/lib/cjs/presentation-backend/Utils.js +107 -106
- package/lib/cjs/presentation-backend/Utils.js.map +1 -1
- package/lib/cjs/presentation-backend/domain/PresentationRulesDomain.d.ts +16 -16
- package/lib/cjs/presentation-backend/domain/PresentationRulesDomain.js +55 -51
- package/lib/cjs/presentation-backend/domain/PresentationRulesDomain.js.map +1 -1
- package/lib/cjs/presentation-backend/domain/RulesetElements.d.ts +21 -21
- package/lib/cjs/presentation-backend/domain/RulesetElements.js +38 -38
- package/lib/cjs/presentation-backend.d.ts +19 -19
- package/lib/cjs/presentation-backend.js +39 -35
- package/lib/cjs/presentation-backend.js.map +1 -1
- package/package.json +18 -18
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/*---------------------------------------------------------------------------------------------
|
|
3
|
-
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
4
|
-
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
5
|
-
*--------------------------------------------------------------------------------------------*/
|
|
6
|
-
/** @packageDocumentation
|
|
7
|
-
* @module Core
|
|
8
|
-
*/
|
|
9
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
-
exports.UpdatesTracker = void 0;
|
|
11
|
-
const core_bentley_1 = require("@itwin/core-bentley");
|
|
12
|
-
const core_backend_1 = require("@itwin/core-backend");
|
|
13
|
-
const presentation_common_1 = require("@itwin/presentation-common");
|
|
14
|
-
const BackendLoggerCategory_1 = require("./BackendLoggerCategory");
|
|
15
|
-
/**
|
|
16
|
-
* An updates handler which polls native platform for update records
|
|
17
|
-
* and emits an event to the frontend if any are found.
|
|
18
|
-
*
|
|
19
|
-
* @internal
|
|
20
|
-
*/
|
|
21
|
-
class UpdatesTracker {
|
|
22
|
-
constructor(props) {
|
|
23
|
-
this._getNativePlatform = props.nativePlatformGetter;
|
|
24
|
-
this._intervalHandle = setInterval(this.onInterval.bind(this), props.pollInterval);
|
|
25
|
-
}
|
|
26
|
-
static create(props) { return new UpdatesTracker(props); }
|
|
27
|
-
dispose() {
|
|
28
|
-
clearInterval(this._intervalHandle);
|
|
29
|
-
}
|
|
30
|
-
onInterval() {
|
|
31
|
-
const response = this._getNativePlatform().getUpdateInfo();
|
|
32
|
-
const info = parseUpdateInfo(response.result);
|
|
33
|
-
if (info)
|
|
34
|
-
core_backend_1.IpcHost.send(presentation_common_1.PresentationIpcEvents.Update, info);
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
exports.UpdatesTracker = UpdatesTracker;
|
|
38
|
-
const parseUpdateInfo = (info) => {
|
|
39
|
-
if (info === undefined)
|
|
40
|
-
return undefined;
|
|
41
|
-
const parsedInfo = {};
|
|
42
|
-
for (const fileName in info) {
|
|
43
|
-
// istanbul ignore if
|
|
44
|
-
if (!info.hasOwnProperty(fileName))
|
|
45
|
-
continue;
|
|
46
|
-
const imodelDb = core_backend_1.IModelDb.findByFilename(fileName);
|
|
47
|
-
if (!imodelDb) {
|
|
48
|
-
core_bentley_1.Logger.logError(BackendLoggerCategory_1.PresentationBackendLoggerCategory.PresentationManager, `Update records IModelDb not found with path ${fileName}`);
|
|
49
|
-
continue;
|
|
50
|
-
}
|
|
51
|
-
parsedInfo[imodelDb.getRpcProps().key] = info[fileName];
|
|
52
|
-
}
|
|
53
|
-
return Object.keys(parsedInfo).length > 0 ? parsedInfo : undefined;
|
|
54
|
-
};
|
|
1
|
+
"use strict";
|
|
2
|
+
/*---------------------------------------------------------------------------------------------
|
|
3
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
4
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
5
|
+
*--------------------------------------------------------------------------------------------*/
|
|
6
|
+
/** @packageDocumentation
|
|
7
|
+
* @module Core
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.UpdatesTracker = void 0;
|
|
11
|
+
const core_bentley_1 = require("@itwin/core-bentley");
|
|
12
|
+
const core_backend_1 = require("@itwin/core-backend");
|
|
13
|
+
const presentation_common_1 = require("@itwin/presentation-common");
|
|
14
|
+
const BackendLoggerCategory_1 = require("./BackendLoggerCategory");
|
|
15
|
+
/**
|
|
16
|
+
* An updates handler which polls native platform for update records
|
|
17
|
+
* and emits an event to the frontend if any are found.
|
|
18
|
+
*
|
|
19
|
+
* @internal
|
|
20
|
+
*/
|
|
21
|
+
class UpdatesTracker {
|
|
22
|
+
constructor(props) {
|
|
23
|
+
this._getNativePlatform = props.nativePlatformGetter;
|
|
24
|
+
this._intervalHandle = setInterval(this.onInterval.bind(this), props.pollInterval);
|
|
25
|
+
}
|
|
26
|
+
static create(props) { return new UpdatesTracker(props); }
|
|
27
|
+
dispose() {
|
|
28
|
+
clearInterval(this._intervalHandle);
|
|
29
|
+
}
|
|
30
|
+
onInterval() {
|
|
31
|
+
const response = this._getNativePlatform().getUpdateInfo();
|
|
32
|
+
const info = parseUpdateInfo(response.result);
|
|
33
|
+
if (info)
|
|
34
|
+
core_backend_1.IpcHost.send(presentation_common_1.PresentationIpcEvents.Update, info);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
exports.UpdatesTracker = UpdatesTracker;
|
|
38
|
+
const parseUpdateInfo = (info) => {
|
|
39
|
+
if (info === undefined)
|
|
40
|
+
return undefined;
|
|
41
|
+
const parsedInfo = {};
|
|
42
|
+
for (const fileName in info) {
|
|
43
|
+
// istanbul ignore if
|
|
44
|
+
if (!info.hasOwnProperty(fileName))
|
|
45
|
+
continue;
|
|
46
|
+
const imodelDb = core_backend_1.IModelDb.findByFilename(fileName);
|
|
47
|
+
if (!imodelDb) {
|
|
48
|
+
core_bentley_1.Logger.logError(BackendLoggerCategory_1.PresentationBackendLoggerCategory.PresentationManager, `Update records IModelDb not found with path ${fileName}`);
|
|
49
|
+
continue;
|
|
50
|
+
}
|
|
51
|
+
parsedInfo[imodelDb.getRpcProps().key] = info[fileName];
|
|
52
|
+
}
|
|
53
|
+
return Object.keys(parsedInfo).length > 0 ? parsedInfo : undefined;
|
|
54
|
+
};
|
|
55
55
|
//# sourceMappingURL=UpdatesTracker.js.map
|
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
/** @packageDocumentation
|
|
2
|
-
* @module Core
|
|
3
|
-
*/
|
|
4
|
-
import { IModelDb } from "@itwin/core-backend";
|
|
5
|
-
import { Id64String } from "@itwin/core-bentley";
|
|
6
|
-
import { Diagnostics, DiagnosticsOptions, InstanceKey } from "@itwin/presentation-common";
|
|
7
|
-
/** @internal */
|
|
8
|
-
export declare function getLocalizedStringEN(key: string):
|
|
9
|
-
/** @internal */
|
|
10
|
-
export declare function getElementKey(imodel: IModelDb, id: Id64String): InstanceKey | undefined;
|
|
11
|
-
/** @internal */
|
|
12
|
-
export declare function normalizeVersion(version?: string): string;
|
|
13
|
-
/**
|
|
14
|
-
* A function that received request diagnostics and, optionally, request context.
|
|
15
|
-
* @beta
|
|
16
|
-
*/
|
|
17
|
-
export
|
|
18
|
-
/**
|
|
19
|
-
* Data structure for backend diagnostics options.
|
|
20
|
-
* @beta
|
|
21
|
-
*/
|
|
22
|
-
export interface BackendDiagnosticsOptions<TContext = any> extends DiagnosticsOptions {
|
|
23
|
-
/**
|
|
24
|
-
* An optional function to supply request context that'll be passed to [[handler]] when
|
|
25
|
-
* it's called after the request is fulfilled.
|
|
26
|
-
*/
|
|
27
|
-
requestContextSupplier?: () => TContext;
|
|
28
|
-
/**
|
|
29
|
-
* Request diagnostics handler function that is called after the request is fulfilled. The handler
|
|
30
|
-
* receives request diagnostics as the first argument and, optionally, request context as the
|
|
31
|
-
* second (see [[requestContextSupplier]]).
|
|
32
|
-
*/
|
|
33
|
-
handler: BackendDiagnosticsHandler<TContext>;
|
|
34
|
-
}
|
|
35
|
-
/**
|
|
36
|
-
* Data structure which contains backend diagnostics options.
|
|
37
|
-
* @public
|
|
38
|
-
*/
|
|
39
|
-
export interface BackendDiagnosticsAttribute {
|
|
40
|
-
/**
|
|
41
|
-
* Backend diagnostics options.
|
|
42
|
-
* @beta
|
|
43
|
-
*/
|
|
44
|
-
diagnostics?: BackendDiagnosticsOptions;
|
|
45
|
-
}
|
|
46
|
-
/** @internal */
|
|
47
|
-
export declare function combineDiagnosticsOptions(...options: Array<BackendDiagnosticsOptions | undefined>): DiagnosticsOptions | undefined;
|
|
48
|
-
/** @internal */
|
|
49
|
-
export declare function reportDiagnostics<TContext>(diagnostics: Diagnostics, options: BackendDiagnosticsOptions<TContext>, context?: TContext): void;
|
|
1
|
+
/** @packageDocumentation
|
|
2
|
+
* @module Core
|
|
3
|
+
*/
|
|
4
|
+
import { IModelDb } from "@itwin/core-backend";
|
|
5
|
+
import { Id64String } from "@itwin/core-bentley";
|
|
6
|
+
import { Diagnostics, DiagnosticsOptions, InstanceKey } from "@itwin/presentation-common";
|
|
7
|
+
/** @internal */
|
|
8
|
+
export declare function getLocalizedStringEN(key: string): string;
|
|
9
|
+
/** @internal */
|
|
10
|
+
export declare function getElementKey(imodel: IModelDb, id: Id64String): InstanceKey | undefined;
|
|
11
|
+
/** @internal */
|
|
12
|
+
export declare function normalizeVersion(version?: string): string;
|
|
13
|
+
/**
|
|
14
|
+
* A function that received request diagnostics and, optionally, request context.
|
|
15
|
+
* @beta
|
|
16
|
+
*/
|
|
17
|
+
export type BackendDiagnosticsHandler<TContext = any> = (logs: Diagnostics, requestContext?: TContext) => void;
|
|
18
|
+
/**
|
|
19
|
+
* Data structure for backend diagnostics options.
|
|
20
|
+
* @beta
|
|
21
|
+
*/
|
|
22
|
+
export interface BackendDiagnosticsOptions<TContext = any> extends DiagnosticsOptions {
|
|
23
|
+
/**
|
|
24
|
+
* An optional function to supply request context that'll be passed to [[handler]] when
|
|
25
|
+
* it's called after the request is fulfilled.
|
|
26
|
+
*/
|
|
27
|
+
requestContextSupplier?: () => TContext;
|
|
28
|
+
/**
|
|
29
|
+
* Request diagnostics handler function that is called after the request is fulfilled. The handler
|
|
30
|
+
* receives request diagnostics as the first argument and, optionally, request context as the
|
|
31
|
+
* second (see [[requestContextSupplier]]).
|
|
32
|
+
*/
|
|
33
|
+
handler: BackendDiagnosticsHandler<TContext>;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Data structure which contains backend diagnostics options.
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export interface BackendDiagnosticsAttribute {
|
|
40
|
+
/**
|
|
41
|
+
* Backend diagnostics options.
|
|
42
|
+
* @beta
|
|
43
|
+
*/
|
|
44
|
+
diagnostics?: BackendDiagnosticsOptions;
|
|
45
|
+
}
|
|
46
|
+
/** @internal */
|
|
47
|
+
export declare function combineDiagnosticsOptions(...options: Array<BackendDiagnosticsOptions | undefined>): DiagnosticsOptions | undefined;
|
|
48
|
+
/** @internal */
|
|
49
|
+
export declare function reportDiagnostics<TContext>(diagnostics: Diagnostics, options: BackendDiagnosticsOptions<TContext>, context?: TContext): void;
|
|
50
50
|
//# sourceMappingURL=Utils.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Utils.d.ts","sourceRoot":"","sources":["../../../src/presentation-backend/Utils.ts"],"names":[],"mappings":"AAIA;;GAEG;AAGH,OAAO,EAAW,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAY,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC3D,OAAO,EACuD,WAAW,EAAuB,kBAAkB,EAAE,WAAW,EAC9H,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"Utils.d.ts","sourceRoot":"","sources":["../../../src/presentation-backend/Utils.ts"],"names":[],"mappings":"AAIA;;GAEG;AAGH,OAAO,EAAW,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAY,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC3D,OAAO,EACuD,WAAW,EAAuB,kBAAkB,EAAE,WAAW,EAC9H,MAAM,4BAA4B,CAAC;AAIpC,gBAAgB;AAChB,wBAAgB,oBAAoB,CAAC,GAAG,EAAE,MAAM,UAY/C;AAED,gBAAgB;AAChB,wBAAgB,aAAa,CAAC,MAAM,EAAE,QAAQ,EAAE,EAAE,EAAE,UAAU,GAAG,WAAW,GAAG,SAAS,CAWvF;AAED,gBAAgB;AAChB,wBAAgB,gBAAgB,CAAC,OAAO,CAAC,EAAE,MAAM,UAOhD;AAED;;;GAGG;AACH,MAAM,MAAM,yBAAyB,CAAC,QAAQ,GAAG,GAAG,IAAI,CAAC,IAAI,EAAE,WAAW,EAAE,cAAc,CAAC,EAAE,QAAQ,KAAK,IAAI,CAAC;AAE/G;;;GAGG;AACH,MAAM,WAAW,yBAAyB,CAAC,QAAQ,GAAG,GAAG,CAAE,SAAQ,kBAAkB;IACnF;;;OAGG;IACH,sBAAsB,CAAC,EAAE,MAAM,QAAQ,CAAC;IAExC;;;;OAIG;IACH,OAAO,EAAE,yBAAyB,CAAC,QAAQ,CAAC,CAAC;CAC9C;AAED;;;GAGG;AACH,MAAM,WAAW,2BAA2B;IAC1C;;;OAGG;IACH,WAAW,CAAC,EAAE,yBAAyB,CAAC;CACzC;AAED,gBAAgB;AAChB,wBAAgB,yBAAyB,CAAC,GAAG,OAAO,EAAE,KAAK,CAAC,yBAAyB,GAAG,SAAS,CAAC,GAAG,kBAAkB,GAAG,SAAS,CAgBlI;AAED,gBAAgB;AAChB,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,OAAO,EAAE,yBAAyB,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC,EAAE,QAAQ,QAGrI"}
|
|
@@ -1,107 +1,108 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/*---------------------------------------------------------------------------------------------
|
|
3
|
-
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
4
|
-
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
5
|
-
*--------------------------------------------------------------------------------------------*/
|
|
6
|
-
/** @packageDocumentation
|
|
7
|
-
* @module Core
|
|
8
|
-
*/
|
|
9
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
-
exports.reportDiagnostics = exports.combineDiagnosticsOptions = exports.normalizeVersion = exports.getElementKey = exports.getLocalizedStringEN = void 0;
|
|
11
|
-
const semver_1 = require("semver");
|
|
12
|
-
const core_backend_1 = require("@itwin/core-backend");
|
|
13
|
-
const core_bentley_1 = require("@itwin/core-bentley");
|
|
14
|
-
const presentation_common_1 = require("@itwin/presentation-common");
|
|
15
|
-
const
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
const [namespace, identifier] = key.split(":", 2);
|
|
20
|
-
if (namespace
|
|
21
|
-
return
|
|
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
|
-
if (
|
|
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
|
-
const
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
delete strippedScope.
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
const
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
/*---------------------------------------------------------------------------------------------
|
|
3
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
4
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
5
|
+
*--------------------------------------------------------------------------------------------*/
|
|
6
|
+
/** @packageDocumentation
|
|
7
|
+
* @module Core
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.reportDiagnostics = exports.combineDiagnosticsOptions = exports.normalizeVersion = exports.getElementKey = exports.getLocalizedStringEN = void 0;
|
|
11
|
+
const semver_1 = require("semver");
|
|
12
|
+
const core_backend_1 = require("@itwin/core-backend");
|
|
13
|
+
const core_bentley_1 = require("@itwin/core-bentley");
|
|
14
|
+
const presentation_common_1 = require("@itwin/presentation-common");
|
|
15
|
+
const presentation = require("@itwin/presentation-common/lib/cjs/assets/locales/en/Presentation.json"); // eslint-disable-line @typescript-eslint/no-var-requires
|
|
16
|
+
/** @internal */
|
|
17
|
+
function getLocalizedStringEN(key) {
|
|
18
|
+
let result = presentation;
|
|
19
|
+
const [namespace, identifier] = key.split(":", 2);
|
|
20
|
+
if (namespace !== "Presentation")
|
|
21
|
+
return key;
|
|
22
|
+
const keySteps = identifier.split(".");
|
|
23
|
+
for (const keyStep of keySteps) {
|
|
24
|
+
if (keyStep in result === false)
|
|
25
|
+
return key;
|
|
26
|
+
result = result[keyStep];
|
|
27
|
+
}
|
|
28
|
+
return typeof result === "string" ? result : key;
|
|
29
|
+
}
|
|
30
|
+
exports.getLocalizedStringEN = getLocalizedStringEN;
|
|
31
|
+
/** @internal */
|
|
32
|
+
function getElementKey(imodel, id) {
|
|
33
|
+
let key;
|
|
34
|
+
const query = `SELECT ECClassId FROM ${core_backend_1.Element.classFullName} e WHERE ECInstanceId = ?`;
|
|
35
|
+
imodel.withPreparedStatement(query, (stmt) => {
|
|
36
|
+
try {
|
|
37
|
+
stmt.bindId(1, id);
|
|
38
|
+
if (stmt.step() === core_bentley_1.DbResult.BE_SQLITE_ROW)
|
|
39
|
+
key = { className: stmt.getValue(0).getClassNameForClassId().replace(".", ":"), id };
|
|
40
|
+
}
|
|
41
|
+
catch { }
|
|
42
|
+
});
|
|
43
|
+
return key;
|
|
44
|
+
}
|
|
45
|
+
exports.getElementKey = getElementKey;
|
|
46
|
+
/** @internal */
|
|
47
|
+
function normalizeVersion(version) {
|
|
48
|
+
if (version) {
|
|
49
|
+
const parsedVersion = (0, semver_1.parse)(version, true);
|
|
50
|
+
if (parsedVersion)
|
|
51
|
+
return `${parsedVersion.major}.${parsedVersion.minor}.${parsedVersion.patch}`;
|
|
52
|
+
}
|
|
53
|
+
return "0.0.0";
|
|
54
|
+
}
|
|
55
|
+
exports.normalizeVersion = normalizeVersion;
|
|
56
|
+
/** @internal */
|
|
57
|
+
function combineDiagnosticsOptions(...options) {
|
|
58
|
+
const combinedOptions = {};
|
|
59
|
+
options.forEach((d) => {
|
|
60
|
+
if (!d)
|
|
61
|
+
return;
|
|
62
|
+
if (d.perf === true || typeof d.perf === "object" && (!combinedOptions.perf || typeof combinedOptions.perf === "object" && d.perf.minimumDuration < combinedOptions.perf.minimumDuration)) {
|
|
63
|
+
combinedOptions.perf = d.perf;
|
|
64
|
+
}
|
|
65
|
+
const combinedDev = (0, presentation_common_1.combineDiagnosticsSeverities)(d.dev, combinedOptions.dev);
|
|
66
|
+
if (combinedDev)
|
|
67
|
+
combinedOptions.dev = combinedDev;
|
|
68
|
+
const combinedEditor = (0, presentation_common_1.combineDiagnosticsSeverities)(d.editor, combinedOptions.editor);
|
|
69
|
+
if (combinedEditor)
|
|
70
|
+
combinedOptions.editor = combinedEditor;
|
|
71
|
+
});
|
|
72
|
+
return (combinedOptions.dev || combinedOptions.editor || combinedOptions.perf) ? combinedOptions : undefined;
|
|
73
|
+
}
|
|
74
|
+
exports.combineDiagnosticsOptions = combineDiagnosticsOptions;
|
|
75
|
+
/** @internal */
|
|
76
|
+
function reportDiagnostics(diagnostics, options, context) {
|
|
77
|
+
const stripped = diagnostics.logs ? stripDiagnostics(options, diagnostics.logs) : undefined;
|
|
78
|
+
stripped && options.handler({ logs: stripped }, context);
|
|
79
|
+
}
|
|
80
|
+
exports.reportDiagnostics = reportDiagnostics;
|
|
81
|
+
function stripDiagnostics(options, diagnostics) {
|
|
82
|
+
const stripped = [];
|
|
83
|
+
diagnostics.forEach((entry) => {
|
|
84
|
+
if (presentation_common_1.DiagnosticsLogEntry.isScope(entry)) {
|
|
85
|
+
const scopeLogs = stripDiagnostics(options, entry.logs ?? []);
|
|
86
|
+
const strippedScope = { ...entry, logs: scopeLogs };
|
|
87
|
+
if (!strippedScope.logs)
|
|
88
|
+
delete strippedScope.logs;
|
|
89
|
+
if (entry.duration !== undefined && (options.perf === true || typeof options.perf === "object" && entry.duration >= options.perf.minimumDuration)) {
|
|
90
|
+
stripped.push(strippedScope);
|
|
91
|
+
}
|
|
92
|
+
else if (scopeLogs) {
|
|
93
|
+
delete strippedScope.duration;
|
|
94
|
+
delete strippedScope.scopeCreateTimestamp;
|
|
95
|
+
stripped.push(strippedScope);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
else {
|
|
99
|
+
const matchesDevSeverity = entry.severity.dev && (0, presentation_common_1.compareDiagnosticsSeverities)(entry.severity.dev, options.dev) >= 0;
|
|
100
|
+
const matchesEditorSeverity = entry.severity.editor && (0, presentation_common_1.compareDiagnosticsSeverities)(entry.severity.editor, options.editor) >= 0;
|
|
101
|
+
if (matchesDevSeverity || matchesEditorSeverity) {
|
|
102
|
+
stripped.push({ ...entry });
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
});
|
|
106
|
+
return stripped.length > 0 ? stripped : undefined;
|
|
107
|
+
}
|
|
107
108
|
//# sourceMappingURL=Utils.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Utils.js","sourceRoot":"","sources":["../../../src/presentation-backend/Utils.ts"],"names":[],"mappings":"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","sourcesContent":["/*---------------------------------------------------------------------------------------------\r\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\r\n* See LICENSE.md in the project root for license terms and full copyright notice.\r\n*--------------------------------------------------------------------------------------------*/\r\n/** @packageDocumentation\r\n * @module Core\r\n */\r\n\r\nimport { parse as parseVersion } from \"semver\";\r\nimport { Element, IModelDb } from \"@itwin/core-backend\";\r\nimport { DbResult, Id64String } from \"@itwin/core-bentley\";\r\nimport {\r\n combineDiagnosticsSeverities, compareDiagnosticsSeverities, Diagnostics, DiagnosticsLogEntry, DiagnosticsOptions, InstanceKey,\r\n} from \"@itwin/presentation-common\";\r\n\r\nconst ecPresentation = require(\"@itwin/presentation-common/lib/cjs/assets/locales/en/ECPresentation.json\"); // eslint-disable-line @typescript-eslint/no-var-requires\r\nconst rulesEngine = require(\"@itwin/presentation-common/lib/cjs/assets/locales/en/RulesEngine.json\"); // eslint-disable-line @typescript-eslint/no-var-requires\r\n\r\n/** @internal */\r\nexport function getLocalizedStringEN(key: string) {\r\n const [namespace, identifier] = key.split(\":\", 2);\r\n if (namespace === \"ECPresentation\") {\r\n return ecPresentation[identifier];\r\n }\r\n if (namespace === \"RulesEngine\") {\r\n return rulesEngine[identifier];\r\n }\r\n return key;\r\n}\r\n\r\n/** @internal */\r\nexport function getElementKey(imodel: IModelDb, id: Id64String): InstanceKey | undefined {\r\n let key: InstanceKey | undefined;\r\n const query = `SELECT ECClassId FROM ${Element.classFullName} e WHERE ECInstanceId = ?`;\r\n imodel.withPreparedStatement(query, (stmt) => {\r\n try {\r\n stmt.bindId(1, id);\r\n if (stmt.step() === DbResult.BE_SQLITE_ROW)\r\n key = { className: stmt.getValue(0).getClassNameForClassId().replace(\".\", \":\"), id };\r\n } catch { }\r\n });\r\n return key;\r\n}\r\n\r\n/** @internal */\r\nexport function normalizeVersion(version?: string) {\r\n if (version) {\r\n const parsedVersion = parseVersion(version, true);\r\n if (parsedVersion)\r\n return `${parsedVersion.major}.${parsedVersion.minor}.${parsedVersion.patch}`;\r\n }\r\n return \"0.0.0\";\r\n}\r\n\r\n/**\r\n * A function that received request diagnostics and, optionally, request context.\r\n * @beta\r\n */\r\nexport type BackendDiagnosticsHandler<TContext = any> = (logs: Diagnostics, requestContext?: TContext) => void;\r\n\r\n/**\r\n * Data structure for backend diagnostics options.\r\n * @beta\r\n */\r\nexport interface BackendDiagnosticsOptions<TContext = any> extends DiagnosticsOptions {\r\n /**\r\n * An optional function to supply request context that'll be passed to [[handler]] when\r\n * it's called after the request is fulfilled.\r\n */\r\n requestContextSupplier?: () => TContext;\r\n\r\n /**\r\n * Request diagnostics handler function that is called after the request is fulfilled. The handler\r\n * receives request diagnostics as the first argument and, optionally, request context as the\r\n * second (see [[requestContextSupplier]]).\r\n */\r\n handler: BackendDiagnosticsHandler<TContext>;\r\n}\r\n\r\n/**\r\n * Data structure which contains backend diagnostics options.\r\n * @public\r\n */\r\nexport interface BackendDiagnosticsAttribute {\r\n /**\r\n * Backend diagnostics options.\r\n * @beta\r\n */\r\n diagnostics?: BackendDiagnosticsOptions;\r\n}\r\n\r\n/** @internal */\r\nexport function combineDiagnosticsOptions(...options: Array<BackendDiagnosticsOptions | undefined>): DiagnosticsOptions | undefined {\r\n const combinedOptions: DiagnosticsOptions = {};\r\n options.forEach((d) => {\r\n if (!d)\r\n return;\r\n if (d.perf === true || typeof d.perf === \"object\" && (!combinedOptions.perf || typeof combinedOptions.perf === \"object\" && d.perf.minimumDuration < combinedOptions.perf.minimumDuration)) {\r\n combinedOptions.perf = d.perf;\r\n }\r\n const combinedDev = combineDiagnosticsSeverities(d.dev, combinedOptions.dev);\r\n if (combinedDev)\r\n combinedOptions.dev = combinedDev;\r\n const combinedEditor = combineDiagnosticsSeverities(d.editor, combinedOptions.editor);\r\n if (combinedEditor)\r\n combinedOptions.editor = combinedEditor;\r\n });\r\n return (combinedOptions.dev || combinedOptions.editor || combinedOptions.perf) ? combinedOptions : undefined;\r\n}\r\n\r\n/** @internal */\r\nexport function reportDiagnostics<TContext>(diagnostics: Diagnostics, options: BackendDiagnosticsOptions<TContext>, context?: TContext) {\r\n const stripped = diagnostics.logs ? stripDiagnostics(options, diagnostics.logs) : undefined;\r\n stripped && options.handler({ logs: stripped }, context);\r\n}\r\nfunction stripDiagnostics<TEntry extends DiagnosticsLogEntry>(options: DiagnosticsOptions, diagnostics: TEntry[]) {\r\n const stripped: TEntry[] = [];\r\n diagnostics.forEach((entry) => {\r\n if (DiagnosticsLogEntry.isScope(entry)) {\r\n const scopeLogs = stripDiagnostics(options, entry.logs ?? []);\r\n const strippedScope = { ...entry, logs: scopeLogs };\r\n if (!strippedScope.logs)\r\n delete strippedScope.logs;\r\n if (entry.duration !== undefined && (options.perf === true || typeof options.perf === \"object\" && entry.duration >= options.perf.minimumDuration)) {\r\n stripped.push(strippedScope);\r\n } else if (scopeLogs) {\r\n delete strippedScope.duration;\r\n delete strippedScope.scopeCreateTimestamp;\r\n stripped.push(strippedScope);\r\n }\r\n } else {\r\n const matchesDevSeverity = entry.severity.dev && compareDiagnosticsSeverities(entry.severity.dev, options.dev) >= 0;\r\n const matchesEditorSeverity = entry.severity.editor && compareDiagnosticsSeverities(entry.severity.editor, options.editor) >= 0;\r\n if (matchesDevSeverity || matchesEditorSeverity) {\r\n stripped.push({ ...entry });\r\n }\r\n }\r\n });\r\n return stripped.length > 0 ? stripped : undefined;\r\n}\r\n"]}
|
|
1
|
+
{"version":3,"file":"Utils.js","sourceRoot":"","sources":["../../../src/presentation-backend/Utils.ts"],"names":[],"mappings":";AAAA;;;+FAG+F;AAC/F;;GAEG;;;AAEH,mCAA+C;AAC/C,sDAAwD;AACxD,sDAA2D;AAC3D,oEAEoC;AAEpC,MAAM,YAAY,GAAG,OAAO,CAAC,wEAAwE,CAAC,CAAC,CAAC,yDAAyD;AAEjK,gBAAgB;AAChB,SAAgB,oBAAoB,CAAC,GAAW;IAC9C,IAAI,MAAM,GAAG,YAAY,CAAC;IAC1B,MAAM,CAAC,SAAS,EAAE,UAAU,CAAC,GAAG,GAAG,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;IAClD,IAAI,SAAS,KAAK,cAAc;QAC9B,OAAO,GAAG,CAAC;IACb,MAAM,QAAQ,GAAG,UAAU,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IACvC,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;QAC9B,IAAI,OAAO,IAAI,MAAM,KAAK,KAAK;YAC7B,OAAO,GAAG,CAAC;QACb,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC,CAAC;KAC1B;IACD,OAAO,OAAO,MAAM,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC;AACnD,CAAC;AAZD,oDAYC;AAED,gBAAgB;AAChB,SAAgB,aAAa,CAAC,MAAgB,EAAE,EAAc;IAC5D,IAAI,GAA4B,CAAC;IACjC,MAAM,KAAK,GAAG,yBAAyB,sBAAO,CAAC,aAAa,2BAA2B,CAAC;IACxF,MAAM,CAAC,qBAAqB,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,EAAE;QAC3C,IAAI;YACF,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;YACnB,IAAI,IAAI,CAAC,IAAI,EAAE,KAAK,uBAAQ,CAAC,aAAa;gBACxC,GAAG,GAAG,EAAE,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,sBAAsB,EAAE,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,CAAC;SACxF;QAAC,MAAM,GAAG;IACb,CAAC,CAAC,CAAC;IACH,OAAO,GAAG,CAAC;AACb,CAAC;AAXD,sCAWC;AAED,gBAAgB;AAChB,SAAgB,gBAAgB,CAAC,OAAgB;IAC/C,IAAI,OAAO,EAAE;QACX,MAAM,aAAa,GAAG,IAAA,cAAY,EAAC,OAAO,EAAE,IAAI,CAAC,CAAC;QAClD,IAAI,aAAa;YACf,OAAO,GAAG,aAAa,CAAC,KAAK,IAAI,aAAa,CAAC,KAAK,IAAI,aAAa,CAAC,KAAK,EAAE,CAAC;KACjF;IACD,OAAO,OAAO,CAAC;AACjB,CAAC;AAPD,4CAOC;AAuCD,gBAAgB;AAChB,SAAgB,yBAAyB,CAAC,GAAG,OAAqD;IAChG,MAAM,eAAe,GAAuB,EAAE,CAAC;IAC/C,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE;QACpB,IAAI,CAAC,CAAC;YACJ,OAAO;QACT,IAAI,CAAC,CAAC,IAAI,KAAK,IAAI,IAAI,OAAO,CAAC,CAAC,IAAI,KAAK,QAAQ,IAAI,CAAC,CAAC,eAAe,CAAC,IAAI,IAAI,OAAO,eAAe,CAAC,IAAI,KAAK,QAAQ,IAAI,CAAC,CAAC,IAAI,CAAC,eAAe,GAAG,eAAe,CAAC,IAAI,CAAC,eAAe,CAAC,EAAE;YACzL,eAAe,CAAC,IAAI,GAAG,CAAC,CAAC,IAAI,CAAC;SAC/B;QACD,MAAM,WAAW,GAAG,IAAA,kDAA4B,EAAC,CAAC,CAAC,GAAG,EAAE,eAAe,CAAC,GAAG,CAAC,CAAC;QAC7E,IAAI,WAAW;YACb,eAAe,CAAC,GAAG,GAAG,WAAW,CAAC;QACpC,MAAM,cAAc,GAAG,IAAA,kDAA4B,EAAC,CAAC,CAAC,MAAM,EAAE,eAAe,CAAC,MAAM,CAAC,CAAC;QACtF,IAAI,cAAc;YAChB,eAAe,CAAC,MAAM,GAAG,cAAc,CAAC;IAC5C,CAAC,CAAC,CAAC;IACH,OAAO,CAAC,eAAe,CAAC,GAAG,IAAI,eAAe,CAAC,MAAM,IAAI,eAAe,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;AAC/G,CAAC;AAhBD,8DAgBC;AAED,gBAAgB;AAChB,SAAgB,iBAAiB,CAAW,WAAwB,EAAE,OAA4C,EAAE,OAAkB;IACpI,MAAM,QAAQ,GAAG,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,gBAAgB,CAAC,OAAO,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;IAC5F,QAAQ,IAAI,OAAO,CAAC,OAAO,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,OAAO,CAAC,CAAC;AAC3D,CAAC;AAHD,8CAGC;AACD,SAAS,gBAAgB,CAAqC,OAA2B,EAAE,WAAqB;IAC9G,MAAM,QAAQ,GAAa,EAAE,CAAC;IAC9B,WAAW,CAAC,OAAO,CAAC,CAAC,KAAK,EAAE,EAAE;QAC5B,IAAI,yCAAmB,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;YACtC,MAAM,SAAS,GAAG,gBAAgB,CAAC,OAAO,EAAE,KAAK,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC;YAC9D,MAAM,aAAa,GAAG,EAAE,GAAG,KAAK,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;YACpD,IAAI,CAAC,aAAa,CAAC,IAAI;gBACrB,OAAO,aAAa,CAAC,IAAI,CAAC;YAC5B,IAAI,KAAK,CAAC,QAAQ,KAAK,SAAS,IAAI,CAAC,OAAO,CAAC,IAAI,KAAK,IAAI,IAAI,OAAO,OAAO,CAAC,IAAI,KAAK,QAAQ,IAAI,KAAK,CAAC,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC,eAAe,CAAC,EAAE;gBACjJ,QAAQ,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;aAC9B;iBAAM,IAAI,SAAS,EAAE;gBACpB,OAAO,aAAa,CAAC,QAAQ,CAAC;gBAC9B,OAAO,aAAa,CAAC,oBAAoB,CAAC;gBAC1C,QAAQ,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;aAC9B;SACF;aAAM;YACL,MAAM,kBAAkB,GAAG,KAAK,CAAC,QAAQ,CAAC,GAAG,IAAI,IAAA,kDAA4B,EAAC,KAAK,CAAC,QAAQ,CAAC,GAAG,EAAE,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;YACpH,MAAM,qBAAqB,GAAG,KAAK,CAAC,QAAQ,CAAC,MAAM,IAAI,IAAA,kDAA4B,EAAC,KAAK,CAAC,QAAQ,CAAC,MAAM,EAAE,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;YAChI,IAAI,kBAAkB,IAAI,qBAAqB,EAAE;gBAC/C,QAAQ,CAAC,IAAI,CAAC,EAAE,GAAG,KAAK,EAAE,CAAC,CAAC;aAC7B;SACF;IACH,CAAC,CAAC,CAAC;IACH,OAAO,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;AACpD,CAAC","sourcesContent":["/*---------------------------------------------------------------------------------------------\r\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\r\n* See LICENSE.md in the project root for license terms and full copyright notice.\r\n*--------------------------------------------------------------------------------------------*/\r\n/** @packageDocumentation\r\n * @module Core\r\n */\r\n\r\nimport { parse as parseVersion } from \"semver\";\r\nimport { Element, IModelDb } from \"@itwin/core-backend\";\r\nimport { DbResult, Id64String } from \"@itwin/core-bentley\";\r\nimport {\r\n combineDiagnosticsSeverities, compareDiagnosticsSeverities, Diagnostics, DiagnosticsLogEntry, DiagnosticsOptions, InstanceKey,\r\n} from \"@itwin/presentation-common\";\r\n\r\nconst presentation = require(\"@itwin/presentation-common/lib/cjs/assets/locales/en/Presentation.json\"); // eslint-disable-line @typescript-eslint/no-var-requires\r\n\r\n/** @internal */\r\nexport function getLocalizedStringEN(key: string) {\r\n let result = presentation;\r\n const [namespace, identifier] = key.split(\":\", 2);\r\n if (namespace !== \"Presentation\")\r\n return key;\r\n const keySteps = identifier.split(\".\");\r\n for (const keyStep of keySteps) {\r\n if (keyStep in result === false)\r\n return key;\r\n result = result[keyStep];\r\n }\r\n return typeof result === \"string\" ? result : key;\r\n}\r\n\r\n/** @internal */\r\nexport function getElementKey(imodel: IModelDb, id: Id64String): InstanceKey | undefined {\r\n let key: InstanceKey | undefined;\r\n const query = `SELECT ECClassId FROM ${Element.classFullName} e WHERE ECInstanceId = ?`;\r\n imodel.withPreparedStatement(query, (stmt) => {\r\n try {\r\n stmt.bindId(1, id);\r\n if (stmt.step() === DbResult.BE_SQLITE_ROW)\r\n key = { className: stmt.getValue(0).getClassNameForClassId().replace(\".\", \":\"), id };\r\n } catch { }\r\n });\r\n return key;\r\n}\r\n\r\n/** @internal */\r\nexport function normalizeVersion(version?: string) {\r\n if (version) {\r\n const parsedVersion = parseVersion(version, true);\r\n if (parsedVersion)\r\n return `${parsedVersion.major}.${parsedVersion.minor}.${parsedVersion.patch}`;\r\n }\r\n return \"0.0.0\";\r\n}\r\n\r\n/**\r\n * A function that received request diagnostics and, optionally, request context.\r\n * @beta\r\n */\r\nexport type BackendDiagnosticsHandler<TContext = any> = (logs: Diagnostics, requestContext?: TContext) => void;\r\n\r\n/**\r\n * Data structure for backend diagnostics options.\r\n * @beta\r\n */\r\nexport interface BackendDiagnosticsOptions<TContext = any> extends DiagnosticsOptions {\r\n /**\r\n * An optional function to supply request context that'll be passed to [[handler]] when\r\n * it's called after the request is fulfilled.\r\n */\r\n requestContextSupplier?: () => TContext;\r\n\r\n /**\r\n * Request diagnostics handler function that is called after the request is fulfilled. The handler\r\n * receives request diagnostics as the first argument and, optionally, request context as the\r\n * second (see [[requestContextSupplier]]).\r\n */\r\n handler: BackendDiagnosticsHandler<TContext>;\r\n}\r\n\r\n/**\r\n * Data structure which contains backend diagnostics options.\r\n * @public\r\n */\r\nexport interface BackendDiagnosticsAttribute {\r\n /**\r\n * Backend diagnostics options.\r\n * @beta\r\n */\r\n diagnostics?: BackendDiagnosticsOptions;\r\n}\r\n\r\n/** @internal */\r\nexport function combineDiagnosticsOptions(...options: Array<BackendDiagnosticsOptions | undefined>): DiagnosticsOptions | undefined {\r\n const combinedOptions: DiagnosticsOptions = {};\r\n options.forEach((d) => {\r\n if (!d)\r\n return;\r\n if (d.perf === true || typeof d.perf === \"object\" && (!combinedOptions.perf || typeof combinedOptions.perf === \"object\" && d.perf.minimumDuration < combinedOptions.perf.minimumDuration)) {\r\n combinedOptions.perf = d.perf;\r\n }\r\n const combinedDev = combineDiagnosticsSeverities(d.dev, combinedOptions.dev);\r\n if (combinedDev)\r\n combinedOptions.dev = combinedDev;\r\n const combinedEditor = combineDiagnosticsSeverities(d.editor, combinedOptions.editor);\r\n if (combinedEditor)\r\n combinedOptions.editor = combinedEditor;\r\n });\r\n return (combinedOptions.dev || combinedOptions.editor || combinedOptions.perf) ? combinedOptions : undefined;\r\n}\r\n\r\n/** @internal */\r\nexport function reportDiagnostics<TContext>(diagnostics: Diagnostics, options: BackendDiagnosticsOptions<TContext>, context?: TContext) {\r\n const stripped = diagnostics.logs ? stripDiagnostics(options, diagnostics.logs) : undefined;\r\n stripped && options.handler({ logs: stripped }, context);\r\n}\r\nfunction stripDiagnostics<TEntry extends DiagnosticsLogEntry>(options: DiagnosticsOptions, diagnostics: TEntry[]) {\r\n const stripped: TEntry[] = [];\r\n diagnostics.forEach((entry) => {\r\n if (DiagnosticsLogEntry.isScope(entry)) {\r\n const scopeLogs = stripDiagnostics(options, entry.logs ?? []);\r\n const strippedScope = { ...entry, logs: scopeLogs };\r\n if (!strippedScope.logs)\r\n delete strippedScope.logs;\r\n if (entry.duration !== undefined && (options.perf === true || typeof options.perf === \"object\" && entry.duration >= options.perf.minimumDuration)) {\r\n stripped.push(strippedScope);\r\n } else if (scopeLogs) {\r\n delete strippedScope.duration;\r\n delete strippedScope.scopeCreateTimestamp;\r\n stripped.push(strippedScope);\r\n }\r\n } else {\r\n const matchesDevSeverity = entry.severity.dev && compareDiagnosticsSeverities(entry.severity.dev, options.dev) >= 0;\r\n const matchesEditorSeverity = entry.severity.editor && compareDiagnosticsSeverities(entry.severity.editor, options.editor) >= 0;\r\n if (matchesDevSeverity || matchesEditorSeverity) {\r\n stripped.push({ ...entry });\r\n }\r\n }\r\n });\r\n return stripped.length > 0 ? stripped : undefined;\r\n}\r\n"]}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
/** @packageDocumentation
|
|
2
|
-
* @module Core
|
|
3
|
-
*/
|
|
4
|
-
import { Schema } from "@itwin/core-backend";
|
|
5
|
-
/** @internal */
|
|
6
|
-
export declare class PresentationRules extends Schema {
|
|
7
|
-
static get schemaName(): string;
|
|
8
|
-
/** Registers this schema and it's elements' classes */
|
|
9
|
-
static registerSchema(): void;
|
|
10
|
-
}
|
|
11
|
-
/** @internal */
|
|
12
|
-
export declare namespace PresentationRules {
|
|
13
|
-
enum CodeSpec {
|
|
14
|
-
Ruleset = "PresentationRules:Ruleset"
|
|
15
|
-
}
|
|
16
|
-
}
|
|
1
|
+
/** @packageDocumentation
|
|
2
|
+
* @module Core
|
|
3
|
+
*/
|
|
4
|
+
import { Schema } from "@itwin/core-backend";
|
|
5
|
+
/** @internal */
|
|
6
|
+
export declare class PresentationRules extends Schema {
|
|
7
|
+
static get schemaName(): string;
|
|
8
|
+
/** Registers this schema and it's elements' classes */
|
|
9
|
+
static registerSchema(): void;
|
|
10
|
+
}
|
|
11
|
+
/** @internal */
|
|
12
|
+
export declare namespace PresentationRules {
|
|
13
|
+
enum CodeSpec {
|
|
14
|
+
Ruleset = "PresentationRules:Ruleset"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
17
|
//# sourceMappingURL=PresentationRulesDomain.d.ts.map
|