* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2007 PradoSoft
* @license http://www.pradosoft.com/license/
* @version $Id$
* @package System.Data.ActiveRecord
*/
/**
* Load record manager, criteria and relations.
*/
Prado::using('System.Data.ActiveRecord.TActiveRecordManager');
Prado::using('System.Data.ActiveRecord.TActiveRecordCriteria');
Prado::using('System.Data.ActiveRecord.Relations.TActiveRecordRelationContext');
/**
* Base class for active records.
*
* An active record creates an object that wraps a row in a database table
* or view, encapsulates the database access, and adds domain logic on that data.
*
* Active record objects are stateful, this is main difference between the
* TActiveRecord implementation and the TTableGateway implementation.
*
* The essence of an Active Record is an object model of the
* domain (e.g. products, items) that incorporates both behavior and
* data in which the classes match very closely the record structure of an
* underlying database. Each Active Record is responsible for saving and
* loading to the database and also for any domain logic that acts on the data.
*
* The Active Record provides methods that do the following:
* 1. Construct an instance of the Active Record from a SQL result set row.
* 2. Construct a new instance for later insertion into the table.
* 3. Finder methods to wrap commonly used SQL queries and return Active Record objects.
* 4. Update the database and insert into it the data in the Active Record.
*
* Example:
*
* class UserRecord extends TActiveRecord
* {
* const TABLE='users'; //optional table name.
*
* public $username; //corresponds to the fieldname in the table
* public $email;
*
* //returns active record finder instance
* public static function finder($className=__CLASS__)
* {
* return parent::finder($className);
* }
* }
*
* //create a connection and give it to the ActiveRecord manager.
* $dsn = 'pgsql:host=localhost;dbname=test';
* $conn = new TDbConnection($dsn, 'dbuser','dbpass');
* TActiveRecordManager::getInstance()->setDbConnection($conn);
*
* //load the user record with username (primary key) 'admin'.
* $user = UserRecord::finder()->findByPk('admin');
* $user->email = 'admin@example.org';
* $user->save(); //update the 'admin' record.
*
*
* Since v3.1.1, TActiveRecord starts to support column mapping. The physical
* column names (defined in database) can be mapped to logical column names
* (defined in active classes as public properties.) To use this feature, declare
* a static class variable COLUMN_MAPPING like the following:
*
* class UserRecord extends TActiveRecord
* {
* const TABLE='users';
* public static $COLUMN_MAPPING=array
* (
* 'user_id'=>'username',
* 'email_address'=>'email',
* );
* public $username;
* pulbic $email;
* }
*
* In the above, the 'users' table consists of 'user_id' and 'email_address' columns,
* while the UserRecord class declares 'username' and 'email' properties.
* By using column mapping, we can regularize the naming convention of column names
* in active record.
*
* @author Wei Zhuo
* @version $Id$
* @package System.Data.ActiveRecord
* @since 3.1
*/
abstract class TActiveRecord extends TComponent
{
const HAS_MANY='HAS_MANY';
const BELONGS_TO='BELONGS_TO';
const HAS_ONE='HAS_ONE';
private static $_columnMapping=array();
/**
* This static variable defines the column mapping.
* The keys are physical column names as defined in database,
* and the values are logical column names as defined as public variable/property names
* for the corresponding active record class.
* @var array column mapping. Keys: physical column names, values: logical column names.
* @since 3.1.1
*/
public static $COLUMN_MAPPING=array();
/**
* This static variable defines the relationships.
* The keys are public variable/property names defined in the AR class.
* Each value is an array, e.g. array(self::HAS_MANY, 'PlayerRecord').
* @var array relationship.
* @since 3.1.1
*/
public static $RELATIONS=array();
/**
* @var boolean true if this class is read only.
*/
private $_readOnly=false;
/**
* @var TDbConnection database connection object.
*/
private $_connection;
/**
* Prevent __call() method creating __sleep() when serializing.
*/
public function __sleep()
{
return array_keys(get_object_vars($this));
}
/**
* Prevent __call() method creating __wake() when unserializing.
*/
public function __wake()
{
$this->setupColumnMapping();
}
/**
* Create a new instance of an active record with given $data. The record
* can be saved to the database specified by the $connection object.
*
* @param array optional name value pair record data.
* @param TDbConnection optional database connection this object record use.
*/
public function __construct($data=array(), $connection=null)
{
$this->copyFrom($data);
if($connection!==null)
$this->_connection=$connection;
$this->setupColumnMapping();
}
/**
* @since 3.1.1
*/
private function setupColumnMapping()
{
$className=get_class($this);
if(!isset(self::$_columnMapping[$className]))
{
$class=new ReflectionClass($className);
self::$_columnMapping[$className]=$class->getStaticPropertyValue('COLUMN_MAPPING');
}
}
/**
* Copies data from an array or another object.
* @throws TActiveRecordException if data is not array or not object.
* @return TActiveRecord current instance.
*/
public function copyFrom($data)
{
$data = is_object($data) ? get_object_vars($data) : $data;
if(!is_array($data))
throw new TActiveRecordException('ar_must_copy_from_array_or_object', get_class($this));
foreach($data as $name=>$value)
$this->$name = $value;
return $this;
}
/**
* Gets the current Db connection, the connection object is obtained from
* the TActiveRecordManager if connection is currently null.
* @return TDbConnection current db connection for this object.
*/
public function getDbConnection()
{
if($this->_connection===null)
$this->_connection=self::getRecordManager()->getDbConnection();
if($this->_connection===null) //check it
throw new TActiveRecordException('ar_invalid_db_connection',get_class($this));
return $this->_connection;
}
/**
* @param TDbConnection db connection object for this record.
*/
public function setDbConnection($connection)
{
$this->_connection=$connection;
}
/**
* Compare two records using their primary key values (all column values if
* table does not defined primary keys). The default uses simple == for
* comparison of their values. Set $strict=true for identity comparison.
* @param TActiveRecord another record to compare with.
* @param boolean true to perform strict identity comparison
* @return boolean true if $record equals, false otherwise.
*/
public function equals(TActiveRecord $record, $strict=false)
{
$thisClass=__CLASS__;
if(!($record instanceof $thisClass))
return false;
$tableInfo = $this->getRecordGateway()->getRecordTableInfo($this);
$pks = $tableInfo->getPrimaryKeys();
$properties = count($pks) > 0 ? $pks : $tableInfo->getColumns()->getKeys();
$equals=true;
foreach($properties as $prop)
{
if($strict)
$equals = $equals && $this->getColumnValue($prop) === $record->getColumnValue($prop);
else
$equals = $equals && $this->getColumnValue($prop) == $record->getColumnValue($prop);
if(!$equals)
return false;
}
return $equals;
}
/**
* Returns the instance of a active record finder for a particular class.
* The finder objects are static instances for each ActiveRecord class.
* This means that event handlers bound to these finder instances are class wide.
* Create a new instance of the ActiveRecord class if you wish to bound the
* event handlers to object instance.
* @param string active record class name.
* @return TActiveRecord active record finder instance.
* @throws TActiveRecordException if class name equals 'TActiveRecord'.
*/
public static function finder($className=__CLASS__)
{
if($className==='TActiveRecord')
throw new TActiveRecordException('ar_invalid_finder_class_name');
static $finders = array();
if(!isset($finders[$className]))
{
$f = Prado::createComponent($className);
$f->_readOnly=true;
$finders[$className]=$f;
}
return $finders[$className];
}
/**
* Gets the record manager for this object, the default is to call
* TActiveRecordManager::getInstance().
* @return TActiveRecordManager default active record manager.
*/
public function getRecordManager()
{
return TActiveRecordManager::getInstance();
}
/**
* @return TActiveRecordGateway record table gateway.
*/
public function getRecordGateway()
{
return $this->getRecordManager()->getRecordGateway();
}
/**
* Saves the current record to the database, insert or update is automatically determined.
* @return boolean true if record was saved successfully, false otherwise.
*/
public function save()
{
return $this->commitChanges();
}
/**
* Commit changes to the record, may insert, update or delete depending
* on the record state given in TObjectStateRegistery.
* @return boolean true if changes were made.
*/
protected function commitChanges()
{
$registry = $this->getRecordManager()->getObjectStateRegistry();
$gateway = $this->getRecordGateway();
if(!$this->_readOnly)
$this->_readOnly = $gateway->getRecordTableInfo($this)->getIsView();
if($this->_readOnly)
throw new TActiveRecordException('ar_readonly_exception',get_class($this));
return $registry->commit($this,$gateway);
}
/**
* Deletes the current record from the database. Once deleted, this object
* can not be saved again in the same instance.
* @return boolean true if the record was deleted successfully, false otherwise.
*/
public function delete()
{
$registry = $this->getRecordManager()->getObjectStateRegistry();
$registry->registerRemoved($this);
return $this->commitChanges();
}
/**
* Delete records by primary key. Usage:
*
*
* $finder->deleteByPk($primaryKey); //delete 1 record
* $finder->deleteByPk($key1,$key2,...); //delete multiple records
* $finder->deleteByPk(array($key1,$key2,...)); //delete multiple records
*
*
* For composite primary keys (determined from the table definitions):
*
* $finder->deleteByPk(array($key1,$key2)); //delete 1 record
*
* //delete multiple records
* $finder->deleteByPk(array($key1,$key2), array($key3,$key4),...);
*
* //delete multiple records
* $finder->deleteByPk(array( array($key1,$key2), array($key3,$key4), .. ));
*
*
* @param mixed primary key values.
* @return int number of records deleted.
*/
public function deleteByPk($keys)
{
if(func_num_args() > 1)
$keys = func_get_args();
return $this->getRecordGateway()->deleteRecordsByPk($this,(array)$keys);
}
/**
* Alias for deleteByPk()
*/
public function deleteAllByPks($keys)
{
if(func_num_args() > 1)
$keys = func_get_args();
return $this->deleteByPk($keys);
}
/**
* Delete multiple records using a criteria.
* @param string|TActiveRecordCriteria SQL condition or criteria object.
* @param mixed parameter values.
* @return int number of records deleted.
*/
public function deleteAll($criteria=null, $parameters=array())
{
$args = func_num_args() > 1 ? array_slice(func_get_args(),1) : null;
$criteria = $this->getCriteria($criteria,$parameters, $args);
return $this->getRecordGateway()->deleteRecordsByCriteria($this, $criteria);
}
/**
* Populate the record with data, registers the object as clean.
* @param string new record name
* @param array name value pair record data
* @return TActiveRecord object record, null if data is empty.
*/
protected function populateObject($type, $data)
{
if(empty($data))
return null;
//create and populate the object
$obj = Prado::createComponent($type);
$tableInfo = $this->getRecordGateway()->getRecordTableInfo($obj);
foreach($data as $name=>$value)
$obj->setColumnValue($name,$value);
/*
foreach($tableInfo->getColumns()->getKeys() as $name)
{
if(isset($data[$name]))
$obj->setColumnValue($name,$data[$name]);
}*/
$obj->_readOnly = $tableInfo->getIsView();
$this->getRecordManager()->getObjectStateRegistry()->registerClean($obj);
return $obj;
}
/**
* @param TDbDataReader data reader
* @return array
*/
protected function collectObjects($reader)
{
$result=array();
$class = get_class($this);
foreach($reader as $data)
$result[] = $this->populateObject($class, $data);
return $result;
}
/**
* Find one single record that matches the criteria.
*
* Usage:
*
* $finder->find('username = :name AND password = :pass',
* array(':name'=>$name, ':pass'=>$pass));
* $finder->find('username = ? AND password = ?', array($name, $pass));
* $finder->find('username = ? AND password = ?', $name, $pass);
* //$criteria is of TActiveRecordCriteria
* $finder->find($criteria); //the 2nd parameter for find() is ignored.
*
*
* @param string|TActiveRecordCriteria SQL condition or criteria object.
* @param mixed parameter values.
* @return TActiveRecord matching record object.
*/
public function find($criteria,$parameters=array())
{
$args = func_num_args() > 1 ? array_slice(func_get_args(),1) : null;
$criteria = $this->getCriteria($criteria,$parameters, $args);
$data = $this->getRecordGateway()->findRecordsByCriteria($this,$criteria);
return $this->populateObject(get_class($this), $data);
}
/**
* Same as find() but returns an array of objects.
*
* @param string|TActiveRecordCriteria SQL condition or criteria object.
* @param mixed parameter values.
* @return array matching record objects
*/
public function findAll($criteria=null,$parameters=array())
{
$args = func_num_args() > 1 ? array_slice(func_get_args(),1) : null;
if($criteria!==null)
$criteria = $this->getCriteria($criteria,$parameters, $args);
$result = $this->getRecordGateway()->findRecordsByCriteria($this,$criteria,true);
return $this->collectObjects($result);
}
/**
* Find one record using only the primary key or composite primary keys. Usage:
*
*
* $finder->findByPk($primaryKey);
* $finder->findByPk($key1, $key2, ...);
* $finder->findByPk(array($key1,$key2,...));
*
*
* @param mixed primary keys
* @return TActiveRecord
*/
public function findByPk($keys)
{
if(func_num_args() > 1)
$keys = func_get_args();
$data = $this->getRecordGateway()->findRecordByPK($this,$keys);
return $this->populateObject(get_class($this), $data);
}
/**
* Find multiple records matching a list of primary or composite keys.
*
* For scalar primary keys:
*
* $finder->findAllByPk($key1, $key2, ...);
* $finder->findAllByPk(array($key1, $key2, ...));
*
*
* For composite keys:
*
* $finder->findAllByPk(array($key1, $key2), array($key3, $key4), ...);
* $finder->findAllByPk(array(array($key1, $key2), array($key3, $key4), ...));
*
* @param mixed primary keys
* @return array matching ActiveRecords
*/
public function findAllByPks($keys)
{
if(func_num_args() > 1)
$keys = func_get_args();
$result = $this->getRecordGateway()->findRecordsByPks($this,(array)$keys);
return $this->collectObjects($result);
}
/**
* Find records using full SQL, returns corresponding record object.
* The names of the column retrieved must be defined in your Active Record
* class.
* @param string select SQL
* @param array $parameters
* @return TActiveRecord
*/
public function findBySql($sql,$parameters=array())
{
$args = func_num_args() > 1 ? array_slice(func_get_args(),1) : null;
$criteria = $this->getCriteria($sql,$parameters, $args);
$data = $this->getRecordGateway()->findRecordBySql($this,$criteria);
return $this->populateObject(get_class($this), $data);
}
/**
* Find records using full SQL, returns corresponding record object.
* The names of the column retrieved must be defined in your Active Record
* class.
* @param string select SQL
* @param array $parameters
* @return array matching active records.
*/
public function findAllBySql($sql,$parameters=array())
{
$args = func_num_args() > 1 ? array_slice(func_get_args(),1) : null;
$criteria = $this->getCriteria($sql,$parameters, $args);
$result = $this->getRecordGateway()->findRecordsBySql($this,$criteria);
return $this->collectObjects($result);
}
/**
* Fetches records using the sql clause "(fields) IN (values)", where
* fields is an array of column names and values is an array of values that
* the columns must have.
*
* This method is to be used by the relationship handler.
*
* @param TActiveRecordCriteria additional criteria
* @param array field names to match with "(fields) IN (values)" sql clause.
* @param array matching field values.
* @return array matching active records.
*/
public function findAllByIndex($criteria,$fields,$values)
{
$result = $this->getRecordGateway()->findRecordsByIndex($this,$criteria,$fields,$values);
return $this->collectObjects($result);
}
/**
* Find the number of records.
* @param string|TActiveRecordCriteria SQL condition or criteria object.
* @param mixed parameter values.
* @return int number of records.
*/
public function count($criteria=null,$parameters=array())
{
$args = func_num_args() > 1 ? array_slice(func_get_args(),1) : null;
if($criteria!==null)
$criteria = $this->getCriteria($criteria,$parameters, $args);
return $this->getRecordGateway()->countRecords($this,$criteria);
}
/**
* Returns the active record relationship handler for $RELATION with key
* value equal to the $property value.
* @param string relationship property name.
* @param array method call arguments.
* @return TActiveRecordRelation
*/
protected function getRelationHandler($property,$args)
{
$criteria = $this->getCriteria(count($args)>0 ? $args[0] : null, array_slice($args,1));
$context = new TActiveRecordRelationContext($this, $property, $criteria);
return $context->getRelationHandler();
}
/**
* Dynamic find method using parts of method name as search criteria.
* Method name starting with "findBy" only returns 1 record.
* Method name starting with "findAllBy" returns 0 or more records.
* Method name starting with "deleteBy" deletes records by the trail criteria.
* The condition is taken as part of the method name after "findBy", "findAllBy"
* or "deleteBy".
*
* The following are equivalent:
*
* $finder->findByName($name)
* $finder->find('Name = ?', $name);
*
*
* $finder->findByUsernameAndPassword($name,$pass); // OR may be used
* $finder->findBy_Username_And_Password($name,$pass); // _OR_ may be used
* $finder->find('Username = ? AND Password = ?', $name, $pass);
*
*
* $finder->findAllByAge($age);
* $finder->findAll('Age = ?', $age);
*
*
* $finder->deleteAll('Name = ?', $name);
* $finder->deleteByName($name);
*
* @return mixed single record if method name starts with "findBy", 0 or more records
* if method name starts with "findAllBy"
*/
public function __call($method,$args)
{
$delete =false;
if(substr(strtolower($method),0,4)==='with')
{
$property= $method[4]==='_' ? substr($method,5) : substr($method,4);
return $this->getRelationHandler($property, $args);
}
else if($findOne = substr(strtolower($method),0,6)==='findby')
$condition = $method[6]==='_' ? substr($method,7) : substr($method,6);
else if(substr(strtolower($method),0,9)==='findallby')
$condition = $method[9]==='_' ? substr($method,10) : substr($method,9);
else if($delete = substr(strtolower($method),0,8)==='deleteby')
$condition = $method[8]==='_' ? substr($method,9) : substr($method,8);
else if($delete = substr(strtolower($method),0,11)==='deleteallby')
$condition = $method[11]==='_' ? substr($method,12) : substr($method,11);
else
return null;//throw new TActiveRecordException('ar_invalid_finder_method',$method);
$criteria = $this->getRecordGateway()->getCommand($this)->createCriteriaFromString($method, $condition, $args);
if($delete)
return $this->deleteAll($criteria);
else
return $findOne ? $this->find($criteria) : $this->findAll($criteria);
}
/**
* Create a new TSqlCriteria object from a string $criteria. The $args
* are additional parameters and are used in place of the $parameters
* if $parameters is not an array and $args is an arrary.
* @param string|TSqlCriteria sql criteria
* @param mixed parameters passed by the user.
* @param array additional parameters obtained from function_get_args().
* @return TSqlCriteria criteria object.
*/
protected function getCriteria($criteria, $parameters, $args=array())
{
if(is_string($criteria))
{
$useArgs = !is_array($parameters) && is_array($args);
return new TActiveRecordCriteria($criteria,$useArgs ? $args : $parameters);
}
else if($criteria instanceof TSqlCriteria)
return $criteria;
else
return new TActiveRecordCriteria();
//throw new TActiveRecordException('ar_invalid_criteria');
}
/**
* Raised when a command is prepared and parameter binding is completed.
* The parameter object is TDataGatewayEventParameter of which the
* {@link TDataGatewayEventParameter::getCommand Command} property can be
* inspected to obtain the sql query to be executed.
*
* Note well that the finder objects obtained from ActiveRecord::finder()
* method are static objects. This means that the event handlers are
* bound to a static finder object and not to each distinct active record object.
* @param TDataGatewayEventParameter
*/
public function onCreateCommand($param)
{
$this->raiseEvent('OnCreateCommand', $this, $param);
}
/**
* Raised when a command is executed and the result from the database was returned.
* The parameter object is TDataGatewayResultEventParameter of which the
* {@link TDataGatewayEventParameter::getResult Result} property contains
* the data return from the database. The data returned can be changed
* by setting the {@link TDataGatewayEventParameter::setResult Result} property.
*
* Note well that the finder objects obtained from ActiveRecord::finder()
* method are static objects. This means that the event handlers are
* bound to a static finder object and not to each distinct active record object.
* @param TDataGatewayResultEventParameter
*/
public function onExecuteCommand($param)
{
$this->raiseEvent('OnExecuteCommand', $this, $param);
}
/**
* Retrieves the column value according to column name.
* This method is used internally.
* @param string the column name (as defined in database schema)
* @return mixed the corresponding column value
* @since 3.1.1
*/
public function getColumnValue($columnName)
{
$className=get_class($this);
if(isset(self::$_columnMapping[$className][$columnName]))
$columnName=self::$_columnMapping[$className][$columnName];
return $this->$columnName;
}
/**
* Sets the column value according to column name.
* This method is used internally.
* @param string the column name (as defined in database schema)
* @param mixed the corresponding column value
* @since 3.1.1
*/
public function setColumnValue($columnName,$value)
{
$className=get_class($this);
if(isset(self::$_columnMapping[$className][$columnName]))
$columnName=self::$_columnMapping[$className][$columnName];
$this->$columnName=$value;
}
}
?>