MediaWiki REL1_33
MediaWiki\Revision\SlotRecord Class Reference

Value object representing a content slot associated with a page revision. More...

Collaboration diagram for MediaWiki\Revision\SlotRecord:

Public Member Functions

 __construct ( $row, $content)
 The following fields are supported by the $row parameter:
 
 __sleep ()
 Implemented to defy serialization.
 
 getAddress ()
 Returns the address of this slot's content.
 
 getContent ()
 Returns the Content of the given slot.
 
 getContentId ()
 Returns the ID of the content meta data row associated with the slot.
 
 getFormat ()
 Returns the blob serialization format as a MIME type.
 
 getModel ()
 Returns the content model.
 
 getOrigin ()
 Returns the revision ID of the revision that originated the slot's content.
 
 getRevision ()
 Returns the ID of the revision this slot is associated with.
 
 getRole ()
 Returns the role of the slot.
 
 getSha1 ()
 Returns the content size.
 
 getSize ()
 Returns the content size.
 
 hasAddress ()
 Whether this slot has an address.
 
 hasContentId ()
 Whether this slot has a content ID.
 
 hasOrigin ()
 Whether this slot has an origin (revision ID that originated the slot's content.
 
 hasRevision ()
 Whether this slot has revision ID associated.
 
 hasSameContent (SlotRecord $other)
 Returns true if $other has the same content as this slot.
 
 isInherited ()
 Whether this slot was inherited from an older revision.
 

Static Public Member Functions

static base36Sha1 ( $blob)
 Get the base 36 SHA-1 value for a string of text.
 
static newInherited (SlotRecord $slot)
 Constructs a new SlotRecord for a new revision, inheriting the content of the given SlotRecord of a previous revision.
 
static newSaved ( $revisionId, $contentId, $contentAddress, SlotRecord $protoSlot)
 Constructs a complete SlotRecord for a newly saved revision, based on the incomplete proto-slot.
 
static newUnsaved ( $role, Content $content)
 Constructs a new Slot from a Content object for a new revision.
 
static newWithSuppressedContent (SlotRecord $slot)
 Returns a new SlotRecord just like the given $slot, except that calling getContent() will fail with an exception.
 

Public Attributes

const MAIN = 'main'
 

Private Member Functions

 getField ( $name)
 Returns the string value of a data field from the database row supplied to the constructor.
 
 getIntField ( $name)
 Returns the int value of a data field from the database row supplied to the constructor.
 
 getStringField ( $name)
 Returns the string value of a data field from the database row supplied to the constructor.
 
 hasField ( $name)
 
 setField ( $name, $value)
 

Static Private Member Functions

static newDerived (SlotRecord $slot, array $overrides=[])
 Constructs a new SlotRecord from an existing SlotRecord, overriding some fields.
 

Private Attributes

Content callable $content
 
object $row
 database result row, as a raw object.
 

Detailed Description

Value object representing a content slot associated with a page revision.

SlotRecord provides direct access to a Content object. That access may be implemented through a callback.

Since
1.31
1.32 Renamed from MediaWiki\Storage\SlotRecord

Definition at line 39 of file SlotRecord.php.

Constructor & Destructor Documentation

◆ __construct()

MediaWiki\Revision\SlotRecord::__construct (   $row,
  $content 
)

The following fields are supported by the $row parameter:

$row->blob_data $row->blob_address

Parameters
object$rowA database row composed of fields of the slot and content tables, as a raw object. Any field value can be a callback that produces the field value given this SlotRecord as a parameter. However, plain strings cannot be used as callbacks here, for security reasons.
Content | callable$contentThe content object associated with the slot, or a callback that will return that Content object, given this SlotRecord as a parameter.

Definition at line 234 of file SlotRecord.php.

References MediaWiki\Revision\SlotRecord\$content, MediaWiki\Revision\SlotRecord\$row, and content.

Member Function Documentation

◆ __sleep()

MediaWiki\Revision\SlotRecord::__sleep ( )

Implemented to defy serialization.

Exceptions
LogicExceptionalways

Definition at line 283 of file SlotRecord.php.

◆ base36Sha1()

static MediaWiki\Revision\SlotRecord::base36Sha1 (   $blob)
static

Get the base 36 SHA-1 value for a string of text.

MCR migration note: this replaces Revision::base36Sha1

Parameters
string$blob
Returns
string

Definition at line 607 of file SlotRecord.php.

References $blob.

Referenced by MediaWiki\Revision\RevisionSlots\computeSha1(), and MediaWiki\Revision\SlotRecord\getSha1().

◆ getAddress()

◆ getContent()

MediaWiki\Revision\SlotRecord::getContent ( )

Returns the Content of the given slot.

Note
This is free to load Content from whatever subsystem is necessary, performing potentially expensive operations and triggering I/O-related failure modes.
This method does not apply audience filtering.
Exceptions
SuppressedDataExceptionif access to the content is not allowed according to the audience check performed by RevisionRecord::getSlot().
Returns
Content The slot's content. This is a direct reference to the internal instance, copy before exposing to application logic!

Definition at line 302 of file SlotRecord.php.

References MediaWiki\Revision\SlotRecord\$content, and content.

Referenced by MediaWiki\Tests\Revision\RevisionStoreDbTestBase\assertSlotCompleteness(), MediaWiki\Tests\Revision\RevisionStoreDbTestBase\assertSlotRecordsEqual(), ApiQueryRevisionsBase\extractSlotInfo(), WikiPage\getDeletionUpdates(), MediaWiki\Revision\SlotRecord\getModel(), MediaWiki\Revision\SlotRecord\getSha1(), MediaWiki\Revision\SlotRecord\getSize(), and MediaWiki\Revision\RevisionStore\storeContentBlob().

◆ getContentId()

MediaWiki\Revision\SlotRecord::getContentId ( )

Returns the ID of the content meta data row associated with the slot.

This information should be irrelevant to application logic, it is here to allow the construction of a full row for the revision table.

Note that this method may return an emulated value during schema migration in SCHEMA_COMPAT_WRITE_OLD mode. See RevisionStore::emulateContentId for more information.

Returns
int

Definition at line 513 of file SlotRecord.php.

References MediaWiki\Revision\SlotRecord\getIntField().

Referenced by MediaWiki\Tests\Revision\McrReadNewRevisionStoreDbTest\assertSameSlotContent(), MediaWiki\Tests\Revision\McrRevisionStoreDbTest\assertSameSlotContent(), MediaWiki\Tests\Revision\McrWriteBothRevisionStoreDbTest\assertSameSlotContent(), MediaWiki\Revision\RevisionStore\insertSlotOn(), and MediaWiki\Revision\SlotRecord\newSaved().

◆ getField()

MediaWiki\Revision\SlotRecord::getField (   $name)
private

Returns the string value of a data field from the database row supplied to the constructor.

If the field was set to a callback, that callback is invoked and the result returned.

Parameters
string$name
Exceptions
OutOfBoundsException
IncompleteRevisionException
Returns
mixed Returns the field's value, never null.

Definition at line 329 of file SlotRecord.php.

References $name, $value, and MediaWiki\Revision\SlotRecord\setField().

Referenced by MediaWiki\Revision\SlotRecord\getIntField(), MediaWiki\Revision\SlotRecord\getStringField(), and MediaWiki\Revision\SlotRecord\hasField().

◆ getFormat()

MediaWiki\Revision\SlotRecord::getFormat ( )

Returns the blob serialization format as a MIME type.

Note
When this method returns null, the caller is expected to auto-detect the serialization format, or to rely on the default format associated with the content model.
Returns
string|null

Definition at line 581 of file SlotRecord.php.

References MediaWiki\Revision\SlotRecord\getStringField(), and MediaWiki\Revision\SlotRecord\hasField().

Referenced by MediaWiki\Tests\Revision\RevisionStoreDbTestBase\assertSlotRecordsEqual().

◆ getIntField()

MediaWiki\Revision\SlotRecord::getIntField (   $name)
private

Returns the int value of a data field from the database row supplied to the constructor.

Parameters
string$name
Exceptions
OutOfBoundsException
IncompleteRevisionException
Returns
int Returns the int value

Definition at line 372 of file SlotRecord.php.

References $name, and MediaWiki\Revision\SlotRecord\getField().

Referenced by MediaWiki\Revision\SlotRecord\getContentId(), MediaWiki\Revision\SlotRecord\getOrigin(), MediaWiki\Revision\SlotRecord\getRevision(), and MediaWiki\Revision\SlotRecord\getSize().

◆ getModel()

MediaWiki\Revision\SlotRecord::getModel ( )

Returns the content model.

This is the model name that decides which ContentHandler is appropriate for interpreting the data of the blob referenced by the address returned by getAddress().

Returns
string the content model of the content

Definition at line 561 of file SlotRecord.php.

References MediaWiki\Revision\SlotRecord\getContent(), MediaWiki\Revision\SlotRecord\getStringField(), and MediaWiki\Revision\SlotRecord\setField().

Referenced by MediaWiki\Tests\Revision\RevisionStoreDbTestBase\assertSlotRecordsEqual(), ApiQueryRevisionsBase\extractSlotInfo(), MediaWiki\Revision\SlotRecord\hasSameContent(), MediaWiki\Revision\RevisionStore\insertContentRowOn(), and MediaWiki\Revision\RevisionStore\loadSlotContent().

◆ getOrigin()

MediaWiki\Revision\SlotRecord::getOrigin ( )

◆ getRevision()

◆ getRole()

◆ getSha1()

◆ getSize()

◆ getStringField()

MediaWiki\Revision\SlotRecord::getStringField (   $name)
private

Returns the string value of a data field from the database row supplied to the constructor.

Parameters
string$name
Exceptions
OutOfBoundsException
IncompleteRevisionException
Returns
string Returns the string value

Definition at line 359 of file SlotRecord.php.

References $name, and MediaWiki\Revision\SlotRecord\getField().

Referenced by MediaWiki\Revision\SlotRecord\getAddress(), MediaWiki\Revision\SlotRecord\getFormat(), MediaWiki\Revision\SlotRecord\getModel(), MediaWiki\Revision\SlotRecord\getRole(), and MediaWiki\Revision\SlotRecord\getSha1().

◆ hasAddress()

MediaWiki\Revision\SlotRecord::hasAddress ( )

◆ hasContentId()

MediaWiki\Revision\SlotRecord::hasContentId ( )

Whether this slot has a content ID.

Slots will have a content ID if their content has been stored in the content table. While building a new revision, SlotRecords will not have an ID associated.

Also, during schema migration, hasContentId() may return false when encountering an un-migrated database entry in SCHEMA_COMPAT_WRITE_BOTH mode. It will however always return true for saved revisions on SCHEMA_COMPAT_READ_NEW mode, or without SCHEMA_COMPAT_WRITE_NEW mode. In the latter case, an emulated content ID is used, derived from the revision's text ID.

Note that hasContentId() returning false while hasRevision() returns true always indicates an unmigrated row in SCHEMA_COMPAT_WRITE_BOTH mode, as described above. For an unsaved slot, both these methods would return false.

Since
1.32
Returns
bool

Definition at line 469 of file SlotRecord.php.

References MediaWiki\Revision\SlotRecord\hasField().

Referenced by MediaWiki\Tests\Revision\McrWriteBothRevisionStoreDbTest\assertSameSlotContent(), MediaWiki\Revision\RevisionStore\insertSlotOn(), and MediaWiki\Revision\SlotRecord\newSaved().

◆ hasField()

◆ hasOrigin()

MediaWiki\Revision\SlotRecord::hasOrigin ( )

Whether this slot has an origin (revision ID that originated the slot's content.

Since
1.32
Returns
bool

Definition at line 446 of file SlotRecord.php.

References MediaWiki\Revision\SlotRecord\hasField().

Referenced by MediaWiki\Revision\RevisionStore\insertSlotRowOn().

◆ hasRevision()

MediaWiki\Revision\SlotRecord::hasRevision ( )

Whether this slot has revision ID associated.

Slots will have a revision ID associated only if they were loaded as part of an existing revision. While building a new revision, Slotrecords will not have a revision ID associated.

Returns
bool

Definition at line 480 of file SlotRecord.php.

References MediaWiki\Revision\SlotRecord\hasField().

Referenced by MediaWiki\Tests\Revision\RevisionStoreDbTestBase\assertSlotRecordsEqual(), MediaWiki\Revision\SlotRecord\isInherited(), MediaWiki\Revision\SlotRecord\newSaved(), and MediaWiki\Revision\MutableRevisionRecord\setSlot().

◆ hasSameContent()

MediaWiki\Revision\SlotRecord::hasSameContent ( SlotRecord  $other)

Returns true if $other has the same content as this slot.

The check is performed based on the model, address size, and hash. Two slots can have the same content if they use different content addresses, but if they have the same address and the same model, they have the same content. Two slots can have the same content if they belong to different revisions or pages.

Note that hasSameContent() may return false even if Content::equals returns true for the content of two slots. This may happen if the two slots have different serializations representing equivalent Content. Such false negatives are considered acceptable. Code that has to be absolutely sure the Content is really not the same if hasSameContent() returns false should call getContent() and compare the Content objects directly.

Since
1.32
Parameters
SlotRecord$other
Returns
bool

Definition at line 630 of file SlotRecord.php.

References MediaWiki\Revision\SlotRecord\getAddress(), MediaWiki\Revision\SlotRecord\getModel(), MediaWiki\Revision\SlotRecord\getSha1(), MediaWiki\Revision\SlotRecord\getSize(), and MediaWiki\Revision\SlotRecord\hasAddress().

Referenced by MediaWiki\Tests\Revision\SlotRecordTest\testHasSameContent().

◆ isInherited()

MediaWiki\Revision\SlotRecord::isInherited ( )

Whether this slot was inherited from an older revision.

If this SlotRecord is already attached to a revision, this returns true if the slot's revision of origin is the same as the revision it belongs to.

If this SlotRecord is not yet attached to a revision, this returns true if the slot already has an address.

Returns
bool

Definition at line 420 of file SlotRecord.php.

References MediaWiki\Revision\SlotRecord\getOrigin(), MediaWiki\Revision\SlotRecord\getRevision(), MediaWiki\Revision\SlotRecord\hasAddress(), and MediaWiki\Revision\SlotRecord\hasRevision().

Referenced by MediaWiki\Revision\RevisionSlots\getInheritedSlots(), MediaWiki\Revision\RevisionSlots\getOriginalSlots(), and MediaWiki\Revision\SlotRecord\newSaved().

◆ newDerived()

static MediaWiki\Revision\SlotRecord::newDerived ( SlotRecord  $slot,
array  $overrides = [] 
)
staticprivate

Constructs a new SlotRecord from an existing SlotRecord, overriding some fields.

The slot's content cannot be overwritten.

Parameters
SlotRecord$slot
array$overrides
Returns
SlotRecord

Definition at line 80 of file SlotRecord.php.

References MediaWiki\Revision\SlotRecord\$row, $value, and as.

Referenced by MediaWiki\Revision\SlotRecord\newInherited(), and MediaWiki\Revision\SlotRecord\newSaved().

◆ newInherited()

static MediaWiki\Revision\SlotRecord::newInherited ( SlotRecord  $slot)
static

Constructs a new SlotRecord for a new revision, inheriting the content of the given SlotRecord of a previous revision.

Note that a SlotRecord constructed this way are intended as prototypes, to be used wit newSaved(). They are incomplete, so some getters such as getRevision() will fail.

Parameters
SlotRecord$slot
Returns
SlotRecord

Definition at line 103 of file SlotRecord.php.

References MediaWiki\Revision\SlotRecord\getAddress(), MediaWiki\Revision\SlotRecord\getOrigin(), MediaWiki\Revision\SlotRecord\getRevision(), and MediaWiki\Revision\SlotRecord\newDerived().

Referenced by MediaWiki\Revision\MutableRevisionSlots\inheritSlot(), and MediaWiki\Revision\MutableRevisionSlots\newFromParentRevisionSlots().

◆ newSaved()

static MediaWiki\Revision\SlotRecord::newSaved (   $revisionId,
  $contentId,
  $contentAddress,
SlotRecord  $protoSlot 
)
static

Constructs a complete SlotRecord for a newly saved revision, based on the incomplete proto-slot.

This adds information that has only become available during saving, particularly the revision ID, content ID and content address.

Parameters
int$revisionIdthe revision the slot is to be associated with (field slot_revision_id). If $protoSlot already has a revision, it must be the same.
int | null$contentIdthe ID of the row in the content table describing the content referenced by $contentAddress (field slot_content_id). If $protoSlot already has a content ID, it must be the same.
string$contentAddressthe slot's content address (field content_address). If $protoSlot already has an address, it must be the same.
SlotRecord$protoSlotThe proto-slot that was provided as input for creating a new revision. $protoSlot must have a content address if inherited.
Returns
SlotRecord If the state of $protoSlot is inappropriate for saving a new revision.

Definition at line 164 of file SlotRecord.php.

References MediaWiki\Revision\SlotRecord\getAddress(), MediaWiki\Revision\SlotRecord\getContentId(), MediaWiki\Revision\SlotRecord\getOrigin(), MediaWiki\Revision\SlotRecord\getRevision(), MediaWiki\Revision\SlotRecord\hasAddress(), MediaWiki\Revision\SlotRecord\hasContentId(), MediaWiki\Revision\SlotRecord\hasField(), MediaWiki\Revision\SlotRecord\hasRevision(), MediaWiki\Revision\SlotRecord\isInherited(), and MediaWiki\Revision\SlotRecord\newDerived().

Referenced by MediaWiki\Revision\RevisionStore\insertSlotOn().

◆ newUnsaved()

static MediaWiki\Revision\SlotRecord::newUnsaved (   $role,
Content  $content 
)
static

Constructs a new Slot from a Content object for a new revision.

This is the preferred way to construct a slot for storing Content that resulted from a user edit. The slot is assumed to be not inherited.

Note that a SlotRecord constructed this way are intended as prototypes, to be used wit newSaved(). They are incomplete, so some getters such as getAddress() will fail.

Parameters
string$role
Content$content
Returns
SlotRecord An incomplete proto-slot object, to be used with newSaved() later.

Definition at line 129 of file SlotRecord.php.

References MediaWiki\Revision\SlotRecord\$content, MediaWiki\Revision\SlotRecord\$row, and Content\getModel().

Referenced by MediaWiki\Revision\MutableRevisionSlots\setContent().

◆ newWithSuppressedContent()

static MediaWiki\Revision\SlotRecord::newWithSuppressedContent ( SlotRecord  $slot)
static

Returns a new SlotRecord just like the given $slot, except that calling getContent() will fail with an exception.

Parameters
SlotRecord$slot
Returns
SlotRecord

Definition at line 63 of file SlotRecord.php.

References MediaWiki\Revision\SlotRecord\$row.

Referenced by MediaWiki\Revision\RevisionRecord\getSlot().

◆ setField()

MediaWiki\Revision\SlotRecord::setField (   $name,
  $value 
)
private
Parameters
string$name
string | int | null$value

Definition at line 595 of file SlotRecord.php.

References $value.

Referenced by MediaWiki\Revision\SlotRecord\getField(), MediaWiki\Revision\SlotRecord\getModel(), MediaWiki\Revision\SlotRecord\getSha1(), and MediaWiki\Revision\SlotRecord\getSize().

Member Data Documentation

◆ $content

Content callable MediaWiki\Revision\SlotRecord::$content
private

◆ $row

object MediaWiki\Revision\SlotRecord::$row
private

database result row, as a raw object.

Callbacks are supported for field values, to enable on-demand emulation of these values. This is primarily intended for use during schema migration.

Definition at line 48 of file SlotRecord.php.

Referenced by MediaWiki\Revision\SlotRecord\__construct(), MediaWiki\Revision\SlotRecord\newDerived(), MediaWiki\Revision\SlotRecord\newUnsaved(), and MediaWiki\Revision\SlotRecord\newWithSuppressedContent().

◆ MAIN


The documentation for this class was generated from the following file: