mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-11 04:00:05 +00:00
346b9ae8aa
sharding: random transaction generator Former-commit-id: b41891c474372ab54cbf1e3fa34dc7399f42c6d4 [formerly 69b7da173694490fa44748fe3cb3b2aa84f36b46] Former-commit-id: b642be5e1b7b4aad59011983bacda4a9b1166463
57 lines
1.3 KiB
Go
57 lines
1.3 KiB
Go
// Package database provides several constructs including a simple in-memory database.
|
|
// This should not be used for production, but would be a helpful interim
|
|
// solution for development.
|
|
package database
|
|
|
|
import (
|
|
"fmt"
|
|
"path/filepath"
|
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
|
"github.com/ethereum/go-ethereum/log"
|
|
)
|
|
|
|
type ShardDB struct {
|
|
dataDir string
|
|
name string
|
|
cache int
|
|
handles int
|
|
db *ethdb.LDBDatabase
|
|
}
|
|
|
|
// NewShardDB initializes a shardDB.
|
|
func NewShardDB(dataDir string, name string) (*ShardDB, error) {
|
|
// Uses default cache and handles values.
|
|
// TODO: allow these arguments to be set based on cli context.
|
|
return &ShardDB{
|
|
dataDir: dataDir,
|
|
name: name,
|
|
cache: 16,
|
|
handles: 16,
|
|
db: nil,
|
|
}, nil
|
|
}
|
|
|
|
// Start the shard DB service.
|
|
func (s *ShardDB) Start() {
|
|
log.Info("Starting shardDB service")
|
|
db, err := ethdb.NewLDBDatabase(filepath.Join(s.dataDir, s.name), s.cache, s.handles)
|
|
if err != nil {
|
|
log.Error(fmt.Sprintf("Could not start shard DB: %v", err))
|
|
return
|
|
}
|
|
s.db = db
|
|
}
|
|
|
|
// Stop the shard DB service gracefully.
|
|
func (s *ShardDB) Stop() error {
|
|
log.Info("Stopping shardDB service")
|
|
s.db.Close()
|
|
return nil
|
|
}
|
|
|
|
// DB returns the attached ethdb instance.
|
|
func (s *ShardDB) DB() ethdb.Database {
|
|
return s.db
|
|
}
|