upload tizen1.0 source
[profile/ivi/obexd.git] / client / driver.c
1 /*
2  *
3  *  OBEX Server
4  *
5  *  Copyright (C) 2007-2010  Marcel Holtmann <marcel@holtmann.org>
6  *
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21  *
22  */
23
24 #ifdef HAVE_CONFIG_H
25 #include <config.h>
26 #endif
27
28 #include <string.h>
29 #include <errno.h>
30 #include <glib.h>
31
32 #include "session.h"
33 #include "driver.h"
34 #include "log.h"
35
36 static GSList *drivers = NULL;
37
38 struct obc_driver *obc_driver_find(const char *pattern)
39 {
40         GSList *l;
41
42         for (l = drivers; l; l = l->next) {
43                 struct obc_driver *driver = l->data;
44
45                 if (strcasecmp(pattern, driver->service) == 0)
46                         return driver;
47
48                 if (strcasecmp(pattern, driver->uuid) == 0)
49                         return driver;
50         }
51
52         return NULL;
53 }
54
55 int obc_driver_register(struct obc_driver *driver)
56 {
57         if (!driver) {
58                 error("Invalid driver");
59                 return -EINVAL;
60         }
61
62         if (obc_driver_find(driver->service)) {
63                 error("Permission denied: service %s already registered",
64                         driver->service);
65                 return -EPERM;
66         }
67
68         DBG("driver %p service %s registered", driver, driver->service);
69
70         drivers = g_slist_append(drivers, driver);
71
72         return 0;
73 }
74
75 void obc_driver_unregister(struct obc_driver *driver)
76 {
77         if (!g_slist_find(drivers, driver)) {
78                 error("Unable to unregister: No such driver %p", driver);
79                 return;
80         }
81
82         DBG("driver %p service %s unregistered", driver, driver->service);
83
84         drivers = g_slist_remove(drivers, driver);
85 }