Package

sigmastate

serialization

Permalink

package serialization

Visibility
  1. Public
  2. All

Type Members

  1. case class ApplySerializer(cons: (Value[SType], IndexedSeq[Value[SType]]) ⇒ Value[SType]) extends ValueSerializer[Apply] with Product with Serializable

    Permalink
  2. case class BlockValueSerializer(cons: (IndexedSeq[BlockItem], Value[SType]) ⇒ Value[SType]) extends ValueSerializer[BlockValue] with Product with Serializable

    Permalink
  3. case class BoolToSigmaPropSerializer(cons: (BoolValue) ⇒ SigmaPropValue) extends ValueSerializer[BoolToSigmaProp] with Product with Serializable

    Permalink
  4. case class CaseObjectSerialization[V <: Value[SType]](opDesc: ValueCompanion, obj: V) extends ValueSerializer[V] with Product with Serializable

    Permalink
  5. case class ConcreteCollectionBooleanConstantSerializer(cons: (IndexedSeq[Value[SBoolean.type]], SBoolean.type) ⇒ Value[SCollection[SBoolean.type]]) extends ValueSerializer[ConcreteCollection[SBoolean.type]] with Product with Serializable

    Permalink
  6. case class ConcreteCollectionSerializer(cons: (IndexedSeq[Value[SType]], SType) ⇒ Value[SCollection[SType]]) extends ValueSerializer[ConcreteCollection[_ <: SType]] with Product with Serializable

    Permalink
  7. case class ConstantPlaceholderSerializer(cons: (Int, SType) ⇒ Value[SType]) extends ValueSerializer[ConstantPlaceholder[SType]] with Product with Serializable

    Permalink
  8. case class ConstantSerializer(builder: SigmaBuilder) extends ValueSerializer[Constant[SType]] with Product with Serializable

    Permalink

    This works in tandem with DataSerializer, if you change one make sure to check the other.

  9. class ConstantStore extends AnyRef

    Permalink

    HOTSPOT: used in deserialization (don't beautify this code)

  10. case class CreateAvlTreeSerializer(cons: (ByteValue, Value[SByteArray], IntValue, Value[SIntOption]) ⇒ AvlTreeValue) extends ValueSerializer[CreateAvlTree] with Product with Serializable

    Permalink
  11. case class CreateProveDlogSerializer(cons: (Value[SGroupElement.type]) ⇒ SigmaPropValue) extends ValueSerializer[CreateProveDlog] with Product with Serializable

    Permalink
  12. class ErgoTreeSerializer extends AnyRef

    Permalink

    Rationale for soft-forkable ErgoTree serialization.

    Rationale for soft-forkable ErgoTree serialization. There are 2 points:

    1) we can make size bit obligatory, i.e. always save total size of script body (in this case we don't need size bit in the header). This will allow to always skip right number of bytes in case of any exception (including ValidationException) thrown during deserialization and produce UnparsedErgoTree. The decision about soft-fork can be done later. But is looks like this is not necessary if we do as described below.

    2) HeaderVersionCheck: we can also strictly check during deserialization the content of the script against version number in the header. Thus if the header have vS, then script is allowed to have instructions from versions from v1 to vS. On a node vN, N > S, this should also be enforced, i.e. vN node will reject scripts as invalid if the script has vS in header and vS+1 instruction in body.

    Keeping this in mind, if we have a vN node and a script with vS in its header then: During script deserialization: 1) if vN >= vS then the node knows all the instructions and should check that only instructions up to vS are used in the script. It either parses successfully or throws MalformedScriptException. If during the process some unknown instruction is encountered (i.e. ValidationException is thrown), this cannot be a soft-fork, because vN >= vS guarantees that all instructions are known, thus the script is malformed.

    2) if vN < vS then the vN node is expecting unknown instructions. If the script is parsed successfully, then vN subset of the language is used and script is accepted for execution else if ValidationException is thrown then UnparsedErgoTree is created, delaying decision about soft-fork until stateful validation. if bodySize is stored then script body is skipped and whole TX deserialization continues. otherwise we cannot skip the body which leads to whole TX to be rejected (CannotSkipScriptException) else if some other exception is thrown then the whole TX is rejected due to said exception.

    In the stateful context: if vN >= vS then we can execute script, but we do additional check if vS > the current version of protocol (vP) then the script is rejected as invalid because its version exceeds the current consensus version of the protocol else the script can be executed if vN < vS then if we have Right(tree) the script is executed if Left(UnparsedErgoTree()) then check soft fork and either execute or throw

    Proposition: CannotSkipScriptException can only happen on < 10% of the nodes, which is safe for consensus. Proof. If follows from the fact that vN >= vS nodes will reject the script until new vP is upgraded to vS, which means the majority has upgraded to at least vS Thus, before vP is upgraded to vS, majority reject (either because they cannot parse, or because vP is not actualized) after that majority accept (however old nodes still reject but they are < 10%) End of proof.

  13. case class FuncValueSerializer(cons: (IndexedSeq[(Int, SType)], Value[SType]) ⇒ Value[SType]) extends ValueSerializer[FuncValue] with Product with Serializable

    Permalink
  14. case class GetVarSerializer(cons: (Byte, SType) ⇒ Value[SOption[SType]]) extends ValueSerializer[GetVar[_ <: SType]] with Product with Serializable

    Permalink
  15. case class LogicalNotSerializer(cons: (BoolValue) ⇒ BoolValue) extends ValueSerializer[LogicalNot] with Product with Serializable

    Permalink
  16. case class MethodCallSerializer(cons: (Value[SType], SMethod, IndexedSeq[Value[SType]], STypeSubst) ⇒ Value[SType]) extends ValueSerializer[MethodCall] with Product with Serializable

    Permalink
  17. case class ModQArithOpSerializer(opDesc: ModQArithOpCompanion, cons: (BigIntValue, BigIntValue) ⇒ BigIntValue) extends ValueSerializer[ModQArithOp] with Product with Serializable

    Permalink
  18. case class OneArgumentOperationSerializer[T <: SType](opDesc: OneArgumentOperationCompanion, cons: (Value[T]) ⇒ SValue) extends ValueSerializer[OneArgumentOperation[T, SType]] with Product with Serializable

    Permalink
  19. case class OptionGetOrElseSerializer(cons: (Value[SOption[SType]], Value[SType]) ⇒ Value[SType]) extends ValueSerializer[OptionGetOrElse[_ <: SType]] with Product with Serializable

    Permalink
  20. case class PropertyCallSerializer(cons: (Value[SType], SMethod, IndexedSeq[Value[SType]], STypeSubst) ⇒ Value[SType]) extends ValueSerializer[MethodCall] with Product with Serializable

    Permalink
  21. case class ProveDlogSerializer(cons: (EcPointType) ⇒ ProveDlog) extends SigmaSerializer[ProveDlog, ProveDlog] with Product with Serializable

    Permalink
  22. case class SelectFieldSerializer(cons: (Value[STuple], Byte) ⇒ Value[SType]) extends ValueSerializer[SelectField] with Product with Serializable

    Permalink
  23. abstract class SigmaSerializer[TFamily, T <: TFamily] extends Serializer[TFamily, T, SigmaByteReader, SigmaByteWriter]

    Permalink
  24. trait SigmaSerializerCompanion[TFamily] extends AnyRef

    Permalink
  25. case class TaggedVariableSerializer(cons: (Byte, SType) ⇒ Value[SType]) extends ValueSerializer[TaggedVariable[_ <: SType]] with Product with Serializable

    Permalink
  26. case class TupleSerializer(cons: (Seq[Value[SType]]) ⇒ Value[SType]) extends ValueSerializer[Tuple] with Product with Serializable

    Permalink
  27. case class TwoArgumentsSerializer[LIV <: SType, RIV <: SType, OV <: Value[SType]](opDesc: TwoArgumentOperationCompanion, constructor: (Value[LIV], Value[RIV]) ⇒ Value[SType]) extends ValueSerializer[OV] with Product with Serializable

    Permalink
  28. trait TypeCodes extends AnyRef

    Permalink

    Encoding of types for serialization.

  29. case class ValDefSerializer(opDesc: ValueCompanion) extends ValueSerializer[ValDef] with Product with Serializable

    Permalink
  30. class ValDefTypeStore extends AnyRef

    Permalink
  31. case class ValUseSerializer(cons: (Int, SType) ⇒ Value[SType]) extends ValueSerializer[ValUse[SType]] with Product with Serializable

    Permalink
  32. trait ValueCodes extends TypeCodes

    Permalink

    Encoding of values for serialization.

  33. abstract class ValueSerializer[V <: Value[SType]] extends SigmaSerializer[Value[SType], V]

    Permalink

Value Members

  1. object DataJsonEncoder

    Permalink
  2. object DataSerializer

    Permalink

    This works in tandem with ConstantSerializer, if you change one make sure to check the other.

  3. object ErgoTreeSerializer

    Permalink
  4. object GroupElementSerializer extends SigmaSerializer[EcPointType, EcPointType]

    Permalink

    A serializer which encodes group elements, so elliptic curve points in our case, to bytes, and decodes points from bytes.

    A serializer which encodes group elements, so elliptic curve points in our case, to bytes, and decodes points from bytes. Every point is encoded in compressed form (so only X coordinate and sign of Y are stored). Thus for secp256k1 point, 33 bytes are needed. The first bytes is whether equals 2 or 3 depending on the sign of Y coordinate(==2 is Y is positive, ==3, if Y is negative). Other 32 bytes are containing the X coordinate. Special case is infinity point, which is encoded by 33 zeroes. Thus elliptic curve point is always encoded with 33 bytes.

  5. object ModQSerializer extends ValueSerializer[ModQ]

    Permalink
  6. object OpCodes extends ValueCodes

    Permalink

    The set of all possible IR graph nodes can be split in two subsets: 1) operations which may appear in ErgoTree (these are defined by OpCodes below) 2) operations which are not valid to be in ErgoTree, but serve special purposes.

    The set of all possible IR graph nodes can be split in two subsets: 1) operations which may appear in ErgoTree (these are defined by OpCodes below) 2) operations which are not valid to be in ErgoTree, but serve special purposes. (these are defined by OpCodesExtra) We can assume they are both Byte-sized codes, and store as a single byte, but as long as we can differentiate them from context (and where we cannot, we should use special encoding).

    The general extended encoding is like the following: 0-255 - range of OpCodes 256-511 - range of OpCodesExtra Thus, any code in an extended code range of 0-511 can be saved using putUShort. We use Byte to represent OpCodes and OpCodesExtra. We use Short to represent any op code from extended code range. And we use VLQ to serialize Short values of extended codes.

    Examples: 1) For validation rule CheckValidOpCode we use OpCodes range, so we use single byte encoding. 2) For CheckCostFuncOperation we use 1-511 range and extended encoding (see docs)

  7. object SigmaPropBytesSerializer extends ValueSerializer[SigmaPropBytes]

    Permalink
  8. object SigmaPropIsProvenSerializer extends ValueSerializer[SigmaPropIsProven]

    Permalink
  9. object SigmaSerializer

    Permalink
  10. object SubstConstantsSerializer extends ValueSerializer[SubstConstants[SType]]

    Permalink
  11. object TypeSerializer

    Permalink

    Serialization of types according to specification in TypeSerialization.md.

  12. object ValueSerializer extends SigmaSerializerCompanion[Value[SType]]

    Permalink
  13. package transformers

    Permalink
  14. package trees

    Permalink

Ungrouped