File: simple_server

package info (click to toggle)
txdbus 1.1.0-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 996 kB
  • sloc: python: 6,658; makefile: 7
file content (45 lines) | stat: -rwxr-xr-x 988 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python

from twisted.internet import reactor

from txdbus import client, objects
from txdbus.interface import DBusInterface, Method, Signal


class MyObj (objects.DBusObject):

    iface = DBusInterface('org.example.MyIFace',
                          Method('exampleMethod', arguments='s', returns='s' ))

    dbusInterfaces = [iface]

    def __init__(self, objectPath):
        objects.DBusObject.__init__(self, objectPath)


    def dbus_exampleMethod(self, arg):
    	print 'Received remote call. Argument: ', arg
        return 'You sent (%s)' % arg
        
    
def onConnected(conn):
    conn.exportObject( MyObj('/MyObjPath') )
    return conn.requestBusName('org.example')


def onReady(ignore):
    print 'Exporting object /MyObjPath on bus name "org.exmaple"'

    
def onErr(err):
    print 'Failed to export object: ', err.getErrorMessage()


d = client.connect(reactor)

d.addCallback(onConnected)
d.addCallback(onReady)
d.addErrback(onErr)

reactor.run()