MediaWiki  1.23.8
FileJournal Class Reference

Class for handling file operation journaling. More...

Inheritance diagram for FileJournal:
Collaboration diagram for FileJournal:

Public Member Functions

 getChangeEntries ( $start=null, $limit=0, &$next=null)
 Get an array of file change log entries. More...
 
 getCurrentPosition ()
 Get the position ID of the latest journal entry. More...
 
 getPositionAtTime ( $time)
 Get the position ID of the latest journal entry at some point in time. More...
 
 getTimestampedUUID ()
 Get a statistically unique ID string. More...
 
 logChangeBatch (array $entries, $batchId)
 Log changes made by a batch file operation. More...
 
 purgeOldLogs ()
 Purge any old log entries. More...
 

Static Public Member Functions

static factory (array $config, $backend)
 Create an appropriate FileJournal object from config. More...
 

Protected Member Functions

 __construct (array $config)
 Construct a new instance from configuration. More...
 
 doGetChangeEntries ( $start, $limit)
 
 doGetCurrentPosition ()
 
 doGetPositionAtTime ( $time)
 
 doLogChangeBatch (array $entries, $batchId)
 
 doPurgeOldLogs ()
 

Protected Attributes

string $backend
 
int $ttlDays
 

Detailed Description

Class for handling file operation journaling.

Subclasses should avoid throwing exceptions at all costs.

Since
1.20

Definition at line 38 of file FileJournal.php.

Constructor & Destructor Documentation

◆ __construct()

FileJournal::__construct ( array  $config)
protected

Construct a new instance from configuration.

Parameters
array$configIncludes: 'ttlDays' : days to keep log entries around (false means "forever")

Reimplemented in DBFileJournal.

Definition at line 49 of file FileJournal.php.

Member Function Documentation

◆ doGetChangeEntries()

FileJournal::doGetChangeEntries (   $start,
  $limit 
)
abstractprotected
See also
FileJournal::getChangeEntries()
Parameters
int$start
int$limit
Returns
array

Reimplemented in NullFileJournal, and DBFileJournal.

Referenced by getChangeEntries().

◆ doGetCurrentPosition()

FileJournal::doGetCurrentPosition ( )
abstractprotected
See also
FileJournal::getCurrentPosition()
Returns
int|bool

Reimplemented in NullFileJournal, and DBFileJournal.

Referenced by getCurrentPosition().

◆ doGetPositionAtTime()

FileJournal::doGetPositionAtTime (   $time)
abstractprotected
See also
FileJournal::getPositionAtTime()
Parameters
int | string$timeTimestamp
Returns
int|bool

Reimplemented in NullFileJournal, and DBFileJournal.

Referenced by getPositionAtTime().

◆ doLogChangeBatch()

FileJournal::doLogChangeBatch ( array  $entries,
  $batchId 
)
abstractprotected
See also
FileJournal::logChangeBatch()
Parameters
array$entriesList of file operations (each an array of parameters)
string$batchIdUUID string that identifies the operation batch
Returns
Status

Reimplemented in NullFileJournal, and DBFileJournal.

Referenced by logChangeBatch().

◆ doPurgeOldLogs()

FileJournal::doPurgeOldLogs ( )
abstractprotected
See also
FileJournal::purgeOldLogs()
Returns
Status

Reimplemented in NullFileJournal, and DBFileJournal.

Referenced by purgeOldLogs().

◆ factory()

static FileJournal::factory ( array  $config,
  $backend 
)
staticfinal

Create an appropriate FileJournal object from config.

Parameters
array$config
string$backendA registered file backend name
Exceptions
MWException
Returns
FileJournal

Definition at line 61 of file FileJournal.php.

References $backend.

Referenced by FileBackend\__construct(), FileBackendGroup\get(), and FileBackendTest\setUp().

◆ getChangeEntries()

FileJournal::getChangeEntries (   $start = null,
  $limit = 0,
$next = null 
)
final

Get an array of file change log entries.

A starting change ID and/or limit can be specified.

Parameters
$startinteger Starting change ID or null
$limitinteger Maximum number of items to return
&$nextstring Updated to the ID of the next entry.
Returns
array List of associative arrays, each having: id : unique, monotonic, ID for this change batch_uuid : UUID for an operation batch backend : the backend name op : primitive operation (create,update,delete,null) path : affected storage path new_sha1 : base 36 sha1 of the new file had the operation succeeded timestamp : TS_MW timestamp of the batch change Also, $next is updated to the ID of the next entry.

Definition at line 164 of file FileJournal.php.

References $last, $limit, and doGetChangeEntries().

◆ getCurrentPosition()

FileJournal::getCurrentPosition ( )
final

Get the position ID of the latest journal entry.

Returns
int|bool

Definition at line 120 of file FileJournal.php.

References doGetCurrentPosition().

◆ getPositionAtTime()

FileJournal::getPositionAtTime (   $time)
final

Get the position ID of the latest journal entry at some point in time.

Parameters
int | string$timetimestamp
Returns
int|bool

Definition at line 136 of file FileJournal.php.

References $time, and doGetPositionAtTime().

◆ getTimestampedUUID()

FileJournal::getTimestampedUUID ( )
final

Get a statistically unique ID string.

Returns
string <9 char TS_MW timestamp in base 36><22 random base 36 chars>

Definition at line 77 of file FileJournal.php.

References $s, TS_MW, wfBaseConvert(), and wfTimestamp().

Referenced by FileOpBatch\attempt().

◆ logChangeBatch()

FileJournal::logChangeBatch ( array  $entries,
  $batchId 
)
final

Log changes made by a batch file operation.

Parameters
array$entriesList of file operations (each an array of parameters) which contain: op : Basic operation name (create, update, delete) path : The storage path of the file newSha1 : The final base 36 SHA-1 of the file Note that 'false' should be used as the SHA-1 for non-existing files.
string$batchIdUUID string that identifies the operation batch
Returns
Status

Definition at line 98 of file FileJournal.php.

References doLogChangeBatch(), and Status\newGood().

Referenced by FileOpBatch\attempt().

◆ purgeOldLogs()

FileJournal::purgeOldLogs ( )
final

Purge any old log entries.

Returns
Status

Definition at line 189 of file FileJournal.php.

References doPurgeOldLogs().

Referenced by DBFileJournal\doLogChangeBatch().

Member Data Documentation

◆ $backend

string FileJournal::$backend
protected

Definition at line 39 of file FileJournal.php.

Referenced by factory().

◆ $ttlDays

int FileJournal::$ttlDays
protected

Definition at line 41 of file FileJournal.php.


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