Mercurial > libervia-backend
annotate sat_bridge/DBus.py @ 49:9c79eb49d51f
DBus bridge improvment:
- new method to notice clients of updated values
- presence update refactored
- subscriptions management are now separated from presence
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 07 Jan 2010 00:00:25 +1100 |
parents | a61beb21d16d |
children | 6455fb62ff83 |
rev | line source |
---|---|
0 | 1 #!/usr/bin/python |
2 #-*- coding: utf-8 -*- | |
3 | |
4 """ | |
5 SAT: a jabber client | |
6 Copyright (C) 2009 Jérôme Poisson (goffi@goffi.org) | |
7 | |
8 This program is free software: you can redistribute it and/or modify | |
9 it under the terms of the GNU General Public License as published by | |
10 the Free Software Foundation, either version 3 of the License, or | |
11 (at your option) any later version. | |
12 | |
13 This program is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU General Public License for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
19 along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 """ | |
21 | |
22 | |
23 from bridge import Bridge | |
24 import dbus | |
25 import dbus.service | |
26 import dbus.mainloop.glib | |
27 import pdb | |
28 from logging import debug, info, error | |
29 | |
10 | 30 const_INT_PREFIX = "org.goffi.SAT" #Interface prefix |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
31 const_COMM_SUFFIX = ".communication" |
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
32 const_REQ_SUFFIX = ".request" |
7
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
33 |
0 | 34 class DbusObject(dbus.service.Object): |
35 | |
36 def __init__(self, bus, path): | |
37 dbus.service.Object.__init__(self, bus, path) | |
38 debug("Init DbusObject...") | |
39 self.cb={} | |
40 | |
41 def register(self, name, cb): | |
42 self.cb[name]=cb | |
43 | |
44 ### signals ### | |
45 | |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
46 @dbus.service.signal(const_INT_PREFIX+const_COMM_SUFFIX, |
0 | 47 signature='sa{ss}as') |
48 def newContact(self, contact, attributes, groups): | |
49 debug("new contact signal (%s) sended", contact) | |
50 | |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
51 @dbus.service.signal(const_INT_PREFIX+const_COMM_SUFFIX, |
0 | 52 signature='ssss') |
53 def newMessage(self, from_jid, msg, type='chat', to=''): | |
54 debug("new message signal (from:%s msg:%s type:%s to:%s) sended", from_jid, msg, type, to) | |
55 | |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
56 @dbus.service.signal(const_INT_PREFIX+const_COMM_SUFFIX, |
49 | 57 signature='ssia{ss}') |
58 def presenceUpdate(self, entity, show, priority, statuses): | |
59 debug("presence update signal (from:%s show:%s priority:%d statuses:%s) sended" , entity, show, priority, statuses) | |
0 | 60 |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
61 @dbus.service.signal(const_INT_PREFIX+const_COMM_SUFFIX, |
49 | 62 signature='ss') |
63 def subscribe(self, type, entity): | |
64 debug("subscribe (type: [%s] from:[%s])" , type, entity) | |
65 | |
66 @dbus.service.signal(const_INT_PREFIX+const_COMM_SUFFIX, | |
0 | 67 signature='sss') |
18
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
68 def paramUpdate(self, name, value, category): |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
69 debug("param update signal: %s=%s in category %s", name, value, category) |
0 | 70 |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
71 @dbus.service.signal(const_INT_PREFIX+const_COMM_SUFFIX, |
0 | 72 signature='s') |
49 | 73 def contactDeleted(self, entity): |
74 debug("contact deleted signal: %s", entity) | |
0 | 75 |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
76 @dbus.service.signal(const_INT_PREFIX+const_REQ_SUFFIX, |
0 | 77 signature='ssa{ss}') |
78 def askConfirmation(self, type, id, data): | |
79 debug("asking for confirmation: id = [%s] type = %s data = %s", id, type, data) | |
80 | |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
81 @dbus.service.signal(const_INT_PREFIX+const_REQ_SUFFIX, |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
82 signature='ssa{ss}') |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
83 def actionResult(self, type, id, data): |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
84 debug("result of action: id = [%s] type = %s data = %s", id, type, data) |
0 | 85 |
25
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
86 @dbus.service.signal(const_INT_PREFIX+const_REQ_SUFFIX, |
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
87 signature='ssa{sa{ss}}') |
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
88 def actionResultExt(self, type, id, data): |
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
89 debug("extended result of action: id = [%s] type = %s data = %s", id, type, data) |
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
90 |
49 | 91 @dbus.service.signal(const_INT_PREFIX+const_REQ_SUFFIX, |
92 signature='sa{ss}') | |
93 def updatedValue(self, name, value): | |
94 debug("updated value: %s = %s", name, value) | |
95 | |
0 | 96 ### methods ### |
97 | |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
98 @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, |
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
99 in_signature='sssi', out_signature='s') |
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
100 def registerNewAccount(self, login, password, host, port=5222): |
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
101 info ("New account registration asked") |
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
102 return self.cb["registerNewAccount"](login, password, host, port) |
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
103 |
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
104 @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, |
0 | 105 in_signature='', out_signature='') |
106 def connect(self): | |
107 info ("Connection asked") | |
108 return self.cb["connect"]() | |
109 | |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
110 @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, |
1 | 111 in_signature='', out_signature='') |
112 def disconnect(self): | |
113 info ("Disconnection asked") | |
114 return self.cb["disconnect"]() | |
115 | |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
116 @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, |
0 | 117 in_signature='', out_signature='a(sa{ss}as)') |
118 def getContacts(self): | |
119 debug("getContacts...") | |
120 return self.cb["getContacts"]() | |
121 | |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
122 @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, |
49 | 123 in_signature='', out_signature='a{sa{s(sia{ss})}}') |
0 | 124 def getPresenceStatus(self): |
125 debug("getPresenceStatus...") | |
126 return self.cb["getPresenceStatus"]() | |
127 | |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
128 @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, |
49 | 129 in_signature='', out_signature='a{ss}') |
130 def getWaitingSub(self): | |
131 debug("getWaitingSub...") | |
132 return self.cb["getWaitingSub"]() | |
133 | |
134 @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, | |
0 | 135 in_signature='ss', out_signature='') |
136 def sendMessage(self, to, message): | |
137 debug("sendMessage...") | |
138 self.cb["sendMessage"](to, message) | |
139 | |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
140 @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, |
49 | 141 in_signature='ssia{ss}', out_signature='') |
142 def setPresence(self, to="", show="", priority=0, statuses={}): | |
143 self.cb["setPresence"](to, show, priority, statuses) | |
144 | |
145 @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, | |
146 in_signature='ss', out_signature='') | |
147 def subscription(self, type, entity): | |
148 self.cb["subscription"](type, entity) | |
0 | 149 |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
150 @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, |
0 | 151 in_signature='sss', out_signature='') |
17
74a39f40eb6d
refactoring: using xml params (not finished yet)
Goffi <goffi@goffi.org>
parents:
16
diff
changeset
|
152 def setParam(self, name, value, category): |
74a39f40eb6d
refactoring: using xml params (not finished yet)
Goffi <goffi@goffi.org>
parents:
16
diff
changeset
|
153 self.cb["setParam"](name, str(value), category) |
0 | 154 |
18
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
155 @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
156 in_signature='ss', out_signature='s') |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
157 def getParamA(self, name, category="default"): |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
158 return self.cb["getParamA"](name, category) |
0 | 159 |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
160 @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, |
17
74a39f40eb6d
refactoring: using xml params (not finished yet)
Goffi <goffi@goffi.org>
parents:
16
diff
changeset
|
161 in_signature='', out_signature='s') |
74a39f40eb6d
refactoring: using xml params (not finished yet)
Goffi <goffi@goffi.org>
parents:
16
diff
changeset
|
162 def getParams(self): |
74a39f40eb6d
refactoring: using xml params (not finished yet)
Goffi <goffi@goffi.org>
parents:
16
diff
changeset
|
163 return self.cb["getParams"]() |
0 | 164 |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
165 @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, |
18
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
166 in_signature='s', out_signature='s') |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
167 def getParamsForCategory(self, category): |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
168 return self.cb["getParamsForCategory"](category) |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
169 |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
170 @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, |
0 | 171 in_signature='', out_signature='as') |
172 def getParamsCategories(self): | |
173 return self.cb["getParamsCategories"]() | |
174 | |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
175 @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, |
0 | 176 in_signature='ssi', out_signature='a{i(ss)}') |
177 def getHistory(self, from_jid, to_jid, size): | |
178 debug("History asked for %s", to_jid) | |
179 return self.cb["getHistory"](from_jid, to_jid, size) | |
180 | |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
181 @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, |
0 | 182 in_signature='s', out_signature='') |
49 | 183 def addContact(self, entity): |
184 debug("Subscription asked for %s", entity) | |
185 return self.cb["addContact"](entity) | |
0 | 186 |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
187 @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, |
0 | 188 in_signature='s', out_signature='') |
49 | 189 def delContact(self, entity): |
190 debug("Unsubscription asked for %s", entity) | |
191 return self.cb["delContact"](entity) | |
0 | 192 |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
193 @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, |
0 | 194 in_signature='', out_signature='b') |
195 def isConnected(self): | |
196 debug("Connection status requested") | |
197 return self.cb["isConnected"]() | |
198 | |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
199 @dbus.service.method(const_INT_PREFIX+const_REQ_SUFFIX, |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
200 in_signature='sa{ss}', out_signature='s') |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
201 def launchAction(self, type, data): |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
202 return self.cb["launchAction"](type, data) |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
203 |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
204 @dbus.service.method(const_INT_PREFIX+const_REQ_SUFFIX, |
0 | 205 in_signature='sba{ss}', out_signature='') |
206 def confirmationAnswer(self, id, accepted, data): | |
207 debug("Answer for confirmation [%s]: %s", id, "Accepted" if accepted else "Refused") | |
208 return self.cb["confirmationAnswer"](id, accepted, data) | |
209 | |
36 | 210 |
211 @dbus.service.method(const_INT_PREFIX+const_REQ_SUFFIX, | |
0 | 212 in_signature='s', out_signature='a{ss}') |
213 def getProgress(self, id): | |
214 #debug("Progress asked for %s", id) | |
215 return self.cb["getProgress"](id) | |
216 | |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
217 def __attribute_string(self, in_sign): |
7
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
218 i=0 |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
219 idx=0 |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
220 attr_string="" |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
221 while i<len(in_sign): |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
222 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
|
223 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
|
224 |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
225 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
|
226 idx+=1 |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
227 |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
228 if in_sign[i] == 'a': |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
229 while (True): |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
230 i+=1 |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
231 if i>=len(in_sign): |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
232 raise Exception #FIXME: create an exception here (the '}' is not presend) |
37
a61beb21d16d
Gateway registration, unregistration & edition
Goffi <goffi@goffi.org>
parents:
36
diff
changeset
|
233 if in_sign[i] == '}' or in_sign[i] == ')': |
7
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
234 break |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
235 i+=1 |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
236 return attr_string |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
237 |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
238 |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
239 |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
240 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
|
241 """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
|
242 #FIXME: Better way ??? |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
243 attributes = self.__attribute_string(in_sign) |
7
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
244 |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
245 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
|
246 exec (code) |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
247 method = locals()[name] |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
248 setattr(DbusObject, name, dbus.service.method( |
10 | 249 const_INT_PREFIX+int_suffix, in_signature=in_sign, out_signature=out_sign)(method)) |
7
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
250 |
0 | 251 class DBusBridge(Bridge): |
252 def __init__(self): | |
253 dbus.mainloop.glib.DBusGMainLoop(set_as_default=True) | |
254 Bridge.__init__(self) | |
255 info ("Init DBus...") | |
256 self.session_bus = dbus.SessionBus() | |
10 | 257 self.dbus_name = dbus.service.BusName(const_INT_PREFIX, self.session_bus) |
0 | 258 self.dbus_bridge = DbusObject(self.session_bus, '/org/goffi/SAT/bridge') |
259 | |
260 def newContact(self, contact, attributes, groups): | |
261 self.dbus_bridge.newContact(contact, attributes, groups) | |
262 | |
263 def newMessage(self,from_jid,msg,type='chat', to=''): | |
264 debug("sending message...") | |
265 self.dbus_bridge.newMessage(from_jid, msg, type, to) | |
266 | |
49 | 267 def presenceUpdate(self, entity, show, priority, statuses): |
268 debug("updating presence for %s",entity) | |
269 self.dbus_bridge.presenceUpdate(entity, show, priority, statuses) | |
270 | |
271 def subscribe(self, type, entity): | |
272 debug("subscribe request for %s",entity) | |
273 self.dbus_bridge.subscribe(type, entity) | |
0 | 274 |
18
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
275 def paramUpdate(self, name, value, category): |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
276 debug("updating param [%s] %s ", category, name) |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
277 self.dbus_bridge.paramUpdate(name, value, category) |
0 | 278 |
49 | 279 def contactDeleted(self, entity): |
280 debug("sending contact deleted signal %s ", entity) | |
281 self.dbus_bridge.contactDeleted(entity) | |
0 | 282 |
283 def askConfirmation(self, type, id, data): | |
284 self.dbus_bridge.askConfirmation(type, id, data) | |
285 | |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
286 def actionResult(self, type, id, data): |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
287 self.dbus_bridge.actionResult(type, id, data) |
16
0a024d5e0cd0
New account creation (in-band registration)
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
288 |
25
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
289 def actionResultExt(self, type, id, data): |
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
290 self.dbus_bridge.actionResultExt(type, id, data) |
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
291 |
49 | 292 def updatedValue(self, name, value): |
293 self.dbus_bridge.updatedValue(name, value) | |
294 | |
0 | 295 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
|
296 debug("registering DBus bridge method [%s]",name) |
0 | 297 self.dbus_bridge.register(name, callback) |
298 | |
7
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
299 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
|
300 """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
|
301 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
|
302 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
|
303 self.register(name, method) |
c14a3a7018a5
added dynamic exportation of Dbus bridge method (usefull for plugins)
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
304 |