@ifc-lite/parser 1.6.1 → 1.8.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/dist/columnar-parser.d.ts +164 -5
- package/dist/columnar-parser.d.ts.map +1 -1
- package/dist/columnar-parser.js +882 -20
- package/dist/columnar-parser.js.map +1 -1
- package/dist/ifc-schema.d.ts +2 -1
- package/dist/ifc-schema.d.ts.map +1 -1
- package/dist/ifc-schema.js +20 -7
- package/dist/ifc-schema.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import type { EntityRef } from './types.js';
|
|
8
8
|
import { StringTable, EntityTableBuilder, PropertyTableBuilder, RelationshipGraphBuilder } from '@ifc-lite/data';
|
|
9
|
-
import type { SpatialHierarchy, QuantityTable } from '@ifc-lite/data';
|
|
9
|
+
import type { SpatialHierarchy, QuantityTable, PropertyValue } from '@ifc-lite/data';
|
|
10
10
|
export interface SpatialIndex {
|
|
11
11
|
queryAABB(bounds: {
|
|
12
12
|
min: [number, number, number];
|
|
@@ -16,7 +16,7 @@ export interface SpatialIndex {
|
|
|
16
16
|
}
|
|
17
17
|
export interface IfcDataStore {
|
|
18
18
|
fileSize: number;
|
|
19
|
-
schemaVersion: 'IFC2X3' | 'IFC4' | 'IFC4X3';
|
|
19
|
+
schemaVersion: 'IFC2X3' | 'IFC4' | 'IFC4X3' | 'IFC5';
|
|
20
20
|
entityCount: number;
|
|
21
21
|
parseTime: number;
|
|
22
22
|
source: Uint8Array;
|
|
@@ -43,6 +43,22 @@ export interface IfcDataStore {
|
|
|
43
43
|
* Use extractQuantitiesOnDemand() with this map for instant quantity retrieval.
|
|
44
44
|
*/
|
|
45
45
|
onDemandQuantityMap?: Map<number, number[]>;
|
|
46
|
+
/**
|
|
47
|
+
* On-demand classification lookup: entityId -> array of IfcClassificationReference expressIds
|
|
48
|
+
* Built from IfcRelAssociatesClassification relationships during parsing.
|
|
49
|
+
*/
|
|
50
|
+
onDemandClassificationMap?: Map<number, number[]>;
|
|
51
|
+
/**
|
|
52
|
+
* On-demand material lookup: entityId -> relatingMaterial expressId
|
|
53
|
+
* Built from IfcRelAssociatesMaterial relationships during parsing.
|
|
54
|
+
* Value is the expressId of IfcMaterial, IfcMaterialLayerSet, IfcMaterialProfileSet, or IfcMaterialConstituentSet.
|
|
55
|
+
*/
|
|
56
|
+
onDemandMaterialMap?: Map<number, number>;
|
|
57
|
+
/**
|
|
58
|
+
* On-demand document lookup: entityId -> array of IfcDocumentReference/IfcDocumentInformation expressIds
|
|
59
|
+
* Built from IfcRelAssociatesDocument relationships during parsing.
|
|
60
|
+
*/
|
|
61
|
+
onDemandDocumentMap?: Map<number, number[]>;
|
|
46
62
|
}
|
|
47
63
|
export declare class ColumnarParser {
|
|
48
64
|
/**
|
|
@@ -72,7 +88,7 @@ export declare class ColumnarParser {
|
|
|
72
88
|
properties: Array<{
|
|
73
89
|
name: string;
|
|
74
90
|
type: number;
|
|
75
|
-
value:
|
|
91
|
+
value: PropertyValue;
|
|
76
92
|
}>;
|
|
77
93
|
}>;
|
|
78
94
|
/**
|
|
@@ -98,7 +114,7 @@ export declare function extractPropertiesOnDemand(store: IfcDataStore, entityId:
|
|
|
98
114
|
properties: Array<{
|
|
99
115
|
name: string;
|
|
100
116
|
type: number;
|
|
101
|
-
value:
|
|
117
|
+
value: PropertyValue;
|
|
102
118
|
}>;
|
|
103
119
|
}>;
|
|
104
120
|
/**
|
|
@@ -115,7 +131,7 @@ export declare function extractQuantitiesOnDemand(store: IfcDataStore, entityId:
|
|
|
115
131
|
}>;
|
|
116
132
|
/**
|
|
117
133
|
* Extract entity attributes on-demand from source buffer
|
|
118
|
-
* Returns globalId, name, description, objectType for any IfcRoot-derived entity.
|
|
134
|
+
* Returns globalId, name, description, objectType, tag for any IfcRoot-derived entity.
|
|
119
135
|
* This is used for entities that weren't fully parsed during initial load.
|
|
120
136
|
*/
|
|
121
137
|
export declare function extractEntityAttributesOnDemand(store: IfcDataStore, entityId: number): {
|
|
@@ -123,5 +139,148 @@ export declare function extractEntityAttributesOnDemand(store: IfcDataStore, ent
|
|
|
123
139
|
name: string;
|
|
124
140
|
description: string;
|
|
125
141
|
objectType: string;
|
|
142
|
+
tag: string;
|
|
126
143
|
};
|
|
144
|
+
/**
|
|
145
|
+
* Extract ALL named entity attributes on-demand from source buffer.
|
|
146
|
+
* Uses the IFC schema to map attribute indices to names.
|
|
147
|
+
* Returns only string/enum attributes, skipping references and structural attributes.
|
|
148
|
+
*/
|
|
149
|
+
export declare function extractAllEntityAttributes(store: IfcDataStore, entityId: number): Array<{
|
|
150
|
+
name: string;
|
|
151
|
+
value: string;
|
|
152
|
+
}>;
|
|
153
|
+
export interface ClassificationInfo {
|
|
154
|
+
system?: string;
|
|
155
|
+
identification?: string;
|
|
156
|
+
name?: string;
|
|
157
|
+
location?: string;
|
|
158
|
+
description?: string;
|
|
159
|
+
path?: string[];
|
|
160
|
+
}
|
|
161
|
+
export interface MaterialInfo {
|
|
162
|
+
type: 'Material' | 'MaterialLayerSet' | 'MaterialProfileSet' | 'MaterialConstituentSet' | 'MaterialList';
|
|
163
|
+
name?: string;
|
|
164
|
+
description?: string;
|
|
165
|
+
layers?: MaterialLayerInfo[];
|
|
166
|
+
profiles?: MaterialProfileInfo[];
|
|
167
|
+
constituents?: MaterialConstituentInfo[];
|
|
168
|
+
materials?: string[];
|
|
169
|
+
}
|
|
170
|
+
export interface MaterialLayerInfo {
|
|
171
|
+
materialName?: string;
|
|
172
|
+
thickness?: number;
|
|
173
|
+
isVentilated?: boolean;
|
|
174
|
+
name?: string;
|
|
175
|
+
category?: string;
|
|
176
|
+
}
|
|
177
|
+
export interface MaterialProfileInfo {
|
|
178
|
+
materialName?: string;
|
|
179
|
+
name?: string;
|
|
180
|
+
category?: string;
|
|
181
|
+
}
|
|
182
|
+
export interface MaterialConstituentInfo {
|
|
183
|
+
materialName?: string;
|
|
184
|
+
name?: string;
|
|
185
|
+
fraction?: number;
|
|
186
|
+
category?: string;
|
|
187
|
+
}
|
|
188
|
+
/**
|
|
189
|
+
* Extract classifications for a single entity ON-DEMAND.
|
|
190
|
+
* Uses the onDemandClassificationMap built during parsing.
|
|
191
|
+
* Falls back to relationship graph when on-demand map is not available (e.g., server-loaded models).
|
|
192
|
+
* Also checks type-level associations via IfcRelDefinesByType.
|
|
193
|
+
* Returns an array of classification references with system info.
|
|
194
|
+
*/
|
|
195
|
+
export declare function extractClassificationsOnDemand(store: IfcDataStore, entityId: number): ClassificationInfo[];
|
|
196
|
+
/**
|
|
197
|
+
* Extract materials for a single entity ON-DEMAND.
|
|
198
|
+
* Uses the onDemandMaterialMap built during parsing.
|
|
199
|
+
* Falls back to relationship graph when on-demand map is not available (e.g., server-loaded models).
|
|
200
|
+
* Also checks type-level material assignments via IfcRelDefinesByType.
|
|
201
|
+
* Resolves the full material structure (layers, profiles, constituents, lists).
|
|
202
|
+
*/
|
|
203
|
+
export declare function extractMaterialsOnDemand(store: IfcDataStore, entityId: number): MaterialInfo | null;
|
|
204
|
+
/**
|
|
205
|
+
* Result of type-level property extraction.
|
|
206
|
+
*/
|
|
207
|
+
export interface TypePropertyInfo {
|
|
208
|
+
typeName: string;
|
|
209
|
+
typeId: number;
|
|
210
|
+
properties: Array<{
|
|
211
|
+
name: string;
|
|
212
|
+
globalId?: string;
|
|
213
|
+
properties: Array<{
|
|
214
|
+
name: string;
|
|
215
|
+
type: number;
|
|
216
|
+
value: PropertyValue;
|
|
217
|
+
}>;
|
|
218
|
+
}>;
|
|
219
|
+
}
|
|
220
|
+
/**
|
|
221
|
+
* Extract type-level properties for a single entity ON-DEMAND.
|
|
222
|
+
* Finds the element's type via IfcRelDefinesByType, then extracts property sets from:
|
|
223
|
+
* 1. The type entity's HasPropertySets attribute (IFC2X3/IFC4: index 5 on IfcTypeObject)
|
|
224
|
+
* 2. The onDemandPropertyMap for the type entity (IFC4 IFCRELDEFINESBYPROPERTIES → type)
|
|
225
|
+
* Returns null if no type relationship exists.
|
|
226
|
+
*/
|
|
227
|
+
export declare function extractTypePropertiesOnDemand(store: IfcDataStore, entityId: number): TypePropertyInfo | null;
|
|
228
|
+
/**
|
|
229
|
+
* Structured document info from IFC document references.
|
|
230
|
+
*/
|
|
231
|
+
export interface DocumentInfo {
|
|
232
|
+
name?: string;
|
|
233
|
+
description?: string;
|
|
234
|
+
location?: string;
|
|
235
|
+
identification?: string;
|
|
236
|
+
purpose?: string;
|
|
237
|
+
intendedUse?: string;
|
|
238
|
+
revision?: string;
|
|
239
|
+
confidentiality?: string;
|
|
240
|
+
}
|
|
241
|
+
/**
|
|
242
|
+
* Extract documents for a single entity ON-DEMAND.
|
|
243
|
+
* Uses the onDemandDocumentMap built during parsing.
|
|
244
|
+
* Falls back to relationship graph when on-demand map is not available.
|
|
245
|
+
* Also checks type-level documents via IfcRelDefinesByType.
|
|
246
|
+
* Returns an array of document info objects.
|
|
247
|
+
*/
|
|
248
|
+
export declare function extractDocumentsOnDemand(store: IfcDataStore, entityId: number): DocumentInfo[];
|
|
249
|
+
/**
|
|
250
|
+
* Structured relationship info for an entity.
|
|
251
|
+
*/
|
|
252
|
+
export interface EntityRelationships {
|
|
253
|
+
voids: Array<{
|
|
254
|
+
id: number;
|
|
255
|
+
name?: string;
|
|
256
|
+
type: string;
|
|
257
|
+
}>;
|
|
258
|
+
fills: Array<{
|
|
259
|
+
id: number;
|
|
260
|
+
name?: string;
|
|
261
|
+
type: string;
|
|
262
|
+
}>;
|
|
263
|
+
groups: Array<{
|
|
264
|
+
id: number;
|
|
265
|
+
name?: string;
|
|
266
|
+
}>;
|
|
267
|
+
connections: Array<{
|
|
268
|
+
id: number;
|
|
269
|
+
name?: string;
|
|
270
|
+
type: string;
|
|
271
|
+
}>;
|
|
272
|
+
}
|
|
273
|
+
/**
|
|
274
|
+
* Extract structural relationships for a single entity ON-DEMAND.
|
|
275
|
+
* Finds openings (VoidsElement), fills (FillsElement), groups (AssignsToGroup),
|
|
276
|
+
* and path connections (ConnectsPathElements).
|
|
277
|
+
*/
|
|
278
|
+
export declare function extractRelationshipsOnDemand(store: IfcDataStore, entityId: number): EntityRelationships;
|
|
279
|
+
import { type GeoreferenceInfo } from './georef-extractor.js';
|
|
280
|
+
export type { GeoreferenceInfo as GeorefInfo };
|
|
281
|
+
/**
|
|
282
|
+
* Extract georeferencing info from on-demand store (source buffer + entityIndex).
|
|
283
|
+
* Bridges to the entity-based georef extractor by resolving entities lazily.
|
|
284
|
+
*/
|
|
285
|
+
export declare function extractGeoreferencingOnDemand(store: IfcDataStore): GeoreferenceInfo | null;
|
|
127
286
|
//# sourceMappingURL=columnar-parser.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"columnar-parser.d.ts","sourceRoot":"","sources":["../src/columnar-parser.ts"],"names":[],"mappings":"AAIA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,SAAS,EAA2B,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"columnar-parser.d.ts","sourceRoot":"","sources":["../src/columnar-parser.ts"],"names":[],"mappings":"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"}
|