Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync entity map with specific lists #166

Merged
merged 1 commit into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 23 additions & 24 deletions rocrate/rocrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,6 @@ class ROCrate():
def __init__(self, source=None, gen_preview=False, init=False, exclude=None):
self.exclude = exclude
self.__entity_map = {}
self.default_entities = []
self.data_entities = []
self.contextual_entities = []
# TODO: add this as @base in the context? At least when loading
# from zip
self.uuid = uuid.uuid4()
Expand Down Expand Up @@ -136,14 +133,14 @@ def __read(self, source, gen_preview=False):

def __read_data_entities(self, entities, source, gen_preview):
metadata_id, root_id = find_root_entity_id(entities)
MetadataClass = metadata_class(metadata_id)
metadata_properties = entities.pop(metadata_id)
self.add(MetadataClass(self, metadata_id, properties=metadata_properties))

root_entity = entities.pop(root_id)
assert root_id == root_entity.pop('@id')
parts = as_list(root_entity.pop('hasPart', []))
self.add(RootDataset(self, root_id, properties=root_entity))
MetadataClass = metadata_class(metadata_id)
metadata_properties = entities.pop(metadata_id)
self.add(MetadataClass(self, metadata_id, properties=metadata_properties))

preview_entity = entities.pop(Preview.BASENAME, None)
if preview_entity and not gen_preview:
self.add(Preview(self, source / Preview.BASENAME, properties=preview_entity))
Expand Down Expand Up @@ -176,6 +173,23 @@ def __read_contextual_entities(self, entities):
cls = pick_type(entity, type_map, fallback=ContextEntity)
self.add(cls(self, identifier, entity))

@property
def default_entities(self):
return [e for e in self.__entity_map.values()
if isinstance(e, (RootDataset, Metadata, LegacyMetadata, Preview))]

@property
def data_entities(self):
return [e for e in self.__entity_map.values()
if not isinstance(e, (RootDataset, Metadata, LegacyMetadata, Preview))
and hasattr(e, "write")]

@property
def contextual_entities(self):
return [e for e in self.__entity_map.values()
if not isinstance(e, (RootDataset, Metadata, LegacyMetadata, Preview))
and not hasattr(e, "write")]

@property
def name(self):
return self.root_dataset.get('name')
Expand Down Expand Up @@ -379,18 +393,13 @@ def add(self, *entities):
key = e.canonical_id()
if isinstance(e, RootDataset):
self.root_dataset = e
if isinstance(e, (Metadata, LegacyMetadata)):
elif isinstance(e, (Metadata, LegacyMetadata)):
self.metadata = e
if isinstance(e, Preview):
elif isinstance(e, Preview):
self.preview = e
if isinstance(e, (RootDataset, Metadata, LegacyMetadata, Preview)):
self.default_entities.append(e)
elif hasattr(e, "write"):
self.data_entities.append(e)
if key not in self.__entity_map:
self.root_dataset.append_to("hasPart", e)
else:
self.contextual_entities.append(e)
self.__entity_map[key] = e
return entities[0] if len(entities) == 1 else entities

Expand All @@ -412,21 +421,11 @@ def delete(self, *entities):
if e is self.metadata:
raise ValueError("cannot delete the metadata entity")
if e is self.preview:
self.default_entities.remove(e)
self.preview = None
elif hasattr(e, "write"):
try:
self.data_entities.remove(e)
except ValueError:
pass
self.root_dataset["hasPart"] = [_ for _ in self.root_dataset.get("hasPart", []) if _ != e]
if not self.root_dataset["hasPart"]:
del self.root_dataset._jsonld["hasPart"]
else:
try:
self.contextual_entities.remove(e)
except ValueError:
pass
self.__entity_map.pop(e.canonical_id(), None)

def _copy_unlisted(self, top, base_path):
Expand Down
30 changes: 30 additions & 0 deletions test/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,3 +475,33 @@ def test_context(helpers):
crate.metadata.extra_terms[k] = v
jsonld = crate.metadata.generate()
assert jsonld["@context"] == [base_context, wfrun_ctx, {k: v}]


def test_add_no_duplicates(test_data_dir, tmpdir):
source = test_data_dir / "sample_file.txt"
crate = ROCrate()
f1 = crate.add_file(source, properties={"name": "sample file"})
ret = crate.get(source.name)
assert ret is f1
assert ret["name"] == "sample file"
assert ret in crate.get_entities()
assert crate.data_entities == [f1]
f2 = crate.add_file(source, properties={"name": "foobar"})
ret = crate.get(source.name)
assert ret is f2
assert ret["name"] == "foobar"
assert ret in crate.get_entities()
assert f1 not in crate.get_entities()
assert crate.data_entities == [f2]
joe = crate.add(Person(crate, "#joe", properties={"name": "Joe"}))
ret = crate.get("#joe")
assert ret is joe
assert ret in crate.get_entities()
assert ret["name"] == "Joe"
assert crate.contextual_entities == [joe]
jim = crate.add(Person(crate, "#joe", properties={"name": "Jim"}))
ret = crate.get("#joe")
assert ret is jim
assert ret["name"] == "Jim"
assert ret in crate.get_entities()
assert crate.contextual_entities == [jim]
Loading