2018-12-11 05:33:33 +03:00
|
|
|
// +build chainrpc
|
|
|
|
|
|
|
|
package chainrpc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/lightningnetwork/lnd/lnrpc"
|
|
|
|
)
|
|
|
|
|
|
|
|
// createNewSubServer is a helper method that will create the new chain notifier
|
|
|
|
// sub server given the main config dispatcher method. If we're unable to find
|
|
|
|
// the config that is meant for us in the config dispatcher, then we'll exit
|
|
|
|
// with an error.
|
|
|
|
func createNewSubServer(configRegistry lnrpc.SubServerConfigDispatcher) (
|
2021-01-29 17:49:48 +03:00
|
|
|
*Server, lnrpc.MacaroonPerms, error) {
|
2018-12-11 05:33:33 +03:00
|
|
|
|
|
|
|
// We'll attempt to look up the config that we expect, according to our
|
|
|
|
// subServerName name. If we can't find this, then we'll exit with an
|
|
|
|
// error, as we're unable to properly initialize ourselves without this
|
|
|
|
// config.
|
|
|
|
chainNotifierServerConf, ok := configRegistry.FetchConfig(subServerName)
|
|
|
|
if !ok {
|
|
|
|
return nil, nil, fmt.Errorf("unable to find config for "+
|
|
|
|
"subserver type %s", subServerName)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now that we've found an object mapping to our service name, we'll
|
|
|
|
// ensure that it's the type we need.
|
|
|
|
config, ok := chainNotifierServerConf.(*Config)
|
|
|
|
if !ok {
|
|
|
|
return nil, nil, fmt.Errorf("wrong type of config for "+
|
|
|
|
"subserver %s, expected %T got %T", subServerName,
|
|
|
|
&Config{}, chainNotifierServerConf)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Before we try to make the new chain notifier service instance, we'll
|
|
|
|
// perform some sanity checks on the arguments to ensure that they're
|
|
|
|
// usable.
|
|
|
|
switch {
|
|
|
|
// If the macaroon service is set (we should use macaroons), then
|
|
|
|
// ensure that we know where to look for them, or create them if not
|
|
|
|
// found.
|
|
|
|
case config.MacService != nil && config.NetworkDir == "":
|
|
|
|
return nil, nil, fmt.Errorf("NetworkDir must be set to create " +
|
|
|
|
"chainrpc")
|
|
|
|
case config.ChainNotifier == nil:
|
|
|
|
return nil, nil, fmt.Errorf("ChainNotifier must be set to " +
|
|
|
|
"create chainrpc")
|
|
|
|
}
|
|
|
|
|
|
|
|
return New(config)
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
subServer := &lnrpc.SubServerDriver{
|
|
|
|
SubServerName: subServerName,
|
2021-01-29 17:49:48 +03:00
|
|
|
NewGrpcHandler: func() lnrpc.GrpcHandler {
|
|
|
|
return &ServerShell{}
|
2018-12-11 05:33:33 +03:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the build tag is active, then we'll register ourselves as a
|
|
|
|
// sub-RPC server within the global lnrpc package namespace.
|
|
|
|
if err := lnrpc.RegisterSubServer(subServer); err != nil {
|
|
|
|
panic(fmt.Sprintf("failed to register subserver driver %s: %v",
|
|
|
|
subServerName, err))
|
|
|
|
}
|
|
|
|
}
|