Skip to content

Commit

Permalink
External transaction fetcher for mempool
Browse files Browse the repository at this point in the history
The SimpleMempool gets a new (function-type) parameter.
It can be set to a function that returns a list of transactions,
in which case the mempool will use this function
to obtain transactions externally.

Signed-off-by: Matej Pavlovic <matopavlovic@gmail.com>
  • Loading branch information
matejpavlovic committed Mar 17, 2023
1 parent 5e984f8 commit 95e97d3
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 3 deletions.
7 changes: 7 additions & 0 deletions pkg/mempool/simplemempool/internal/common/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ type ModuleConfig struct {
// All replicas are expected to use identical module parameters.
type ModuleParams struct {
MaxTransactionsInBatch int

// If this parameter is not nil, the mempool will not receive transactions directly (through NewRequests) events.
// On reception of such an event, it will report an error (making the system crash).
// Instead, TxFetcher will be called to pull transactions from an external source
// when they are needed to form a batch (upon the RequestBatch event).
// Looking up transactions by ID will also always fail (return no transactions).
TxFetcher func() []*requestpbtypes.Request
}

// State represents the common state accessible to all parts of the module implementation.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
package formbatchesext

import (
"github.com/filecoin-project/mir/pkg/dsl"
"github.com/filecoin-project/mir/pkg/mempool/simplemempool/internal/common"
mpdsl "github.com/filecoin-project/mir/pkg/pb/mempoolpb/dsl"
mppbtypes "github.com/filecoin-project/mir/pkg/pb/mempoolpb/types"
requestpbtypes "github.com/filecoin-project/mir/pkg/pb/requestpb/types"
t "github.com/filecoin-project/mir/pkg/types"
)

// IncludeBatchCreation registers event handlers for processing NewRequests and RequestBatch events.
func IncludeBatchCreation(
m dsl.Module,
mc *common.ModuleConfig,
fetchTransactions func() []*requestpbtypes.Request,
) {

mpdsl.UponTransactionIDsResponse(m, func(txIDs []t.TxID, context *requestTxIDsContext) error {
mpdsl.NewBatch(m, context.origin.Module, txIDs, context.txs, context.origin)
return nil
})

mpdsl.UponRequestBatch(m, func(origin *mppbtypes.RequestBatchOrigin) error {
txs := fetchTransactions()
mpdsl.RequestTransactionIDs(m, mc.Self, txs, &requestTxIDsContext{
txs: txs,
origin: origin,
})
return nil
})
}

// Context data structures

type requestTxIDsContext struct {
txs []*requestpbtypes.Request
origin *mppbtypes.RequestBatchOrigin
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package formbatches
package formbatchesint

import (
"github.com/filecoin-project/mir/pkg/dsl"
Expand Down
11 changes: 9 additions & 2 deletions pkg/mempool/simplemempool/simplemempool.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import (
"github.com/filecoin-project/mir/pkg/dsl"
"github.com/filecoin-project/mir/pkg/mempool/simplemempool/internal/common"
"github.com/filecoin-project/mir/pkg/mempool/simplemempool/internal/parts/computeids"
"github.com/filecoin-project/mir/pkg/mempool/simplemempool/internal/parts/formbatches"
"github.com/filecoin-project/mir/pkg/mempool/simplemempool/internal/parts/formbatchesext"
"github.com/filecoin-project/mir/pkg/mempool/simplemempool/internal/parts/formbatchesint"
"github.com/filecoin-project/mir/pkg/mempool/simplemempool/internal/parts/lookuptxs"
"github.com/filecoin-project/mir/pkg/modules"
requestpbtypes "github.com/filecoin-project/mir/pkg/pb/requestpb/types"
Expand All @@ -28,6 +29,7 @@ func DefaultModuleConfig() *ModuleConfig {
func DefaultModuleParams() *ModuleParams {
return &ModuleParams{
MaxTransactionsInBatch: 10,
TxFetcher: nil,
}
}

Expand All @@ -46,8 +48,13 @@ func NewModule(mc *ModuleConfig, params *ModuleParams) modules.Module {
}

computeids.IncludeComputationOfTransactionAndBatchIDs(m, mc, params, commonState)
formbatches.IncludeBatchCreation(m, mc, params, commonState)
lookuptxs.IncludeTransactionLookupByID(m, mc, params, commonState)

if params.TxFetcher != nil {
formbatchesext.IncludeBatchCreation(m, mc, params.TxFetcher)
} else {
formbatchesint.IncludeBatchCreation(m, mc, params, commonState)
}

return m
}

0 comments on commit 95e97d3

Please sign in to comment.