5 * Copyright (C) 2007-2010 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30 static unsigned int next_lookup_token = 1;
32 static GSList *driver_list = NULL;
33 static GSList *lookup_list = NULL;
37 connman_proxy_lookup_cb cb;
39 struct connman_service *service;
42 struct connman_proxy_driver *proxy;
45 static void remove_lookup(struct proxy_lookup *lookup)
47 lookup_list = g_slist_remove(lookup_list, lookup);
53 static void remove_lookups(GSList *lookups)
57 for (list = lookups; list; list = list->next) {
58 struct proxy_lookup *lookup = list->data;
60 remove_lookup(lookup);
63 g_slist_free(lookups);
66 static gboolean lookup_callback(gpointer user_data)
68 struct proxy_lookup *lookup = user_data;
76 for (list = driver_list; list; list = list->next) {
77 struct connman_proxy_driver *proxy = list->data;
79 if (proxy->request_lookup == NULL)
82 lookup->proxy = proxy;
86 if (lookup->proxy == NULL ||
87 lookup->proxy->request_lookup(lookup->service,
91 lookup->cb(NULL, lookup->user_data);
93 remove_lookup(lookup);
99 unsigned int connman_proxy_lookup(const char *interface, const char *url,
100 struct connman_service *service,
101 connman_proxy_lookup_cb cb,
104 struct proxy_lookup *lookup;
106 DBG("interface %s url %s", interface, url);
108 if (interface == NULL)
111 lookup = g_try_new0(struct proxy_lookup, 1);
115 lookup->token = next_lookup_token++;
118 lookup->user_data = user_data;
119 lookup->url = g_strdup(url);
120 lookup->service = service;
122 lookup->watch = g_timeout_add_seconds(0, lookup_callback, lookup);
123 if (lookup->watch == 0) {
129 DBG("token %u", lookup->token);
130 lookup_list = g_slist_append(lookup_list, lookup);
132 return lookup->token;
135 void connman_proxy_lookup_cancel(unsigned int token)
138 struct proxy_lookup *lookup = NULL;
140 DBG("token %u", token);
142 for (list = lookup_list; list; list = list->next) {
145 if (lookup->token == token)
149 if (lookup != NULL) {
150 if (lookup->watch > 0) {
151 g_source_remove(lookup->watch);
155 if (lookup->proxy != NULL &&
156 lookup->proxy->cancel_lookup != NULL)
157 lookup->proxy->cancel_lookup(lookup->service,
160 remove_lookup(lookup);
164 void connman_proxy_driver_lookup_notify(struct connman_service *service,
165 const char *url, const char *result)
167 GSList *list, *matches = NULL;
169 DBG("service %p url %s result %s", service, url, result);
171 for (list = lookup_list; list; list = list->next) {
172 struct proxy_lookup *lookup = list->data;
174 if (service != lookup->service)
177 if (g_strcmp0(lookup->url, url) == 0) {
179 lookup->cb(result, lookup->user_data);
181 matches = g_slist_append(matches, lookup);
186 remove_lookups(matches);
189 static gint compare_priority(gconstpointer a, gconstpointer b)
191 const struct connman_proxy_driver *driver1 = a;
192 const struct connman_proxy_driver *driver2 = b;
194 return driver2->priority - driver1->priority;
198 * connman_proxy_driver_register:
199 * @driver: Proxy driver definition
201 * Register a new proxy driver
203 * Returns: %0 on success
205 int connman_proxy_driver_register(struct connman_proxy_driver *driver)
207 DBG("driver %p name %s", driver, driver->name);
209 driver_list = g_slist_insert_sorted(driver_list, driver,
216 * connman_proxy_driver_unregister:
217 * @driver: Proxy driver definition
219 * Remove a previously registered proxy driver
221 void connman_proxy_driver_unregister(struct connman_proxy_driver *driver)
225 DBG("driver %p name %s", driver, driver->name);
227 driver_list = g_slist_remove(driver_list, driver);
229 for (list = lookup_list; list; list = list->next) {
230 struct proxy_lookup *lookup = list->data;
232 if (lookup->proxy == driver)
233 lookup->proxy = NULL;
238 int __connman_proxy_init(void)
245 void __connman_proxy_cleanup(void)
249 remove_lookups(lookup_list);