3 * Abstract base class for representing objects that are stored in some DB table.
4 * This is basically an ORM-like wrapper around rows in database tables that
5 * aims to be both simple and very flexible. It is centered around an associative
6 * array of fields and various methods to do common interaction with the database.
8 * Documentation inline and at https://www.mediawiki.org/wiki/Manual:ORMTable
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
30 * @licence GNU GPL v2 or later
31 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
34 abstract class ORMRow
implements IORMRow
{
37 * The fields of the object.
38 * field name (w/o prefix) => value
43 protected $fields = array( 'id' => null );
52 * If the object should update summaries of linked items when changed.
53 * For example, update the course_count field in universities when a course in courses is deleted.
54 * Settings this to false can prevent needless updating work in situations
55 * such as deleting a university, which will then delete all it's courses.
60 protected $updateSummaries = true;
63 * Indicates if the object is in summary mode.
64 * This mode indicates that only summary fields got updated,
65 * which allows for optimizations.
70 protected $inSummaryMode = false;
77 * @param IORMTable $table
78 * @param array|null $fields
79 * @param boolean $loadDefaults
81 public function __construct( IORMTable
$table, $fields = null, $loadDefaults = false ) {
82 $this->table
= $table;
84 if ( !is_array( $fields ) ) {
88 if ( $loadDefaults ) {
89 $fields = array_merge( $this->table
->getDefaults(), $fields );
92 $this->setFields( $fields );
96 * Load the specified fields from the database.
100 * @param array|null $fields
101 * @param boolean $override
102 * @param boolean $skipLoaded
104 * @return bool Success indicator
106 public function loadFields( $fields = null, $override = true, $skipLoaded = false ) {
107 if ( is_null( $this->getId() ) ) {
111 if ( is_null( $fields ) ) {
112 $fields = array_keys( $this->table
->getFields() );
116 $fields = array_diff( $fields, array_keys( $this->fields
) );
119 if ( !empty( $fields ) ) {
120 $result = $this->table
->rawSelectRow(
121 $this->table
->getPrefixedFields( $fields ),
122 array( $this->table
->getPrefixedField( 'id' ) => $this->getId() ),
123 array( 'LIMIT' => 1 )
126 if ( $result !== false ) {
127 $this->setFields( $this->table
->getFieldsFromDBResult( $result ), $override );
137 * Gets the value of a field.
141 * @param string $name
142 * @param mixed $default
144 * @throws MWException
147 public function getField( $name, $default = null ) {
148 if ( $this->hasField( $name ) ) {
149 return $this->fields
[$name];
150 } elseif ( !is_null( $default ) ) {
153 throw new MWException( 'Attempted to get not-set field ' . $name );
158 * Gets the value of a field but first loads it if not done so already.
166 public function loadAndGetField( $name ) {
167 if ( !$this->hasField( $name ) ) {
168 $this->loadFields( array( $name ) );
171 return $this->getField( $name );
179 * @param string $name
181 public function removeField( $name ) {
182 unset( $this->fields
[$name] );
186 * Returns the objects database id.
190 * @return integer|null
192 public function getId() {
193 return $this->getField( 'id' );
197 * Sets the objects database id.
201 * @param integer|null $id
203 public function setId( $id ) {
204 $this->setField( 'id', $id );
208 * Gets if a certain field is set.
212 * @param string $name
216 public function hasField( $name ) {
217 return array_key_exists( $name, $this->fields
);
221 * Gets if the id field is set.
227 public function hasIdField() {
228 return $this->hasField( 'id' )
229 && !is_null( $this->getField( 'id' ) );
233 * Sets multiple fields.
237 * @param array $fields The fields to set
238 * @param boolean $override Override already set fields with the provided values?
240 public function setFields( array $fields, $override = true ) {
241 foreach ( $fields as $name => $value ) {
242 if ( $override ||
!$this->hasField( $name ) ) {
243 $this->setField( $name, $value );
249 * Gets the fields => values to write to the table.
255 protected function getWriteValues() {
258 foreach ( $this->table
->getFields() as $name => $type ) {
259 if ( array_key_exists( $name, $this->fields
) ) {
260 $value = $this->fields
[$name];
264 $value = (array)$value;
266 $value = serialize( $value );
269 $values[$this->table
->getPrefixedField( $name )] = $value;
277 * Serializes the object to an associative array which
278 * can then easily be converted into JSON or similar.
282 * @param null|array $fields
283 * @param boolean $incNullId
287 public function toArray( $fields = null, $incNullId = false ) {
289 $setFields = array();
291 if ( !is_array( $fields ) ) {
292 $setFields = $this->getSetFieldNames();
294 foreach ( $fields as $field ) {
295 if ( $this->hasField( $field ) ) {
296 $setFields[] = $field;
301 foreach ( $setFields as $field ) {
302 if ( $incNullId ||
$field != 'id' ||
$this->hasIdField() ) {
303 $data[$field] = $this->getField( $field );
311 * Load the default values, via getDefaults.
315 * @param boolean $override
317 public function loadDefaults( $override = true ) {
318 $this->setFields( $this->table
->getDefaults(), $override );
322 * Writes the answer to the database, either updating it
323 * when it already exists, or inserting it when it doesn't.
327 * @param string|null $functionName
329 * @return boolean Success indicator
331 public function save( $functionName = null ) {
332 if ( $this->hasIdField() ) {
333 return $this->saveExisting( $functionName );
335 return $this->insert( $functionName );
340 * Updates the object in the database.
344 * @param string|null $functionName
346 * @return boolean Success indicator
348 protected function saveExisting( $functionName = null ) {
349 $dbw = wfGetDB( DB_MASTER
);
351 $success = $dbw->update(
352 $this->table
->getName(),
353 $this->getWriteValues(),
354 $this->table
->getPrefixedValues( $this->getUpdateConditions() ),
355 is_null( $functionName ) ? __METHOD__
: $functionName
358 // DatabaseBase::update does not always return true for success as documented...
359 return $success !== false;
363 * Returns the WHERE considtions needed to identify this object so
370 protected function getUpdateConditions() {
371 return array( 'id' => $this->getId() );
375 * Inserts the object into the database.
379 * @param string|null $functionName
380 * @param array|null $options
382 * @return boolean Success indicator
384 protected function insert( $functionName = null, array $options = null ) {
385 $dbw = wfGetDB( DB_MASTER
);
387 $success = $dbw->insert(
388 $this->table
->getName(),
389 $this->getWriteValues(),
390 is_null( $functionName ) ? __METHOD__
: $functionName,
391 is_null( $options ) ?
array( 'IGNORE' ) : $options
394 // DatabaseBase::insert does not always return true for success as documented...
395 $success = $success !== false;
398 $this->setField( 'id', $dbw->insertId() );
405 * Removes the object from the database.
409 * @return boolean Success indicator
411 public function remove() {
412 $this->beforeRemove();
414 $success = $this->table
->delete( array( 'id' => $this->getId() ) );
416 // DatabaseBase::delete does not always return true for success as documented...
417 $success = $success !== false;
427 * Gets called before an object is removed from the database.
431 protected function beforeRemove() {
432 $this->loadFields( $this->getBeforeRemoveFields(), false, true );
436 * Before removal of an object happens, @see beforeRemove gets called.
437 * This method loads the fields of which the names have been returned by this one (or all fields if null is returned).
438 * This allows for loading info needed after removal to get rid of linked data and the like.
444 protected function getBeforeRemoveFields() {
449 * Gets called after successfull removal.
450 * Can be overriden to get rid of linked data.
454 protected function onRemoved() {
455 $this->setField( 'id', null );
459 * Return the names and values of the fields.
465 public function getFields() {
466 return $this->fields
;
470 * Return the names of the fields.
476 public function getSetFieldNames() {
477 return array_keys( $this->fields
);
481 * Sets the value of a field.
482 * Strings can be provided for other types,
483 * so this method can be called from unserialization handlers.
487 * @param string $name
488 * @param mixed $value
490 * @throws MWException
492 public function setField( $name, $value ) {
493 $fields = $this->table
->getFields();
495 if ( array_key_exists( $name, $fields ) ) {
496 switch ( $fields[$name] ) {
498 $value = (int)$value;
501 $value = (float)$value;
504 if ( is_string( $value ) ) {
505 $value = $value !== '0';
506 } elseif ( is_int( $value ) ) {
507 $value = $value !== 0;
511 if ( is_string( $value ) ) {
512 $value = unserialize( $value );
515 if ( !is_array( $value ) ) {
520 if ( is_string( $value ) ) {
521 $value = unserialize( $value );
525 if ( is_string( $value ) ) {
526 $value = (int)$value;
531 $this->fields
[$name] = $value;
533 throw new MWException( 'Attempted to set unknown field ' . $name );
538 * Add an amount (can be negative) to the specified field (needs to be numeric).
539 * TODO: most off this stuff makes more sense in the table class
543 * @param string $field
544 * @param integer $amount
546 * @return boolean Success indicator
548 public function addToField( $field, $amount ) {
549 if ( $amount == 0 ) {
553 if ( !$this->hasIdField() ) {
557 $absoluteAmount = abs( $amount );
558 $isNegative = $amount < 0;
560 $dbw = wfGetDB( DB_MASTER
);
562 $fullField = $this->table
->getPrefixedField( $field );
564 $success = $dbw->update(
565 $this->table
->getName(),
566 array( "$fullField=$fullField" . ( $isNegative ?
'-' : '+' ) . $absoluteAmount ),
567 array( $this->table
->getPrefixedField( 'id' ) => $this->getId() ),
571 if ( $success && $this->hasField( $field ) ) {
572 $this->setField( $field, $this->getField( $field ) +
$amount );
579 * Return the names of the fields.
585 public function getFieldNames() {
586 return array_keys( $this->table
->getFields() );
590 * Computes and updates the values of the summary fields.
594 * @param array|string|null $summaryFields
596 public function loadSummaryFields( $summaryFields = null ) {
601 * Sets the value for the @see $updateSummaries field.
605 * @param boolean $update
607 public function setUpdateSummaries( $update ) {
608 $this->updateSummaries
= $update;
612 * Sets the value for the @see $inSummaryMode field.
616 * @param boolean $summaryMode
618 public function setSummaryMode( $summaryMode ) {
619 $this->inSummaryMode
= $summaryMode;
623 * Return if any fields got changed.
627 * @param IORMRow $object
628 * @param boolean|array $excludeSummaryFields
629 * When set to true, summary field changes are ignored.
630 * Can also be an array of fields to ignore.
634 protected function fieldsChanged( IORMRow
$object, $excludeSummaryFields = false ) {
635 $exclusionFields = array();
637 if ( $excludeSummaryFields !== false ) {
638 $exclusionFields = is_array( $excludeSummaryFields ) ?
$excludeSummaryFields : $this->table
->getSummaryFields();
641 foreach ( $this->fields
as $name => $value ) {
642 $excluded = $excludeSummaryFields && in_array( $name, $exclusionFields );
644 if ( !$excluded && $object->getField( $name ) !== $value ) {
653 * Returns the table this IORMRow is a row in.
659 public function getTable() {