@itwin/imodel-transformer 0.1.7 → 0.1.8-fedguidopt.0
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,9 +1,17 @@
|
|
|
1
1
|
# Change Log - @itwin/imodel-transformer
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Tue, 02 May 2023 18:28:36 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 0.1.8
|
|
8
|
+
|
|
9
|
+
Tue, 02 May 2023 18:28:36 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- rerelease again ([commit](https://github.com/iTwin/transformer/commit/3b6ad3fbf7bfe36dfe63da7f8d6f9e5572793f05))
|
|
14
|
+
|
|
7
15
|
## 0.1.3
|
|
8
16
|
|
|
9
17
|
Thu, 20 Apr 2023 12:20:33 GMT
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import { EventEmitter } from "events";
|
|
1
3
|
import { AccessToken, Id64String } from "@itwin/core-bentley";
|
|
2
4
|
import * as ECSchemaMetaData from "@itwin/ecschema-metadata";
|
|
3
5
|
import { Element, ElementAspect, ElementMultiAspect, ElementUniqueAspect, Entity, IModelDb, Model, Relationship, RelationshipProps, SQLiteDb } from "@itwin/core-backend";
|
|
@@ -13,7 +15,8 @@ import { IModelCloneContext } from "./IModelCloneContext";
|
|
|
13
15
|
*/
|
|
14
16
|
export interface IModelTransformOptions {
|
|
15
17
|
/** The Id of the Element in the **target** iModel that represents the **source** repository as a whole and scopes its [ExternalSourceAspect]($backend) instances.
|
|
16
|
-
*
|
|
18
|
+
* It is always a good idea to define this, although particularly necessary in any multi-source scenario such as multiple branches that reverse synchronize
|
|
19
|
+
* or physical consolidation.
|
|
17
20
|
*/
|
|
18
21
|
targetScopeElementId?: Id64String;
|
|
19
22
|
/** Set to `true` if IModelTransformer should not record its provenance.
|
|
@@ -100,6 +103,13 @@ export interface IModelTransformOptions {
|
|
|
100
103
|
* @beta
|
|
101
104
|
*/
|
|
102
105
|
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;
|
|
103
113
|
}
|
|
104
114
|
/**
|
|
105
115
|
* A container for tracking the state of a partially committed entity and finalizing it when it's ready to be fully committed
|
|
@@ -130,6 +140,15 @@ export interface InitFromExternalSourceAspectsArgs {
|
|
|
130
140
|
accessToken?: AccessToken;
|
|
131
141
|
startChangesetId?: string;
|
|
132
142
|
}
|
|
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
|
+
}
|
|
133
152
|
/** Base class used to transform a source iModel into a different target iModel.
|
|
134
153
|
* @see [iModel Transformation and Data Exchange]($docs/learning/transformer/index.md), [IModelExporter]($transformer), [IModelImporter]($transformer)
|
|
135
154
|
* @beta
|
|
@@ -162,12 +181,19 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
162
181
|
static get provenanceElementClasses(): (typeof Entity)[];
|
|
163
182
|
/** The element aspect classes that are considered to define provenance in the iModel */
|
|
164
183
|
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;
|
|
165
189
|
/** Construct a new IModelTransformer
|
|
166
190
|
* @param source Specifies the source IModelExporter or the source IModelDb that will be used to construct the source IModelExporter.
|
|
167
191
|
* @param target Specifies the target IModelImporter or the target IModelDb that will be used to construct the target IModelImporter.
|
|
168
192
|
* @param options The options that specify how the transformation should be done.
|
|
169
193
|
*/
|
|
170
194
|
constructor(source: IModelDb | IModelExporter, target: IModelDb | IModelImporter, options?: IModelTransformOptions);
|
|
195
|
+
/** @internal */
|
|
196
|
+
_registerEvents(): void;
|
|
171
197
|
/** Dispose any native resources associated with this IModelTransformer. */
|
|
172
198
|
dispose(): void;
|
|
173
199
|
/** Log current settings that affect IModelTransformer's behavior. */
|
|
@@ -176,7 +202,10 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
176
202
|
* @note This will be [[targetDb]] except when it is a reverse synchronization. In that case it be [[sourceDb]].
|
|
177
203
|
*/
|
|
178
204
|
get provenanceDb(): IModelDb;
|
|
179
|
-
/**
|
|
205
|
+
/** Return the IModelDb where IModelTransformer will NOT store its provenance.
|
|
206
|
+
* @note This will be [[sourceDb]] except when it is a reverse synchronization. In that case it be [[targetDb]].
|
|
207
|
+
*/
|
|
208
|
+
get provenanceSourceDb(): IModelDb;
|
|
180
209
|
private initElementProvenance;
|
|
181
210
|
/** Create an ExternalSourceAspectProps in a standard way for a Relationship in an iModel --> iModel transformations.
|
|
182
211
|
* The ExternalSourceAspect is meant to be owned by the Element in the target iModel that is the `sourceId` of transformed relationship.
|
|
@@ -184,9 +213,24 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
184
213
|
* The ECInstanceId of the relationship in the target iModel will be stored in the JsonProperties of the ExternalSourceAspect.
|
|
185
214
|
*/
|
|
186
215
|
private initRelationshipProvenance;
|
|
187
|
-
private
|
|
188
|
-
private
|
|
189
|
-
/**
|
|
216
|
+
private _targetScopeProvenanceProps;
|
|
217
|
+
private _cachedTargetScopeVersion;
|
|
218
|
+
/** the changeset in the scoping element's source version found for this transformation
|
|
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
|
+
*/
|
|
190
234
|
private forEachTrackedElement;
|
|
191
235
|
/** Initialize the source to target Element mapping from ExternalSourceAspects in the target iModel.
|
|
192
236
|
* @note This method is called from all `process*` functions and should never need to be called directly.
|
|
@@ -200,6 +244,7 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
200
244
|
* a master iModel) should be deleted. We must use the changesets to get the values of those before they were deleted.
|
|
201
245
|
*/
|
|
202
246
|
private remapDeletedSourceElements;
|
|
247
|
+
private queryElemIdByFedGuid;
|
|
203
248
|
/** Returns `true` if *brute force* delete detections should be run.
|
|
204
249
|
* @note Not relevant for processChanges when change history is known.
|
|
205
250
|
*/
|
|
@@ -221,12 +266,16 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
221
266
|
* @note This can be called more than once for an element in arbitrary order, so it should not have side-effects.
|
|
222
267
|
*/
|
|
223
268
|
onTransformElement(sourceElement: Element): ElementProps;
|
|
269
|
+
private _coalesceChangeSummaryJoinedValue;
|
|
270
|
+
private _hasElementChangedCache?;
|
|
271
|
+
private _deletedSourceRelationshipData?;
|
|
272
|
+
private _cacheSourceChanges;
|
|
224
273
|
/** Returns true if a change within sourceElement is detected.
|
|
225
274
|
* @param sourceElement The Element from the source iModel
|
|
226
275
|
* @param targetElementId The Element from the target iModel to compare against.
|
|
227
276
|
* @note A subclass can override this method to provide custom change detection behavior.
|
|
228
277
|
*/
|
|
229
|
-
protected hasElementChanged(sourceElement: Element,
|
|
278
|
+
protected hasElementChanged(sourceElement: Element, _targetElementId: Id64String): boolean;
|
|
230
279
|
private static transformCallbackFor;
|
|
231
280
|
/** callback to perform when a partial element says it's ready to be completed
|
|
232
281
|
* transforms the source element with all references now valid, then updates the partial element with the results
|
|
@@ -296,6 +345,11 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
296
345
|
* @deprecated in 3.x. This method is no longer necessary since the transformer no longer needs to defer elements
|
|
297
346
|
*/
|
|
298
347
|
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;
|
|
299
353
|
private finalizeTransformation;
|
|
300
354
|
/** Imports all relationships that subclass from the specified base class.
|
|
301
355
|
* @param baseRelClassFullName The specified base relationship class.
|
|
@@ -310,12 +364,14 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
310
364
|
* This override calls [[onTransformRelationship]] and then [IModelImporter.importRelationship]($transformer) to update the target iModel.
|
|
311
365
|
*/
|
|
312
366
|
onExportRelationship(sourceRelationship: Relationship): void;
|
|
367
|
+
private _getRelClassId;
|
|
313
368
|
/** Override of [IModelExportHandler.onDeleteRelationship]($transformer) that is called when [IModelExporter]($transformer) detects that a [Relationship]($backend) has been deleted from the source iModel.
|
|
314
369
|
* This override propagates the delete to the target iModel via [IModelImporter.deleteRelationship]($transformer).
|
|
315
370
|
*/
|
|
316
371
|
onDeleteRelationship(sourceRelInstanceId: Id64String): void;
|
|
317
372
|
private _yieldManager;
|
|
318
373
|
/** Detect Relationship deletes using ExternalSourceAspects in the target iModel and a *brute force* comparison against relationships in the source iModel.
|
|
374
|
+
* @deprecated
|
|
319
375
|
* @see processChanges
|
|
320
376
|
* @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.
|
|
321
377
|
* @throws [[IModelError]] If the required provenance information is not available to detect deletes.
|
|
@@ -389,6 +445,9 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
389
445
|
processSubject(sourceSubjectId: Id64String, targetSubjectId: Id64String): Promise<void>;
|
|
390
446
|
/** state to prevent reinitialization, @see [[initialize]] */
|
|
391
447
|
private _initialized;
|
|
448
|
+
/** length === 0 when _changeDataState = "no-change", length > 0 means "has-changes", otherwise undefined */
|
|
449
|
+
private _changeSummaryIds?;
|
|
450
|
+
private _changeDataState;
|
|
392
451
|
/**
|
|
393
452
|
* Initialize prerequisites of processing, you must initialize with an [[InitFromExternalSourceAspectsArgs]] if you
|
|
394
453
|
* are intending process changes, but prefer using [[processChanges]]
|
|
@@ -396,10 +455,12 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
396
455
|
* Overriders must call `super.initialize()` first
|
|
397
456
|
*/
|
|
398
457
|
initialize(args?: InitFromExternalSourceAspectsArgs): Promise<void>;
|
|
458
|
+
private _tryInitChangesetData;
|
|
399
459
|
/** Export everything from the source iModel and import the transformed entities into the target iModel.
|
|
400
460
|
* @note [[processSchemas]] is not called automatically since the target iModel may want a different collection of schemas.
|
|
401
461
|
*/
|
|
402
462
|
processAll(): Promise<void>;
|
|
463
|
+
/** previous provenance, either a federation guid, a `${sourceFedGuid}/${targetFedGuid}` pair, or required aspect props */
|
|
403
464
|
private _lastProvenanceEntityInfo;
|
|
404
465
|
private markLastProvenance;
|
|
405
466
|
/** @internal the name of the table where javascript state of the transformer is serialized in transformer state dumps */
|
|
@@ -453,12 +514,12 @@ export declare class IModelTransformer extends IModelExportHandler {
|
|
|
453
514
|
*/
|
|
454
515
|
saveStateToFile(nativeStatePath: string): void;
|
|
455
516
|
/** Export changes from the source iModel and import the transformed entities into the target iModel.
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
517
|
+
* Inserts, updates, and deletes are determined by inspecting the changeset(s).
|
|
518
|
+
* @param accessToken A valid access token string
|
|
519
|
+
* @param startChangesetId Include changes from this changeset up through and including the current changeset.
|
|
520
|
+
* If this parameter is not provided, then just the current changeset will be exported.
|
|
521
|
+
* @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.
|
|
522
|
+
*/
|
|
462
523
|
processChanges(accessToken: AccessToken, startChangesetId?: string): Promise<void>;
|
|
463
524
|
}
|
|
464
525
|
/** 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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"}
|