You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
511 lines
18 KiB
Solidity
511 lines
18 KiB
Solidity
// SPDX-License-Identifier: MIT
|
|
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Checkpoints.sol)
|
|
// This file was procedurally generated from scripts/generate/templates/Checkpoints.js.
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "./math/Math.sol";
|
|
import "./math/SafeCast.sol";
|
|
|
|
/**
|
|
* @dev This library defines the `History` struct, for checkpointing values as they change at different points in
|
|
* time, and later looking up past values by block number. See {Votes} as an example.
|
|
*
|
|
* To create a history of checkpoints define a variable type `Checkpoints.History` in your contract, and store a new
|
|
* checkpoint for the current transaction block using the {push} function.
|
|
*
|
|
* _Available since v4.5._
|
|
*/
|
|
library Checkpoints {
|
|
struct History {
|
|
Checkpoint[] _checkpoints;
|
|
}
|
|
|
|
struct Checkpoint {
|
|
uint32 _blockNumber;
|
|
uint224 _value;
|
|
}
|
|
|
|
/**
|
|
* @dev Returns the value at a given block number. If a checkpoint is not available at that block, the closest one
|
|
* before it is returned, or zero otherwise. Because the number returned corresponds to that at the end of the
|
|
* block, the requested block number must be in the past, excluding the current block.
|
|
*/
|
|
function getAtBlock(History storage self, uint256 blockNumber) internal view returns (uint256) {
|
|
require(blockNumber < block.number, "Checkpoints: block not yet mined");
|
|
uint32 key = SafeCast.toUint32(blockNumber);
|
|
|
|
uint256 len = self._checkpoints.length;
|
|
uint256 pos = _upperBinaryLookup(self._checkpoints, key, 0, len);
|
|
return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;
|
|
}
|
|
|
|
/**
|
|
* @dev Returns the value at a given block number. If a checkpoint is not available at that block, the closest one
|
|
* before it is returned, or zero otherwise. Similar to {upperLookup} but optimized for the case when the searched
|
|
* checkpoint is probably "recent", defined as being among the last sqrt(N) checkpoints where N is the number of
|
|
* checkpoints.
|
|
*/
|
|
function getAtProbablyRecentBlock(History storage self, uint256 blockNumber) internal view returns (uint256) {
|
|
require(blockNumber < block.number, "Checkpoints: block not yet mined");
|
|
uint32 key = SafeCast.toUint32(blockNumber);
|
|
|
|
uint256 len = self._checkpoints.length;
|
|
|
|
uint256 low = 0;
|
|
uint256 high = len;
|
|
|
|
if (len > 5) {
|
|
uint256 mid = len - Math.sqrt(len);
|
|
if (key < _unsafeAccess(self._checkpoints, mid)._blockNumber) {
|
|
high = mid;
|
|
} else {
|
|
low = mid + 1;
|
|
}
|
|
}
|
|
|
|
uint256 pos = _upperBinaryLookup(self._checkpoints, key, low, high);
|
|
|
|
return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;
|
|
}
|
|
|
|
/**
|
|
* @dev Pushes a value onto a History so that it is stored as the checkpoint for the current block.
|
|
*
|
|
* Returns previous value and new value.
|
|
*/
|
|
function push(History storage self, uint256 value) internal returns (uint256, uint256) {
|
|
return _insert(self._checkpoints, SafeCast.toUint32(block.number), SafeCast.toUint224(value));
|
|
}
|
|
|
|
/**
|
|
* @dev Pushes a value onto a History, by updating the latest value using binary operation `op`. The new value will
|
|
* be set to `op(latest, delta)`.
|
|
*
|
|
* Returns previous value and new value.
|
|
*/
|
|
function push(
|
|
History storage self,
|
|
function(uint256, uint256) view returns (uint256) op,
|
|
uint256 delta
|
|
) internal returns (uint256, uint256) {
|
|
return push(self, op(latest(self), delta));
|
|
}
|
|
|
|
/**
|
|
* @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints.
|
|
*/
|
|
function latest(History storage self) internal view returns (uint224) {
|
|
uint256 pos = self._checkpoints.length;
|
|
return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;
|
|
}
|
|
|
|
/**
|
|
* @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value
|
|
* in the most recent checkpoint.
|
|
*/
|
|
function latestCheckpoint(
|
|
History storage self
|
|
) internal view returns (bool exists, uint32 _blockNumber, uint224 _value) {
|
|
uint256 pos = self._checkpoints.length;
|
|
if (pos == 0) {
|
|
return (false, 0, 0);
|
|
} else {
|
|
Checkpoint memory ckpt = _unsafeAccess(self._checkpoints, pos - 1);
|
|
return (true, ckpt._blockNumber, ckpt._value);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dev Returns the number of checkpoint.
|
|
*/
|
|
function length(History storage self) internal view returns (uint256) {
|
|
return self._checkpoints.length;
|
|
}
|
|
|
|
/**
|
|
* @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint,
|
|
* or by updating the last one.
|
|
*/
|
|
function _insert(Checkpoint[] storage self, uint32 key, uint224 value) private returns (uint224, uint224) {
|
|
uint256 pos = self.length;
|
|
|
|
if (pos > 0) {
|
|
// Copying to memory is important here.
|
|
Checkpoint memory last = _unsafeAccess(self, pos - 1);
|
|
|
|
// Checkpoint keys must be non-decreasing.
|
|
require(last._blockNumber <= key, "Checkpoint: decreasing keys");
|
|
|
|
// Update or push new checkpoint
|
|
if (last._blockNumber == key) {
|
|
_unsafeAccess(self, pos - 1)._value = value;
|
|
} else {
|
|
self.push(Checkpoint({_blockNumber: key, _value: value}));
|
|
}
|
|
return (last._value, value);
|
|
} else {
|
|
self.push(Checkpoint({_blockNumber: key, _value: value}));
|
|
return (0, value);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dev Return the index of the oldest checkpoint whose key is greater than the search key, or `high` if there is none.
|
|
* `low` and `high` define a section where to do the search, with inclusive `low` and exclusive `high`.
|
|
*
|
|
* WARNING: `high` should not be greater than the array's length.
|
|
*/
|
|
function _upperBinaryLookup(
|
|
Checkpoint[] storage self,
|
|
uint32 key,
|
|
uint256 low,
|
|
uint256 high
|
|
) private view returns (uint256) {
|
|
while (low < high) {
|
|
uint256 mid = Math.average(low, high);
|
|
if (_unsafeAccess(self, mid)._blockNumber > key) {
|
|
high = mid;
|
|
} else {
|
|
low = mid + 1;
|
|
}
|
|
}
|
|
return high;
|
|
}
|
|
|
|
/**
|
|
* @dev Return the index of the oldest checkpoint whose key is greater or equal than the search key, or `high` if there is none.
|
|
* `low` and `high` define a section where to do the search, with inclusive `low` and exclusive `high`.
|
|
*
|
|
* WARNING: `high` should not be greater than the array's length.
|
|
*/
|
|
function _lowerBinaryLookup(
|
|
Checkpoint[] storage self,
|
|
uint32 key,
|
|
uint256 low,
|
|
uint256 high
|
|
) private view returns (uint256) {
|
|
while (low < high) {
|
|
uint256 mid = Math.average(low, high);
|
|
if (_unsafeAccess(self, mid)._blockNumber < key) {
|
|
low = mid + 1;
|
|
} else {
|
|
high = mid;
|
|
}
|
|
}
|
|
return high;
|
|
}
|
|
|
|
/**
|
|
* @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds.
|
|
*/
|
|
function _unsafeAccess(Checkpoint[] storage self, uint256 pos) private pure returns (Checkpoint storage result) {
|
|
assembly {
|
|
mstore(0, self.slot)
|
|
result.slot := add(keccak256(0, 0x20), pos)
|
|
}
|
|
}
|
|
|
|
struct Trace224 {
|
|
Checkpoint224[] _checkpoints;
|
|
}
|
|
|
|
struct Checkpoint224 {
|
|
uint32 _key;
|
|
uint224 _value;
|
|
}
|
|
|
|
/**
|
|
* @dev Pushes a (`key`, `value`) pair into a Trace224 so that it is stored as the checkpoint.
|
|
*
|
|
* Returns previous value and new value.
|
|
*/
|
|
function push(Trace224 storage self, uint32 key, uint224 value) internal returns (uint224, uint224) {
|
|
return _insert(self._checkpoints, key, value);
|
|
}
|
|
|
|
/**
|
|
* @dev Returns the value in the oldest checkpoint with key greater or equal than the search key, or zero if there is none.
|
|
*/
|
|
function lowerLookup(Trace224 storage self, uint32 key) internal view returns (uint224) {
|
|
uint256 len = self._checkpoints.length;
|
|
uint256 pos = _lowerBinaryLookup(self._checkpoints, key, 0, len);
|
|
return pos == len ? 0 : _unsafeAccess(self._checkpoints, pos)._value;
|
|
}
|
|
|
|
/**
|
|
* @dev Returns the value in the most recent checkpoint with key lower or equal than the search key.
|
|
*/
|
|
function upperLookup(Trace224 storage self, uint32 key) internal view returns (uint224) {
|
|
uint256 len = self._checkpoints.length;
|
|
uint256 pos = _upperBinaryLookup(self._checkpoints, key, 0, len);
|
|
return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;
|
|
}
|
|
|
|
/**
|
|
* @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints.
|
|
*/
|
|
function latest(Trace224 storage self) internal view returns (uint224) {
|
|
uint256 pos = self._checkpoints.length;
|
|
return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;
|
|
}
|
|
|
|
/**
|
|
* @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value
|
|
* in the most recent checkpoint.
|
|
*/
|
|
function latestCheckpoint(Trace224 storage self) internal view returns (bool exists, uint32 _key, uint224 _value) {
|
|
uint256 pos = self._checkpoints.length;
|
|
if (pos == 0) {
|
|
return (false, 0, 0);
|
|
} else {
|
|
Checkpoint224 memory ckpt = _unsafeAccess(self._checkpoints, pos - 1);
|
|
return (true, ckpt._key, ckpt._value);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dev Returns the number of checkpoint.
|
|
*/
|
|
function length(Trace224 storage self) internal view returns (uint256) {
|
|
return self._checkpoints.length;
|
|
}
|
|
|
|
/**
|
|
* @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint,
|
|
* or by updating the last one.
|
|
*/
|
|
function _insert(Checkpoint224[] storage self, uint32 key, uint224 value) private returns (uint224, uint224) {
|
|
uint256 pos = self.length;
|
|
|
|
if (pos > 0) {
|
|
// Copying to memory is important here.
|
|
Checkpoint224 memory last = _unsafeAccess(self, pos - 1);
|
|
|
|
// Checkpoint keys must be non-decreasing.
|
|
require(last._key <= key, "Checkpoint: decreasing keys");
|
|
|
|
// Update or push new checkpoint
|
|
if (last._key == key) {
|
|
_unsafeAccess(self, pos - 1)._value = value;
|
|
} else {
|
|
self.push(Checkpoint224({_key: key, _value: value}));
|
|
}
|
|
return (last._value, value);
|
|
} else {
|
|
self.push(Checkpoint224({_key: key, _value: value}));
|
|
return (0, value);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dev Return the index of the oldest checkpoint whose key is greater than the search key, or `high` if there is none.
|
|
* `low` and `high` define a section where to do the search, with inclusive `low` and exclusive `high`.
|
|
*
|
|
* WARNING: `high` should not be greater than the array's length.
|
|
*/
|
|
function _upperBinaryLookup(
|
|
Checkpoint224[] storage self,
|
|
uint32 key,
|
|
uint256 low,
|
|
uint256 high
|
|
) private view returns (uint256) {
|
|
while (low < high) {
|
|
uint256 mid = Math.average(low, high);
|
|
if (_unsafeAccess(self, mid)._key > key) {
|
|
high = mid;
|
|
} else {
|
|
low = mid + 1;
|
|
}
|
|
}
|
|
return high;
|
|
}
|
|
|
|
/**
|
|
* @dev Return the index of the oldest checkpoint whose key is greater or equal than the search key, or `high` if there is none.
|
|
* `low` and `high` define a section where to do the search, with inclusive `low` and exclusive `high`.
|
|
*
|
|
* WARNING: `high` should not be greater than the array's length.
|
|
*/
|
|
function _lowerBinaryLookup(
|
|
Checkpoint224[] storage self,
|
|
uint32 key,
|
|
uint256 low,
|
|
uint256 high
|
|
) private view returns (uint256) {
|
|
while (low < high) {
|
|
uint256 mid = Math.average(low, high);
|
|
if (_unsafeAccess(self, mid)._key < key) {
|
|
low = mid + 1;
|
|
} else {
|
|
high = mid;
|
|
}
|
|
}
|
|
return high;
|
|
}
|
|
|
|
/**
|
|
* @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds.
|
|
*/
|
|
function _unsafeAccess(
|
|
Checkpoint224[] storage self,
|
|
uint256 pos
|
|
) private pure returns (Checkpoint224 storage result) {
|
|
assembly {
|
|
mstore(0, self.slot)
|
|
result.slot := add(keccak256(0, 0x20), pos)
|
|
}
|
|
}
|
|
|
|
struct Trace160 {
|
|
Checkpoint160[] _checkpoints;
|
|
}
|
|
|
|
struct Checkpoint160 {
|
|
uint96 _key;
|
|
uint160 _value;
|
|
}
|
|
|
|
/**
|
|
* @dev Pushes a (`key`, `value`) pair into a Trace160 so that it is stored as the checkpoint.
|
|
*
|
|
* Returns previous value and new value.
|
|
*/
|
|
function push(Trace160 storage self, uint96 key, uint160 value) internal returns (uint160, uint160) {
|
|
return _insert(self._checkpoints, key, value);
|
|
}
|
|
|
|
/**
|
|
* @dev Returns the value in the oldest checkpoint with key greater or equal than the search key, or zero if there is none.
|
|
*/
|
|
function lowerLookup(Trace160 storage self, uint96 key) internal view returns (uint160) {
|
|
uint256 len = self._checkpoints.length;
|
|
uint256 pos = _lowerBinaryLookup(self._checkpoints, key, 0, len);
|
|
return pos == len ? 0 : _unsafeAccess(self._checkpoints, pos)._value;
|
|
}
|
|
|
|
/**
|
|
* @dev Returns the value in the most recent checkpoint with key lower or equal than the search key.
|
|
*/
|
|
function upperLookup(Trace160 storage self, uint96 key) internal view returns (uint160) {
|
|
uint256 len = self._checkpoints.length;
|
|
uint256 pos = _upperBinaryLookup(self._checkpoints, key, 0, len);
|
|
return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;
|
|
}
|
|
|
|
/**
|
|
* @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints.
|
|
*/
|
|
function latest(Trace160 storage self) internal view returns (uint160) {
|
|
uint256 pos = self._checkpoints.length;
|
|
return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;
|
|
}
|
|
|
|
/**
|
|
* @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value
|
|
* in the most recent checkpoint.
|
|
*/
|
|
function latestCheckpoint(Trace160 storage self) internal view returns (bool exists, uint96 _key, uint160 _value) {
|
|
uint256 pos = self._checkpoints.length;
|
|
if (pos == 0) {
|
|
return (false, 0, 0);
|
|
} else {
|
|
Checkpoint160 memory ckpt = _unsafeAccess(self._checkpoints, pos - 1);
|
|
return (true, ckpt._key, ckpt._value);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dev Returns the number of checkpoint.
|
|
*/
|
|
function length(Trace160 storage self) internal view returns (uint256) {
|
|
return self._checkpoints.length;
|
|
}
|
|
|
|
/**
|
|
* @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint,
|
|
* or by updating the last one.
|
|
*/
|
|
function _insert(Checkpoint160[] storage self, uint96 key, uint160 value) private returns (uint160, uint160) {
|
|
uint256 pos = self.length;
|
|
|
|
if (pos > 0) {
|
|
// Copying to memory is important here.
|
|
Checkpoint160 memory last = _unsafeAccess(self, pos - 1);
|
|
|
|
// Checkpoint keys must be non-decreasing.
|
|
require(last._key <= key, "Checkpoint: decreasing keys");
|
|
|
|
// Update or push new checkpoint
|
|
if (last._key == key) {
|
|
_unsafeAccess(self, pos - 1)._value = value;
|
|
} else {
|
|
self.push(Checkpoint160({_key: key, _value: value}));
|
|
}
|
|
return (last._value, value);
|
|
} else {
|
|
self.push(Checkpoint160({_key: key, _value: value}));
|
|
return (0, value);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dev Return the index of the oldest checkpoint whose key is greater than the search key, or `high` if there is none.
|
|
* `low` and `high` define a section where to do the search, with inclusive `low` and exclusive `high`.
|
|
*
|
|
* WARNING: `high` should not be greater than the array's length.
|
|
*/
|
|
function _upperBinaryLookup(
|
|
Checkpoint160[] storage self,
|
|
uint96 key,
|
|
uint256 low,
|
|
uint256 high
|
|
) private view returns (uint256) {
|
|
while (low < high) {
|
|
uint256 mid = Math.average(low, high);
|
|
if (_unsafeAccess(self, mid)._key > key) {
|
|
high = mid;
|
|
} else {
|
|
low = mid + 1;
|
|
}
|
|
}
|
|
return high;
|
|
}
|
|
|
|
/**
|
|
* @dev Return the index of the oldest checkpoint whose key is greater or equal than the search key, or `high` if there is none.
|
|
* `low` and `high` define a section where to do the search, with inclusive `low` and exclusive `high`.
|
|
*
|
|
* WARNING: `high` should not be greater than the array's length.
|
|
*/
|
|
function _lowerBinaryLookup(
|
|
Checkpoint160[] storage self,
|
|
uint96 key,
|
|
uint256 low,
|
|
uint256 high
|
|
) private view returns (uint256) {
|
|
while (low < high) {
|
|
uint256 mid = Math.average(low, high);
|
|
if (_unsafeAccess(self, mid)._key < key) {
|
|
low = mid + 1;
|
|
} else {
|
|
high = mid;
|
|
}
|
|
}
|
|
return high;
|
|
}
|
|
|
|
/**
|
|
* @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds.
|
|
*/
|
|
function _unsafeAccess(
|
|
Checkpoint160[] storage self,
|
|
uint256 pos
|
|
) private pure returns (Checkpoint160 storage result) {
|
|
assembly {
|
|
mstore(0, self.slot)
|
|
result.slot := add(keccak256(0, 0x20), pos)
|
|
}
|
|
}
|
|
}
|