Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OWL2YAMS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cubicweb
OWL2YAMS
Commits
6347bb41ca25
Commit
6347bb41ca25
authored
1 year ago
by
Elodie Thiéblin
Browse files
Options
Downloads
Patches
Plain Diff
refactor: handle error result in get_entity_from_uri
parent
f310c4832066
No related branches found
No related tags found
1 merge request
!21
Topic/default/rdf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
owl2yams/ccplugin.py
+12
-13
12 additions, 13 deletions
owl2yams/ccplugin.py
with
12 additions
and
13 deletions
owl2yams/ccplugin.py
+
12
−
13
View file @
6347bb41
...
@@ -48,7 +48,14 @@
...
@@ -48,7 +48,14 @@
try
:
try
:
return
cnx
.
execute
(
rql_query
,
{
"
uri
"
:
entity_uri
}).
one
()
return
cnx
.
execute
(
rql_query
,
{
"
uri
"
:
entity_uri
}).
one
()
except
NoResultError
:
except
NoResultError
:
print
(
"
warn: no cubicweb entity for
"
,
entity_uri
)
print
(
"
warn: no cubicweb entity for
"
,
entity_uri
,
"
skipping addition
"
)
return
None
except
MultipleResultsError
:
print
(
"
warn: multiple cubicweb entities for
"
,
entity_uri
,
"
skipping addition
"
,
)
return
None
return
None
def
get_schema_as_dict
(
self
,
repo
):
def
get_schema_as_dict
(
self
,
repo
):
...
@@ -87,18 +94,8 @@
...
@@ -87,18 +94,8 @@
temp_labels
=
[]
temp_labels
=
[]
# Get entity type from equivalent_uri
# Get entity type from equivalent_uri
try
:
entity_type
=
self
.
get_entity_from_uri
(
cnx
,
class_uri
,
"
CWEType
"
)
entity_type
=
self
.
get_entity_from_uri
(
cnx
,
class_uri
,
"
CWEType
"
)
if
entity_type
is
None
:
except
NoResultError
:
print
(
f
"
Did not import
{
instance_uri
}
as
{
class_uri
}
is unknown in the schema.
"
)
continue
except
MultipleResultsError
:
print
(
f
"
Did not import
{
instance_uri
}
as
{
class_uri
}
because
"
"
multiple types are possible.
"
)
continue
continue
# Get entity attribute
# Get entity attribute
...
@@ -108,6 +105,8 @@
...
@@ -108,6 +105,8 @@
external_uri
=
cnx
.
create_entity
(
"
ExternalUri
"
,
uri
=
instance_uri
)
external_uri
=
cnx
.
create_entity
(
"
ExternalUri
"
,
uri
=
instance_uri
)
temp_attributes
=
{
"
equivalent_uri
"
:
external_uri
}
temp_attributes
=
{
"
equivalent_uri
"
:
external_uri
}
for
predicate_uri
,
object_value
in
g
.
predicate_objects
(
instance_uri
):
for
predicate_uri
,
object_value
in
g
.
predicate_objects
(
instance_uri
):
if
predicate_uri
==
RDF
.
type
:
continue
relation_type
=
None
relation_type
=
None
try
:
try
:
relation_type
=
self
.
get_entity_from_uri
(
relation_type
=
self
.
get_entity_from_uri
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment