Mercurial > libervia-backend
diff frontends/sat_bridge_frontend/DBus.py @ 0:c4bc297b82f0
sat:
- first public release, initial commit
author | goffi@necton2 |
---|---|
date | Sat, 29 Aug 2009 13:34:59 +0200 |
parents | |
children | a06a151fc31f |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/frontends/sat_bridge_frontend/DBus.py Sat Aug 29 13:34:59 2009 +0200 @@ -0,0 +1,89 @@ +#!/usr/bin/python +#-*- coding: utf-8 -*- + +""" +SAT communication bridge +Copyright (C) 2009 Jérôme Poisson (goffi@goffi.org) + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see <http://www.gnu.org/licenses/>. +""" + +from bridge_frontend import BridgeFrontend +import dbus, dbus.glib + + +class DBusBridgeFrontend(BridgeFrontend): + def __init__(self): + self.sessions_bus = dbus.SessionBus() + self.db_object = self.sessions_bus.get_object('org.goffi.SAT', + '/org/goffi/SAT/bridge') + self.db_comm_iface = dbus.Interface(self.db_object, + dbus_interface='org.goffi.SAT.communication') + self.db_req_iface = dbus.Interface(self.db_object, + dbus_interface='org.goffi.SAT.request') + #props = self.db_comm_iface.getProperties() + + def register(self, functionName, handler, iface="communication"): + if iface == "communication": + self.db_comm_iface.connect_to_signal(functionName, handler) + elif iface == "request": + self.db_req_iface.connect_to_signal(functionName, handler) + + def connect(self): + return self.db_comm_iface.connect() + + def getContacts(self): + return self.db_comm_iface.getContacts() + + def getPresenceStatus(self): + return self.db_comm_iface.getPresenceStatus() + + def sendMessage(self, to, message): + return self.db_comm_iface.sendMessage(to, message) + + def sendFile(self, to, path): + return self.db_comm_iface.sendFile(to, path) + + def setPresence(self, to="", type="", show="", status="", priority=0): + return self.db_comm_iface.setPresence(to, type, show, status, priority) + + def setParam(self, name, value, namespace="default"): + return self.db_comm_iface.setParam(name, value, namespace) + + def getParam(self, name, namespace="default"): + return self.db_comm_iface.getParam(name, namespace) + + def getParams(self, namespace="default"): + return self.db_comm_iface.getParams(namespace) + + def getParamsCategories(self): + return self.db_comm_iface.getParamsCategories() + + def getHistory(self, from_jid, to_jid, size): + return self.db_comm_iface.getHistory(from_jid, to_jid, size) + + def addContact(self, jid): + return self.db_comm_iface.addContact(jid) + + def delContact(self, jid): + return self.db_comm_iface.delContact(jid) + + def isConnected(self): + return self.db_comm_iface.isConnected() + + def confirmationAnswer(self, id, accepted, data): + return self.db_req_iface.confirmationAnswer(id, accepted, data) + + def getProgress(self, id): + return self.db_req_iface.getProgress(id)