ouroboros-network-framework
Safe HaskellNone
LanguageHaskell2010

Ouroboros.Network.Server.ConnectionTable

Synopsis

Documentation

data ConnectionTable (m :: Type -> Type) addr Source #

data ConnectionTableRef Source #

Constructors

ConnectionTableCreate

No connection to peer exists, attempt to create one.

ConnectionTableExist

A connection to the peer existed, either from another subscriber or the peer opened one towards us.

ConnectionTableDuplicate

This subscriber already has counted a connection to this peer. It must try another target.

data ValencyCounter (m :: Type -> Type) Source #

ValencyCounter represents how many active connections we have towards a given peer. It starts out with a positive value representing a desired number of connections for a specific subscription worker. It can become negative, for example if a peer opens multiple connections to us. The vcId is unique per ConnectionTable and ensures that we won't count the same connection twice.

newConnectionTableSTM :: forall (m :: Type -> Type) addr. MonadSTM m => STM m (ConnectionTable m addr) Source #

Create a new ConnectionTable.

refConnectionSTM :: forall (m :: Type -> Type) addr. (MonadSTM m, Ord addr) => ConnectionTable m addr -> addr -> ConnectionDirection -> ValencyCounter m -> STM m ConnectionTableRef Source #

Try to see if it is possible to reference an existing connection rather than creating a new one to the provied peer.

addConnection Source #

Arguments

:: forall (m :: Type -> Type) addr. (MonadSTM m, Ord addr) 
=> ConnectionTable m addr 
-> addr 
-> addr 
-> ConnectionDirection 
-> Maybe (ValencyCounter m)

Optional ValencyCounter, used by subscription worker and set to Nothing when called by a local server.

-> STM m () 

Insert a new connection into the ConnectionTable.

removeConnectionSTM :: forall (m :: Type -> Type) addr. (MonadSTM m, Ord addr) => ConnectionTable m addr -> addr -> addr -> ConnectionDirection -> STM m () Source #

Remove a Connection.

removeConnection :: (MonadSTM m, Ord addr) => ConnectionTable m addr -> addr -> addr -> ConnectionDirection -> m () Source #

newValencyCounter Source #

Arguments

:: forall (m :: Type -> Type) addr. MonadSTM m 
=> ConnectionTable m addr 
-> Int

Desired valency, that is number of connections a subscription worker will attempt to maintain.

-> STM m (ValencyCounter m) 

Create a new ValencyCounter

addValencyCounter :: forall (m :: Type -> Type). MonadSTM m => ValencyCounter m -> STM m () Source #

Add a connection.

remValencyCounter :: forall (m :: Type -> Type). MonadSTM m => ValencyCounter m -> STM m () Source #

Remove a connection.

waitValencyCounter :: forall (m :: Type -> Type). MonadSTM m => ValencyCounter m -> STM m () Source #

Wait until ValencyCounter becomes positive, used for detecting when we can create new connections.

readValencyCounter :: forall (m :: Type -> Type). MonadSTM m => ValencyCounter m -> STM m Int Source #

Returns current ValencyCounter value, represent the number of additional connections that can be created. May be negative.