Search in sources :

Example 1 with VirtualParent

use of com.radixdlt.application.system.state.VirtualParent in project radixdlt by radixdlt.

the class BerkeleyLedgerEntryStore method executeStateUpdate.

private void executeStateUpdate(com.sleepycat.je.Transaction txn, REStateUpdate stateUpdate) {
    if (stateUpdate.isBootUp()) {
        var buf = stateUpdate.getStateBuf();
        upParticle(txn, buf, stateUpdate.getId());
        // FIXME: Superhack
        if (stateUpdate.getParsed() instanceof TokenResource) {
            var p = (TokenResource) stateUpdate.getParsed();
            var addr = p.addr();
            var buf2 = stateUpdate.getStateBuf();
            var value = new DatabaseEntry(buf2.array(), buf2.position(), buf2.remaining());
            resourceDatabase.putNoOverwrite(txn, new DatabaseEntry(addr.getBytes()), value);
        }
        // TODO: and stateful reads, move this into a separate store at some point.
        if (stateUpdate.getParsed() instanceof VirtualParent) {
            var p = (VirtualParent) stateUpdate.getParsed();
            var typeByte = p.data()[0];
            var mapKey = SystemMapKey.ofSystem(typeByte);
            insertIntoMapDatabaseOrFail(txn, mapKey, stateUpdate.getId());
        } else if (stateUpdate.getParsed() instanceof ResourceData) {
            var p = (ResourceData) stateUpdate.getParsed();
            var mapKey = SystemMapKey.ofResourceData(p.addr(), stateUpdate.typeByte());
            insertIntoMapDatabaseOrFail(txn, mapKey, stateUpdate.getId());
        } else if (stateUpdate.getParsed() instanceof ValidatorData) {
            var p = (ValidatorData) stateUpdate.getParsed();
            var mapKey = SystemMapKey.ofSystem(stateUpdate.typeByte(), p.validatorKey().getCompressedBytes());
            insertIntoMapDatabaseOrFail(txn, mapKey, stateUpdate.getId());
        } else if (stateUpdate.getParsed() instanceof SystemData) {
            var mapKey = SystemMapKey.ofSystem(stateUpdate.typeByte());
            insertIntoMapDatabaseOrFail(txn, mapKey, stateUpdate.getId());
        }
    } else if (stateUpdate.isShutDown()) {
        if (stateUpdate.getId().isVirtual()) {
            downVirtualSubstate(txn, stateUpdate.getId());
        } else {
            downSubstate(txn, stateUpdate.getId());
            if (stateUpdate.getParsed() instanceof ResourceData) {
                var p = (ResourceData) stateUpdate.getParsed();
                var mapKey = SystemMapKey.ofResourceData(p.addr(), stateUpdate.typeByte());
                deleteFromMapDatabaseOrFail(txn, mapKey);
            } else if (stateUpdate.getParsed() instanceof ValidatorData) {
                var p = (ValidatorData) stateUpdate.getParsed();
                var mapKey = SystemMapKey.ofSystem(stateUpdate.typeByte(), p.validatorKey().getCompressedBytes());
                deleteFromMapDatabaseOrFail(txn, mapKey);
            } else if (stateUpdate.getParsed() instanceof SystemData) {
                var mapKey = SystemMapKey.ofSystem(stateUpdate.typeByte());
                deleteFromMapDatabaseOrFail(txn, mapKey);
            }
        }
    } else {
        throw new IllegalStateException("Must bootup or shutdown to update particle: " + stateUpdate);
    }
}
Also used : ResourceData(com.radixdlt.application.tokens.state.ResourceData) ValidatorData(com.radixdlt.application.validators.state.ValidatorData) TokenResource(com.radixdlt.application.tokens.state.TokenResource) SystemData(com.radixdlt.application.system.state.SystemData) DatabaseEntry(com.sleepycat.je.DatabaseEntry) VirtualParent(com.radixdlt.application.system.state.VirtualParent)

Example 2 with VirtualParent

use of com.radixdlt.application.system.state.VirtualParent in project radixdlt by radixdlt.

the class InMemoryEngineStore method transaction.

