lightningd/plugin: Add a 'dynamic' field to getmanifest and a 'startup' field to init

This lets a plugin specify whether it can be restarted, and to know if it is started at lightningd startup
This commit is contained in:
darosior
2019-07-18 14:20:37 +02:00
committed by Rusty Russell
parent f81db6fb47
commit 12e28c2554
3 changed files with 14 additions and 2 deletions

View File

@@ -99,7 +99,7 @@ class Plugin(object):
"""
def __init__(self, stdout=None, stdin=None, autopatch=True):
def __init__(self, stdout=None, stdin=None, autopatch=True, dynamic=True):
self.methods = {'init': Method('init', self._init, MethodType.RPCMETHOD)}
self.options = {}
@@ -118,6 +118,8 @@ class Plugin(object):
self.rpc_filename = None
self.lightning_dir = None
self.rpc = None
self.startup = True
self.dynamic = dynamic
self.child_init = None
self.write_lock = RLock()
@@ -496,6 +498,7 @@ class Plugin(object):
'rpcmethods': methods,
'subscriptions': list(self.subscriptions.keys()),
'hooks': hooks,
'dynamic': self.dynamic
}
def _init(self, options, configuration, request):
@@ -503,6 +506,7 @@ class Plugin(object):
self.lightning_dir = configuration['lightning-dir']
path = os.path.join(self.lightning_dir, self.rpc_filename)
self.rpc = LightningRpc(path)
self.startup = configuration['startup']
for name, value in options.items():
self.options[name]['value'] = value