# Copyright 2019 The Forte Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
import copy
import gzip
import pickle
import uuid
from abc import abstractmethod
from pathlib import Path
from typing import (
List,
Optional,
Set,
Type,
TypeVar,
Union,
Iterator,
Dict,
Any,
Iterable,
)
from functools import partial
from typing_inspect import get_origin
from packaging.version import Version
import jsonpickle
from forte.common import ProcessExecutionException, EntryNotFoundError
from forte.data.index import BaseIndex
from forte.data.base_store import BaseStore
from forte.data.container import EntryContainer
from forte.data.ontology.core import (
Entry,
EntryType,
GroupType,
LinkType,
FList,
FDict,
)
from forte.version import (
PACK_VERSION,
DEFAULT_PACK_VERSION,
PACK_ID_COMPATIBLE_VERSION,
)
logger = logging.getLogger(__name__)
__all__ = ["BasePack", "BaseMeta", "PackType"]
[docs]class BasePack(EntryContainer[EntryType, LinkType, GroupType]):
r"""The base class of :class:`~forte.data.data_pack.DataPack` and
:class:`~forte.data.multi_pack.MultiPack`.
Args:
pack_name: a string name of the pack.
"""
# pylint: disable=too-many-public-methods
def __init__(self, pack_name: Optional[str] = None):
super().__init__()
self.pack_version: str = PACK_VERSION
self._meta: BaseMeta = self._init_meta(pack_name)
self._index: BaseIndex = BaseIndex()
self._data_store: BaseStore
self.__control_component: Optional[str] = None
# This Dict maintains a mapping from entry's tid to the component
# name associated with the entry.
# The component name is used for tracking the "creator" of this entry.
self._pending_entries: Dict[int, Optional[str]] = {}
def __getstate__(self):
state = self.__dict__.copy()
state.pop("_index")
state.pop("_pending_entries")
state.pop("_BasePack__control_component")
return state
def __setstate__(self, state):
# Pack version checking. We will no longer provide support for
# serialized Pack whose "pack_version" is less than
# PACK_ID_COMPATIBLE_VERSION.
pack_version: str = (
state["pack_version"]
if "pack_version" in state
else DEFAULT_PACK_VERSION
)
if Version(pack_version) < Version(PACK_ID_COMPATIBLE_VERSION):
raise ValueError(
"The pack cannot be deserialized because its version "
f"{pack_version} is outdated. We only support pack with "
f"version greater or equal to {PACK_ID_COMPATIBLE_VERSION}"
)
super().__setstate__(state)
if "meta" in self.__dict__:
self._meta = self.__dict__.pop("meta")
self.__control_component = None
self._pending_entries = {}
@abstractmethod
def _init_meta(self, pack_name: Optional[str] = None) -> BaseMeta:
raise NotImplementedError
def set_meta(self, **kwargs):
for k, v in kwargs.items():
if not hasattr(self._meta, k):
raise AttributeError(f"Meta has no attribute named {k}")
setattr(self._meta, k, v)
@property
def pack_id(self):
return self._meta.pack_id
@abstractmethod
def __iter__(self) -> Iterator[EntryType]:
raise NotImplementedError
def __del__(self):
if len(self._pending_entries) > 0:
raise ProcessExecutionException(
f"There are {len(self._pending_entries)} "
f"entries not added to the index correctly."
)
@property
def pack_name(self):
return self._meta.pack_name
@pack_name.setter
def pack_name(self, pack_name: str):
"""
Update the pack name of this pack.
Args:
pack_name: The new doc id.
Returns:
"""
self._meta.pack_name = pack_name
@classmethod
def _deserialize(
cls,
data_source: Union[Path, str],
serialize_method: str = "jsonpickle",
zip_pack: bool = False,
) -> "PackType":
"""
This function should deserialize a Pack from a string. The
implementation should decide the specific pack type.
Args:
data_source: The data path containing pack data. The content
of the data could be string or bytes depending on the method of
serialization.
serialize_method: The method used to serialize the data, this
should be the same as how serialization is done. The current
options are `jsonpickle` and `pickle`. The default method
is `jsonpickle`.
zip_pack: Boolean value indicating whether the input source is
zipped.
Returns:
An pack object deserialized from the data.
"""
_open = gzip.open if zip_pack else open
if serialize_method == "jsonpickle":
with _open(data_source, mode="rt") as f: # type: ignore
pack = cls.from_string(f.read())
else:
with _open(data_source, mode="rb") as f: # type: ignore
pack = pickle.load(f)
if not hasattr(pack, "pack_version"):
pack.pack_version = DEFAULT_PACK_VERSION
return pack # type: ignore
@classmethod
def from_string(cls, data_content: str) -> "BasePack":
pack = jsonpickle.decode(data_content)
if not hasattr(pack, "pack_version"):
pack.pack_version = DEFAULT_PACK_VERSION
return pack
[docs] def delete_entry(self, entry: EntryType):
r"""Remove the entry from the pack.
Args:
entry: The entry to be removed.
Returns:
None
"""
self._data_store.delete_entry(tid=entry.tid)
# update basic index
self._index.remove_entry(entry)
# set other index invalid
self._index.turn_link_index_switch(on=False)
self._index.turn_group_index_switch(on=False)
[docs] def add_entry(
self, entry: Union[Entry, int], component_name: Optional[str] = None
) -> EntryType:
r"""Add an :class:`~forte.data.ontology.core.Entry` object to the
:class:`~forte.data.base_pack.BasePack` object. Allow duplicate entries in a pack.
Args:
entry: An :class:`~forte.data.ontology.core.Entry`
object to be added to the pack.
component_name: A name to record that the entry is created by
this component.
Returns:
The input entry itself
"""
# When added to the pack, make a record.
self.record_entry(entry, component_name)
# TODO: Returning the entry itself may not be helpful.
return self._add_entry(entry)
@abstractmethod
def _add_entry(self, entry: Union[Entry, int]) -> EntryType:
r"""Add an :class:`~forte.data.ontology.core.Entry` object to the
:class:`~forte.data.base_pack.BasePack` object. Allow duplicate entries in a pack.
Args:
entry: An :class:`~forte.data.ontology.core.Entry`
object to be added to the pack.
Returns:
The input entry itself
"""
raise NotImplementedError
[docs] def add_all_remaining_entries(self, component: Optional[str] = None):
"""
Calling this function will add the entries that are not added to the
pack manually.
Args:
component: Overwrite the component record with this.
Returns:
None
"""
for entry, c in list(self._pending_entries.items()):
c_ = component if component else c
self.add_entry(entry, c_)
self._pending_entries.clear()
[docs] def to_string(
self,
drop_record: Optional[bool] = False,
json_method: str = "jsonpickle",
indent: Optional[int] = None,
) -> str:
"""
Return the string representation (json encoded) of this method.
Args:
drop_record: Whether to drop the creation records, default is False.
json_method: What method is used to convert data pack to json.
Only supports `json_pickle` for now. Default value is
`json_pickle`.
indent: The indent used for json string.
Returns: String representation of the data pack.
"""
if drop_record:
self._creation_records.clear()
self._field_records.clear()
if json_method == "jsonpickle":
return jsonpickle.encode(self, unpicklable=True, indent=indent)
else:
raise ValueError(f"Unsupported JSON method {json_method}.")
[docs] def serialize(
self,
output_path: Union[str, Path],
zip_pack: bool = False,
drop_record: bool = False,
serialize_method: str = "jsonpickle",
indent: Optional[int] = None,
):
r"""
Serializes the data pack to the provided path. The output of this
function depends on the serialization method chosen.
Args:
output_path: The path to write data to.
zip_pack: Whether to compress the result with `gzip`.
drop_record: Whether to drop the creation records, default is False.
serialize_method: The method used to serialize the data. Currently
supports `jsonpickle` (outputs str) and Python's built-in
`pickle` (outputs bytes).
indent: Whether to indent the file if written as JSON.
Returns: Results of serialization.
"""
if zip_pack:
_open = gzip.open
else:
_open = open # type:ignore
if drop_record:
self._creation_records.clear()
self._field_records.clear()
if serialize_method == "pickle":
with _open(output_path, mode="wb") as pickle_out:
pickle.dump(self, pickle_out)
elif serialize_method == "jsonpickle":
with _open(output_path, mode="wt", encoding="utf-8") as json_out:
json_out.write(
self.to_string(drop_record, "jsonpickle", indent=indent)
)
else:
raise NotImplementedError(
f"Unsupported serialization method {serialize_method}"
)
def view(self):
return copy.deepcopy(self)
[docs] def set_control_component(self, component: str):
"""
Record the current component that is taking control of this pack.
Args:
component: The component that is going to take control
Returns:
"""
self.__control_component = component
def record_entry(
self, entry: Union[Entry, int], component_name: Optional[str] = None
):
c = component_name
if c is None:
# Use the auto-inferred control component.
c = self.__control_component
if c is not None:
tid: int = entry.tid if isinstance(entry, Entry) else entry
try:
self._creation_records[c].add(tid)
except KeyError:
self._creation_records[c] = {tid}
[docs] def record_field(self, entry_id: int, field_name: str):
"""
Record who modifies the entry, will be called
in :class:`~forte.data.ontology.core.Entry`
Args:
entry_id: The id of the entry.
field_name: The name of the field modified.
Returns:
"""
c = self.__control_component
if c is not None:
try:
self._field_records[c].add((entry_id, field_name))
except KeyError:
self._field_records[c] = {(entry_id, field_name)}
[docs] def on_entry_creation(
self, entry: Entry, component_name: Optional[str] = None
):
"""
Call this when adding a new entry, will be called
in :class:`~forte.data.ontology.core.Entry` when
its `__init__` function is called.
Args:
entry: The entry to be added.
component_name: A name to record that the entry is created by
this component.
Returns:
"""
c = component_name
if c is None:
# Use the auto-inferred control component.
c = self.__control_component
def entry_getter(cls: Entry, attr_name: str, field_type):
"""A getter function for dataclass fields of entry object.
When the field contains ``tid``s, we will convert them to entry
object on the fly.
Args:
cls: An ``Entry`` class object.
attr_name: The name of the attribute.
field_type: The type of the attribute.
"""
data_store_ref = (
cls.pack._data_store # pylint: disable=protected-access
)
attr_val = data_store_ref.get_attribute(
tid=cls.tid, attr_name=attr_name
)
if field_type in (FList, FDict):
# Generate FList/FDict object on the fly
return field_type(parent_entry=cls, data=attr_val)
try:
# TODO: Find a better solution to determine if a field is Entry
# Will be addressed by https://github.com/asyml/forte/issues/835
# Convert tid to entry object on the fly
if isinstance(attr_val, int):
# Single pack entry
return cls.pack.get_entry(tid=attr_val)
# The condition below is to check whether the attribute's value
# is a pair of integers - `(pack_id, tid)`. If so we may have
# encountered a `tid` that can only be resolved by
# `MultiPack.get_subentry`.
elif (
isinstance(attr_val, tuple)
and len(attr_val) == 2
and all(isinstance(element, int) for element in attr_val)
and hasattr(cls.pack, "get_subentry")
):
# Multi pack entry
return cls.pack.get_subentry(*attr_val)
except KeyError:
pass
return attr_val
def entry_setter(cls: Entry, value: Any, attr_name: str, field_type):
"""A setter function for dataclass fields of entry object.
When the value contains entry objects, we will convert them into
``tid``s before storing to ``DataStore``.
Args:
cls: An ``Entry`` class object.
value: The value to be assigned to the attribute.
attr_name: The name of the attribute.
field_type: The type of the attribute.
"""
attr_value: Any
data_store_ref = (
cls.pack._data_store # pylint: disable=protected-access
)
# Assumption: Users will not assign value to a FList/FDict field.
# Only internal methods can set the FList/FDict field, and value's
# type has to be Iterator[Entry]/Dict[Any, Entry].
if field_type is FList:
try:
attr_value = [entry.tid for entry in value]
except AttributeError as e:
raise ValueError(
"You are trying to assign value to a `FList` field, "
"which can only accept an iterator of `Entry` objects."
) from e
elif field_type is FDict:
try:
attr_value = {
key: entry.tid for key, entry in value.items()
}
except AttributeError as e:
raise ValueError(
"You are trying to assign value to a `FDict` field, "
"which can only accept a mapping whose values are "
"`Entry` objects."
) from e
elif isinstance(value, Entry):
attr_value = (
value.tid
if value.pack.pack_id == cls.pack.pack_id
# When value's pack and cls's pack are not the same, we
# assume that cls.pack is a MultiPack, which will resolve
# value.tid using MultiPack.get_subentry(pack_id, tid).
# In this case, both pack_id and tid should be stored.
else (value.pack.pack_id, value.tid)
)
else:
attr_value = value
data_store_ref.set_attribute(
tid=cls.tid, attr_name=attr_name, attr_value=attr_value
)
# Save the input entry object in DataStore
self._save_entry_to_data_store(entry=entry)
# Register property functions for all dataclass fields.
for name, field in entry.__dataclass_fields__.items():
# Convert the typing annotation to the original class.
# This will be used to determine if a field is FList/FDict.
field_type = get_origin(field.type)
setattr(
type(entry),
name,
# property(fget, fset) will register a conversion layer
# that specifies how to retrieve/assign value of this field.
property(
# We need to bound the attribute name and field type here
# for the getter and setter of each field.
fget=partial(
entry_getter, attr_name=name, field_type=field_type
),
fset=partial(
entry_setter, attr_name=name, field_type=field_type
),
),
)
# Record that this entry hasn't been added to the index yet.
self._pending_entries[entry.tid] = c
# TODO: how to make this return the precise type here?
[docs] def get_entry(self, tid: int) -> EntryType:
r"""Look up the entry_index with ``tid``. Specific implementation
depends on the actual class."""
try:
# Try to find entry in DataIndex
entry: EntryType = self._index.get_entry(tid)
except KeyError:
# Find entry in DataStore
entry = self._get_entry_from_data_store(tid=tid)
if entry is None:
raise KeyError(
f"There is no entry with tid '{tid}'' in this datapack"
)
return entry
[docs] def get_entry_raw(self, tid: int) -> List:
r"""Retrieve the raw entry data in list format from DataStore."""
return self._data_store.get_entry(tid=tid)[0]
@abstractmethod
def _save_entry_to_data_store(self, entry: Entry):
r"""Save an existing entry object into DataStore"""
raise NotImplementedError
@abstractmethod
def _get_entry_from_data_store(self, tid: int) -> EntryType:
r"""Generate a class object from entry data in DataStore"""
raise NotImplementedError
@property
@abstractmethod
def links(self):
r"""A List container of all links in this data pack."""
raise NotImplementedError
@property
@abstractmethod
def groups(self):
r"""A List container of all groups in this pack."""
raise NotImplementedError
@abstractmethod
def get_data(
self, context_type, request, skip_k
) -> Iterator[Dict[str, Any]]:
raise NotImplementedError
[docs] @abstractmethod
def get(
self, entry_type: Union[str, Type[EntryType]], **kwargs
) -> Iterator[EntryType]:
"""
Implementation of this method should provide to obtain the entries in
entry ordering. If there are orders defined between the entries, they
should be used first. Otherwise, the insertion order should be
used (FIFO).
Args:
entry_type: The type of the entry to obtain.
Returns:
An iterator of the entries matching the provided arguments.
"""
raise NotImplementedError
[docs] def get_single(self, entry_type: Union[str, Type[EntryType]]) -> EntryType:
r"""Take a single entry of type
:attr:`~forte.data.data_pack.DataPack.entry_type` from this data
pack. This is useful when the target entry type appears only one
time in the :class:`~forte.data.data_pack.DataPack` for e.g., a Document entry. Or you just
intended to take the first one.
Args:
entry_type: The entry type to be retrieved.
Returns:
A single data entry.
"""
for a in self.get(entry_type):
return a
raise EntryNotFoundError(
f"The entry {entry_type} is not found in the provided pack."
)
[docs] def get_ids_by_creator(self, component: str) -> Set[int]:
r"""
Look up the component_index with key `component`. This will return
the entry ids that are created by the `component`
Args:
component: The component (creator) to find ids for.
Returns:
A set of entry ids that are created by the component.
"""
entry_set: Set[int] = self._creation_records[component]
return entry_set
[docs] def is_created_by(
self, entry: Entry, components: Union[str, Iterable[str]]
) -> bool:
"""
Check if the entry is created by any of the provided components.
Args:
entry: The entry to check.
components: The list of component names.
Returns:
True if the entry is created by the component, False otherwise.
"""
if isinstance(components, str):
components = [components]
for c in components:
if entry.tid in self._creation_records[c]:
break
else:
# The entry not created by any of these components.
return False
return True
[docs] def get_entries_from(self, component: str) -> Set[EntryType]:
"""
Look up all entries from the `component` as a unordered set
Args:
component: The component (creator) to get the entries. It is
normally the full qualified name of the creator class, but it
may also be customized based on the implementation.
Returns:
The set of entry ids that are created by the input component.
"""
return {
self.get_entry(tid) for tid in self.get_ids_by_creator(component)
}
[docs] def get_ids_from(self, components: List[str]) -> Set[int]:
"""
Look up entries using a list of components (creators). This will find
each creator iteratively and combine the result.
Args:
components: The list of components to find.
Returns:
The list of entry ids that are created from these components.
"""
valid_component_id: Set[int] = set()
for component in components:
valid_component_id |= self.get_ids_by_creator(component)
return valid_component_id
def _expand_to_sub_types(self, entry_type: Type[EntryType]) -> Set[Type]:
"""
Return all the types and the sub types that inherit from the provided
type.
Args:
entry_type: The provided type to search for entry.
Returns:
A set of all the sub-types extending the provided type, including
the input ``entry_type`` itself.
"""
all_types: Set[Type] = set()
for data_type in self._index.indexed_types():
if issubclass(data_type, entry_type):
all_types.add(data_type)
return all_types
[docs] def get_entries_of(
self, entry_type: Type[EntryType], exclude_sub_types=False
) -> Iterator[EntryType]:
"""
Return all entries of this particular type without orders. If you
need to get the annotations based on the entry ordering,
use :meth:`forte.data.base_pack.BasePack.get`.
Args:
entry_type: The type of the entry you are looking for.
exclude_sub_types: Whether to ignore the inherited sub type
of the provided `entry_type`. Default is True.
Returns:
An iterator of the entries matching the type constraint.
"""
if exclude_sub_types:
for tid in self._index.query_by_type(entry_type):
yield self.get_entry(tid)
else:
for tid in self._index.query_by_type_subtype(entry_type):
yield self.get_entry(tid)
@classmethod
@abstractmethod
def validate_link(cls, entry: EntryType) -> bool:
raise NotImplementedError
@classmethod
@abstractmethod
def validate_group(cls, entry: EntryType) -> bool:
raise NotImplementedError
def get_links_from_node(
self, node: Union[int, EntryType], as_parent: bool
) -> List[LinkType]:
links: List[LinkType] = []
if isinstance(node, Entry):
tid = node.tid
if tid is None:
raise ValueError(
"The requested node has no tid. "
"Have you add this entry into the datapack?"
)
elif isinstance(node, int):
tid = node
else:
raise TypeError(
"Can only get group via entry id (int) or the "
"group object itself (Entry)."
)
if not self._index.link_index_on:
self._index.build_link_index(self.links)
for tid in self._index.link_index(tid, as_parent=as_parent):
entry: EntryType = self.get_entry(tid)
if self.validate_link(entry):
links.append(entry) # type: ignore
return links
def get_links_by_parent(
self, parent: Union[int, EntryType]
) -> List[LinkType]:
return self.get_links_from_node(parent, True)
def get_links_by_child(
self, child: Union[int, EntryType]
) -> List[LinkType]:
return self.get_links_from_node(child, False)
def get_groups_by_member(
self, member: Union[int, EntryType]
) -> Set[GroupType]:
groups: Set[GroupType] = set()
if isinstance(member, Entry):
tid = member.tid
if tid is None:
raise ValueError(
"Argument member has no tid. "
"Have you add this entry into the datapack?"
)
elif isinstance(member, int):
tid = member
else:
raise TypeError(
"Can only get group via entry id (int) or the "
"group object itself (Entry)."
)
if not self._index.group_index_on:
self._index.build_group_index(self.groups)
for tid in self._index.group_index(tid):
entry: EntryType = self.get_entry(tid)
if self.validate_group(entry):
groups.add(entry) # type: ignore
return groups
PackType = TypeVar("PackType", bound=BasePack)