@Override
public <R> R transaction(TransactionEngineStoreConsumer<M, R> consumer) throws RadixEngineException {
    return consumer.start(new EngineStoreInTransaction<>() {

        @Override
        public void storeTxn(REProcessedTxn txn) {
            synchronized (lock) {
                txn.stateUpdates().forEach(update -> {
                    store.storedState.put(update.getId(), update);
                    // FIXME: Superhack
                    if (update.isBootUp()) {
                        if (update.getParsed() instanceof TokenResource) {
                            var tokenDef = (TokenResource) update.getParsed();
                            store.resources.put(tokenDef.addr(), update::getStateBuf);
                        } else if (update.getParsed() instanceof VirtualParent) {
                            var p = (VirtualParent) update.getParsed();
                            var typeByte = p.data()[0];
                            var mapKey = SystemMapKey.ofSystem(typeByte);
                            store.maps.put(mapKey, update.getRawSubstateBytes());
                        } else if (update.getParsed() instanceof ValidatorData) {
                            var data = (ValidatorData) update.getParsed();
                            var mapKey = SystemMapKey.ofSystem(update.typeByte(), data.validatorKey().getCompressedBytes());
                            store.maps.put(mapKey, update.getRawSubstateBytes());
                        } else if (update.getParsed() instanceof SystemData) {
                            var mapKey = SystemMapKey.ofSystem(update.typeByte());
                            store.maps.put(mapKey, update.getRawSubstateBytes());
                        }
                    } else if (update.isShutDown()) {
                        if (update.getParsed() instanceof ValidatorData) {
                            var data = (ValidatorData) update.getParsed();
                            var mapKey = SystemMapKey.ofSystem(update.typeByte(), data.validatorKey().getCompressedBytes());
                            store.maps.remove(mapKey);
                        } else if (update.getParsed() instanceof SystemData) {
                            var mapKey = SystemMapKey.ofSystem(update.typeByte());
                            store.maps.remove(mapKey);
                        }
                    }
                });
            }
        }

        @Override
        public void storeMetadata(M metadata) {
            store.metadata = metadata;
        }

        @Override
        public ByteBuffer verifyVirtualSubstate(SubstateId substateId) throws VirtualSubstateAlreadyDownException, VirtualParentStateDoesNotExist {
            synchronized (lock) {
                var parent = substateId.getVirtualParent().orElseThrow();
                var update = store.storedState.get(parent);
                if (update == null || !(update.getParsed() instanceof VirtualParent)) {
                    throw new VirtualParentStateDoesNotExist(parent);
                }
                var inst = store.storedState.get(substateId);
                if (inst != null && inst.isShutDown()) {
                    throw new VirtualSubstateAlreadyDownException(substateId);
                }
                return update.getStateBuf();
            }
        }

        @Override
        public Optional<ByteBuffer> loadSubstate(SubstateId substateId) {
            synchronized (lock) {
                var inst = store.storedState.get(substateId);
                if (inst == null || !inst.isBootUp()) {
                    return Optional.empty();
                }
                return Optional.of(inst.getStateBuf());
            }
        }

        @Override
        public CloseableCursor<RawSubstateBytes> openIndexedCursor(SubstateIndex<?> index) {
            return InMemoryEngineStore.this.openIndexedCursor(index);
        }

        @Override
        public Optional<ByteBuffer> loadResource(REAddr addr) {
            synchronized (lock) {
                var supplier = store.resources.get(addr);
                return supplier == null ? Optional.empty() : Optional.of(supplier.get());
            }
        }
    });
}
Also used : SubstateId(com.radixdlt.atom.SubstateId) REStateUpdate(com.radixdlt.constraintmachine.REStateUpdate) RadixEngineException(com.radixdlt.engine.RadixEngineException) Inject(com.google.inject.Inject) HashMap(java.util.HashMap) Supplier(java.util.function.Supplier) ByteBuffer(java.nio.ByteBuffer) RawSubstateBytes(com.radixdlt.constraintmachine.RawSubstateBytes) ArrayList(java.util.ArrayList) Map(java.util.Map) SystemMapKey(com.radixdlt.constraintmachine.SystemMapKey) REProcessedTxn(com.radixdlt.constraintmachine.REProcessedTxn) UnsignedBytes(com.google.common.primitives.UnsignedBytes) SubstateIndex(com.radixdlt.constraintmachine.SubstateIndex) TokenResource(com.radixdlt.application.tokens.state.TokenResource) REAddr(com.radixdlt.identifiers.REAddr) ValidatorData(com.radixdlt.application.validators.state.ValidatorData) VirtualParent(com.radixdlt.application.system.state.VirtualParent) VirtualSubstateAlreadyDownException(com.radixdlt.constraintmachine.exceptions.VirtualSubstateAlreadyDownException) List(java.util.List) CloseableCursor(com.radixdlt.atom.CloseableCursor) VirtualParentStateDoesNotExist(com.radixdlt.constraintmachine.exceptions.VirtualParentStateDoesNotExist) Optional(java.util.Optional) Comparator(java.util.Comparator) SystemData(com.radixdlt.application.system.state.SystemData) ValidatorData(com.radixdlt.application.validators.state.ValidatorData) CloseableCursor(com.radixdlt.atom.CloseableCursor) TokenResource(com.radixdlt.application.tokens.state.TokenResource) Optional(java.util.Optional) SystemData(com.radixdlt.application.system.state.SystemData) REProcessedTxn(com.radixdlt.constraintmachine.REProcessedTxn) ByteBuffer(java.nio.ByteBuffer) VirtualParentStateDoesNotExist(com.radixdlt.constraintmachine.exceptions.VirtualParentStateDoesNotExist) SubstateId(com.radixdlt.atom.SubstateId) VirtualSubstateAlreadyDownException(com.radixdlt.constraintmachine.exceptions.VirtualSubstateAlreadyDownException) VirtualParent(com.radixdlt.application.system.state.VirtualParent) REAddr(com.radixdlt.identifiers.REAddr)

