annotate sat_bridge/DBus.py @ 7:c14a3a7018a5

added dynamic exportation of Dbus bridge method (usefull for plugins)
author Goffi <goffi@goffi.org>
date Sat, 24 Oct 2009 01:05:17 +0200
parents a06a151fc31f
children 14d7861ca59e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
goffi@necton2
parents:
diff changeset
1 #!/usr/bin/python
goffi@necton2
parents:
diff changeset
2 #-*- coding: utf-8 -*-
goffi@necton2
parents:
diff changeset
3
goffi@necton2
parents:
diff changeset
4 """
goffi@necton2
parents:
diff changeset
5 SAT: a jabber client
goffi@necton2
parents:
diff changeset
6 Copyright (C) 2009 Jérôme Poisson (goffi@goffi.org)
goffi@necton2
parents:
diff changeset
7
goffi@necton2
parents:
diff changeset
8 This program is free software: you can redistribute it and/or modify
goffi@necton2
parents:
diff changeset
9 it under the terms of the GNU General Public License as published by
goffi@necton2
parents:
diff changeset
10 the Free Software Foundation, either version 3 of the License, or
goffi@necton2
parents:
diff changeset
11 (at your option) any later version.
goffi@necton2
parents:
diff changeset
12
goffi@necton2
parents:
diff changeset
13 This program is distributed in the hope that it will be useful,
goffi@necton2
parents:
diff changeset
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
goffi@necton2
parents:
diff changeset
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
goffi@necton2
parents:
diff changeset
16 GNU General Public License for more details.
goffi@necton2
parents:
diff changeset
17
goffi@necton2
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
goffi@necton2
parents:
diff changeset
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
goffi@necton2
parents:
diff changeset
20 """
goffi@necton2
parents:
diff changeset
21
goffi@necton2
parents:
diff changeset
22
goffi@necton2
parents:
diff changeset
23 from bridge import Bridge
goffi@necton2
parents:
diff changeset
24 import dbus
goffi@necton2
parents:
diff changeset
25 import dbus.service
goffi@necton2
parents:
diff changeset
26 import dbus.mainloop.glib
goffi@necton2
parents:
diff changeset
27 import pdb
goffi@necton2
parents:
diff changeset
28 from logging import debug, info, error
goffi@necton2
parents:
diff changeset
29
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
30 CONST_INT_PREFIX = "org.goffi.SAT" #Interface prefix
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
31
0
goffi@necton2
parents:
diff changeset
32 class DbusObject(dbus.service.Object):
goffi@necton2
parents:
diff changeset
33
goffi@necton2
parents:
diff changeset
34 def __init__(self, bus, path):
goffi@necton2
parents:
diff changeset
35 dbus.service.Object.__init__(self, bus, path)
goffi@necton2
parents:
diff changeset
36 debug("Init DbusObject...")
goffi@necton2
parents:
diff changeset
37 self.cb={}
goffi@necton2
parents:
diff changeset
38
goffi@necton2
parents:
diff changeset
39 def register(self, name, cb):
goffi@necton2
parents:
diff changeset
40 self.cb[name]=cb
goffi@necton2
parents:
diff changeset
41
goffi@necton2
parents:
diff changeset
42 ### signals ###
goffi@necton2
parents:
diff changeset
43
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
44 @dbus.service.signal(CONST_INT_PREFIX+".communication",
0
goffi@necton2
parents:
diff changeset
45 signature='sa{ss}as')
goffi@necton2
parents:
diff changeset
46 def newContact(self, contact, attributes, groups):
goffi@necton2
parents:
diff changeset
47 debug("new contact signal (%s) sended", contact)
goffi@necton2
parents:
diff changeset
48
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
49 @dbus.service.signal(CONST_INT_PREFIX+".communication",
0
goffi@necton2
parents:
diff changeset
50 signature='ssss')
goffi@necton2
parents:
diff changeset
51 def newMessage(self, from_jid, msg, type='chat', to=''):
goffi@necton2
parents:
diff changeset
52 debug("new message signal (from:%s msg:%s type:%s to:%s) sended", from_jid, msg, type, to)
goffi@necton2
parents:
diff changeset
53
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
54 @dbus.service.signal(CONST_INT_PREFIX+".communication",
0
goffi@necton2
parents:
diff changeset
55 signature='ssssi')
goffi@necton2
parents:
diff changeset
56 def presenceUpdate(self, jid, type, show, status, priority):
goffi@necton2
parents:
diff changeset
57 debug("presence update signal (from:%s type: %s show:%s status:\"%s\" priority:%d) sended" , jid, type, show, status, priority)
goffi@necton2
parents:
diff changeset
58
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
59 @dbus.service.signal(CONST_INT_PREFIX+".communication",
0
goffi@necton2
parents:
diff changeset
60 signature='sss')
goffi@necton2
parents:
diff changeset
61 def paramUpdate(self, name, value, namespace):
goffi@necton2
parents:
diff changeset
62 debug("param update signal: %s=%s in namespace %s", name, value, namespace)
goffi@necton2
parents:
diff changeset
63
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
64 @dbus.service.signal(CONST_INT_PREFIX+".communication",
0
goffi@necton2
parents:
diff changeset
65 signature='s')
goffi@necton2
parents:
diff changeset
66 def contactDeleted(self, jid):
goffi@necton2
parents:
diff changeset
67 debug("contact deleted signal: %s", jid)
goffi@necton2
parents:
diff changeset
68
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
69 @dbus.service.signal(CONST_INT_PREFIX+".request",
0
goffi@necton2
parents:
diff changeset
70 signature='ssa{ss}')
goffi@necton2
parents:
diff changeset
71 def askConfirmation(self, type, id, data):
goffi@necton2
parents:
diff changeset
72 debug("asking for confirmation: id = [%s] type = %s data = %s", id, type, data)
goffi@necton2
parents:
diff changeset
73
goffi@necton2
parents:
diff changeset
74
goffi@necton2
parents:
diff changeset
75
goffi@necton2
parents:
diff changeset
76 ### methods ###
goffi@necton2
parents:
diff changeset
77
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
78 @dbus.service.method(CONST_INT_PREFIX+".communication",
0
goffi@necton2
parents:
diff changeset
79 in_signature='', out_signature='')
goffi@necton2
parents:
diff changeset
80 def connect(self):
goffi@necton2
parents:
diff changeset
81 info ("Connection asked")
goffi@necton2
parents:
diff changeset
82 return self.cb["connect"]()
goffi@necton2
parents:
diff changeset
83
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
84 @dbus.service.method(CONST_INT_PREFIX+".communication",
1
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
85 in_signature='', out_signature='')
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
86 def disconnect(self):
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
87 info ("Disconnection asked")
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
88 return self.cb["disconnect"]()
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
89
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
90 @dbus.service.method(CONST_INT_PREFIX+".communication",
0
goffi@necton2
parents:
diff changeset
91 in_signature='', out_signature='a(sa{ss}as)')
goffi@necton2
parents:
diff changeset
92 def getContacts(self):
goffi@necton2
parents:
diff changeset
93 debug("getContacts...")
goffi@necton2
parents:
diff changeset
94 return self.cb["getContacts"]()
goffi@necton2
parents:
diff changeset
95
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
96 @dbus.service.method(CONST_INT_PREFIX+".communication",
0
goffi@necton2
parents:
diff changeset
97 in_signature='', out_signature='a(ssssi)')
goffi@necton2
parents:
diff changeset
98 def getPresenceStatus(self):
goffi@necton2
parents:
diff changeset
99 debug("getPresenceStatus...")
goffi@necton2
parents:
diff changeset
100 return self.cb["getPresenceStatus"]()
goffi@necton2
parents:
diff changeset
101
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
102 @dbus.service.method(CONST_INT_PREFIX+".communication",
0
goffi@necton2
parents:
diff changeset
103 in_signature='ss', out_signature='')
goffi@necton2
parents:
diff changeset
104 def sendMessage(self, to, message):
goffi@necton2
parents:
diff changeset
105 debug("sendMessage...")
goffi@necton2
parents:
diff changeset
106 self.cb["sendMessage"](to, message)
goffi@necton2
parents:
diff changeset
107
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
108 @dbus.service.method(CONST_INT_PREFIX+".communication",
0
goffi@necton2
parents:
diff changeset
109 in_signature='ssssi', out_signature='')
goffi@necton2
parents:
diff changeset
110 def setPresence(self, to="", type="", show="", status="", priority=0):
goffi@necton2
parents:
diff changeset
111 self.cb["setPresence"](to, type, show, status, priority)
goffi@necton2
parents:
diff changeset
112
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
113 @dbus.service.method(CONST_INT_PREFIX+".communication",
0
goffi@necton2
parents:
diff changeset
114 in_signature='sss', out_signature='')
goffi@necton2
parents:
diff changeset
115 def setParam(self, name, value, namespace="default"):
goffi@necton2
parents:
diff changeset
116 self.cb["setParam"](name, str(value), namespace)
goffi@necton2
parents:
diff changeset
117
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
118 @dbus.service.method(CONST_INT_PREFIX+".communication",
0
goffi@necton2
parents:
diff changeset
119 in_signature='ss', out_signature='(ss)')
goffi@necton2
parents:
diff changeset
120 def getParam(self, name, namespace="default"):
goffi@necton2
parents:
diff changeset
121 return self.cb["getParam"](name, namespace)
goffi@necton2
parents:
diff changeset
122
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
123 @dbus.service.method(CONST_INT_PREFIX+".communication",
0
goffi@necton2
parents:
diff changeset
124 in_signature='s', out_signature='a(sss)')
goffi@necton2
parents:
diff changeset
125 def getParams(self, namespace):
goffi@necton2
parents:
diff changeset
126 return self.cb["getParams"](namespace)
goffi@necton2
parents:
diff changeset
127
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
128 @dbus.service.method(CONST_INT_PREFIX+".communication",
0
goffi@necton2
parents:
diff changeset
129 in_signature='', out_signature='as')
goffi@necton2
parents:
diff changeset
130 def getParamsCategories(self):
goffi@necton2
parents:
diff changeset
131 return self.cb["getParamsCategories"]()
goffi@necton2
parents:
diff changeset
132
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
133 @dbus.service.method(CONST_INT_PREFIX+".communication",
0
goffi@necton2
parents:
diff changeset
134 in_signature='ssi', out_signature='a{i(ss)}')
goffi@necton2
parents:
diff changeset
135 def getHistory(self, from_jid, to_jid, size):
goffi@necton2
parents:
diff changeset
136 debug("History asked for %s", to_jid)
goffi@necton2
parents:
diff changeset
137 return self.cb["getHistory"](from_jid, to_jid, size)
goffi@necton2
parents:
diff changeset
138
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
139 @dbus.service.method(CONST_INT_PREFIX+".communication",
0
goffi@necton2
parents:
diff changeset
140 in_signature='s', out_signature='')
goffi@necton2
parents:
diff changeset
141 def addContact(self, jid):
goffi@necton2
parents:
diff changeset
142 debug("Subscription asked for %s", jid)
goffi@necton2
parents:
diff changeset
143 return self.cb["addContact"](jid)
goffi@necton2
parents:
diff changeset
144
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
145 @dbus.service.method(CONST_INT_PREFIX+".communication",
0
goffi@necton2
parents:
diff changeset
146 in_signature='s', out_signature='')
goffi@necton2
parents:
diff changeset
147 def delContact(self, jid):
goffi@necton2
parents:
diff changeset
148 debug("Unsubscription asked for %s", jid)
goffi@necton2
parents:
diff changeset
149 return self.cb["delContact"](jid)
goffi@necton2
parents:
diff changeset
150
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
151 @dbus.service.method(CONST_INT_PREFIX+".communication",
0
goffi@necton2
parents:
diff changeset
152 in_signature='', out_signature='b')
goffi@necton2
parents:
diff changeset
153 def isConnected(self):
goffi@necton2
parents:
diff changeset
154 debug("Connection status requested")
goffi@necton2
parents:
diff changeset
155 return self.cb["isConnected"]()
goffi@necton2
parents:
diff changeset
156
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
157 @dbus.service.method(CONST_INT_PREFIX+".request",
0
goffi@necton2
parents:
diff changeset
158 in_signature='sba{ss}', out_signature='')
goffi@necton2
parents:
diff changeset
159 def confirmationAnswer(self, id, accepted, data):
goffi@necton2
parents:
diff changeset
160 debug("Answer for confirmation [%s]: %s", id, "Accepted" if accepted else "Refused")
goffi@necton2
parents:
diff changeset
161 return self.cb["confirmationAnswer"](id, accepted, data)
goffi@necton2
parents:
diff changeset
162
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
163 @dbus.service.method(CONST_INT_PREFIX+".request",
0
goffi@necton2
parents:
diff changeset
164 in_signature='s', out_signature='a{ss}')
goffi@necton2
parents:
diff changeset
165 def getProgress(self, id):
goffi@necton2
parents:
diff changeset
166 #debug("Progress asked for %s", id)
goffi@necton2
parents:
diff changeset
167 return self.cb["getProgress"](id)
goffi@necton2
parents:
diff changeset
168
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
169 def _attribute_string(self, in_sign):
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
170 i=0
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
171 idx=0
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
172 attr_string=""
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
173 while i<len(in_sign):
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
174 if in_sign[i] not in ['b','y','n','i','x','q','u','t','d','s','a']:
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
175 raise Exception #FIXME: create an exception here (unmanaged attribute type)
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
176
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
177 attr_string += ("" if idx==0 else ",") + ("arg_%i" % idx)
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
178 idx+=1
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
179
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
180 if in_sign[i] == 'a':
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
181 while (True):
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
182 i+=1
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
183 if i>=len(in_sign):
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
184 raise Exception #FIXME: create an exception here (the '}' is not presend)
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
185 if in_sign[i] == '}':
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
186 break
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
187 i+=1
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
188 return attr_string
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
189
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
190
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
191
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
192 def addMethod(self, name, int_suffix, in_sign, out_sign):
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
193 """Dynamically add a method to Dbus Bridge"""
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
194 #FIXME: Better way ???
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
195 attributes = self._attribute_string(in_sign)
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
196
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
197 code = compile ('def '+name+' (self,'+attributes+'): return self.cb["'+name+'"]('+attributes+')', '<DBus bridge>','exec')
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
198 exec (code)
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
199 method = locals()[name]
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
200 setattr(DbusObject, name, dbus.service.method(
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
201 CONST_INT_PREFIX+int_suffix, in_signature=in_sign, out_signature=out_sign)(method))
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
202
0
goffi@necton2
parents:
diff changeset
203 class DBusBridge(Bridge):
goffi@necton2
parents:
diff changeset
204 def __init__(self):
goffi@necton2
parents:
diff changeset
205 dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
goffi@necton2
parents:
diff changeset
206 Bridge.__init__(self)
goffi@necton2
parents:
diff changeset
207 info ("Init DBus...")
goffi@necton2
parents:
diff changeset
208 self.session_bus = dbus.SessionBus()
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
209 self.dbus_name = dbus.service.BusName(CONST_INT_PREFIX, self.session_bus)
0
goffi@necton2
parents:
diff changeset
210 self.dbus_bridge = DbusObject(self.session_bus, '/org/goffi/SAT/bridge')
goffi@necton2
parents:
diff changeset
211
goffi@necton2
parents:
diff changeset
212 def newContact(self, contact, attributes, groups):
goffi@necton2
parents:
diff changeset
213 self.dbus_bridge.newContact(contact, attributes, groups)
goffi@necton2
parents:
diff changeset
214
goffi@necton2
parents:
diff changeset
215 def newMessage(self,from_jid,msg,type='chat', to=''):
goffi@necton2
parents:
diff changeset
216 debug("sending message...")
goffi@necton2
parents:
diff changeset
217 self.dbus_bridge.newMessage(from_jid, msg, type, to)
goffi@necton2
parents:
diff changeset
218
goffi@necton2
parents:
diff changeset
219 def presenceUpdate(self, jid, type, show, status, priority):
goffi@necton2
parents:
diff changeset
220 debug("updating presence for %s",jid)
goffi@necton2
parents:
diff changeset
221 self.dbus_bridge.presenceUpdate(jid, type, show, status, priority)
goffi@necton2
parents:
diff changeset
222
goffi@necton2
parents:
diff changeset
223 def paramUpdate(self, name, value, namespace):
goffi@necton2
parents:
diff changeset
224 debug("updating param [%s] %s ", namespace, name)
goffi@necton2
parents:
diff changeset
225 self.dbus_bridge.paramUpdate(name, value, namespace)
goffi@necton2
parents:
diff changeset
226
goffi@necton2
parents:
diff changeset
227 def contactDeleted(self, jid):
goffi@necton2
parents:
diff changeset
228 debug("sending contact deleted signal %s ", jid)
goffi@necton2
parents:
diff changeset
229 self.dbus_bridge.contactDeleted(jid)
goffi@necton2
parents:
diff changeset
230
goffi@necton2
parents:
diff changeset
231 def askConfirmation(self, type, id, data):
goffi@necton2
parents:
diff changeset
232 self.dbus_bridge.askConfirmation(type, id, data)
goffi@necton2
parents:
diff changeset
233
goffi@necton2
parents:
diff changeset
234 def register(self, name, callback):
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
235 debug("registering DBus bridge method [%s]",name)
0
goffi@necton2
parents:
diff changeset
236 self.dbus_bridge.register(name, callback)
goffi@necton2
parents:
diff changeset
237
7
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
238 def addMethod(self, name, int_suffix, in_sign, out_sign, method):
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
239 """Dynamically add a method to Dbus Bridge"""
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
240 print ("Adding method [%s] to DBus bridge" % name)
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
241 self.dbus_bridge.addMethod(name, int_suffix, in_sign, out_sign)
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
242 self.register(name, method)
c14a3a7018a5 added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents: 1
diff changeset
243