123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- const format = require('../format-lines');
- const { TYPES } = require('./Slot.opts');
- const header = `\
- pragma solidity ^0.8.24;
- /**
- * @dev Library for reading and writing primitive types to specific storage slots.
- *
- * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
- * This library helps with reading and writing to such slots without the need for inline assembly.
- *
- * The functions in this library return Slot structs that contain a \`value\` member that can be used to read or write.
- *
- * Example usage to set ERC-1967 implementation slot:
- * \`\`\`solidity
- * contract ERC1967 {
- * // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.
- * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
- *
- * function _getImplementation() internal view returns (address) {
- * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
- * }
- *
- * function _setImplementation(address newImplementation) internal {
- * require(newImplementation.code.length > 0);
- * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
- * }
- * }
- * \`\`\`
- *
- * Since version 5.1, this library also support writing and reading value types to and from transient storage.
- *
- * * Example using transient storage:
- * \`\`\`solidity
- * contract Lock {
- * // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.
- * bytes32 internal constant _LOCK_SLOT = 0xf4678858b2b588224636b8522b729e7722d32fc491da849ed75b3fdf3c84f542;
- *
- * modifier locked() {
- * require(!_LOCK_SLOT.asBoolean().tload());
- *
- * _LOCK_SLOT.asBoolean().tstore(true);
- * _;
- * _LOCK_SLOT.asBoolean().tstore(false);
- * }
- * }
- * \`\`\`
- *
- * TIP: Consider using this library along with {SlotDerivation}.
- */
- `;
- const struct = ({ type, name }) => `\
- struct ${name}Slot {
- ${type} value;
- }
- `;
- const get = ({ name }) => `\
- /**
- * @dev Returns ${
- name.toLowerCase().startsWith('a') ? 'an' : 'a'
- } \`${name}Slot\` with member \`value\` located at \`slot\`.
- */
- function get${name}Slot(bytes32 slot) internal pure returns (${name}Slot storage r) {
- assembly ("memory-safe") {
- r.slot := slot
- }
- }
- `;
- const getStorage = ({ type, name }) => `\
- /**
- * @dev Returns an \`${name}Slot\` representation of the ${type} storage pointer \`store\`.
- */
- function get${name}Slot(${type} storage store) internal pure returns (${name}Slot storage r) {
- assembly ("memory-safe") {
- r.slot := store.slot
- }
- }
- `;
- const udvt = ({ type, name }) => `\
- /**
- * @dev UDVT that represent a slot holding a ${type}.
- */
- type ${name}SlotType is bytes32;
- /**
- * @dev Cast an arbitrary slot to a ${name}SlotType.
- */
- function as${name}(bytes32 slot) internal pure returns (${name}SlotType) {
- return ${name}SlotType.wrap(slot);
- }
- `;
- const transient = ({ type, name }) => `\
- /**
- * @dev Load the value held at location \`slot\` in transient storage.
- */
- function tload(${name}SlotType slot) internal view returns (${type} value) {
- assembly ("memory-safe") {
- value := tload(slot)
- }
- }
- /**
- * @dev Store \`value\` at location \`slot\` in transient storage.
- */
- function tstore(${name}SlotType slot, ${type} value) internal {
- assembly ("memory-safe") {
- tstore(slot, value)
- }
- }
- `;
- // GENERATE
- module.exports = format(
- header.trimEnd(),
- 'library StorageSlot {',
- format(
- [].concat(
- TYPES.map(type => struct(type)),
- TYPES.flatMap(type => [get(type), !type.isValueType && getStorage(type)].filter(Boolean)),
- TYPES.filter(type => type.isValueType).map(type => udvt(type)),
- TYPES.filter(type => type.isValueType).map(type => transient(type)),
- ),
- ).trimEnd(),
- '}',
- );
|