Browse Source

telephony-proxy: export sending SMS over DBus

bboozzzoo/sms
Maciek Borzecki 7 years ago
parent
commit
a7a6ca01fd
3 changed files with 48 additions and 0 deletions
  1. +1
    -0
      meson.build
  2. +3
    -0
      src/mconnect/packethandlers-proxy.vala
  3. +44
    -0
      src/mconnect/telephony-proxy.vala

+ 1
- 0
meson.build View File

@ -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',


+ 3
- 0
src/mconnect/packethandlers-proxy.vala View File

@ -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());


+ 44
- 0
src/mconnect/telephony-proxy.vala View File

@ -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 <maciek.borzecki (at] gmail.com>
*/
[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);
}
}

Loading…
Cancel
Save