Mercurial > libervia-backend
annotate frontends/sat_bridge_frontend/DBus.py @ 22:bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 01 Dec 2009 04:56:08 +0100 |
parents | 6928e3cb73a8 |
children | 53e921c8a357 |
rev | line source |
---|---|
0 | 1 #!/usr/bin/python |
2 #-*- coding: utf-8 -*- | |
3 | |
4 """ | |
5 SAT communication bridge | |
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 from bridge_frontend import BridgeFrontend | |
23 import dbus, dbus.glib | |
24 | |
25 | |
26 class DBusBridgeFrontend(BridgeFrontend): | |
27 def __init__(self): | |
28 self.sessions_bus = dbus.SessionBus() | |
29 self.db_object = self.sessions_bus.get_object('org.goffi.SAT', | |
30 '/org/goffi/SAT/bridge') | |
31 self.db_comm_iface = dbus.Interface(self.db_object, | |
32 dbus_interface='org.goffi.SAT.communication') | |
33 self.db_req_iface = dbus.Interface(self.db_object, | |
34 dbus_interface='org.goffi.SAT.request') | |
35 #props = self.db_comm_iface.getProperties() | |
36 | |
37 def register(self, functionName, handler, iface="communication"): | |
38 if iface == "communication": | |
39 self.db_comm_iface.connect_to_signal(functionName, handler) | |
40 elif iface == "request": | |
41 self.db_req_iface.connect_to_signal(functionName, handler) | |
42 | |
43 def connect(self): | |
44 return self.db_comm_iface.connect() | |
45 | |
1 | 46 def disconnect(self): |
47 return self.db_comm_iface.disconnect() | |
48 | |
0 | 49 def getContacts(self): |
50 return self.db_comm_iface.getContacts() | |
51 | |
52 def getPresenceStatus(self): | |
53 return self.db_comm_iface.getPresenceStatus() | |
54 | |
55 def sendMessage(self, to, message): | |
56 return self.db_comm_iface.sendMessage(to, message) | |
57 | |
58 def sendFile(self, to, path): | |
59 return self.db_comm_iface.sendFile(to, path) | |
60 | |
61 def setPresence(self, to="", type="", show="", status="", priority=0): | |
62 return self.db_comm_iface.setPresence(to, type, show, status, priority) | |
63 | |
18
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
64 def setParam(self, name, value, category): |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
65 return self.db_comm_iface.setParam(name, value, category) |
0 | 66 |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
67 def getParamA(self, name, category): |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
68 return self.db_comm_iface.getParamA(name, category) |
0 | 69 |
18
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
70 def getParams(self): |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
71 return self.db_comm_iface.getParams() |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
72 |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
73 def getParamsForCategory(self, category): |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
74 return self.db_comm_iface.getParamsForCategory(category) |
0 | 75 |
76 def getParamsCategories(self): | |
77 return self.db_comm_iface.getParamsCategories() | |
78 | |
79 def getHistory(self, from_jid, to_jid, size): | |
80 return self.db_comm_iface.getHistory(from_jid, to_jid, size) | |
81 | |
82 def addContact(self, jid): | |
83 return self.db_comm_iface.addContact(jid) | |
84 | |
85 def delContact(self, jid): | |
86 return self.db_comm_iface.delContact(jid) | |
87 | |
88 def isConnected(self): | |
89 return self.db_comm_iface.isConnected() | |
90 | |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
91 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
|
92 return self.db_req_iface.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
|
93 |
0 | 94 def confirmationAnswer(self, id, accepted, data): |
95 return self.db_req_iface.confirmationAnswer(id, accepted, data) | |
96 | |
97 def getProgress(self, id): | |
98 return self.db_req_iface.getProgress(id) |