@itwin/imodel-transformer 0.1.8-fedguidopt.0 → 0.1.8
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
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# Change Log - @itwin/imodel-transformer
|
|
2
2
|
|
|
3
|
-
This log was last generated on Tue, 02 May 2023 18:28:
|
|
3
|
+
This log was last generated on Tue, 02 May 2023 18:28:29 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
7
|
## 0.1.8
|
|
8
8
|
|
|
9
|
-
Tue, 02 May 2023 18:28:
|
|
9
|
+
Tue, 02 May 2023 18:28:29 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
import { EventEmitter } from "events";
|
|
3
1
|
import { AccessToken, Id64String } from "@itwin/core-bentley";
|
|
4
2
|
import * as ECSchemaMetaData from "@itwin/ecschema-metadata";
|
|
5
3
|
import { Element, ElementAspect, ElementMultiAspect, ElementUniqueAspect, Entity, IModelDb, Model, Relationship, RelationshipProps, SQLiteDb } from "@itwin/core-backend";
|
|
@@ -15,8 +13,7 @@ import { IModelCloneContext } from "./IModelCloneContext";
|
|
|
15
13
|
*/
|
|
16
14
|
export interface IModelTransformOptions {
|
|
17
15
|
/** The Id of the Element in the **target** iModel that represents the **source** repository as a whole and scopes its [ExternalSourceAspect]($backend) instances.
|
|
18
|
-
*
|
|
19
|
-
* or physical consolidation.
|
|
16
|
+
* When the goal is to consolidate multiple source iModels into a single target iModel, this option must be specified.
|
|
20
17
|
*/
|
|
21
18
|
targetScopeElementId?: Id64String;
|
|
22
19
|
/** Set to `true` if IModelTransformer should not record its provenance.
|
|
@@ -103,13 +100,6 @@ export interface IModelTransformOptions {
|
|
|
103
100
|
* @beta
|
|
104
101
|
*/
|
|
105
102
|
optimizeGeometry?: OptimizeGeometryOptions;
|
|
106
|
-
/**
|
|
107
|
-
* force the insertion of extenral source aspects to provide provenance, even if there are federation guids
|
|
108
|
-
* in the source that we can use. This can make some operations (like transforming new elements or initializing forks)
|
|
109
|
-
* much slower due to needing to insert aspects, but prevents requiring change information for all operations.
|
|
110
|
-
* @default false
|
|
111
|
-
*/
|
|
112
|
-
forceExternalSourceAspectProvenance?: boolean;
|
|
113
103
|
}
|
|
114
104
|
/**
|
|
115
105
|
* A container for tracking the state of a partially committed entity and finalizing it when it's ready to be fully committed
|
|
@@ -140,15 +130,6 @@ export interface InitFromExternalSourceAspectsArgs {
|
|
|
140
130
|
accessToken?: AccessToken;
|
|
141
131
|
startChangesetId?: string;
|
|
142
132
|
}
|
|
143
|
-
/** events that the transformer emits, e.g. for signaling profilers @internal */
|
|
144
|
-
export declare enum TransformerEvent {
|
|
145
|
-
beginProcessSchemas = "beginProcessSchemas",
|
|
146
|
-
endProcessSchemas = "endProcessSchemas",
|
|
147
|
-
beginProcessAll = "beginProcessAll",
|
|
148
|
-
endProcessAll = "endProcessAll",
|
|
149
|
-
beginProcessChanges = "beginProcessChanges",
|
|
150
|
-
endProcessChanges = "endProcessChanges"
|
|
151
|
-
}
|
|
152
133
|
/** Base class used to transform a source iModel into a different target iModel.
|
|
153
134
|
* @see [iModel Transformation and Data Exchange]($docs/learning/transformer/index.md), [IModelExporter]($transformer), [IModelImporter]($transformer)
|
|
154
135
|
* @beta
|
|
@@ -181,19 +162,12 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
181
162
|
static get provenanceElementClasses(): (typeof Entity)[];
|
|
182
163
|
/** The element aspect classes that are considered to define provenance in the iModel */
|
|
183
164
|
static get provenanceElementAspectClasses(): (typeof Entity)[];
|
|
184
|
-
/**
|
|
185
|
-
* Internal event emitter that is used by the transformer to signal events to profilers
|
|
186
|
-
* @internal
|
|
187
|
-
*/
|
|
188
|
-
events: EventEmitter;
|
|
189
165
|
/** Construct a new IModelTransformer
|
|
190
166
|
* @param source Specifies the source IModelExporter or the source IModelDb that will be used to construct the source IModelExporter.
|
|
191
167
|
* @param target Specifies the target IModelImporter or the target IModelDb that will be used to construct the target IModelImporter.
|
|
192
168
|
* @param options The options that specify how the transformation should be done.
|
|
193
169
|
*/
|
|
194
170
|
constructor(source: IModelDb | IModelExporter, target: IModelDb | IModelImporter, options?: IModelTransformOptions);
|
|
195
|
-
/** @internal */
|
|
196
|
-
_registerEvents(): void;
|
|
197
171
|
/** Dispose any native resources associated with this IModelTransformer. */
|
|
198
172
|
dispose(): void;
|
|
199
173
|
/** Log current settings that affect IModelTransformer's behavior. */
|
|
@@ -202,10 +176,7 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
202
176
|
* @note This will be [[targetDb]] except when it is a reverse synchronization. In that case it be [[sourceDb]].
|
|
203
177
|
*/
|
|
204
178
|
get provenanceDb(): IModelDb;
|
|
205
|
-
/**
|
|
206
|
-
* @note This will be [[sourceDb]] except when it is a reverse synchronization. In that case it be [[targetDb]].
|
|
207
|
-
*/
|
|
208
|
-
get provenanceSourceDb(): IModelDb;
|
|
179
|
+
/** Create an ExternalSourceAspectProps in a standard way for an Element in an iModel --> iModel transformation. */
|
|
209
180
|
private initElementProvenance;
|
|
210
181
|
/** Create an ExternalSourceAspectProps in a standard way for a Relationship in an iModel --> iModel transformations.
|
|
211
182
|
* The ExternalSourceAspect is meant to be owned by the Element in the target iModel that is the `sourceId` of transformed relationship.
|
|
@@ -213,24 +184,9 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
213
184
|
* The ECInstanceId of the relationship in the target iModel will be stored in the JsonProperties of the ExternalSourceAspect.
|
|
214
185
|
*/
|
|
215
186
|
private initRelationshipProvenance;
|
|
216
|
-
private
|
|
217
|
-
private
|
|
218
|
-
/**
|
|
219
|
-
* @note: empty string and -1 for changeset and index if it has never been transformed
|
|
220
|
-
*/
|
|
221
|
-
private get _targetScopeVersion();
|
|
222
|
-
/**
|
|
223
|
-
* Make sure there are no conflicting other scope-type external source aspects on the *target scope element*,
|
|
224
|
-
* If there are none at all, insert one, then this must be a first synchronization.
|
|
225
|
-
* @returns the last synced version (changesetId) on the target scope's external source aspect,
|
|
226
|
-
* (if this was a [BriefcaseDb]($backend))
|
|
227
|
-
*/
|
|
228
|
-
private initScopeProvenance;
|
|
229
|
-
private queryScopeExternalSource;
|
|
230
|
-
/**
|
|
231
|
-
* Iterate all matching ExternalSourceAspects in the provenance iModel (target unless reverse sync) and call a function for each one.
|
|
232
|
-
* @note provenance is done by federation guids where possible
|
|
233
|
-
*/
|
|
187
|
+
private validateScopeProvenance;
|
|
188
|
+
private queryExternalSourceAspectId;
|
|
189
|
+
/** Iterate all matching ExternalSourceAspects in the provenance iModel (target unless reverse sync) and call a function for each one. */
|
|
234
190
|
private forEachTrackedElement;
|
|
235
191
|
/** Initialize the source to target Element mapping from ExternalSourceAspects in the target iModel.
|
|
236
192
|
* @note This method is called from all `process*` functions and should never need to be called directly.
|
|
@@ -244,7 +200,6 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
244
200
|
* a master iModel) should be deleted. We must use the changesets to get the values of those before they were deleted.
|
|
245
201
|
*/
|
|
246
202
|
private remapDeletedSourceElements;
|
|
247
|
-
private queryElemIdByFedGuid;
|
|
248
203
|
/** Returns `true` if *brute force* delete detections should be run.
|
|
249
204
|
* @note Not relevant for processChanges when change history is known.
|
|
250
205
|
*/
|
|
@@ -266,16 +221,12 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
266
221
|
* @note This can be called more than once for an element in arbitrary order, so it should not have side-effects.
|
|
267
222
|
*/
|
|
268
223
|
onTransformElement(sourceElement: Element): ElementProps;
|
|
269
|
-
private _coalesceChangeSummaryJoinedValue;
|
|
270
|
-
private _hasElementChangedCache?;
|
|
271
|
-
private _deletedSourceRelationshipData?;
|
|
272
|
-
private _cacheSourceChanges;
|
|
273
224
|
/** Returns true if a change within sourceElement is detected.
|
|
274
225
|
* @param sourceElement The Element from the source iModel
|
|
275
226
|
* @param targetElementId The Element from the target iModel to compare against.
|
|
276
227
|
* @note A subclass can override this method to provide custom change detection behavior.
|
|
277
228
|
*/
|
|
278
|
-
protected hasElementChanged(sourceElement: Element,
|
|
229
|
+
protected hasElementChanged(sourceElement: Element, targetElementId: Id64String): boolean;
|
|
279
230
|
private static transformCallbackFor;
|
|
280
231
|
/** callback to perform when a partial element says it's ready to be completed
|
|
281
232
|
* transforms the source element with all references now valid, then updates the partial element with the results
|
|
@@ -345,11 +296,6 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
345
296
|
* @deprecated in 3.x. This method is no longer necessary since the transformer no longer needs to defer elements
|
|
346
297
|
*/
|
|
347
298
|
processDeferredElements(_numRetries?: number): Promise<void>;
|
|
348
|
-
/** called at the end ([[finalizeTransformation]]) of a transformation,
|
|
349
|
-
* updates the target scope element to say that transformation up through the
|
|
350
|
-
* source's changeset has been performed.
|
|
351
|
-
*/
|
|
352
|
-
private _updateTargetScopeVersion;
|
|
353
299
|
private finalizeTransformation;
|
|
354
300
|
/** Imports all relationships that subclass from the specified base class.
|
|
355
301
|
* @param baseRelClassFullName The specified base relationship class.
|
|
@@ -364,14 +310,12 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
364
310
|
* This override calls [[onTransformRelationship]] and then [IModelImporter.importRelationship]($transformer) to update the target iModel.
|
|
365
311
|
*/
|
|
366
312
|
onExportRelationship(sourceRelationship: Relationship): void;
|
|
367
|
-
private _getRelClassId;
|
|
368
313
|
/** Override of [IModelExportHandler.onDeleteRelationship]($transformer) that is called when [IModelExporter]($transformer) detects that a [Relationship]($backend) has been deleted from the source iModel.
|
|
369
314
|
* This override propagates the delete to the target iModel via [IModelImporter.deleteRelationship]($transformer).
|
|
370
315
|
*/
|
|
371
316
|
onDeleteRelationship(sourceRelInstanceId: Id64String): void;
|
|
372
317
|
private _yieldManager;
|
|
373
318
|
/** Detect Relationship deletes using ExternalSourceAspects in the target iModel and a *brute force* comparison against relationships in the source iModel.
|
|
374
|
-
* @deprecated
|
|
375
319
|
* @see processChanges
|
|
376
320
|
* @note This method is called from [[processAll]] and is not needed by [[processChanges]], so it only needs to be called directly when processing a subset of an iModel.
|
|
377
321
|
* @throws [[IModelError]] If the required provenance information is not available to detect deletes.
|
|
@@ -445,9 +389,6 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
445
389
|
processSubject(sourceSubjectId: Id64String, targetSubjectId: Id64String): Promise<void>;
|
|
446
390
|
/** state to prevent reinitialization, @see [[initialize]] */
|
|
447
391
|
private _initialized;
|
|
448
|
-
/** length === 0 when _changeDataState = "no-change", length > 0 means "has-changes", otherwise undefined */
|
|
449
|
-
private _changeSummaryIds?;
|
|
450
|
-
private _changeDataState;
|
|
451
392
|
/**
|
|
452
393
|
* Initialize prerequisites of processing, you must initialize with an [[InitFromExternalSourceAspectsArgs]] if you
|
|
453
394
|
* are intending process changes, but prefer using [[processChanges]]
|
|
@@ -455,12 +396,10 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
455
396
|
* Overriders must call `super.initialize()` first
|
|
456
397
|
*/
|
|
457
398
|
initialize(args?: InitFromExternalSourceAspectsArgs): Promise<void>;
|
|
458
|
-
private _tryInitChangesetData;
|
|
459
399
|
/** Export everything from the source iModel and import the transformed entities into the target iModel.
|
|
460
400
|
* @note [[processSchemas]] is not called automatically since the target iModel may want a different collection of schemas.
|
|
461
401
|
*/
|
|
462
402
|
processAll(): Promise<void>;
|
|
463
|
-
/** previous provenance, either a federation guid, a `${sourceFedGuid}/${targetFedGuid}` pair, or required aspect props */
|
|
464
403
|
private _lastProvenanceEntityInfo;
|
|
465
404
|
private markLastProvenance;
|
|
466
405
|
/** @internal the name of the table where javascript state of the transformer is serialized in transformer state dumps */
|
|
@@ -514,12 +453,12 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
514
453
|
*/
|
|
515
454
|
saveStateToFile(nativeStatePath: string): void;
|
|
516
455
|
/** Export changes from the source iModel and import the transformed entities into the target iModel.
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
456
|
+
* Inserts, updates, and deletes are determined by inspecting the changeset(s).
|
|
457
|
+
* @param accessToken A valid access token string
|
|
458
|
+
* @param startChangesetId Include changes from this changeset up through and including the current changeset.
|
|
459
|
+
* If this parameter is not provided, then just the current changeset will be exported.
|
|
460
|
+
* @note To form a range of versions to process, set `startChangesetId` for the start (inclusive) of the desired range and open the source iModel as of the end (inclusive) of the desired range.
|
|
461
|
+
*/
|
|
523
462
|
processChanges(accessToken: AccessToken, startChangesetId?: string): Promise<void>;
|
|
524
463
|
}
|
|
525
464
|
/** IModelTransformer that clones the contents of a template model.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IModelTransformer.d.ts","sourceRoot":"","sources":["../../src/IModelTransformer.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"IModelTransformer.d.ts","sourceRoot":"","sources":["../../src/IModelTransformer.ts"],"names":[],"mappings":"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"}
|