EntityRepo<T>

Basic interface for entity services.

interface EntityRepo<T>
Copyright
2015-2016 Appertly
License
Apache-2.0

Instance Methods

Public
ReturnsSignature and Description
int
countAll(ConstMap<string,mixed> $criteria)

Counts several records by some arbitrary criteria.

Traversable<T>
findAll(ConstMap<string,mixed> $criteria, ?Pagination $pagination = null, ?bool $totalCount = false)

Finds several records by some arbitrary criteria.

?T
findById(mixed $id)

Gets a single document by ID.

?T
findOne(ConstMap<string,mixed> $criteria)

Finds a single record by some arbitrary criteria.

T
get(mixed $id)

Gets a single document by ID, throwing an exception if it's not found.

Traversable<T>
getAll(ConstVector<mixed> $ids)

Gets several documents by ID.

ImmMap<string,T>
getInstanceMap(Traversable<T> $entities)

Gets a Map that relates identifier to instance

string

Gets the type of entity produced, mainly for ACL reasons.

Method Details

countAll

abstract public function countAll(ConstMap<string,mixed> $criteria)

Counts several records by some arbitrary criteria.

Since
0.6.0
Parameters
NameTypeDescription
$criteriaConstMap<string,mixed>

Field to value pairs

Returns
TypeDescription
int

The count of the documents

Throws
TypeConditions
Unreachable

If the connection fails

Unretrievable

If the result cannot be returned

Generic

If any other database problem occurs

findAll

abstract public function findAll(ConstMap<string,mixed> $criteria, ?Pagination $pagination = null, ?bool $totalCount = false)

Finds several records by some arbitrary criteria.

Parameters
NameTypeDescription
$criteriaConstMap<string,mixed>

Field to value pairs

$pagination?Pagination

Optional pagination parameters

$totalCount?bool

Return a CursorSubset that includes the total number of records. This is only done if $pagination is not using the defaults.

Returns
TypeDescription
Traversable<T>

The objects found or null if none

Throws
TypeConditions
Unreachable

If the connection fails

Unretrievable

If the result cannot be returned

Generic

If any other database problem occurs

findById

abstract public function findById(mixed $id)

Gets a single document by ID.

Parameters
NameTypeDescription
$idmixed

The document identifier

Returns
TypeDescription
?T

The entity

Throws
TypeConditions
Unreachable

If the connection fails

Unretrievable

If the result cannot be returned

Generic

If any other database problem occurs

findOne

abstract public function findOne(ConstMap<string,mixed> $criteria)

Finds a single record by some arbitrary criteria.

Parameters
NameTypeDescription
$criteriaConstMap<string,mixed>

Field to value pairs

Returns
TypeDescription
?T

The object found or null if none

Throws
TypeConditions
Unreachable

If the connection fails

Unretrievable

If the result cannot be returned

Generic

If any other database problem occurs

get

abstract public function get(mixed $id)

Gets a single document by ID, throwing an exception if it's not found.

Parameters
NameTypeDescription
$idmixed

The document identifier

Returns
TypeDescription
T

The entity

Throws
TypeConditions
Unreachable

If the connection fails

Unretrievable

If the document doesn't exist

Generic

If any other database problem occurs

getAll

abstract public function getAll(ConstVector<mixed> $ids)

Gets several documents by ID.

Parameters
NameTypeDescription
$idsConstVector<mixed>

Array of identifiers

Returns
TypeDescription
Traversable<T>

The results

Throws
TypeConditions
Unreachable

If the connection fails

Unretrievable

If the result cannot be returned

Generic

If any other database problem occurs

getInstanceMap

abstract public function getInstanceMap(Traversable<T> $entities)

Gets a Map that relates identifier to instance

Parameters
NameTypeDescription
$entitiesTraversable<T>

The entities to "zip"

Returns
TypeDescription
ImmMap<string,T>

The instances keyed by identifier

getType

abstract public function getType()

Gets the type of entity produced, mainly for ACL reasons.

Returns
TypeDescription
string

The entity type