MediaWiki
1.23.2
|
Class for getting statistically unique IDs. More...
Public Member Functions | |
__destruct () | |
Static Public Member Functions | |
static | newRawUUIDv4 ( $flags=0) |
Return an RFC4122 compliant v4 UUID. More... | |
static | newSequentialPerNodeID ( $bucket, $bits=48, $flags=0) |
Return an ID that is sequential only for this node and bucket. More... | |
static | newSequentialPerNodeIDs ( $bucket, $bits, $count, $flags=0) |
Return IDs that are sequential only for this node and bucket. More... | |
static | newTimestampedUID128 ( $base=10) |
Get a statistically unique 128-bit unsigned integer ID string. More... | |
static | newTimestampedUID88 ( $base=10) |
Get a statistically unique 88-bit unsigned integer ID string. More... | |
static | newUUIDv4 ( $flags=0) |
Return an RFC4122 compliant v4 UUID. More... | |
static | unitTestTearDown () |
Cleanup resources when tearing down after a unit test. More... | |
Public Attributes | |
const | QUICK_RAND = 1 |
const | QUICK_VOLATILE = 2 |
Protected Member Functions | |
__construct () | |
deleteCacheFiles () | |
Delete all cache files that have been created. More... | |
getSequentialPerNodeIDs ( $bucket, $bits, $count, $flags) | |
Return IDs that are sequential only for this node and bucket. More... | |
getTimestampAndDelay ( $lockFile, $clockSeqSize, $counterSize) | |
Get a (time,counter,clock sequence) where (time,counter) is higher than any previous (time,counter) value for the given clock sequence. More... | |
getTimestampedID128 (array $info) | |
getTimestampedID88 (array $info) | |
millisecondsSinceEpochBinary (array $time) | |
timeWaitUntil (array $time) | |
Wait till the current timestamp reaches $time and return the current timestamp. More... | |
Static Protected Member Functions | |
static | millitime () |
static | singleton () |
Protected Attributes | |
Array | $fileHandles = array() |
$lockFile128 | |
$lockFile88 | |
$nodeId32 | |
$nodeId48 | |
$nodeIdFile | |
Static Protected Attributes | |
static | $instance = null |
Class for getting statistically unique IDs.
Definition at line 29 of file UIDGenerator.php.
|
protected |
Definition at line 45 of file UIDGenerator.php.
References $line, array(), MWCryptRand\generateHex(), wfBaseConvert(), wfIsWindows(), wfRestoreWarnings(), wfShellExec(), wfSuppressWarnings(), and wfTempDir().
UIDGenerator::__destruct | ( | ) |
Definition at line 501 of file UIDGenerator.php.
|
protected |
Delete all cache files that have been created.
This is a cleanup method primarily meant to be used from unit tests to avoid poluting the local filesystem. If used outside of a unit test environment it should be used with caution as it may destroy state saved in the files.
Definition at line 468 of file UIDGenerator.php.
|
protected |
Return IDs that are sequential only for this node and bucket.
string | $bucket | Arbitrary bucket name (should be ASCII) |
integer | $bits | Bit size (16 to 48) of resulting numbers before wrap-around |
integer | $count | Number of IDs to return (1 to 10000) |
integer | $flags | (supports UIDGenerator::QUICK_VOLATILE) |
Definition at line 263 of file UIDGenerator.php.
References $cache, $count, $e, $flags, $path, array(), ObjectCache\newAccelerator(), and wfTempDir().
|
protected |
Get a (time,counter,clock sequence) where (time,counter) is higher than any previous (time,counter) value for the given clock sequence.
This is useful for making UIDs sequential on a per-node bases.
string | $lockFile | Name of a local lock file |
$clockSeqSize | integer The number of possible clock sequence values | |
$counterSize | integer The number of possible counter values |
MWException |
Definition at line 342 of file UIDGenerator.php.
References $path, $time, array(), millitime(), and timeWaitUntil().
|
protected |
array | $info | (UIDGenerator::millitime(), counter, clock sequence) |
Definition at line 166 of file UIDGenerator.php.
References $nodeId48, $time, list, and millisecondsSinceEpochBinary().
|
protected |
array | $time | (UIDGenerator::millitime(), clock sequence) |
Definition at line 122 of file UIDGenerator.php.
References $nodeId32, $time, list, and millisecondsSinceEpochBinary().
|
protected |
array | $time | Result of UIDGenerator::millitime() |
Definition at line 437 of file UIDGenerator.php.
References $time, list, and wfBaseConvert().
Referenced by getTimestampedID128(), and getTimestampedID88().
|
staticprotected |
Definition at line 451 of file UIDGenerator.php.
Referenced by getTimestampAndDelay(), and timeWaitUntil().
|
static |
Return an RFC4122 compliant v4 UUID.
$flags | integer Bitfield (supports UIDGenerator::QUICK_RAND) |
MWException |
Definition at line 217 of file UIDGenerator.php.
References $flags.
Referenced by JobQueueRedis\getNewJobFields(), UIDGeneratorTest\testRawUUIDv4(), and UIDGeneratorTest\testRawUUIDv4QuickRand().
|
static |
Return an ID that is sequential only for this node and bucket.
These IDs are suitable for per-host sequence numbers, e.g. for some packet protocols. If UIDGenerator::QUICK_VOLATILE is used the counter might reset on server restart.
string | $bucket | Arbitrary bucket name (should be ASCII) |
integer | $bits | Bit size (<=48) of resulting numbers before wrap-around |
integer | $flags | (supports UIDGenerator::QUICK_VOLATILE) |
Definition at line 233 of file UIDGenerator.php.
References $flags.
Referenced by UIDGeneratorTest\testNewSequentialID().
|
static |
Return IDs that are sequential only for this node and bucket.
string | $bucket | Arbitrary bucket name (should be ASCII) |
integer | $bits | Bit size (16 to 48) of resulting numbers before wrap-around |
integer | $count | Number of IDs to return (1 to 10000) |
integer | $flags | (supports UIDGenerator::QUICK_VOLATILE) |
Definition at line 248 of file UIDGenerator.php.
References $count, $flags, and singleton().
Referenced by SquidUpdate\HTCPPurge(), and UIDGeneratorTest\testNewSequentialIDs().
|
static |
Get a statistically unique 128-bit unsigned integer ID string.
The bits of the UID are prefixed with the time (down to the millisecond).
These IDs are suitable as globally unique IDs, without any enforced uniqueness. New rows almost always have higher UIDs, which makes B-TREE updates on INSERT fast. They can also be stored as "DECIMAL(39) UNSIGNED" or BINARY(16) in MySQL.
UID generation is serialized on each server (as the node ID is for the whole machine).
$base | integer Specifies a base other than 10 |
MWException |
Definition at line 152 of file UIDGenerator.php.
References $time, singleton(), and wfBaseConvert().
Referenced by ExternalStoreMwstore\store().
|
static |
Get a statistically unique 88-bit unsigned integer ID string.
The bits of the UID are prefixed with the time (down to the millisecond).
These IDs are suitable as values for the shard key of distributed data. If a column uses these as values, it should be declared UNIQUE to handle collisions. New rows almost always have higher UIDs, which makes B-TREE updates on INSERT fast. They can also be stored "DECIMAL(27) UNSIGNED" or BINARY(11) in MySQL.
UID generation is serialized on each server (as the node ID is for the whole machine).
$base | integer Specifies a base other than 10 |
MWException |
Definition at line 108 of file UIDGenerator.php.
References $time, singleton(), and wfBaseConvert().
|
static |
Return an RFC4122 compliant v4 UUID.
$flags | integer Bitfield (supports UIDGenerator::QUICK_RAND) |
MWException |
Definition at line 191 of file UIDGenerator.php.
References $flags, MWCryptRand\generateHex(), QUICK_RAND, and wfRandomString().
Referenced by UIDGeneratorTest\testUUIDv4().
|
staticprotected |
Definition at line 85 of file UIDGenerator.php.
References $instance.
Referenced by newSequentialPerNodeIDs(), newTimestampedUID128(), newTimestampedUID88(), and unitTestTearDown().
|
protected |
Wait till the current timestamp reaches $time and return the current timestamp.
This returns false if it would have to wait more than 10ms.
array | $time | Result of UIDGenerator::millitime() |
Definition at line 422 of file UIDGenerator.php.
References $time, and millitime().
Referenced by getTimestampAndDelay().
|
static |
Cleanup resources when tearing down after a unit test.
This is a cleanup method primarily meant to be used from unit tests to avoid poluting the local filesystem. If used outside of a unit test environment it should be used with caution as it may destroy state saved in the files.
Definition at line 495 of file UIDGenerator.php.
References singleton().
Referenced by UIDGeneratorTest\tearDown().
|
protected |
Definition at line 40 of file UIDGenerator.php.
|
staticprotected |
Definition at line 31 of file UIDGenerator.php.
Referenced by singleton().
|
protected |
Definition at line 38 of file UIDGenerator.php.
|
protected |
Definition at line 37 of file UIDGenerator.php.
|
protected |
Definition at line 34 of file UIDGenerator.php.
Referenced by getTimestampedID88().
|
protected |
Definition at line 35 of file UIDGenerator.php.
Referenced by getTimestampedID128().
|
protected |
Definition at line 33 of file UIDGenerator.php.
const UIDGenerator::QUICK_RAND = 1 |
Definition at line 42 of file UIDGenerator.php.
Referenced by JobQueueRedis\getNewJobFields(), newUUIDv4(), and UIDGeneratorTest\testRawUUIDv4QuickRand().
const UIDGenerator::QUICK_VOLATILE = 2 |
Definition at line 43 of file UIDGenerator.php.
Referenced by SquidUpdate\HTCPPurge().