aiida.orm.entities 源代码

###########################################################################
# Copyright (c), The AiiDA team. All rights reserved.                     #
# This file is part of the AiiDA code.                                    #
#                                                                         #
# The code is hosted on GitHub at https://github.com/aiidateam/aiida-core #
# For further information on the license, see the LICENSE.txt file        #
# For further information please visit http://www.aiida.net               #
###########################################################################
"""Module for all common top level AiiDA entity classes and methods"""

from __future__ import annotations

import abc
from enum import Enum
from functools import lru_cache
from typing import TYPE_CHECKING, Any, Generic, List, Optional, Sequence, Type, TypeVar, Union, cast

from plumpy.base.utils import call_with_super_check, super_check

from aiida.common.exceptions import InvalidOperation
from aiida.common.lang import classproperty, type_check
from aiida.common.warnings import warn_deprecation
from aiida.manage import get_manager

from .fields import EntityFieldMeta, QbField, QbFields, add_field

if TYPE_CHECKING:
    from aiida.orm.implementation import BackendEntity, StorageBackend
    from aiida.orm.querybuilder import FilterType, OrderByType, QueryBuilder

__all__ = ('Entity', 'Collection', 'EntityTypes')

CollectionType = TypeVar('CollectionType', bound='Collection')
EntityType = TypeVar('EntityType', bound='Entity')
BackendEntityType = TypeVar('BackendEntityType', bound='BackendEntity')


