Newer
Older
// Copyright 2015, 2016 Eris Industries (UK) Ltd.
// This file is part of Eris-RT
// Eris-RT is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Eris-RT 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 General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Eris-RT. If not, see <http://www.gnu.org/licenses/>.
package core
import (
// TODO: [ben] swap out go-events with eris-db/event (currently unused)
events "github.com/tendermint/go-events"
config "github.com/eris-ltd/eris-db/config"
consensus "github.com/eris-ltd/eris-db/consensus"
Benjamin Bollen
committed
core_types "github.com/eris-ltd/eris-db/core/types"
definitions "github.com/eris-ltd/eris-db/definitions"
manager "github.com/eris-ltd/eris-db/manager"
Benjamin Bollen
committed
server "github.com/eris-ltd/eris-db/server"
)
// Core is the high-level structure
type Core struct {
chainId string
func NewCore(chainId string, consensusConfig *config.ModuleConfig,
managerConfig *config.ModuleConfig) (*Core, error) {
// start new event switch, TODO: [ben] replace with eris-db/event
evsw := events.NewEventSwitch()
evsw.Start()
// start a new application pipe that will load an application manager
pipe, err := manager.NewApplicationPipe(managerConfig, evsw,
return nil, fmt.Errorf("Failed to load application pipe: %v", err)
log.Debug("Loaded pipe with application manager")
// pass the consensus engine into the pipe
consensus.LoadConsensusEngineInPipe(consensusConfig, pipe)
Benjamin Bollen
committed
return &Core{
chainId: chainId,
evsw: evsw,
pipe: pipe,
}, nil
//------------------------------------------------------------------------------
// Explicit switch that can later be abstracted into an `Engine` definition
// where the Engine defines the explicit interaction of a specific application
// manager with a consensus engine.
// TODO: [ben] before such Engine abstraction,
// think about many-manager-to-one-consensus
Benjamin Bollen
committed
//------------------------------------------------------------------------------
// Server functions
// NOTE: [ben] in phase 0 we exactly take over the full server architecture
// from Eris-DB and Tendermint; This is a draft and will be overhauled.
Benjamin Bollen
committed
func (core *Core) NewGateway(config *server.ServerConfig) (*server.ServeProcess,
error) {
codec := &core_types.TCodec{}
eventSubscriptions := NewEventSubscriptions(core.pipe.Events())
// The services.
tmwss := NewErisDbWsService(codec, core.pipe)
tmjs := NewErisDbJsonService(codec, core.pipe, eventSubscriptions)
// The servers.
jsonServer := NewJsonRpcServer(tmjs)
restServer := NewRestServer(codec, core.pipe, eventSubscriptions)
wsServer := server.NewWebSocketServer(config.WebSocket.MaxWebSocketSessions,
tmwss)
// Create a server process.
proc, err := server.NewServeProcess(config, jsonServer, restServer, wsServer)
if err != nil {
return nil, fmt.Errorf("Failed to load gateway: %v", err)
}
return proc, nil
}
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// func StartRPC(config cfg.Config, n *node.Node, edbApp *edbapp.ErisDBApp) ([]net.Listener, error) {
// rpccore.SetConfig(config)
//
// rpccore.SetErisDBApp(edbApp)
// rpccore.SetBlockStore(n.BlockStore())
// rpccore.SetConsensusState(n.ConsensusState())
// rpccore.SetConsensusReactor(n.ConsensusReactor())
// rpccore.SetMempoolReactor(n.MempoolReactor())
// rpccore.SetSwitch(n.Switch())
// rpccore.SetPrivValidator(n.PrivValidator())
// rpccore.SetGenDoc(LoadGenDoc(config.GetString("genesis_file")))
//
// listenAddrs := strings.Split(config.GetString("rpc_laddr"), ",")
//
// // we may expose the rpc over both a unix and tcp socket
// listeners := make([]net.Listener, len(listenAddrs))
// for i, listenAddr := range listenAddrs {
// mux := http.NewServeMux()
// wm := rpcserver.NewWebsocketManager(rpccore.Routes, n.EventSwitch())
// mux.HandleFunc("/websocket", wm.WebsocketHandler)
// rpcserver.RegisterRPCFuncs(mux, rpccore.Routes)
// listener, err := rpcserver.StartHTTPServer(listenAddr, mux)
// if err != nil {
// return nil, err
// }
// listeners[i] = listener
// }
// return listeners, nil
// }