ActiveRecord.php 9.24 KB
Newer Older
Carsten Brandt committed
1 2 3
<?php
/**
 * @link http://www.yiiframework.com/
4
 * @copyright Copyright (c) 2008 Yii Software LLC
Carsten Brandt committed
5 6 7
 * @license http://www.yiiframework.com/license/
 */

8
namespace yii\redis;
Carsten Brandt committed
9

10
use yii\base\InvalidConfigException;
11
use yii\base\NotSupportedException;
12
use yii\helpers\StringHelper;
13

Carsten Brandt committed
14 15 16
/**
 * ActiveRecord is the base class for classes representing relational data in terms of objects.
 *
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
 * This class implements the ActiveRecord pattern for the [redis](http://redis.io/) key-value store.
 *
 * For defining a record a subclass should at least implement the [[attributes()]] method to define
 * attributes. A primary key can be defined via [[primaryKey()]] which defaults to `id` if not specified.
 *
 * The following is an example model called `Customer`:
 *
 * ```php
 * class Customer extends \yii\redis\ActiveRecord
 * {
 *     public function attributes()
 *     {
 *         return ['id', 'name', 'address', 'registration_date'];
 *     }
 * }
 * ```
 *
Carsten Brandt committed
34 35 36
 * @author Carsten Brandt <mail@cebe.cc>
 * @since 2.0
 */
