From a7a6ca01fdbd1215c2e85c837f777608f5923da3 Mon Sep 17 00:00:00 2001 From: Maciek Borzecki Date: Sat, 21 Oct 2017 22:25:30 +0200 Subject: [PATCH] telephony-proxy: export sending SMS over DBus --- meson.build | 1 + src/mconnect/packethandlers-proxy.vala | 3 ++ src/mconnect/telephony-proxy.vala | 44 ++++++++++++++++++++++++++ 3 files changed, 48 insertions(+) create mode 100644 src/mconnect/telephony-proxy.vala diff --git a/meson.build b/meson.build index fff5416..20aa50c 100644 --- a/meson.build +++ b/meson.build @@ -39,6 +39,7 @@ mconnect_src = [ 'src/mconnect/battery.vala', 'src/mconnect/battery-proxy.vala', 'src/mconnect/telephony.vala', + 'src/mconnect/telephony-proxy.vala', 'src/mconnect/mousepad.vala', 'src/mconnect/ping.vala', 'src/mconnect/ping-proxy.vala', diff --git a/src/mconnect/packethandlers-proxy.vala b/src/mconnect/packethandlers-proxy.vala index a153906..cc450b1 100644 --- a/src/mconnect/packethandlers-proxy.vala +++ b/src/mconnect/packethandlers-proxy.vala @@ -35,6 +35,9 @@ class PacketHandlersProxy : Object { case ShareHandler.SHARE: { return new ShareHandlerProxy.for_device_handler(dev, iface); } + case TelephonyHandler.TELEPHONY: { + return new TelephonyHandlerProxy.for_device_handler(dev, iface); + } default: warning("cannot register bus handler for %s", iface.get_pkt_type()); diff --git a/src/mconnect/telephony-proxy.vala b/src/mconnect/telephony-proxy.vala new file mode 100644 index 0000000..817edba --- /dev/null +++ b/src/mconnect/telephony-proxy.vala @@ -0,0 +1,44 @@ +/** + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * 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, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * AUTHORS + * Maciek Borzecki + */ + +[DBus (name = "org.mconnect.Device.Telephony")] +class TelephonyHandlerProxy : Object, PacketHandlerInterfaceProxy { + + private Device device = null; + private TelephonyHandler telephony = null; + + public TelephonyHandlerProxy.for_device_handler(Device dev, + PacketHandlerInterface iface) { + this.device = dev; + this.telephony = (TelephonyHandler) iface; + } + + [DBus (visible = false)] + public void bus_register(DBusConnection conn, string path) throws IOError { + conn.register_object(path, this); + } + + [DBus (visible = false)] + public void bus_unregister(DBusConnection conn) throws IOError { + // conn.unregister_object(this); + } + + public void send_sms(string number, string message) { + this.telephony.send_sms(this.device, number, message); + } +} \ No newline at end of file