cosmos-sdk/server/constructors.go

42 lines
1.1 KiB
Go
Raw Normal View History

2018-04-27 17:36:11 -07:00
package server
import (
"encoding/json"
"io"
"os"
2018-04-27 17:36:11 -07:00
"path/filepath"
abci "github.com/tendermint/tendermint/abci/types"
dbm "github.com/tendermint/tendermint/libs/db"
"github.com/tendermint/tendermint/libs/log"
tmtypes "github.com/tendermint/tendermint/types"
2018-04-27 17:36:11 -07:00
)
type (
// AppCreator is a function that allows us to lazily initialize an
// application using various configurations.
AppCreator func(log.Logger, dbm.DB, io.Writer) abci.Application
2018-04-27 17:36:11 -07:00
// 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) (json.RawMessage, []tmtypes.GenesisValidator, error)
)
func openDB(rootDir string) (dbm.DB, error) {
dataDir := filepath.Join(rootDir, "data")
db, err := dbm.NewGoLevelDB("application", dataDir)
return db, err
2018-04-27 17:36:11 -07:00
}
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
2018-04-27 17:36:11 -07:00
}
return
2018-04-27 17:36:11 -07:00
}