Example 3 with VirtualParent

use of com.radixdlt.application.system.state.VirtualParent in project radixdlt by radixdlt.

the class CreateSystemConstructorV2 method construct.

@Override
public void construct(CreateSystem action, TxBuilder builder) throws TxBuilderException {
    builder.up(new VirtualParent(new byte[] { SubstateTypeId.UNCLAIMED_READDR.id() }));
    builder.end();
    builder.toLowLevelBuilder().syscall(Syscall.READDR_CLAIM, "sys".getBytes(StandardCharsets.UTF_8));
    builder.downREAddr(REAddr.ofSystem());
    builder.up(new EpochData(0));
    builder.up(new RoundData(0, action.timestamp()));
    builder.up(new VirtualParent(new byte[] { SubstateTypeId.VALIDATOR_META_DATA.id() }));
    builder.up(new VirtualParent(new byte[] { SubstateTypeId.VALIDATOR_STAKE_DATA.id() }));
    builder.up(new VirtualParent(new byte[] { SubstateTypeId.VALIDATOR_ALLOW_DELEGATION_FLAG.id() }));
    builder.up(new VirtualParent(new byte[] { SubstateTypeId.VALIDATOR_REGISTERED_FLAG_COPY.id() }));
    builder.up(new VirtualParent(new byte[] { SubstateTypeId.VALIDATOR_RAKE_COPY.id() }));
    builder.up(new VirtualParent(new byte[] { SubstateTypeId.VALIDATOR_OWNER_COPY.id() }));
    builder.up(new VirtualParent(new byte[] { SubstateTypeId.VALIDATOR_SYSTEM_META_DATA.id() }));
    builder.end();
}
Also used : EpochData(com.radixdlt.application.system.state.EpochData) RoundData(com.radixdlt.application.system.state.RoundData) VirtualParent(com.radixdlt.application.system.state.VirtualParent)

Aggregations

VirtualParent (com.radixdlt.application.system.state.VirtualParent)3 SystemData (com.radixdlt.application.system.state.SystemData)2 TokenResource (com.radixdlt.application.tokens.state.TokenResource)2 ValidatorData (com.radixdlt.application.validators.state.ValidatorData)2 UnsignedBytes (com.google.common.primitives.UnsignedBytes)1 Inject (com.google.inject.Inject)1 EpochData (com.radixdlt.application.system.state.EpochData)1 RoundData (com.radixdlt.application.system.state.RoundData)1 ResourceData (com.radixdlt.application.tokens.state.ResourceData)1 CloseableCursor (com.radixdlt.atom.CloseableCursor)1 SubstateId (com.radixdlt.atom.SubstateId)1 REProcessedTxn (com.radixdlt.constraintmachine.REProcessedTxn)1 REStateUpdate (com.radixdlt.constraintmachine.REStateUpdate)1 RawSubstateBytes (com.radixdlt.constraintmachine.RawSubstateBytes)1 SubstateIndex (com.radixdlt.constraintmachine.SubstateIndex)1 SystemMapKey (com.radixdlt.constraintmachine.SystemMapKey)1 VirtualParentStateDoesNotExist (com.radixdlt.constraintmachine.exceptions.VirtualParentStateDoesNotExist)1 VirtualSubstateAlreadyDownException (com.radixdlt.constraintmachine.exceptions.VirtualSubstateAlreadyDownException)1 RadixEngineException (com.radixdlt.engine.RadixEngineException)1 REAddr (com.radixdlt.identifiers.REAddr)1