[文档] class EntityTypes(Enum): """Enum for referring to ORM entities in a backend-agnostic manner.""" AUTHINFO = 'authinfo' COMMENT = 'comment' COMPUTER = 'computer' GROUP = 'group' LOG = 'log' NODE = 'node' USER = 'user' LINK = 'link' GROUP_NODE = 'group_node'
[文档] class Collection(abc.ABC, Generic[EntityType]): """Container class that represents the collection of objects of a particular entity type."""
[文档] @staticmethod @abc.abstractmethod def _entity_base_cls() -> Type[EntityType]: """The allowed entity class or subclasses thereof."""
[文档] @classmethod @lru_cache(maxsize=100) def get_cached(cls, entity_class: Type[EntityType], backend: 'StorageBackend'): """Get the cached collection instance for the given entity class and backend. :param backend: the backend instance to get the collection for """ from aiida.orm.implementation import StorageBackend type_check(backend, StorageBackend) return cls(entity_class, backend=backend)
[文档] def __init__(self, entity_class: Type[EntityType], backend: Optional['StorageBackend'] = None) -> None: """Construct a new entity collection. :param entity_class: the entity type e.g. User, Computer, etc :param backend: the backend instance to get the collection for, or use the default """ from aiida.orm.implementation import StorageBackend type_check(backend, StorageBackend, allow_none=True) assert issubclass(entity_class, self._entity_base_cls()) self._backend = backend or get_manager().get_profile_storage() self._entity_type = entity_class
[文档] def __call__(self: CollectionType, backend: 'StorageBackend') -> CollectionType: """Get or create a cached collection using a new backend.""" if backend is self._backend: return self return self.get_cached(self.entity_type, backend=backend) # type: ignore[arg-type]
@property def entity_type(self) -> Type[EntityType]: """The entity type for this instance.""" return self._entity_type @property def backend(self) -> 'StorageBackend': """Return the backend.""" return self._backend
[文档] def query( self, filters: Optional['FilterType'] = None, order_by: Optional['OrderByType'] = None, project: Optional[Union[list[str], str]] = None, limit: Optional[int] = None, offset: Optional[int] = None, subclassing: bool = True, ) -> 'QueryBuilder': """Get a query builder for the objects of this collection. :param filters: the keyword value pair filters to match :param order_by: a list of (key, direction) pairs specifying the sort order :param project: Optional projections. :param limit: the maximum number of results to return :param offset: number of initial results to be skipped :param subclassing: whether to match subclasses of the type as well. """ from . import querybuilder filters = filters or {} order_by = {self.entity_type: order_by} if order_by else {} query = querybuilder.QueryBuilder(backend=self._backend, limit=limit, offset=offset) query.append(self.entity_type, project=project, filters=filters, subclassing=subclassing) query.order_by([order_by]) return query
[文档] def get(self, **filters: Any) -> EntityType: """Get a single collection entry that matches the filter criteria. :param filters: the filters identifying the object to get :return: the entry """ res = self.query(filters=filters) return res.one()[0]
[文档] def find( self, filters: Optional['FilterType'] = None, order_by: Optional['OrderByType'] = None, limit: Optional[int] = None, ) -> List[EntityType]: """Find collection entries matching the filter criteria. :param filters: the keyword value pair filters to match :param order_by: a list of (key, direction) pairs specifying the sort order :param limit: the maximum number of results to return :return: a list of resulting matches """ query = self.query(filters=filters, order_by=order_by, limit=limit) return cast(List[EntityType], query.all(flat=True))
[文档] def all(self) -> List[EntityType]: """Get all entities in this collection. :return: A list of all entities """ return cast(List[EntityType], self.query().all(flat=True))
[文档] def count(self, filters: Optional['FilterType'] = None) -> int: """Count entities in this collection according to criteria. :param filters: the keyword value pair filters to match :return: The number of entities found using the supplied criteria """ return self.query(filters=filters).count()
[文档] class Entity(abc.ABC, Generic[BackendEntityType, CollectionType], metaclass=EntityFieldMeta): """An AiiDA entity""" _CLS_COLLECTION: Type[CollectionType] = Collection # type: ignore[assignment] fields: QbFields = QbFields() __qb_fields__: Sequence[QbField] = [ add_field( 'pk', dtype=int, is_attribute=False, doc='The primary key of the entity', ), ] @classproperty def objects(cls: EntityType) -> CollectionType: # noqa: N805 """Get a collection for objects of this type, with the default backend. .. deprecated:: This will be removed in v3, use ``collection`` instead. :return: an object that can be used to access entities of this type """ warn_deprecation('`objects` property is deprecated, use `collection` instead.', version=3, stacklevel=4) return cls.collection @classproperty def collection(cls) -> CollectionType: # noqa: N805 """Get a collection for objects of this type, with the default backend. :return: an object that can be used to access entities of this type """ return cls._CLS_COLLECTION.get_cached(cls, get_manager().get_profile_storage())
[文档] @classmethod def get_collection(cls, backend: 'StorageBackend'): """Get a collection for objects of this type for a given backend. .. note:: Use the ``collection`` class property instead if the currently loaded backend or backend of the default profile should be used. :param backend: The backend of the collection to use. :return: A collection object that can be used to access entities of this type. """ return cls._CLS_COLLECTION.get_cached(cls, backend)
[文档] @classmethod def get(cls, **kwargs): """Get an entity of the collection matching the given filters. .. deprecated: Will be removed in v3, use `Entity.collection.get` instead. """ warn_deprecation( f'`{cls.__name__}.get` method is deprecated, use `{cls.__name__}.collection.get` instead.', version=3, stacklevel=2, ) return cls.collection.get(**kwargs)
[文档] def __init__(self, backend_entity: BackendEntityType) -> None: """:param backend_entity: the backend model supporting this entity""" self._backend_entity = backend_entity call_with_super_check(self.initialize)
[文档] def __getstate__(self): """Prevent an ORM entity instance from being pickled.""" raise InvalidOperation('pickling of AiiDA ORM instances is not supported.')
@super_check def initialize(self) -> None: """Initialize instance attributes. This will be called after the constructor is called or an entity is created from an existing backend entity. """ @property def id(self) -> int | None: """Return the id for this entity. This identifier is guaranteed to be unique amongst entities of the same type for a single backend instance. .. deprecated: Will be removed in v3, use `pk` instead. :return: the entity's id """ warn_deprecation('`id` property is deprecated, use `pk` instead.', version=3, stacklevel=2) return self._backend_entity.id @property def pk(self) -> int | None: """Return the primary key for this entity. This identifier is guaranteed to be unique amongst entities of the same type for a single backend instance. :return: the entity's principal key """ return self._backend_entity.id
[文档] def store(self: EntityType) -> EntityType: """Store the entity.""" self._backend_entity.store() return self
@property def is_stored(self) -> bool: """Return whether the entity is stored.""" return self._backend_entity.is_stored @property def backend(self) -> 'StorageBackend': """Get the backend for this entity""" return self._backend_entity.backend @property def backend_entity(self) -> BackendEntityType: """Get the implementing class for this object""" return self._backend_entity
[文档] def from_backend_entity(cls: Type[EntityType], backend_entity: BackendEntityType) -> EntityType: """Construct an entity from a backend entity instance :param backend_entity: the backend entity :return: an AiiDA entity instance """ from .implementation.entities import BackendEntity type_check(backend_entity, BackendEntity) entity = cls.__new__(cls) entity._backend_entity = backend_entity call_with_super_check(entity.initialize) return entity