package server import ( "encoding/json" "io" "os" "path/filepath" abci "github.com/tendermint/tendermint/abci/types" "github.com/tendermint/tendermint/libs/log" tmtypes "github.com/tendermint/tendermint/types" dbm "github.com/tendermint/tm-db" "github.com/cosmos/cosmos-sdk/server/api" sdk "github.com/cosmos/cosmos-sdk/types" ) type ( // AppOptions defines an interface that is passed into an application // constructor, typically used to set BaseApp options that are either supplied // via config file or through CLI arguments/flags. The underlying implementation // is defined by the server package and is typically implemented via a Viper // literal defined on the server Context. Note, casting Get calls may not yield // the expected types and could result in type assertion errors. It is recommend // to either use the cast package or perform manual conversion for safety. AppOptions interface { Get(string) interface{} } // Application defines an application interface that wraps abci.Application. // The interface defines the necessary contracts to be implemented in order // to fully bootstrap and start an application. Application interface { abci.Application RegisterAPIRoutes(*api.Server) } // AppCreator is a function that allows us to lazily initialize an // application using various configurations. AppCreator func(log.Logger, dbm.DB, io.Writer, AppOptions) Application // AppExporter is a function that dumps all app state to // JSON-serializable structure and returns the current validator set. AppExporter func(log.Logger, dbm.DB, io.Writer, int64, bool, []string) (json.RawMessage, []tmtypes.GenesisValidator, *abci.ConsensusParams, error) ) func openDB(rootDir string) (dbm.DB, error) { dataDir := filepath.Join(rootDir, "data") db, err := sdk.NewLevelDB("application", dataDir) return db, err } func openTraceWriter(traceWriterFile string) (w io.Writer, err error) { if traceWriterFile != "" { w, err = os.OpenFile( traceWriterFile, os.O_WRONLY|os.O_APPEND|os.O_CREATE, 0666, ) return } return }