summaryrefslogtreecommitdiffstats
path: root/deluge/__rpcapi.py
blob: 26bb9cc34b3bd8fe85759462e2e64a763b2db4d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from new import classobj
from deluge.core.core import Core
from deluge.core.daemon import Daemon

class RpcApi:
    pass

def scan_for_methods(obj):
    methods = {
        '__doc__': 'Methods available in %s' % obj.__name__.lower()
    }
    for d in dir(obj):
        if not hasattr(getattr(obj,d), '_rpcserver_export'):
            continue
        methods[d] = getattr(obj, d)
    cobj = classobj(obj.__name__.lower(), (object,), methods)
    setattr(RpcApi, obj.__name__.lower(), cobj)

scan_for_methods(Core)
scan_for_methods(Daemon)