37
class ActiveRecord extends \yii\db\ActiveRecord
Carsten Brandt committed
38 39 40
{
	/**
	 * Returns the database connection used by this AR class.
41
	 * By default, the "redis" application component is used as the database connection.
Carsten Brandt committed
42 43 44 45 46
	 * You may override this method if you want to use a different database connection.
	 * @return Connection the database connection used by this AR class.
	 */
	public static function getDb()
	{
47
		return \Yii::$app->getComponent('redis');
Carsten Brandt committed
48 49
	}

50
	/**
51
	 * {@inheritdoc}
52 53 54 55 56 57 58
	 */
	public static function createQuery()
	{
		return new ActiveQuery(['modelClass' => get_called_class()]);
	}

	/**
59
	 * {@inheritdoc}
60
	 */
61
	public static function createActiveRelation($config = [])
62 63 64 65 66
	{
		return new ActiveRelation($config);
	}

	/**
67 68 69 70 71 72
	 * Returns the primary key name(s) for this AR class.
	 * This method should be overridden by child classes to define the primary key.
	 *
	 * Note that an array should be returned even when it is a single primary key.
	 *
	 * @return string[] the primary keys of this record.
73
	 */
74
	public static function primaryKey()
75
	{
76
		return ['id'];
77 78 79
	}

	/**
80 81 82
	 * Returns the list of all attribute names of the model.
	 * This method must be overridden by child classes to define available attributes.
	 * @return array list of attribute names.
83
	 */
84
	public static function attributes()
85
	{
86
		throw new InvalidConfigException('The attributes() method of redis ActiveRecord has to be implemented by child classes.');
87 88 89
	}

	/**
90
	 * {@inheritdoc}
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
	 */
	public function insert($runValidation = true, $attributes = null)
	{
		if ($runValidation && !$this->validate($attributes)) {
			return false;
		}
		if ($this->beforeSave(true)) {
			$db = static::getDb();
			$values = $this->getDirtyAttributes($attributes);
			$pk = [];
//			if ($values === []) {
			foreach ($this->primaryKey() as $key) {
				$pk[$key] = $values[$key] = $this->getAttribute($key);
				if ($pk[$key] === null) {
					$pk[$key] = $values[$key] = $db->executeCommand('INCR', [static::tableName() . ':s:' . $key]);
					$this->setAttribute($key, $values[$key]);
				}
			}
//			}
			// save pk in a findall pool
			$db->executeCommand('RPUSH', [static::tableName(), static::buildKey($pk)]);

			$key = static::tableName() . ':a:' . static::buildKey($pk);
			// save attributes
			$args = [$key];
			foreach($values as $attribute => $value) {
				$args[] = $attribute;
				$args[] = $value;
			}
			$db->executeCommand('HMSET', $args);

			$this->setOldAttributes($values);
			$this->afterSave(true);
			return true;
		}
		return false;
	}

129 130 131 132 133
	/**
	 * Updates the whole table using the provided attribute values and conditions.
	 * For example, to change the status to be 1 for all customers whose status is 2:
	 *
	 * ~~~
134
	 * Customer::updateAll(['status' => 1], ['id' => 2]);
135 136 137
	 * ~~~
	 *
	 * @param array $attributes attribute values (name-value pairs) to be saved into the table
138 139 140
	 * @param array $condition the conditions that will be put in the WHERE part of the UPDATE SQL.
	 * Please refer to [[ActiveQuery::where()]] on how to specify this parameter.
	 * @param array $params this parameter is ignored in redis implementation.
141 142
	 * @return integer the number of rows updated
	 */
143
	public static function updateAll($attributes, $condition = null, $params = [])
144 145 146 147
	{
		if (empty($attributes)) {
			return 0;
		}
Carsten Brandt committed
148
		$db = static::getDb();
149
		$n=0;
150 151 152 153
		foreach(static::fetchPks($condition) as $pk) {
			$newPk = $pk;
			$pk = static::buildKey($pk);
			$key = static::tableName() . ':a:' . $pk;
154
			// save attributes
155
			$args = [$key];
156
			foreach($attributes as $attribute => $value) {
157 158 159
				if (isset($newPk[$attribute])) {
					$newPk[$attribute] = $value;
				}
160 161 162
				$args[] = $attribute;
				$args[] = $value;
			}
163 164
			$newPk = static::buildKey($newPk);
			$newKey = static::tableName() . ':a:' . $newPk;
165
			// rename index if pk changed
166
			if ($newPk != $pk) {
167 168
				$db->executeCommand('MULTI');
				$db->executeCommand('HMSET', $args);
169 170 171
				$db->executeCommand('LINSERT', [static::tableName(), 'AFTER', $pk, $newPk]);
				$db->executeCommand('LREM', [static::tableName(), 0, $pk]);
				$db->executeCommand('RENAME', [$key, $newKey]);
172 173 174
				$db->executeCommand('EXEC');
			} else {
				$db->executeCommand('HMSET', $args);
175
			}
176 177 178 179 180 181 182 183 184 185
			$n++;
		}
		return $n;
	}

	/**
	 * Updates the whole table using the provided counter changes and conditions.
	 * For example, to increment all customers' age by 1,
	 *
	 * ~~~
186
	 * Customer::updateAllCounters(['age' => 1]);
187 188 189 190
	 * ~~~
	 *
	 * @param array $counters the counters to be updated (attribute name => increment value).
	 * Use negative values if you want to decrement the counters.
191 192 193
	 * @param array $condition the conditions that will be put in the WHERE part of the UPDATE SQL.
	 * Please refer to [[ActiveQuery::where()]] on how to specify this parameter.
	 * @param array $params this parameter is ignored in redis implementation.
194 195
	 * @return integer the number of rows updated
	 */
196
	public static function updateAllCounters($counters, $condition = null, $params = [])
197
	{
Carsten Brandt committed
198 199 200
		if (empty($counters)) {
			return 0;
		}
201 202
		$db = static::getDb();
		$n=0;
203 204
		foreach(static::fetchPks($condition) as $pk) {
			$key = static::tableName() . ':a:' . static::buildKey($pk);
205
			foreach($counters as $attribute => $value) {
206
				$db->executeCommand('HINCRBY', [$key, $attribute, $value]);
207 208 209 210 211 212 213 214 215 216 217 218 219
			}
			$n++;
		}
		return $n;
	}

	/**
	 * Deletes rows in the table using the provided conditions.
	 * WARNING: If you do not specify any condition, this method will delete ALL rows in the table.
	 *
	 * For example, to delete all customers whose status is 3:
	 *
	 * ~~~
220
	 * Customer::deleteAll(['status' => 3]);
221 222
	 * ~~~
	 *
223 224 225
	 * @param array $condition the conditions that will be put in the WHERE part of the DELETE SQL.
	 * Please refer to [[ActiveQuery::where()]] on how to specify this parameter.
	 * @param array $params this parameter is ignored in redis implementation.
226 227
	 * @return integer the number of rows deleted
	 */
228
	public static function deleteAll($condition = null, $params = [])
229 230
	{
		$db = static::getDb();
231
		$attributeKeys = [];
232 233 234
		$pks = static::fetchPks($condition);
		$db->executeCommand('MULTI');
		foreach($pks as $pk) {
235
			$pk = static::buildKey($pk);
236
			$db->executeCommand('LREM', [static::tableName(), 0, $pk]);
Carsten Brandt committed
237
			$attributeKeys[] = static::tableName() . ':a:' . $pk;
238
		}
239
		if (empty($attributeKeys)) {
240
			$db->executeCommand('EXEC');
241 242
			return 0;
		}
243 244 245
		$db->executeCommand('DEL', $attributeKeys);
		$result = $db->executeCommand('EXEC');
		return end($result);
246 247
	}

248 249 250 251 252 253 254
	private static function fetchPks($condition)
	{
		$query = static::createQuery();
		$query->where($condition);
		$records = $query->asArray()->all(); // TODO limit fetched columns to pk
		$primaryKey = static::primaryKey();

255
		$pks = [];
256
		foreach($records as $record) {
257
			$pk = [];
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
			foreach($primaryKey as $key) {
				$pk[$key] = $record[$key];
			}
			$pks[] = $pk;
		}
		return $pks;
	}

	/**
	 * Builds a normalized key from a given primary key value.
	 *
	 * @param mixed $key the key to be normalized
	 * @return string the generated key
	 */
	public static function buildKey($key)
	{
		if (is_numeric($key)) {
			return $key;
		} elseif (is_string($key)) {
			return ctype_alnum($key) && StringHelper::strlen($key) <= 32 ? $key : md5($key);
		} elseif (is_array($key)) {
			if (count($key) == 1) {
				return self::buildKey(reset($key));
			}
282
			ksort($key); // ensure order is always the same
283 284 285 286 287 288 289 290 291 292 293 294 295
			$isNumeric = true;
			foreach($key as $value) {
				if (!is_numeric($value)) {
					$isNumeric = false;
				}
			}
			if ($isNumeric) {
				return implode('-', $key);
			}
		}
		return md5(json_encode($key));
	}

296
	/**
297
	 * {@inheritdoc}
298 299 300
	 */
	public static function getTableSchema()
	{
301
		throw new NotSupportedException('getTableSchema() is not supported by redis ActiveRecord.');
302 303 304
	}

	/**
305
	 * {@inheritdoc}
306 307 308
	 */
	public static function findBySql($sql, $params = [])
	{
309
		throw new NotSupportedException('findBySql() is not supported by redis ActiveRecord.');
310 311
	}

312
	/**
313 314 315 316
	 * Returns a value indicating whether the specified operation is transactional in the current [[scenario]].
	 * This method will always return false as transactional operations are not supported by redis.
	 * @param integer $operation the operation to check. Possible values are [[OP_INSERT]], [[OP_UPDATE]] and [[OP_DELETE]].
	 * @return boolean whether the specified operation is transactional in the current [[scenario]].
317
	 */
318
	public function isTransactional($operation)
319
	{
320
		return false;
321
	}
Carsten Brandt committed
322
}