blob: 151d60fc7fc21594738856ba1bff37913e5b7798 [file] [log] [blame]
/*
*
* BlueZ - Bluetooth protocol stack for Linux
*
* Copyright (C) 2012 Instituto Nokia de Tecnologia - INdT
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <glib.h>
#include <errno.h>
#include <stdbool.h>
#include <bluetooth/uuid.h>
#include "adapter.h"
#include "device.h"
#include "profile.h"
#include "attrib/att.h"
#include "attrib/gattrib.h"
#include "attrib/gatt.h"
#include "gas.h"
#include "log.h"
#include "manager.h"
static int gatt_driver_probe(struct btd_profile *p, struct btd_device *device,
GSList *uuids)
{
struct gatt_primary *gap, *gatt;
gap = btd_device_get_primary(device, GAP_UUID);
gatt = btd_device_get_primary(device, GATT_UUID);
if (gap == NULL || gatt == NULL) {
error("GAP and GATT are mandatory");
return -EINVAL;
}
return gas_register(device, &gap->range, &gatt->range);
}
static void gatt_driver_remove(struct btd_profile *p,
struct btd_device *device)
{
gas_unregister(device);
}
static struct btd_profile gatt_profile = {
.name = "gap-gatt-profile",
.remote_uuids = BTD_UUIDS(GAP_UUID, GATT_UUID),
.device_probe = gatt_driver_probe,
.device_remove = gatt_driver_remove
};
int gatt_manager_init(void)
{
return btd_profile_register(&gatt_profile);
}
void gatt_manager_exit(void)
{
btd_profile_unregister(&gatt_profile);
}