|
|
@ -15,7 +15,7 @@ use yii\base\VectorIterator; |
|
|
|
use yii\db\dao\Expression; |
|
|
|
use yii\db\dao\Expression; |
|
|
|
use yii\db\Exception; |
|
|
|
use yii\db\Exception; |
|
|
|
|
|
|
|
|
|
|
|
class ActiveQuery extends BaseQuery implements \IteratorAggregate, \ArrayAccess, \Countable |
|
|
|
class ActiveQuery extends BaseQuery |
|
|
|
{ |
|
|
|
{ |
|
|
|
/** |
|
|
|
/** |
|
|
|
* @var string the name of the ActiveRecord class. |
|
|
|
* @var string the name of the ActiveRecord class. |
|
|
@ -24,7 +24,7 @@ class ActiveQuery extends BaseQuery implements \IteratorAggregate, \ArrayAccess, |
|
|
|
/** |
|
|
|
/** |
|
|
|
* @var array list of relations that this query should be performed with |
|
|
|
* @var array list of relations that this query should be performed with |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public $with; |
|
|
|
public $with = array(); |
|
|
|
/** |
|
|
|
/** |
|
|
|
* @var string the name of the column that the result should be indexed by. |
|
|
|
* @var string the name of the column that the result should be indexed by. |
|
|
|
* This is only useful when the query result is returned as an array. |
|
|
|
* This is only useful when the query result is returned as an array. |
|
|
@ -38,28 +38,12 @@ class ActiveQuery extends BaseQuery implements \IteratorAggregate, \ArrayAccess, |
|
|
|
/** |
|
|
|
/** |
|
|
|
* @var array list of scopes that should be applied to this query |
|
|
|
* @var array list of scopes that should be applied to this query |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public $scopes; |
|
|
|
public $scopes = array(); |
|
|
|
/** |
|
|
|
/** |
|
|
|
* @var string the SQL statement to be executed for retrieving AR records. |
|
|
|
* @var string the SQL statement to be executed for retrieving AR records. |
|
|
|
* This is set by [[ActiveRecord::findBySql()]]. |
|
|
|
* This is set by [[ActiveRecord::findBySql()]]. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public $sql; |
|
|
|
public $sql; |
|
|
|
/** |
|
|
|
|
|
|
|
* @var array list of query results. Depending on [[asArray]], this can be either |
|
|
|
|
|
|
|
* an array of AR objects (when [[asArray]] is false) or an array of array |
|
|
|
|
|
|
|
* (when [[asArray]] is true). |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public $records; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* @param string $modelClass the name of the ActiveRecord class. |
|
|
|
|
|
|
|
* @param array $config name-value pairs that will be used to initialize the object properties |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function __construct($modelClass, $config = array()) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
$this->modelClass = $modelClass; |
|
|
|
|
|
|
|
parent::__construct($config); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function __call($name, $params) |
|
|
|
public function __call($name, $params) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -77,7 +61,7 @@ class ActiveQuery extends BaseQuery implements \IteratorAggregate, \ArrayAccess, |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function all() |
|
|
|
public function all() |
|
|
|
{ |
|
|
|
{ |
|
|
|
return $this->findRecords(); |
|
|
|
return $this->find(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -88,8 +72,7 @@ class ActiveQuery extends BaseQuery implements \IteratorAggregate, \ArrayAccess, |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function one() |
|
|
|
public function one() |
|
|
|
{ |
|
|
|
{ |
|
|
|
$this->limit = 1; |
|
|
|
$records = $this->find(); |
|
|
|
$records = $this->findRecords(); |
|
|
|
|
|
|
|
return isset($records[0]) ? $records[0] : null; |
|
|
|
return isset($records[0]) ? $records[0] : null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -124,13 +107,32 @@ class ActiveQuery extends BaseQuery implements \IteratorAggregate, \ArrayAccess, |
|
|
|
return $class::getDbConnection(); |
|
|
|
return $class::getDbConnection(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
public function asArray($value = true) |
|
|
|
* Returns the number of items in the vector. |
|
|
|
{ |
|
|
|
* @return integer the number of items in the vector |
|
|
|
$this->asArray = $value; |
|
|
|
*/ |
|
|
|
return $this; |
|
|
|
public function getCount() |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function with() |
|
|
|
{ |
|
|
|
{ |
|
|
|
return $this->count(); |
|
|
|
$this->with = func_get_args(); |
|
|
|
|
|
|
|
if (isset($this->with[0]) && is_array($this->with[0])) { |
|
|
|
|
|
|
|
// the parameter is given as an array |
|
|
|
|
|
|
|
$this->with = $this->with[0]; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return $this; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function index($column) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
$this->index = $column; |
|
|
|
|
|
|
|
return $this; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function scopes($names) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
$this->scopes = $names; |
|
|
|
|
|
|
|
return $this; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -150,139 +152,46 @@ class ActiveQuery extends BaseQuery implements \IteratorAggregate, \ArrayAccess, |
|
|
|
return $this; |
|
|
|
return $this; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
protected function find() |
|
|
|
* Returns an iterator for traversing the items in the vector. |
|
|
|
|
|
|
|
* This method is required by the SPL interface `IteratorAggregate`. |
|
|
|
|
|
|
|
* It will be implicitly called when you use `foreach` to traverse the vector. |
|
|
|
|
|
|
|
* @return VectorIterator an iterator for traversing the items in the vector. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function getIterator() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if ($this->records === null) { |
|
|
|
|
|
|
|
$this->records = $this->findRecords(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return new VectorIterator($this->records); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Returns the number of items in the vector. |
|
|
|
|
|
|
|
* This method is required by the SPL `Countable` interface. |
|
|
|
|
|
|
|
* It will be implicitly called when you use `count($vector)`. |
|
|
|
|
|
|
|
* @return integer number of items in the vector. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function count() |
|
|
|
|
|
|
|
{ |
|
|
|
{ |
|
|
|
if ($this->records === null) { |
|
|
|
$modelClass = $this->modelClass; |
|
|
|
$this->records = $this->findRecords(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return count($this->records); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Returns a value indicating whether there is an item at the specified offset. |
|
|
|
|
|
|
|
* This method is required by the SPL interface `ArrayAccess`. |
|
|
|
|
|
|
|
* It is implicitly called when you use something like `isset($vector[$offset])`. |
|
|
|
|
|
|
|
* @param integer $offset the offset to be checked |
|
|
|
|
|
|
|
* @return boolean whether there is an item at the specified offset. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function offsetExists($offset) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if ($this->records === null) { |
|
|
|
|
|
|
|
$this->records = $this->findRecords(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return isset($this->records[$offset]); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Returns the item at the specified offset. |
|
|
|
|
|
|
|
* This method is required by the SPL interface `ArrayAccess`. |
|
|
|
|
|
|
|
* It is implicitly called when you use something like `$value = $vector[$offset];`. |
|
|
|
|
|
|
|
* This is equivalent to [[itemAt]]. |
|
|
|
|
|
|
|
* @param integer $offset the offset to retrieve item. |
|
|
|
|
|
|
|
* @return ActiveRecord the item at the offset |
|
|
|
|
|
|
|
* @throws Exception if the offset is out of range |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function offsetGet($offset) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if ($this->records === null) { |
|
|
|
|
|
|
|
$this->records = $this->findRecords(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return isset($this->records[$offset]) ? $this->records[$offset] : null; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Sets the item at the specified offset. |
|
|
|
|
|
|
|
* This method is required by the SPL interface `ArrayAccess`. |
|
|
|
|
|
|
|
* It is implicitly called when you use something like `$vector[$offset] = $item;`. |
|
|
|
|
|
|
|
* If the offset is null or equal to the number of the existing items, |
|
|
|
|
|
|
|
* the new item will be appended to the vector. |
|
|
|
|
|
|
|
* Otherwise, the existing item at the offset will be replaced with the new item. |
|
|
|
|
|
|
|
* @param integer $offset the offset to set item |
|
|
|
|
|
|
|
* @param ActiveRecord $item the item value |
|
|
|
|
|
|
|
* @throws Exception if the offset is out of range, or the vector is read only. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function offsetSet($offset, $item) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if ($this->records === null) { |
|
|
|
|
|
|
|
$this->records = $this->findRecords(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
$this->records[$offset] = $item; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Unsets the item at the specified offset. |
|
|
|
* @var ActiveRecord $model |
|
|
|
* This method is required by the SPL interface `ArrayAccess`. |
|
|
|
|
|
|
|
* It is implicitly called when you use something like `unset($vector[$offset])`. |
|
|
|
|
|
|
|
* This is equivalent to [[removeAt]]. |
|
|
|
|
|
|
|
* @param integer $offset the offset to unset item |
|
|
|
|
|
|
|
* @throws Exception if the offset is out of range, or the vector is read only. |
|
|
|
|
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function offsetUnset($offset) |
|
|
|
$model = $modelClass::model(); |
|
|
|
{ |
|
|
|
|
|
|
|
if ($this->records === null) { |
|
|
|
|
|
|
|
$this->records = $this->findRecords(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
unset($this->records[$offset]); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function find() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* find the primary ARs |
|
|
|
* @var \yii\db\dao\Connection $db |
|
|
|
* for each child relation |
|
|
|
|
|
|
|
* find the records filtered by the PK constraints |
|
|
|
|
|
|
|
* populate primary ARs with the related records |
|
|
|
|
|
|
|
* recursively call this metod again |
|
|
|
|
|
|
|
*/ |
|
|
|
*/ |
|
|
|
} |
|
|
|
$db = $model->getDbConnection(); |
|
|
|
|
|
|
|
|
|
|
|
protected function findByParent($parent) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected function findRecords() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (!empty($this->with)) { |
|
|
|
|
|
|
|
return $this->findWithRelations(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ($this->sql === null) { |
|
|
|
if ($this->sql === null) { |
|
|
|
if ($this->from === null) { |
|
|
|
if ($this->from === null) { |
|
|
|
$modelClass = $this->modelClass; |
|
|
|
$tableName = $model->getTableSchema()->name; |
|
|
|
$tableName = $modelClass::model()->getTableSchema()->name; |
|
|
|
|
|
|
|
$this->from = array($tableName); |
|
|
|
$this->from = array($tableName); |
|
|
|
} |
|
|
|
} |
|
|
|
$this->sql = $this->connection->getQueryBuilder()->build($this); |
|
|
|
foreach ($this->scopes as $name => $config) { |
|
|
|
|
|
|
|
if (is_integer($name)) { |
|
|
|
|
|
|
|
$model->$config($this); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
array_unshift($config, $this); |
|
|
|
|
|
|
|
call_user_func_array(array($model, $name), $config); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
$command = $this->connection->createCommand($this->sql, $this->params); |
|
|
|
$this->sql = $db->getQueryBuilder()->build($this); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
$command = $db->createCommand($this->sql, $this->params); |
|
|
|
$rows = $command->queryAll(); |
|
|
|
$rows = $command->queryAll(); |
|
|
|
return $this->createRecords($rows); |
|
|
|
$records = $this->createRecords($rows); |
|
|
|
|
|
|
|
if ($records !== array()) { |
|
|
|
|
|
|
|
foreach ($this->with as $name => $config) { |
|
|
|
|
|
|
|
$relation = $model->$name(); |
|
|
|
|
|
|
|
foreach ($config as $p => $v) { |
|
|
|
|
|
|
|
$relation->$p = $v; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
$relation->findWith($records); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
protected function findWithRelations() |
|
|
|
return $records; |
|
|
|
{ |
|
|
|
|
|
|
|
$records = $this->findRecords(); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
protected function createRecords($rows) |
|
|
|
protected function createRecords($rows) |
|
|
@ -311,271 +220,3 @@ class ActiveQuery extends BaseQuery implements \IteratorAggregate, \ArrayAccess, |
|
|
|
return $records; |
|
|
|
return $records; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 1. eager loading, base limited and has has_many relations |
|
|
|
|
|
|
|
* 2. |
|
|
|
|
|
|
|
* ActiveFinder.php is ... |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @property integer $count |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @author Qiang Xue <qiang.xue@gmail.com> |
|
|
|
|
|
|
|
* @since 2.0 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
class ActiveQuery2 extends BaseActiveQuery implements \IteratorAggregate, \ArrayAccess, \Countable |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* @var string the SQL statement to be executed to retrieve primary records. |
|
|
|
|
|
|
|
* This is set by [[ActiveRecord::findBySql()]]. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public $sql; |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* @var array list of query results |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public $records; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* @param string $modelClass the name of the ActiveRecord class. |
|
|
|
|
|
|
|
* @param array $config name-value pairs that will be used to initialize the object properties |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function __construct($modelClass, $config = array()) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
$this->modelClass = $modelClass; |
|
|
|
|
|
|
|
parent::__construct($config); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function __call($name, $params) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (method_exists($this->modelClass, $name)) { |
|
|
|
|
|
|
|
$this->scopes[$name] = $params; |
|
|
|
|
|
|
|
return $this; |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
return parent::__call($name, $params); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Executes query and returns all results as an array. |
|
|
|
|
|
|
|
* @return array the query results. If the query results in nothing, an empty array will be returned. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function all() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if ($this->records === null) { |
|
|
|
|
|
|
|
$this->records = $this->findRecords(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return $this->records; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Executes query and returns a single row of result. |
|
|
|
|
|
|
|
* @return null|array|ActiveRecord the single row of query result. Depending on the setting of [[asArray]], |
|
|
|
|
|
|
|
* the query result may be either an array or an ActiveRecord object. Null will be returned |
|
|
|
|
|
|
|
* if the query results in nothing. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function one() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if ($this->records === null) { |
|
|
|
|
|
|
|
$this->limit = 1; |
|
|
|
|
|
|
|
$this->records = $this->findRecords(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return isset($this->records[0]) ? $this->records[0] : null; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Returns a scalar value for this query. |
|
|
|
|
|
|
|
* The value returned will be the first column in the first row of the query results. |
|
|
|
|
|
|
|
* @return string|boolean the value of the first column in the first row of the query result. |
|
|
|
|
|
|
|
* False is returned if there is no value. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function value() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return $this->createFinder()->find($this, true); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Executes query and returns if matching row exists in the table. |
|
|
|
|
|
|
|
* @return bool if row exists in the table. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function exists() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return $this->select(array(new Expression('1')))->value() !== false; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Returns the database connection used by this query. |
|
|
|
|
|
|
|
* This method returns the connection used by the [[modelClass]]. |
|
|
|
|
|
|
|
* @return \yii\db\dao\Connection the database connection used by this query |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function getDbConnection() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
$class = $this->modelClass; |
|
|
|
|
|
|
|
return $class::getDbConnection(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Returns the number of items in the vector. |
|
|
|
|
|
|
|
* @return integer the number of items in the vector |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function getCount() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return $this->count(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Sets the parameters about query caching. |
|
|
|
|
|
|
|
* This is a shortcut method to {@link CDbConnection::cache()}. |
|
|
|
|
|
|
|
* It changes the query caching parameter of the {@link dbConnection} instance. |
|
|
|
|
|
|
|
* @param integer $duration the number of seconds that query results may remain valid in cache. |
|
|
|
|
|
|
|
* If this is 0, the caching will be disabled. |
|
|
|
|
|
|
|
* @param \yii\caching\Dependency $dependency the dependency that will be used when saving the query results into cache. |
|
|
|
|
|
|
|
* @param integer $queryCount number of SQL queries that need to be cached after calling this method. Defaults to 1, |
|
|
|
|
|
|
|
* meaning that the next SQL query will be cached. |
|
|
|
|
|
|
|
* @return ActiveRecord the active record instance itself. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function cache($duration, $dependency = null, $queryCount = 1) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
$this->getDbConnection()->cache($duration, $dependency, $queryCount); |
|
|
|
|
|
|
|
return $this; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Returns an iterator for traversing the items in the vector. |
|
|
|
|
|
|
|
* This method is required by the SPL interface `IteratorAggregate`. |
|
|
|
|
|
|
|
* It will be implicitly called when you use `foreach` to traverse the vector. |
|
|
|
|
|
|
|
* @return VectorIterator an iterator for traversing the items in the vector. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function getIterator() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if ($this->records === null) { |
|
|
|
|
|
|
|
$this->records = $this->findRecords(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return new VectorIterator($this->records); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Returns the number of items in the vector. |
|
|
|
|
|
|
|
* This method is required by the SPL `Countable` interface. |
|
|
|
|
|
|
|
* It will be implicitly called when you use `count($vector)`. |
|
|
|
|
|
|
|
* @return integer number of items in the vector. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function count() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if ($this->records === null) { |
|
|
|
|
|
|
|
$this->records = $this->findRecords(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return count($this->records); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Returns a value indicating whether there is an item at the specified offset. |
|
|
|
|
|
|
|
* This method is required by the SPL interface `ArrayAccess`. |
|
|
|
|
|
|
|
* It is implicitly called when you use something like `isset($vector[$offset])`. |
|
|
|
|
|
|
|
* @param integer $offset the offset to be checked |
|
|
|
|
|
|
|
* @return boolean whether there is an item at the specified offset. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function offsetExists($offset) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if ($this->records === null) { |
|
|
|
|
|
|
|
$this->records = $this->findRecords(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return isset($this->records[$offset]); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Returns the item at the specified offset. |
|
|
|
|
|
|
|
* This method is required by the SPL interface `ArrayAccess`. |
|
|
|
|
|
|
|
* It is implicitly called when you use something like `$value = $vector[$offset];`. |
|
|
|
|
|
|
|
* This is equivalent to [[itemAt]]. |
|
|
|
|
|
|
|
* @param integer $offset the offset to retrieve item. |
|
|
|
|
|
|
|
* @return ActiveRecord the item at the offset |
|
|
|
|
|
|
|
* @throws Exception if the offset is out of range |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function offsetGet($offset) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if ($this->records === null) { |
|
|
|
|
|
|
|
$this->records = $this->findRecords(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return isset($this->records[$offset]) ? $this->records[$offset] : null; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Sets the item at the specified offset. |
|
|
|
|
|
|
|
* This method is required by the SPL interface `ArrayAccess`. |
|
|
|
|
|
|
|
* It is implicitly called when you use something like `$vector[$offset] = $item;`. |
|
|
|
|
|
|
|
* If the offset is null or equal to the number of the existing items, |
|
|
|
|
|
|
|
* the new item will be appended to the vector. |
|
|
|
|
|
|
|
* Otherwise, the existing item at the offset will be replaced with the new item. |
|
|
|
|
|
|
|
* @param integer $offset the offset to set item |
|
|
|
|
|
|
|
* @param ActiveRecord $item the item value |
|
|
|
|
|
|
|
* @throws Exception if the offset is out of range, or the vector is read only. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function offsetSet($offset, $item) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if ($this->records === null) { |
|
|
|
|
|
|
|
$this->records = $this->findRecords(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
$this->records[$offset] = $item; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Unsets the item at the specified offset. |
|
|
|
|
|
|
|
* This method is required by the SPL interface `ArrayAccess`. |
|
|
|
|
|
|
|
* It is implicitly called when you use something like `unset($vector[$offset])`. |
|
|
|
|
|
|
|
* This is equivalent to [[removeAt]]. |
|
|
|
|
|
|
|
* @param integer $offset the offset to unset item |
|
|
|
|
|
|
|
* @throws Exception if the offset is out of range, or the vector is read only. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function offsetUnset($offset) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if ($this->records === null) { |
|
|
|
|
|
|
|
$this->records = $this->findRecords(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
unset($this->records[$offset]); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected function findRecords() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return $this->createFinder()->find($this); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected function createFinder() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return new ActiveFinder($this->getDbConnection()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function asArray($value = true) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
$this->asArray = $value; |
|
|
|
|
|
|
|
return $this; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function with() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
$this->with = func_get_args(); |
|
|
|
|
|
|
|
if (isset($this->with[0]) && is_array($this->with[0])) { |
|
|
|
|
|
|
|
// the parameter is given as an array |
|
|
|
|
|
|
|
$this->with = $this->with[0]; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return $this; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function index($column) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
$this->index = $column; |
|
|
|
|
|
|
|
return $this; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function tableAlias($value) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
$this->tableAlias = $value; |
|
|
|
|
|
|
|
return $this; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function scopes($names) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
$this->scopes = $names; |
|
|
|
|
|
|
|
return $this; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|