SQLRepository extends SaveableMappingObjectFactory implements ISQLRepository
A repository for a MySQL database table.
This is meant for SIMPLE database operations on single tables. If you are joining tables, doing fancy things, etc then please create a new repository and write some beautifully hand-crafted sql.
Tags
Table of Contents
$table | Table name | string |
---|---|---|
$dbc | Database connection | IDBConnection |
$locked | If the table is locked | bool |
$hasMutexLock | If a lock has been obtained via GET_LOCK() | bool |
$mapper | Data mapper | IModelMapper |
$properties | Properties | IPropertySet |
$pNames | Property names | string[] |
__construct() | Create a new SQLRepository instance | mixed |
getTable() | Retrieve the database table name backing this repository. | string |
lockTable() | Lock the table via "lock tables". | void |
unlockTable() | Unlock the tables obtained by lockTable() This also commits. | void |
getLock() | Attempts to obtain a lock for this table via GET_LOCK(). | void |
releaseLock() | Release the lock obtained by getLock() | void |
isTableLocked() | If the table is locked via lock tables. | bool |
isLocked() | If there is a lock in effect via GET_LOCK() | bool |
getDatabaseConnection() | Retrieve the database connection | IDBConnection |
getSaveFunction() | Retrieve an IRunnable instance to be used with some ITransaction instance. | IRunnable |
createUnitOfWork() | Create a unit of work against the repo. | IRunnable |
stream() | Stream the data one record at a time from the data source. This may not always be implemented. | Generator |
query() | Query the data source. | \buffalokiwi\magicgraph\IModel[] |
get() | Load some record by primary key | IModel |
getIdsForProperty() | Retrieve a list of id's for some property. | array |
findByProperty() | Perform a simple search by property name. | array |
getForProperty() | Retrieve a list of models where some property name matches some value. | array |
exists() | Tests to see if some value exists by primary key | bool |
getAll() | Retrieve a list of models by a list of primary key values. | \buffalokiwi\magicgraph\IModel[] |
saveModel() | Save some record. | void |
saveAll() | Saves a batch of records. | void |
removeById() | Remove an entry by id. This does not work for compound keys. | void |
remove() | Removes a model. | void |
count() | Retrieve the estimated record count. | int |
getPage() | Retrieve user records by page. | array |
getStatement() | string | |
isSafe() | Detect if a string is only [a-zA-Z0-9_] | bool |
doesRecordExistByCompoundPrimaryKey() | Execute a query to locate rows by primary key. | bool |
saveModel() | What to do when saving the model. | mixed |
save() | Save some record. | void |
saveAll() | Saves a batch of records. | void |
beforeSave() | Called before the repo save call is made. | void |
afterSave() | Called after the repo save call is made | void |
beforeValidate() | Called before the validate call is made | void |
getSaveClosure() | Retrieve an IRunnable instance to be used with some ITransaction instance. | Closure |
runBeforeSave() | void | |
runAfterSave() | void | |
__construct() | mixed | |
addPropertyConfig() | Adds an additional property config to this repo. | mixed |
create() | Create a new Model instance using the internal data mapper. | IModel |
createPropertySet() | Clones and returns the internal property set used to construct objects. | IPropertySet |
createPropertyNameSet() | Retrieves a set containing the property names. | IBigSet |
test() | Test that one or more models is the correct type. | void |
mapper() | IModelMapper | |
properties() | IPropertySet | |
getInsertProperties() | IBigSet | |
getModifiedProperties() | IBigSet | |
filterPropertyNamesForSave() | Removes any properties flagged with SUBCONFIG from the list of property names | array |
Properties
$table
Table name
private
string
$table
$dbc
Database connection
private
IDBConnection
$dbc
$locked
If the table is locked
private
bool
$locked
= false
$hasMutexLock
If a lock has been obtained via GET_LOCK()
private
bool
$hasMutexLock
= false
$mapper
Data mapper
private
IModelMapper
$mapper
$properties
Properties
private
IPropertySet
$properties
$pNames
Property names
private
string[]
$pNames
Methods
__construct()
Create a new SQLRepository instance
public
__construct(
$table :
string
, $mapper :
IModelMapper
, $dbc :
IDBConnection
[, $properties :
IPropertySet|null
= null ]
)
: mixed
Parameters
- $table : string
Table name
- $mapper : IModelMapper
Mapper
- $dbc : IDBConnection
Database connection
- $properties : IPropertySet|null = null
Tags
Return values
mixedgetTable()
Retrieve the database table name backing this repository.
public
getTable(
)
: string
Return values
string —database table name
lockTable()
Lock the table via "lock tables".
public
lockTable(
)
: void
Disables autocommit.
unlockTable()
Unlock the tables obtained by lockTable() This also commits.
public
unlockTable(
)
: void
getLock()
Attempts to obtain a lock for this table via GET_LOCK().
public
getLock(
)
: void
This blocks until one can be obtained.
releaseLock()
Release the lock obtained by getLock()
public
releaseLock(
)
: void
isTableLocked()
If the table is locked via lock tables.
public
isTableLocked(
)
: bool
Return values
bool —locked
isLocked()
If there is a lock in effect via GET_LOCK()
public
isLocked(
)
: bool
Return values
bool —is locked
getDatabaseConnection()
Retrieve the database connection
public
getDatabaseConnection(
)
: IDBConnection
Return values
IDBConnection —database connection
getSaveFunction()
Retrieve an IRunnable instance to be used with some ITransaction instance.
public
getSaveFunction(
$beforeSave :
Closure
, $afterSave :
Closure
, ...$models :
IModel
)
: IRunnable
This runnable will execute the supplied function prior to saving the model.
Parameters
- $beforeSave : Closure
What to run prior to saving f( IRepository, ...IModel )
- $afterSave : Closure
What to run after saving f( IRepository, ...IModel )
- $models : IModel
One or more models to save
Return values
IRunnablecreateUnitOfWork()
Create a unit of work against the repo.
public
createUnitOfWork(
$action :
Closure
)
: IRunnable
Parameters
- $action : Closure
f( IRepository $repo ) : void - What to do
Return values
IRunnable —Runnable
stream()
Stream the data one record at a time from the data source. This may not always be implemented.
public
stream(
$properties :
IPropertySet
, $filter :
IFilter
[, $rows :
IRows
= null ]
)
: Generator
Parameters
- $properties : IPropertySet
- $filter : IFilter
Filters to use
- $rows : IRows = null
Sort order and limit
Tags
Return values
Generator —yielded results
query()
Query the data source.
public
query(
$properties :
IPropertySet
, $filter :
IFilter
[, $rows :
IRows
= null ]
)
: \buffalokiwi\magicgraph\IModel[]
Parameters
- $properties : IPropertySet
Properties to return
- $filter : IFilter
Filters to use
- $rows : IRows = null
Sort order and limit
Tags
Return values
\buffalokiwi\magicgraph\IModel[] —model instances
get()
Load some record by primary key
public
get(
...$id :
string
)
: IModel
Parameters
- $id : string
id
Tags
Return values
IModel —model instance
getIdsForProperty()
Retrieve a list of id's for some property.
public
getIdsForProperty(
$propertyName :
string
, $value :
string
)
: array
If primary key is compound, then each returned element will be an array (map) listing each key.
Parameters
- $propertyName : string
Property Name
- $value : string
value
Tags
Return values
array —ids
findByProperty()
Perform a simple search by property name.
public
findByProperty(
$propertyName :
string
, $value :
string
[, $limit :
int
= 100 ]
)
: array
If the engine supports simple searching, this can be used for that. For example: With SQL databases, this can simply be a wildcard search. Also possible to use full text indexes or whatever else the engine supports.
Depending on the repo, this could connect to any number of things for searching.
Parameters
- $propertyName : string
Property name
- $value : string
Search value. What this is depends on the engine.
- $limit : int = 100
Tags
Return values
arraygetForProperty()
Retrieve a list of models where some property name matches some value.
public
getForProperty(
$propertyName :
string
, $value :
mixed
)
: array
If value is an array, this uses the "in" operator if the value is null, this tests for "is null" All other values use the "=" operator.
As with everything in magic graph, NEVER feed user input into a property name argument. ALWAYS use the whitelisted column names contained within a property set.
Parameters
- $propertyName : string
Property name
- $value : mixed
value
Tags
Return values
arrayexists()
Tests to see if some value exists by primary key
public
exists(
...$id :
string
)
: bool
Parameters
- $id : string
Return values
boolgetAll()
Retrieve a list of models by a list of primary key values.
public
getAll(
$idList :
array
)
: \buffalokiwi\magicgraph\IModel[]
If multiple primary key columns are defined, this simply uses the first one that was defined in the list of primary keys. Use query() for compound keys.
Parameters
- $idList : array
id list
Tags
Return values
\buffalokiwi\magicgraph\IModel[] —found models
saveModel()
Save some record.
protected
saveModel(
$model :
IModel
)
: void
If the primary key value is specified, this is considered to be an update. Otherwise, this is considered to be an insert.
Parameters
- $model : IModel
Model to save
Tags
saveAll()
Saves a batch of records.
public
saveAll(
...$model :
IModel
)
: void
All records are first validated, then saved sequentially. Validation exceptions will be thrown prior to any saves happening.
If the primary key value is specified, this is considered to be an update. Otherwise, this is considered to be an insert.
This is split into 3 batches (iterations of supplied models):
1) beforeValidate, validate and beforeSave 2) saveModel 3) afterSave
This will wrap the call to saveAll() with a database transaction. Exceptions will call rollBack().
If merging multiple repositories, DO NOT USE THIS. Use the transaction factory to create a unit of work, which will manage transactions across different storage engines.
Parameters
- $model : IModel
Model to save
Tags
removeById()
Remove an entry by id. This does not work for compound keys.
public
removeById(
$id :
string
)
: void
Parameters
- $id : string
id
Tags
remove()
Removes a model.
public
remove(
$model :
IModel
)
: void
Parameters
- $model : IModel
Model to remove
Tags
count()
Retrieve the estimated record count.
public
count(
[ $full :
bool
= false ]
)
: int
Parameters
- $full : bool = false
Set to true to retrieve count(*), set to false for max(primary key)
Return values
int —estimated number of records
getPage()
Retrieve user records by page.
public
getPage(
$page :
int
[, $size :
int
= 25 ]
[, $orderBy :
string
= '' ]
)
: array
Parameters
- $page : int
Page number
- $size : int = 25
page size
- $orderBy : string = ''
Return values
array —IModel[] Users
getStatement()
private
getStatement(
$properties :
IBigSet
[, $filter :
IFilter|null
= null ]
[, $rows :
IRows|null
= null ]
)
: string
Parameters
Return values
stringisSafe()
Detect if a string is only [a-zA-Z0-9_]
private
isSafe(
$s :
string
)
: bool
Parameters
- $s : string
String to check
Return values
bool —is letters
doesRecordExistByCompoundPrimaryKey()
Execute a query to locate rows by primary key.
private
doesRecordExistByCompoundPrimaryKey(
$model :
IModel
, $priKeys :
array
)
: bool
Parameters
- $model : IModel
- $priKeys : array
Return values
bool —exists
saveModel()
What to do when saving the model.
protected
abstract saveModel(
$model :
IModel
)
: mixed
ie: commit to some database or whatever.
Parameters
- $model : IModel
Model to save
Tags
Return values
mixedsave()
Save some record.
public
save(
$model :
IModel
[, $validate :
bool
= true ]
)
: void
If the primary key value is specified, this is considered to be an update. Otherwise, this is considered to be an insert.
Parameters
- $model : IModel
Model to save
- $validate : bool = true
Validate the model prior to save
Tags
saveAll()
Saves a batch of records.
public
saveAll(
...$model :
IModel
)
: void
All records are first validated, then saved sequentially. Validation exceptions will be thrown prior to any saves happening.
If the primary key value is specified, this is considered to be an update. Otherwise, this is considered to be an insert.
This is split into 3 batches (iterations of supplied models):
1) beforeValidate, validate and beforeSave 2) saveModel 3) afterSave
Parameters
- $model : IModel
Model to save
Tags
beforeSave()
Called before the repo save call is made.
protected
beforeSave(
$model :
IModel
)
: void
Parameters
- $model : IModel
afterSave()
Called after the repo save call is made
protected
afterSave(
$model :
IModel
)
: void
Parameters
- $model : IModel
beforeValidate()
Called before the validate call is made
protected
beforeValidate(
$model :
IModel
)
: void
Parameters
- $model : IModel
getSaveClosure()
Retrieve an IRunnable instance to be used with some ITransaction instance.
protected
final getSaveClosure(
$beforeSave :
Closure
, $afterSave :
Closure
, ...$models :
IModel
)
: Closure
This runnable will execute the supplied function prior to saving the model.
Parameters
- $beforeSave : Closure
What to run prior to saving f( IRepository, ...IModel )
- $afterSave : Closure
What to run after saving f( IRepository, ...IModel )
- $models : IModel
One or more models to save
Return values
Closure —Function
runBeforeSave()
private
runBeforeSave(
$model :
IModel
)
: void
Parameters
- $model : IModel
runAfterSave()
private
runAfterSave(
$model :
IModel
)
: void
Parameters
- $model : IModel
__construct()
public
__construct(
$mapper :
IModelMapper
[, $properties :
IPropertySet|null
= null ]
)
: mixed
Parameters
- $mapper : IModelMapper
- $properties : IPropertySet|null = null
Return values
mixedaddPropertyConfig()
Adds an additional property config to this repo.
public
addPropertyConfig(
...$config :
type
)
: mixed
When models reference themselves, sometimes it's necessary for a property config to reference the repository (circular).
Feels a bit like cheating to me...
Warning: This method should only be caled from composition root. This can obviously have some unintended side effects when used in other locations.
Parameters
- $config : type
Return values
mixedcreate()
Create a new Model instance using the internal data mapper.
public
create(
$data :
array
[, $readOnly :
bool
= false ]
)
: IModel
Parameters
- $data : array
Raw data to use
- $readOnly : bool = false
Set the produced model to read only
Tags
Return values
IModel —model instance
createPropertySet()
Clones and returns the internal property set used to construct objects.
public
createPropertySet(
)
: IPropertySet
Return values
IPropertySet —property set
createPropertyNameSet()
Retrieves a set containing the property names.
public
createPropertyNameSet(
)
: IBigSet
Return values
IBigSet —set
test()
Test that one or more models is the correct type.
protected
test(
...$models :
IModel
)
: void
Parameters
- $models : IModel
Models
mapper()
protected
mapper(
)
: IModelMapper
Return values
IModelMapperproperties()
protected
properties(
)
: IPropertySet
Return values
IPropertySetgetInsertProperties()
protected
getInsertProperties(
$model :
IModel
)
: IBigSet
Parameters
- $model : IModel
Return values
IBigSetgetModifiedProperties()
protected
getModifiedProperties(
$model :
IModel
)
: IBigSet
Parameters
- $model : IModel
Return values
IBigSetfilterPropertyNamesForSave()
Removes any properties flagged with SUBCONFIG from the list of property names
private
filterPropertyNamesForSave(
$names :
string[]
, $model :
IModel
)
: array
Parameters
- $names : string[]
Property names
- $model : IModel
Tags
Return values
array —filtered names