Re: [PATCH 8/8] proximity: reporter: implement D-Bus API

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Arik,

On Thu, Mar 8, 2012 at 9:57 AM, Arik Nemtsov <arik@xxxxxxxxxx> wrote:
>  int reporter_init(struct btd_adapter *adapter)
>  {
> +       struct reporter_adapter *radapter;
> +       DBusConnection *conn;
> +
>        if (!main_opts.attrib_server) {
>                DBG("Attribute server is disabled");
>                return -1;
>        }
>
> -       connection = dbus_bus_get(DBUS_BUS_SYSTEM, NULL);
> -       if (connection == NULL)
> -               return -EIO;
> -       DBG("Proximity Reporter for adapter %p", adapter);
> +       conn = dbus_bus_get(DBUS_BUS_SYSTEM, NULL);
> +       if (!conn)
> +               return -1;
>
> -       register_link_loss(adapter, connection);
> +       radapter = g_new0(struct reporter_adapter, 1);
> +       radapter->adapter = adapter;
> +       radapter->conn = conn;
> +
> +       register_link_loss(adapter, radapter->conn);
>        register_tx_power(adapter);
> -       register_imm_alert(adapter, connection);
> +       register_imm_alert(adapter, radapter->conn);
> +
> +       /*
> +        * Register watches for getting device change events. We watch
> +        * for existing, new and removed devices.
> +        */
> +       radapter->watch_added = g_dbus_add_signal_watch(radapter->conn,
> +                                       BLUEZ_SERVICE, NULL, ADAPTER_INTERFACE,
> +                                       "DeviceAdded", handle_device_change,
> +                                       radapter, NULL);
> +
> +       radapter->watch_created = g_dbus_add_signal_watch(radapter->conn,
> +                                       BLUEZ_SERVICE, NULL, ADAPTER_INTERFACE,
> +                                       "DeviceCreated", handle_device_change,
> +                                       radapter, NULL);
> +
> +       radapter->watch_removed = g_dbus_add_signal_watch(radapter->conn,
> +                                       BLUEZ_SERVICE, NULL, ADAPTER_INTERFACE,
> +                                       "DeviceRemoved", handle_device_change,
> +                                       radapter, NULL);

Again, setting a watcher for BlueZ own signals is strange. Why can't
you use a device driver like other plugins?

> +
> +       reporter_adapters = g_slist_prepend(reporter_adapters, radapter);
> +       DBG("Proximity Reporter for adapter %p", adapter);
>
>        return 0;
>  }

Regards,
-- 
Anderson Lizardo
Instituto Nokia de Tecnologia - INdT
Manaus - Brazil
--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux