ouroboros-consensus-0.1.0.1: Consensus layer for the Ouroboros blockchain protocol
Safe Haskell None
Language Haskell2010

Ouroboros.Consensus.Block.NestedContent

Synopsis

Block contents

class ( forall a. Show ( NestedCtxt_ blk f a), SameDepIndex ( NestedCtxt_ blk f)) => HasNestedContent f blk where Source #

Nested content inside a block

Consider a simplified version of the hard fork combinator, defining

type HardFork a b = Either a b

Then encoding Hardfork ByronBlock ShelleyBlock is easy, in the same way that we encode any Either . The header of such a block will have type

HardFork (Header ByronBlock) (Header ShelleyBlock)

and encoding those (for example, to send them across the network) is similarly trivial. But now suppose we want to read a header from disk. We do not store headers directly, but instead store the blocks. The DB will know the offset and length (both in bytes) of the header inside the block, but how do we decode such a header? If it's a Byron block, we should use the decoder for Header ByronBlock , and similarly for Shelley, but how should we express this more generally?

Here is where HasNestedContent comes in. Continuing the example, we can unnest a Header (HardFork ByronBlock ShelleyBlock) into a pair of values, where the first value (a NestedCtxt ) tells us what type of block we have, and the second value gives us the actual header. So, if the first value says "this is a Byron block", the second value is a Header ByronBlock , and vice versa. In other words, this is a dependent pair.

This then solves the serialisation problem: we expect a dependent decoder which, given a NestedCtxt identifying the block type, decodes the raw bytes from the block into the type indicated by that NestedCtxt .

TODO: We could perhaps define this independent of blocks in DepPair .

Minimal complete definition

Nothing

data family NestedCtxt_ blk :: ( Type -> Type ) -> Type -> Type Source #

Context identifying what kind of block we have

In almost all places we will use NestedCtxt rather than NestedCtxt_ .

Instances

Instances details
SameDepIndex ( NestedCtxt_ m f) => SameDepIndex ( NestedCtxt_ ( DualBlock m a) f) Source #
Instance details

Defined in Ouroboros.Consensus.Ledger.Dual

CanHardFork xs => SameDepIndex ( NestedCtxt_ ( HardForkBlock xs) Header ) Source #
Instance details

Defined in Ouroboros.Consensus.HardFork.Combinator.Block

Show ( NestedCtxt_ m f x) => Show ( NestedCtxt_ ( DualBlock m a) f x) Source #
Instance details

Defined in Ouroboros.Consensus.Ledger.Dual

All SingleEraBlock xs => Show ( NestedCtxt_ ( HardForkBlock xs) Header a) Source #
Instance details

Defined in Ouroboros.Consensus.HardFork.Combinator.Block

data NestedCtxt_ ( HardForkBlock xs) a b Source #
Instance details

Defined in Ouroboros.Consensus.HardFork.Combinator.Block

data NestedCtxt_ ( HardForkBlock xs) a b where
newtype NestedCtxt_ ( DualBlock m a) f x Source #
Instance details

Defined in Ouroboros.Consensus.Ledger.Dual

newtype NestedCtxt_ ( DualBlock m a) f x where

Flip type arguments

newtype NestedCtxt f blk a Source #

Version of NestedCtxt_ with the type arguments swapped

NestedCtxt must be indexed on blk : it is the block that determines this type. However, we often want to partially apply the second argument (the functor), leaving the block type not yet defined.

Constructors

NestedCtxt

Instances

Instances details
Isomorphic ( SomeSecond ( NestedCtxt f)) Source #
Instance details

Defined in Ouroboros.Consensus.HardFork.Combinator.Embed.Unary

SerialiseHFC xs => DecodeDiskDep ( NestedCtxt Header ) ( HardForkBlock xs) Source #
Instance details

Defined in Ouroboros.Consensus.HardFork.Combinator.Serialisation.SerialiseDisk

SerialiseHFC xs => DecodeDiskDepIx ( NestedCtxt Header ) ( HardForkBlock xs) Source #
Instance details

Defined in Ouroboros.Consensus.HardFork.Combinator.Serialisation.SerialiseDisk

SerialiseHFC xs => EncodeDiskDep ( NestedCtxt Header ) ( HardForkBlock xs) Source #
Instance details

Defined in Ouroboros.Consensus.HardFork.Combinator.Serialisation.SerialiseDisk

SerialiseHFC xs => EncodeDiskDepIx ( NestedCtxt Header ) ( HardForkBlock xs) Source #
Instance details

Defined in Ouroboros.Consensus.HardFork.Combinator.Serialisation.SerialiseDisk

EncodeDiskDep ( NestedCtxt Header ) m => EncodeDiskDep ( NestedCtxt Header ) ( DualBlock m a) Source #
Instance details

Defined in Ouroboros.Consensus.Ledger.Dual

EncodeDiskDepIx ( NestedCtxt Header ) m => EncodeDiskDepIx ( NestedCtxt Header ) ( DualBlock m a) Source #
Instance details

Defined in Ouroboros.Consensus.Ledger.Dual

SameDepIndex ( NestedCtxt_ blk f) => Eq ( SomeSecond ( NestedCtxt f) blk) Source #
Instance details

Defined in Ouroboros.Consensus.Block.NestedContent

HasNestedContent f blk => Show ( SomeSecond ( NestedCtxt f) blk) Source #
Instance details

Defined in Ouroboros.Consensus.Block.NestedContent

( HasNestedContent f blk, forall a. Show (g a)) => Show ( GenDepPair g ( NestedCtxt f blk)) Source #
Instance details

Defined in Ouroboros.Consensus.Block.NestedContent

( Typeable f, Typeable blk) => NoThunks ( SomeSecond ( NestedCtxt f) blk) Source #

We can write a manual instance using the following quantified constraint:

forall a. NoThunks (f blk a)

However, this constraint would have to be propagated all the way up, which is rather verbose and annoying (standalone deriving has to be used), hence we use InspectHeap for convenience.

Instance details

Defined in Ouroboros.Consensus.Block.NestedContent

TrivialDependency ( NestedCtxt_ blk f) => TrivialDependency ( NestedCtxt f blk) Source #
Instance details

Defined in Ouroboros.Consensus.Block.NestedContent

Associated Types

type TrivialIndex ( NestedCtxt f blk) Source #

SameDepIndex ( NestedCtxt_ blk f) => SameDepIndex ( NestedCtxt f blk) Source #
Instance details

Defined in Ouroboros.Consensus.Block.NestedContent

Show ( NestedCtxt_ blk f a) => Show ( NestedCtxt f blk a) Source #
Instance details

Defined in Ouroboros.Consensus.Block.NestedContent

type TrivialIndex ( NestedCtxt f blk) Source #
Instance details

Defined in Ouroboros.Consensus.Block.NestedContent

Existentials

Convenience re-exports

data SomeSecond (f :: Type -> Type -> Type ) a where Source #

Hide the second type argument of some functor

SomeSecond f a is isomorphic to Some (f a) , but is more convenient in partial applications.

Constructors

SomeSecond :: !(f a b) -> SomeSecond f a

Instances

Instances details
Isomorphic ( SomeSecond ( NestedCtxt f)) Source #
Instance details

Defined in Ouroboros.Consensus.HardFork.Combinator.Embed.Unary

Inject ( SomeSecond BlockQuery ) Source #
Instance details

Defined in Ouroboros.Consensus.HardFork.Combinator.Embed.Nary

SerialiseHFC xs => SerialiseNodeToClient ( HardForkBlock xs) ( SomeSecond BlockQuery ( HardForkBlock xs)) Source #
Instance details

Defined in Ouroboros.Consensus.HardFork.Combinator.Serialisation.SerialiseNodeToClient

SameDepIndex ( NestedCtxt_ blk f) => Eq ( SomeSecond ( NestedCtxt f) blk) Source #
Instance details

Defined in Ouroboros.Consensus.Block.NestedContent

SameDepIndex ( BlockQuery blk) => Eq ( SomeSecond BlockQuery blk) Source #
Instance details

Defined in Ouroboros.Consensus.Ledger.Query

Eq ( SomeSecond BlockQuery blk) => Eq ( SomeSecond Query blk) Source #
Instance details

Defined in Ouroboros.Consensus.Ledger.Query

HasNestedContent f blk => Show ( SomeSecond ( NestedCtxt f) blk) Source #
Instance details

Defined in Ouroboros.Consensus.Block.NestedContent

( forall result. Show ( BlockQuery blk result)) => Show ( SomeSecond BlockQuery blk) Source #
Instance details

Defined in Ouroboros.Consensus.Ledger.Query

Show ( SomeSecond BlockQuery blk) => Show ( SomeSecond Query blk) Source #
Instance details

Defined in Ouroboros.Consensus.Ledger.Query

( Typeable f, Typeable blk) => NoThunks ( SomeSecond ( NestedCtxt f) blk) Source #

We can write a manual instance using the following quantified constraint:

forall a. NoThunks (f blk a)

However, this constraint would have to be propagated all the way up, which is rather verbose and annoying (standalone deriving has to be used), hence we use InspectHeap for convenience.

Instance details

Defined in Ouroboros.Consensus.Block.NestedContent