erigon-pulse/node/nodecfg/datadir/dirs.go

42 lines
1.1 KiB
Go
Raw Normal View History

package datadir
import (
"path/filepath"
)
2022-06-07 04:54:04 +00:00
// Dirs is the file system folder the node should use for any data storage
// requirements. The configured data directory will not be directly shared with
// registered services, instead those can use utility methods to create/access
// databases or flat files
type Dirs struct {
2022-06-07 05:08:24 +00:00
DataDir string
RelativeDataDir string // like dataDir, but without filepath.Abs() resolution
Chaindata string
Tmp string
Snap string
TxPool string
Nodes string
}
func New(datadir string) Dirs {
2022-06-07 05:08:24 +00:00
relativeDataDir := datadir
2022-06-07 04:54:04 +00:00
if datadir != "" {
2022-06-07 05:08:24 +00:00
var err error
2022-06-07 04:54:04 +00:00
absdatadir, err := filepath.Abs(datadir)
if err != nil {
panic(err)
}
datadir = absdatadir
}
return Dirs{
2022-06-07 05:08:24 +00:00
RelativeDataDir: relativeDataDir,
DataDir: datadir,
Chaindata: filepath.Join(datadir, "chaindata"),
Tmp: filepath.Join(datadir, "etl-temp"),
Snap: filepath.Join(datadir, "snapshots"),
TxPool: filepath.Join(datadir, "txpool"),
Nodes: filepath.Join(datadir, "nodes"),
}
}