cognite-neat 0.99.0__py3-none-any.whl → 0.99.1__py3-none-any.whl
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.
Potentially problematic release.
This version of cognite-neat might be problematic. Click here for more details.
- cognite/neat/_client/_api/data_modeling_loaders.py +77 -4
- cognite/neat/_client/_api/schema.py +63 -2
- cognite/neat/_client/data_classes/schema.py +2 -348
- cognite/neat/_constants.py +27 -4
- cognite/neat/_graph/extractors/_classic_cdf/_classic.py +5 -5
- cognite/neat/_graph/loaders/_rdf2dms.py +2 -2
- cognite/neat/_graph/transformers/_classic_cdf.py +24 -13
- cognite/neat/_issues/_base.py +26 -17
- cognite/neat/_issues/errors/__init__.py +4 -2
- cognite/neat/_issues/errors/_external.py +7 -0
- cognite/neat/_issues/errors/_properties.py +2 -7
- cognite/neat/_issues/errors/_resources.py +1 -1
- cognite/neat/_issues/warnings/__init__.py +4 -2
- cognite/neat/_issues/warnings/_external.py +9 -1
- cognite/neat/_issues/warnings/_resources.py +26 -2
- cognite/neat/_issues/warnings/user_modeling.py +4 -4
- cognite/neat/_rules/_constants.py +2 -6
- cognite/neat/_rules/exporters/_rules2dms.py +4 -6
- cognite/neat/_rules/importers/__init__.py +1 -3
- cognite/neat/_rules/importers/_base.py +1 -1
- cognite/neat/_rules/importers/_dms2rules.py +3 -25
- cognite/neat/_rules/importers/_rdf/__init__.py +5 -0
- cognite/neat/_rules/importers/_rdf/_base.py +34 -11
- cognite/neat/_rules/importers/_rdf/_imf2rules.py +91 -0
- cognite/neat/_rules/importers/_rdf/_inference2rules.py +18 -2
- cognite/neat/_rules/importers/_rdf/_owl2rules.py +80 -0
- cognite/neat/_rules/importers/_rdf/_shared.py +138 -441
- cognite/neat/_rules/models/dms/__init__.py +2 -0
- cognite/neat/_rules/models/dms/_exporter.py +32 -30
- cognite/neat/_rules/models/dms/_rules.py +3 -45
- cognite/neat/_rules/models/dms/_validation.py +389 -122
- cognite/neat/_rules/models/information/__init__.py +2 -0
- cognite/neat/_rules/models/information/_rules.py +0 -59
- cognite/neat/_rules/models/information/_validation.py +9 -9
- cognite/neat/_rules/models/mapping/_classic2core.py +1 -1
- cognite/neat/_rules/models/mapping/_classic2core.yaml +8 -4
- cognite/neat/_rules/transformers/_pipelines.py +1 -1
- cognite/neat/_rules/transformers/_verification.py +29 -4
- cognite/neat/_session/_base.py +16 -41
- cognite/neat/_session/_prepare.py +6 -5
- cognite/neat/_session/_to.py +5 -2
- cognite/neat/_session/exceptions.py +4 -0
- cognite/neat/_utils/rdf_.py +6 -4
- cognite/neat/_version.py +1 -1
- cognite/neat/_workflows/steps/lib/current/rules_exporter.py +0 -88
- cognite/neat/_workflows/steps/lib/current/rules_importer.py +2 -16
- cognite/neat/_workflows/steps/lib/current/rules_validator.py +3 -5
- {cognite_neat-0.99.0.dist-info → cognite_neat-0.99.1.dist-info}/METADATA +1 -1
- {cognite_neat-0.99.0.dist-info → cognite_neat-0.99.1.dist-info}/RECORD +52 -60
- cognite/neat/_rules/importers/_rdf/_imf2rules/__init__.py +0 -3
- cognite/neat/_rules/importers/_rdf/_imf2rules/_imf2classes.py +0 -86
- cognite/neat/_rules/importers/_rdf/_imf2rules/_imf2metadata.py +0 -29
- cognite/neat/_rules/importers/_rdf/_imf2rules/_imf2properties.py +0 -130
- cognite/neat/_rules/importers/_rdf/_imf2rules/_imf2rules.py +0 -154
- cognite/neat/_rules/importers/_rdf/_owl2rules/__init__.py +0 -3
- cognite/neat/_rules/importers/_rdf/_owl2rules/_owl2classes.py +0 -58
- cognite/neat/_rules/importers/_rdf/_owl2rules/_owl2metadata.py +0 -65
- cognite/neat/_rules/importers/_rdf/_owl2rules/_owl2properties.py +0 -59
- cognite/neat/_rules/importers/_rdf/_owl2rules/_owl2rules.py +0 -39
- {cognite_neat-0.99.0.dist-info → cognite_neat-0.99.1.dist-info}/LICENSE +0 -0
- {cognite_neat-0.99.0.dist-info → cognite_neat-0.99.1.dist-info}/WHEEL +0 -0
- {cognite_neat-0.99.0.dist-info → cognite_neat-0.99.1.dist-info}/entry_points.txt +0 -0
|
@@ -1,37 +1,50 @@
|
|
|
1
|
-
|
|
2
|
-
from
|
|
1
|
+
import warnings
|
|
2
|
+
from collections import Counter, defaultdict
|
|
3
|
+
from typing import ClassVar
|
|
3
4
|
|
|
4
5
|
from cognite.client import data_modeling as dm
|
|
6
|
+
from cognite.client.data_classes.data_modeling import ContainerList, ViewId, ViewList
|
|
7
|
+
from cognite.client.data_classes.data_modeling.views import (
|
|
8
|
+
ReverseDirectRelation,
|
|
9
|
+
ReverseDirectRelationApply,
|
|
10
|
+
ViewProperty,
|
|
11
|
+
ViewPropertyApply,
|
|
12
|
+
)
|
|
5
13
|
|
|
14
|
+
from cognite.neat._client import NeatClient
|
|
15
|
+
from cognite.neat._client.data_classes.data_modeling import ViewApplyDict
|
|
6
16
|
from cognite.neat._client.data_classes.schema import DMSSchema
|
|
7
|
-
from cognite.neat._constants import COGNITE_MODELS, DMS_CONTAINER_PROPERTY_SIZE_LIMIT
|
|
8
|
-
from cognite.neat._issues import IssueList, NeatError,
|
|
17
|
+
from cognite.neat._constants import COGNITE_MODELS, DMS_CONTAINER_PROPERTY_SIZE_LIMIT, DMS_VIEW_CONTAINER_SIZE_LIMIT
|
|
18
|
+
from cognite.neat._issues import IssueList, NeatError, NeatIssueList
|
|
9
19
|
from cognite.neat._issues.errors import (
|
|
20
|
+
CDFMissingClientError,
|
|
10
21
|
PropertyDefinitionDuplicatedError,
|
|
11
|
-
|
|
22
|
+
PropertyMappingDuplicatedError,
|
|
23
|
+
PropertyNotFoundError,
|
|
24
|
+
ResourceDuplicatedError,
|
|
25
|
+
ResourceNotFoundError,
|
|
26
|
+
ReversedConnectionNotFeasibleError,
|
|
12
27
|
)
|
|
13
|
-
from cognite.neat._issues.errors._properties import ReversedConnectionNotFeasibleError
|
|
14
28
|
from cognite.neat._issues.warnings import (
|
|
15
29
|
NotSupportedHasDataFilterLimitWarning,
|
|
16
30
|
NotSupportedViewContainerLimitWarning,
|
|
17
31
|
UndefinedViewWarning,
|
|
18
32
|
)
|
|
19
33
|
from cognite.neat._issues.warnings.user_modeling import (
|
|
34
|
+
ContainerPropertyLimitWarning,
|
|
35
|
+
DirectRelationMissingSourceWarning,
|
|
20
36
|
NotNeatSupportedFilterWarning,
|
|
21
|
-
ViewPropertyLimitWarning,
|
|
22
37
|
)
|
|
23
|
-
from cognite.neat._rules.analysis import DMSAnalysis
|
|
24
38
|
from cognite.neat._rules.models.data_types import DataType
|
|
25
39
|
from cognite.neat._rules.models.entities import ContainerEntity, RawFilter
|
|
26
40
|
from cognite.neat._rules.models.entities._single_value import (
|
|
27
|
-
ReverseConnectionEntity,
|
|
28
41
|
ViewEntity,
|
|
29
42
|
)
|
|
30
43
|
|
|
31
44
|
from ._rules import DMSProperty, DMSRules
|
|
32
45
|
|
|
33
46
|
|
|
34
|
-
class
|
|
47
|
+
class DMSValidation:
|
|
35
48
|
"""This class does all the validation of the DMS rules that have dependencies between
|
|
36
49
|
components."""
|
|
37
50
|
|
|
@@ -39,33 +52,132 @@ class DMSPostValidation:
|
|
|
39
52
|
# For example, changing the filter is allowed, but changing the properties is not.
|
|
40
53
|
changeable_view_attributes: ClassVar[set[str]] = {"filter"}
|
|
41
54
|
|
|
42
|
-
def __init__(self, rules: DMSRules):
|
|
43
|
-
self.
|
|
44
|
-
self.
|
|
45
|
-
self.
|
|
46
|
-
self.
|
|
47
|
-
self.
|
|
48
|
-
self.
|
|
49
|
-
|
|
55
|
+
def __init__(self, rules: DMSRules, client: NeatClient | None = None) -> None:
|
|
56
|
+
self._rules = rules
|
|
57
|
+
self._client = client
|
|
58
|
+
self._metadata = rules.metadata
|
|
59
|
+
self._properties = rules.properties
|
|
60
|
+
self._containers = rules.containers
|
|
61
|
+
self._views = rules.views
|
|
62
|
+
|
|
63
|
+
def imported_views_and_containers_ids(
|
|
64
|
+
self, include_views_with_no_properties: bool = True
|
|
65
|
+
) -> tuple[set[ViewEntity], set[ContainerEntity]]:
|
|
66
|
+
existing_views = {view.view for view in self._views}
|
|
67
|
+
imported_views: set[ViewEntity] = set()
|
|
68
|
+
for view in self._views:
|
|
69
|
+
for parent in view.implements or []:
|
|
70
|
+
if parent not in existing_views:
|
|
71
|
+
imported_views.add(parent)
|
|
72
|
+
existing_containers = {container.container for container in self._containers or []}
|
|
73
|
+
imported_containers: set[ContainerEntity] = set()
|
|
74
|
+
view_with_properties: set[ViewEntity] = set()
|
|
75
|
+
for prop in self._properties:
|
|
76
|
+
if prop.container and prop.container not in existing_containers:
|
|
77
|
+
imported_containers.add(prop.container)
|
|
78
|
+
if prop.view not in existing_views:
|
|
79
|
+
imported_views.add(prop.view)
|
|
80
|
+
view_with_properties.add(prop.view)
|
|
81
|
+
|
|
82
|
+
if include_views_with_no_properties:
|
|
83
|
+
extra_views = existing_views - view_with_properties
|
|
84
|
+
imported_views.update({view for view in extra_views})
|
|
85
|
+
|
|
86
|
+
return imported_views, imported_containers
|
|
50
87
|
|
|
51
88
|
def validate(self) -> NeatIssueList:
|
|
52
|
-
self.
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
self.
|
|
89
|
+
imported_views, imported_containers = self.imported_views_and_containers_ids(
|
|
90
|
+
include_views_with_no_properties=False
|
|
91
|
+
)
|
|
92
|
+
if (imported_views or imported_containers) and self._client is None:
|
|
93
|
+
raise CDFMissingClientError(
|
|
94
|
+
f"{self._rules.metadata.as_data_model_id()} has imported views and/or container: "
|
|
95
|
+
f"{imported_views}, {imported_containers}."
|
|
96
|
+
)
|
|
97
|
+
referenced_views = ViewList([])
|
|
98
|
+
referenced_containers = ContainerList([])
|
|
99
|
+
if self._client:
|
|
100
|
+
referenced_views = self._client.loaders.views.retrieve(
|
|
101
|
+
list(imported_views), include_connected=True, include_ancestor=True
|
|
102
|
+
)
|
|
103
|
+
referenced_containers = self._client.loaders.containers.retrieve(
|
|
104
|
+
list(imported_containers), include_connected=True
|
|
105
|
+
)
|
|
106
|
+
|
|
107
|
+
# Setup data structures for validation
|
|
108
|
+
dms_schema = self._rules.as_schema()
|
|
109
|
+
ref_view_by_id = {view.as_id(): view for view in referenced_views}
|
|
110
|
+
ref_container_by_id = {container.as_id(): container for container in referenced_containers}
|
|
111
|
+
all_containers_by_id: dict[dm.ContainerId, dm.ContainerApply | dm.Container] = {
|
|
112
|
+
**dict(dms_schema.containers.items()),
|
|
113
|
+
**ref_container_by_id,
|
|
114
|
+
}
|
|
115
|
+
all_views_by_id: dict[dm.ViewId, dm.ViewApply | dm.View] = {**dict(dms_schema.views.items()), **ref_view_by_id}
|
|
116
|
+
properties_by_ids = self._as_properties_by_ids(dms_schema, ref_view_by_id)
|
|
117
|
+
view_properties_by_id: dict[dm.ViewId, list[tuple[str, ViewProperty | ViewPropertyApply]]] = defaultdict(list)
|
|
118
|
+
for (view_id, prop_id), prop in properties_by_ids.items():
|
|
119
|
+
view_properties_by_id[view_id].append((prop_id, prop))
|
|
120
|
+
|
|
121
|
+
issue_list = IssueList()
|
|
122
|
+
# Neat DMS classes Validation
|
|
123
|
+
# These are errors that can only happen due to the format of the Neat DMS classes
|
|
124
|
+
issue_list.extend(self._validate_raw_filter())
|
|
125
|
+
issue_list.extend(self._consistent_container_properties())
|
|
126
|
+
issue_list.extend(self._validate_value_type_existence())
|
|
127
|
+
issue_list.extend(
|
|
128
|
+
self._validate_property_referenced_views_and_containers_exists(all_views_by_id, all_containers_by_id)
|
|
129
|
+
)
|
|
130
|
+
|
|
131
|
+
# SDK classes validation
|
|
132
|
+
issue_list.extend(self._containers_are_proper_size(dms_schema))
|
|
133
|
+
issue_list.extend(self._validate_reverse_connections(properties_by_ids, all_containers_by_id))
|
|
134
|
+
issue_list.extend(self._validate_schema(dms_schema, all_views_by_id, all_containers_by_id))
|
|
135
|
+
issue_list.extend(self._validate_referenced_container_limits(dms_schema.views, view_properties_by_id))
|
|
136
|
+
return issue_list
|
|
137
|
+
|
|
138
|
+
@staticmethod
|
|
139
|
+
def _as_properties_by_ids(
|
|
140
|
+
dms_schema: DMSSchema, ref_view_by_id: dict[dm.ViewId, dm.View]
|
|
141
|
+
) -> dict[tuple[ViewId, str], ViewPropertyApply | ViewProperty]:
|
|
142
|
+
# Priority DMS schema properties.
|
|
143
|
+
# No need to do long lookups in ref_views as these already contain all ancestor properties.
|
|
144
|
+
properties_by_id: dict[tuple[ViewId, str], ViewPropertyApply | ViewProperty] = {}
|
|
145
|
+
for view in dms_schema.views.values():
|
|
146
|
+
view_id = view.as_id()
|
|
147
|
+
for prop_id, prop in (view.properties or {}).items():
|
|
148
|
+
properties_by_id[(view_id, prop_id)] = prop
|
|
149
|
+
if view.implements:
|
|
150
|
+
to_check = view.implements.copy()
|
|
151
|
+
while to_check:
|
|
152
|
+
parent_id = to_check.pop()
|
|
153
|
+
if parent_id in dms_schema.views:
|
|
154
|
+
# Priority DMS Schema properties
|
|
155
|
+
parent_view = dms_schema.views[parent_id]
|
|
156
|
+
for prop_id, prop in (parent_view.properties or {}).items():
|
|
157
|
+
if (view_id, prop_id) not in properties_by_id:
|
|
158
|
+
properties_by_id[(view_id, prop_id)] = prop
|
|
159
|
+
to_check.extend(parent_view.implements or [])
|
|
160
|
+
elif parent_id in ref_view_by_id:
|
|
161
|
+
# SDK properties
|
|
162
|
+
parent_read_view = ref_view_by_id[parent_id]
|
|
163
|
+
for prop_id, read_prop in parent_read_view.properties.items():
|
|
164
|
+
if (view_id, prop_id) not in properties_by_id:
|
|
165
|
+
properties_by_id[(view_id, prop_id)] = read_prop
|
|
166
|
+
# Read format of views already includes all ancestor properties
|
|
167
|
+
# so no need to check further
|
|
168
|
+
else:
|
|
169
|
+
# Missing views are caught else where
|
|
170
|
+
continue
|
|
56
171
|
|
|
57
|
-
|
|
58
|
-
dms_schema = self.rules.as_schema()
|
|
59
|
-
self._validate_performance(dms_schema)
|
|
60
|
-
return self.issue_list
|
|
172
|
+
return properties_by_id
|
|
61
173
|
|
|
62
|
-
def _consistent_container_properties(self) ->
|
|
174
|
+
def _consistent_container_properties(self) -> IssueList:
|
|
63
175
|
container_properties_by_id: dict[tuple[ContainerEntity, str], list[tuple[int, DMSProperty]]] = defaultdict(list)
|
|
64
|
-
for prop_no, prop in enumerate(self.
|
|
176
|
+
for prop_no, prop in enumerate(self._properties):
|
|
65
177
|
if prop.container and prop.container_property:
|
|
66
178
|
container_properties_by_id[(prop.container, prop.container_property)].append((prop_no, prop))
|
|
67
179
|
|
|
68
|
-
errors
|
|
180
|
+
errors = IssueList()
|
|
69
181
|
for (container, prop_name), properties in container_properties_by_id.items():
|
|
70
182
|
if len(properties) == 1:
|
|
71
183
|
continue
|
|
@@ -152,135 +264,290 @@ class DMSPostValidation:
|
|
|
152
264
|
)
|
|
153
265
|
)
|
|
154
266
|
|
|
155
|
-
|
|
267
|
+
return errors
|
|
156
268
|
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
property_count_by_view: dict[dm.ViewId, int] = defaultdict(int)
|
|
164
|
-
errors: list[NeatIssue] = []
|
|
165
|
-
for prop_no, prop in enumerate(self.properties):
|
|
166
|
-
view_id = prop.view.as_id()
|
|
167
|
-
if view_id not in defined_views:
|
|
168
|
-
errors.append(
|
|
169
|
-
ResourceNotDefinedError(
|
|
170
|
-
identifier=view_id,
|
|
171
|
-
resource_type="view",
|
|
172
|
-
location="Views Sheet",
|
|
173
|
-
column_name="View",
|
|
174
|
-
row_number=prop_no,
|
|
175
|
-
sheet_name="Properties",
|
|
176
|
-
),
|
|
177
|
-
)
|
|
178
|
-
else:
|
|
179
|
-
property_count_by_view[view_id] += 1
|
|
180
|
-
for view_id, count in property_count_by_view.items():
|
|
269
|
+
@staticmethod
|
|
270
|
+
def _containers_are_proper_size(dms_schema: DMSSchema) -> IssueList:
|
|
271
|
+
errors = IssueList()
|
|
272
|
+
for container_id, container in dms_schema.containers.items():
|
|
273
|
+
count = len(container.properties or {})
|
|
181
274
|
if count > DMS_CONTAINER_PROPERTY_SIZE_LIMIT:
|
|
182
|
-
errors.append(
|
|
275
|
+
errors.append(ContainerPropertyLimitWarning(container_id, count))
|
|
183
276
|
|
|
184
|
-
|
|
277
|
+
return errors
|
|
185
278
|
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
279
|
+
@staticmethod
|
|
280
|
+
def _validate_referenced_container_limits(
|
|
281
|
+
views: ViewApplyDict, view_properties_by_id: dict[dm.ViewId, list[tuple[str, ViewProperty | ViewPropertyApply]]]
|
|
282
|
+
) -> IssueList:
|
|
283
|
+
issue_list = IssueList()
|
|
284
|
+
for view_id, view in views.items():
|
|
285
|
+
view_properties = view_properties_by_id.get(view_id, [])
|
|
286
|
+
mapped_containers = {
|
|
287
|
+
prop.container
|
|
288
|
+
for _, prop in view_properties
|
|
289
|
+
if isinstance(prop, dm.MappedPropertyApply | dm.MappedProperty)
|
|
290
|
+
}
|
|
189
291
|
|
|
190
|
-
if mapped_containers and len(mapped_containers) >
|
|
191
|
-
|
|
292
|
+
if mapped_containers and len(mapped_containers) > DMS_VIEW_CONTAINER_SIZE_LIMIT:
|
|
293
|
+
issue_list.append(
|
|
192
294
|
NotSupportedViewContainerLimitWarning(
|
|
193
295
|
view_id,
|
|
194
296
|
len(mapped_containers),
|
|
195
297
|
)
|
|
196
298
|
)
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
NotSupportedHasDataFilterLimitWarning(
|
|
204
|
-
view_id,
|
|
205
|
-
len(view.filter.dump()["hasData"]),
|
|
206
|
-
)
|
|
299
|
+
|
|
300
|
+
if view.filter and isinstance(view.filter, dm.filters.HasData) and len(view.filter.dump()["hasData"]) > 10:
|
|
301
|
+
issue_list.append(
|
|
302
|
+
NotSupportedHasDataFilterLimitWarning(
|
|
303
|
+
view_id,
|
|
304
|
+
len(view.filter.dump()["hasData"]),
|
|
207
305
|
)
|
|
306
|
+
)
|
|
307
|
+
return issue_list
|
|
208
308
|
|
|
209
|
-
def _validate_raw_filter(self) ->
|
|
210
|
-
|
|
309
|
+
def _validate_raw_filter(self) -> IssueList:
|
|
310
|
+
issue_list = IssueList()
|
|
311
|
+
for view in self._views:
|
|
211
312
|
if view.filter_ and isinstance(view.filter_, RawFilter):
|
|
212
|
-
|
|
313
|
+
issue_list.append(
|
|
213
314
|
NotNeatSupportedFilterWarning(view.view.as_id()),
|
|
214
315
|
)
|
|
316
|
+
return issue_list
|
|
215
317
|
|
|
216
|
-
def _validate_value_type_existence(self) ->
|
|
217
|
-
views = {prop_.view for prop_ in self.
|
|
218
|
-
|
|
219
|
-
for prop_ in self.
|
|
318
|
+
def _validate_value_type_existence(self) -> IssueList:
|
|
319
|
+
views = {prop_.view for prop_ in self._properties}.union({view_.view for view_ in self._views})
|
|
320
|
+
issue_list = IssueList()
|
|
321
|
+
for prop_ in self._properties:
|
|
220
322
|
if isinstance(prop_.value_type, ViewEntity) and prop_.value_type not in views:
|
|
221
|
-
|
|
323
|
+
issue_list.append(
|
|
222
324
|
UndefinedViewWarning(
|
|
223
325
|
str(prop_.view),
|
|
224
326
|
str(prop_.value_type),
|
|
225
327
|
prop_.view_property,
|
|
226
328
|
)
|
|
227
329
|
)
|
|
330
|
+
return issue_list
|
|
228
331
|
|
|
229
|
-
def
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
332
|
+
def _validate_property_referenced_views_and_containers_exists(
|
|
333
|
+
self,
|
|
334
|
+
view_by_id: dict[dm.ViewId, dm.ViewApply | dm.View],
|
|
335
|
+
containers_by_id: dict[dm.ContainerId, dm.ContainerApply | dm.Container],
|
|
336
|
+
) -> IssueList:
|
|
337
|
+
issue_list = IssueList()
|
|
338
|
+
for prop in self._properties:
|
|
339
|
+
if prop.container:
|
|
340
|
+
container_id = prop.container.as_id()
|
|
341
|
+
if container_id not in containers_by_id:
|
|
342
|
+
issue_list.append(
|
|
343
|
+
ResourceNotFoundError(
|
|
344
|
+
container_id,
|
|
345
|
+
"container",
|
|
346
|
+
prop.view,
|
|
347
|
+
"view",
|
|
348
|
+
)
|
|
349
|
+
)
|
|
350
|
+
elif (
|
|
351
|
+
prop.container_property and prop.container_property not in containers_by_id[container_id].properties
|
|
352
|
+
):
|
|
353
|
+
issue_list.append(
|
|
354
|
+
PropertyNotFoundError(
|
|
355
|
+
prop.container,
|
|
356
|
+
"container property",
|
|
357
|
+
prop.container_property,
|
|
358
|
+
dm.PropertyId(prop.view.as_id(), prop.view_property),
|
|
359
|
+
"view property",
|
|
360
|
+
)
|
|
361
|
+
)
|
|
233
362
|
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
363
|
+
if prop.view.as_id() not in view_by_id:
|
|
364
|
+
issue_list.append(
|
|
365
|
+
ResourceNotFoundError(
|
|
366
|
+
prop.view,
|
|
367
|
+
"view",
|
|
368
|
+
prop.view_property,
|
|
369
|
+
"property",
|
|
370
|
+
)
|
|
371
|
+
)
|
|
239
372
|
|
|
240
|
-
|
|
241
|
-
id_: prop_
|
|
242
|
-
for id_, prop_ in properties_by_ids.items()
|
|
243
|
-
if prop_.connection and isinstance(prop_.connection, ReverseConnectionEntity)
|
|
244
|
-
}
|
|
373
|
+
return issue_list
|
|
245
374
|
|
|
246
|
-
|
|
247
|
-
|
|
375
|
+
def _validate_reverse_connections(
|
|
376
|
+
self,
|
|
377
|
+
properties_by_ids: dict[tuple[dm.ViewId, str], ViewPropertyApply | ViewProperty],
|
|
378
|
+
containers_by_id: dict[dm.ContainerId, dm.ContainerApply | dm.Container],
|
|
379
|
+
) -> IssueList:
|
|
380
|
+
issue_list = IssueList()
|
|
381
|
+
# do not check for reverse connections in Cognite models
|
|
382
|
+
if self._metadata.as_data_model_id() in COGNITE_MODELS:
|
|
383
|
+
return issue_list
|
|
384
|
+
|
|
385
|
+
for (view_id, prop_id), prop_ in properties_by_ids.items():
|
|
386
|
+
if not isinstance(prop_, ReverseDirectRelationApply | ReverseDirectRelation):
|
|
387
|
+
continue
|
|
388
|
+
source_id = prop_.through.source, prop_.through.property
|
|
248
389
|
if source_id not in properties_by_ids:
|
|
249
|
-
|
|
390
|
+
issue_list.append(
|
|
250
391
|
ReversedConnectionNotFeasibleError(
|
|
251
|
-
|
|
392
|
+
view_id,
|
|
252
393
|
"reversed connection",
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
str(prop_.value_type),
|
|
256
|
-
cast(ReverseConnectionEntity, prop_.connection).property_,
|
|
394
|
+
prop_id,
|
|
395
|
+
f"The {prop_.through.source} {prop_.through.property} does not exist",
|
|
257
396
|
)
|
|
258
397
|
)
|
|
398
|
+
continue
|
|
399
|
+
if isinstance(source_id[0], dm.ContainerId):
|
|
400
|
+
# Todo: How to handle this case? Should not happen if you created the model with Neat
|
|
401
|
+
continue
|
|
259
402
|
|
|
260
|
-
|
|
261
|
-
|
|
403
|
+
target_property = properties_by_ids[(source_id[0], source_id[1])]
|
|
404
|
+
# Validate that the target is a direct relation pointing to the view_id
|
|
405
|
+
is_direct_relation = False
|
|
406
|
+
if isinstance(target_property, dm.MappedProperty) and isinstance(target_property.type, dm.DirectRelation):
|
|
407
|
+
is_direct_relation = True
|
|
408
|
+
elif isinstance(target_property, dm.MappedPropertyApply):
|
|
409
|
+
container = containers_by_id[target_property.container]
|
|
410
|
+
if target_property.container_property_identifier in container.properties:
|
|
411
|
+
container_property = container.properties[target_property.container_property_identifier]
|
|
412
|
+
if isinstance(container_property.type, dm.DirectRelation):
|
|
413
|
+
is_direct_relation = True
|
|
414
|
+
if not is_direct_relation:
|
|
415
|
+
issue_list.append(
|
|
262
416
|
ReversedConnectionNotFeasibleError(
|
|
263
|
-
|
|
264
|
-
"
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
str(prop_.value_type),
|
|
268
|
-
cast(ReverseConnectionEntity, prop_.connection).property_,
|
|
417
|
+
view_id,
|
|
418
|
+
"reversed connection",
|
|
419
|
+
prop_id,
|
|
420
|
+
f"{prop_.through.source} {prop_.through.property} is not a direct relation",
|
|
269
421
|
)
|
|
270
422
|
)
|
|
271
|
-
|
|
272
|
-
else:
|
|
273
423
|
continue
|
|
424
|
+
if not (
|
|
425
|
+
isinstance(target_property, dm.MappedPropertyApply | dm.MappedProperty)
|
|
426
|
+
and target_property.source == view_id
|
|
427
|
+
):
|
|
428
|
+
issue_list.append(
|
|
429
|
+
ReversedConnectionNotFeasibleError(
|
|
430
|
+
view_id,
|
|
431
|
+
"reversed connection",
|
|
432
|
+
prop_id,
|
|
433
|
+
f"{prop_.through.source} {prop_.through.property} is not pointing to {view_id}",
|
|
434
|
+
)
|
|
435
|
+
)
|
|
436
|
+
return issue_list
|
|
274
437
|
|
|
275
438
|
@staticmethod
|
|
276
|
-
def
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
439
|
+
def _validate_schema(
|
|
440
|
+
schema: DMSSchema,
|
|
441
|
+
view_by_id: dict[dm.ViewId, dm.ViewApply | dm.View],
|
|
442
|
+
containers_by_id: dict[dm.ContainerId, dm.ContainerApply | dm.Container],
|
|
443
|
+
) -> IssueList:
|
|
444
|
+
errors: set[NeatError] = set()
|
|
445
|
+
defined_spaces = schema.spaces.copy()
|
|
446
|
+
|
|
447
|
+
for container_id, container in schema.containers.items():
|
|
448
|
+
if container.space not in defined_spaces:
|
|
449
|
+
errors.add(ResourceNotFoundError(container.space, "space", container_id, "container"))
|
|
450
|
+
for constraint in container.constraints.values():
|
|
451
|
+
if isinstance(constraint, dm.RequiresConstraint) and constraint.require not in containers_by_id:
|
|
452
|
+
errors.add(ResourceNotFoundError(constraint.require, "container", container_id, "container"))
|
|
453
|
+
|
|
454
|
+
for view_id, view in schema.views.items():
|
|
455
|
+
if view.space not in defined_spaces:
|
|
456
|
+
errors.add(ResourceNotFoundError(view.space, "space", view_id, "view"))
|
|
457
|
+
|
|
458
|
+
for parent in view.implements or []:
|
|
459
|
+
if parent not in view_by_id:
|
|
460
|
+
errors.add(PropertyNotFoundError(parent, "view", "implements", view_id, "view"))
|
|
461
|
+
|
|
462
|
+
for prop_name, prop in (view.properties or {}).items():
|
|
463
|
+
if isinstance(prop, dm.MappedPropertyApply):
|
|
464
|
+
ref_container = containers_by_id.get(prop.container)
|
|
465
|
+
if ref_container is None:
|
|
466
|
+
errors.add(ResourceNotFoundError(prop.container, "container", view_id, "view"))
|
|
467
|
+
elif prop.container_property_identifier not in ref_container.properties:
|
|
468
|
+
errors.add(
|
|
469
|
+
PropertyNotFoundError(
|
|
470
|
+
prop.container,
|
|
471
|
+
"container",
|
|
472
|
+
prop.container_property_identifier,
|
|
473
|
+
view_id,
|
|
474
|
+
"view",
|
|
475
|
+
)
|
|
476
|
+
)
|
|
477
|
+
else:
|
|
478
|
+
container_property = ref_container.properties[prop.container_property_identifier]
|
|
479
|
+
|
|
480
|
+
if isinstance(container_property.type, dm.DirectRelation) and prop.source is None:
|
|
481
|
+
warnings.warn(
|
|
482
|
+
DirectRelationMissingSourceWarning(view_id, prop_name),
|
|
483
|
+
stacklevel=2,
|
|
484
|
+
)
|
|
485
|
+
|
|
486
|
+
if (
|
|
487
|
+
isinstance(prop, dm.EdgeConnectionApply | ReverseDirectRelationApply)
|
|
488
|
+
and prop.source not in view_by_id
|
|
489
|
+
):
|
|
490
|
+
errors.add(PropertyNotFoundError(prop.source, "view", prop_name, view_id, "view"))
|
|
491
|
+
|
|
492
|
+
if (
|
|
493
|
+
isinstance(prop, dm.EdgeConnectionApply)
|
|
494
|
+
and prop.edge_source is not None
|
|
495
|
+
and prop.edge_source not in view_by_id
|
|
496
|
+
):
|
|
497
|
+
errors.add(PropertyNotFoundError(prop.edge_source, "view", prop_name, view_id, "view"))
|
|
498
|
+
|
|
499
|
+
# This allows for multiple view properties to be mapped to the same container property,
|
|
500
|
+
# as long as they have different external_id, otherwise this will lead to raising
|
|
501
|
+
# error ContainerPropertyUsedMultipleTimesError
|
|
502
|
+
property_count = Counter(
|
|
503
|
+
(prop.container, prop.container_property_identifier, view_property_identifier)
|
|
504
|
+
for view_property_identifier, prop in (view.properties or {}).items()
|
|
505
|
+
if isinstance(prop, dm.MappedPropertyApply)
|
|
506
|
+
)
|
|
507
|
+
|
|
508
|
+
for (
|
|
509
|
+
container_id,
|
|
510
|
+
container_property_identifier,
|
|
511
|
+
_,
|
|
512
|
+
), count in property_count.items():
|
|
513
|
+
if count > 1:
|
|
514
|
+
view_properties = [
|
|
515
|
+
prop_name
|
|
516
|
+
for prop_name, prop in (view.properties or {}).items()
|
|
517
|
+
if isinstance(prop, dm.MappedPropertyApply)
|
|
518
|
+
and (prop.container, prop.container_property_identifier)
|
|
519
|
+
== (container_id, container_property_identifier)
|
|
520
|
+
]
|
|
521
|
+
errors.add(
|
|
522
|
+
PropertyMappingDuplicatedError(
|
|
523
|
+
container_id,
|
|
524
|
+
"container",
|
|
525
|
+
container_property_identifier,
|
|
526
|
+
frozenset({dm.PropertyId(view_id, prop_name) for prop_name in view_properties}),
|
|
527
|
+
"view property",
|
|
528
|
+
)
|
|
529
|
+
)
|
|
530
|
+
|
|
531
|
+
if schema.data_model:
|
|
532
|
+
model = schema.data_model
|
|
533
|
+
if model.space not in defined_spaces:
|
|
534
|
+
errors.add(ResourceNotFoundError(model.space, "space", model.as_id(), "data model"))
|
|
535
|
+
|
|
536
|
+
view_counts: dict[dm.ViewId, int] = defaultdict(int)
|
|
537
|
+
for view_id_or_class in model.views or []:
|
|
538
|
+
view_id = view_id_or_class if isinstance(view_id_or_class, dm.ViewId) else view_id_or_class.as_id()
|
|
539
|
+
if view_id not in view_by_id:
|
|
540
|
+
errors.add(ResourceNotFoundError(view_id, "view", model.as_id(), "data model"))
|
|
541
|
+
view_counts[view_id] += 1
|
|
542
|
+
|
|
543
|
+
for view_id, count in view_counts.items():
|
|
544
|
+
if count > 1:
|
|
545
|
+
errors.add(
|
|
546
|
+
ResourceDuplicatedError(
|
|
547
|
+
view_id,
|
|
548
|
+
"view",
|
|
549
|
+
repr(model.as_id()),
|
|
550
|
+
)
|
|
551
|
+
)
|
|
552
|
+
|
|
553
|
+
return IssueList(list(errors))
|
|
@@ -5,6 +5,7 @@ from ._rules_input import (
|
|
|
5
5
|
InformationInputProperty,
|
|
6
6
|
InformationInputRules,
|
|
7
7
|
)
|
|
8
|
+
from ._validation import InformationValidation
|
|
8
9
|
|
|
9
10
|
__all__ = [
|
|
10
11
|
"InformationRules",
|
|
@@ -15,4 +16,5 @@ __all__ = [
|
|
|
15
16
|
"InformationInputMetadata",
|
|
16
17
|
"InformationInputClass",
|
|
17
18
|
"InformationInputProperty",
|
|
19
|
+
"InformationValidation",
|
|
18
20
|
]
|