2021-12-30 21:55:21 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2022 Vulcanize
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2021-12-31 18:17:57 +00:00
|
|
|
package leveldb_ethdb_rpc
|
2021-12-30 21:55:21 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
|
|
|
|
ethnode "github.com/ethereum/go-ethereum/node"
|
|
|
|
"github.com/ethereum/go-ethereum/p2p"
|
|
|
|
"github.com/ethereum/go-ethereum/rpc"
|
2021-12-31 18:17:57 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
2021-12-30 21:55:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Server is the top level interface for exposing a remote RPC wrapper around levelDB ethdb.Database
|
|
|
|
type Server interface {
|
|
|
|
ethnode.Lifecycle
|
|
|
|
APIs() []rpc.API
|
|
|
|
Protocols() []p2p.Protocol
|
|
|
|
Serve(wg *sync.WaitGroup)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Service is the underlying struct for the watcher
|
|
|
|
type Service struct {
|
|
|
|
wg *sync.WaitGroup
|
|
|
|
backend *LevelDBBackend
|
|
|
|
quitChan chan struct{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewServer creates a new Server using an underlying Service struct
|
2021-12-31 18:17:57 +00:00
|
|
|
func NewServer(conf *Config) (Server, error) {
|
2021-12-30 21:55:21 +00:00
|
|
|
sap := new(Service)
|
|
|
|
sap.quitChan = make(chan struct{})
|
|
|
|
var err error
|
|
|
|
sap.backend, err = NewLevelDBBackend(conf)
|
|
|
|
return sap, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Protocols exports the services p2p protocols, this service has none
|
|
|
|
func (sap *Service) Protocols() []p2p.Protocol {
|
|
|
|
return []p2p.Protocol{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// APIs returns the RPC descriptors the watcher service offers
|
|
|
|
func (sap *Service) APIs() []rpc.API {
|
|
|
|
return []rpc.API{
|
|
|
|
{
|
|
|
|
Namespace: APIName,
|
|
|
|
Version: APIVersion,
|
|
|
|
Service: NewPublicLevelDBAPI(sap.backend),
|
|
|
|
Public: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Serve is the listening loop
|
|
|
|
func (sap *Service) Serve(wg *sync.WaitGroup) {
|
|
|
|
sap.wg = wg
|
|
|
|
go func() {
|
|
|
|
wg.Add(1)
|
|
|
|
defer wg.Done()
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-sap.quitChan:
|
|
|
|
log.Info("quiting the levelDB RPC server process")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
log.Info("levelDB RPC server process successfully spun up")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start is used to begin the service
|
|
|
|
// This is mostly just to satisfy the node.Service interface
|
|
|
|
func (sap *Service) Start() error {
|
|
|
|
log.Info("starting levelDB RPC server")
|
|
|
|
wg := new(sync.WaitGroup)
|
|
|
|
sap.Serve(wg)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stop is used to close down the service
|
|
|
|
// This is mostly just to satisfy the node.Service interface
|
|
|
|
func (sap *Service) Stop() error {
|
|
|
|
log.Infof("stopping levelDB RPC server")
|
|
|
|
close(sap.quitChan)
|
|
|
|
return nil
|
|
|
|
}
|