5 * Copyright (C) 2007-2012 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 if (lookup->watch > 0)
48 g_source_remove(lookup->watch);
50 lookup_list = g_slist_remove(lookup_list, lookup);
52 connman_service_unref(lookup->service);
57 static void remove_lookups(GSList *lookups)
61 for (list = lookups; list; list = list->next) {
62 struct proxy_lookup *lookup = list->data;
64 remove_lookup(lookup);
67 g_slist_free(lookups);
70 static gboolean lookup_callback(gpointer user_data)
72 struct proxy_lookup *lookup = user_data;
80 for (list = driver_list; list; list = list->next) {
81 struct connman_proxy_driver *proxy = list->data;
83 if (!proxy->request_lookup)
86 lookup->proxy = proxy;
91 lookup->proxy->request_lookup(lookup->service,
95 lookup->cb(NULL, lookup->user_data);
97 remove_lookup(lookup);
103 unsigned int connman_proxy_lookup(const char *interface, const char *url,
104 struct connman_service *service,
105 connman_proxy_lookup_cb cb,
108 struct proxy_lookup *lookup;
110 DBG("interface %s url %s", interface, url);
115 lookup = g_try_new0(struct proxy_lookup, 1);
119 lookup->token = next_lookup_token++;
122 lookup->user_data = user_data;
123 lookup->url = g_strdup(url);
124 lookup->service = connman_service_ref(service);
126 lookup->watch = g_idle_add(lookup_callback, lookup);
127 if (lookup->watch == 0) {
133 DBG("token %u", lookup->token);
134 lookup_list = g_slist_prepend(lookup_list, lookup);
136 return lookup->token;
139 void connman_proxy_lookup_cancel(unsigned int token)
142 struct proxy_lookup *lookup = NULL;
144 DBG("token %u", token);
146 for (list = lookup_list; list; list = list->next) {
149 if (lookup->token == token)
157 lookup->proxy->cancel_lookup)
158 lookup->proxy->cancel_lookup(lookup->service,
161 remove_lookup(lookup);
165 void connman_proxy_driver_lookup_notify(struct connman_service *service,
166 const char *url, const char *result)
168 GSList *list, *matches = NULL;
170 DBG("service %p url %s result %s", service, url, result);
172 for (list = lookup_list; list; list = list->next) {
173 struct proxy_lookup *lookup = list->data;
175 if (service != lookup->service)
178 if (g_strcmp0(lookup->url, url) == 0) {
180 lookup->cb(result, lookup->user_data);
182 matches = g_slist_prepend(matches, lookup);
187 remove_lookups(matches);
190 static gint compare_priority(gconstpointer a, gconstpointer b)
192 const struct connman_proxy_driver *driver1 = a;
193 const struct connman_proxy_driver *driver2 = b;
195 return driver2->priority - driver1->priority;
199 * connman_proxy_driver_register:
200 * @driver: Proxy driver definition
202 * Register a new proxy driver
204 * Returns: %0 on success
206 int connman_proxy_driver_register(struct connman_proxy_driver *driver)
208 DBG("driver %p name %s", driver, driver->name);
210 driver_list = g_slist_insert_sorted(driver_list, driver,
217 * connman_proxy_driver_unregister:
218 * @driver: Proxy driver definition
220 * Remove a previously registered proxy driver
222 void connman_proxy_driver_unregister(struct connman_proxy_driver *driver)
226 DBG("driver %p name %s", driver, driver->name);
228 driver_list = g_slist_remove(driver_list, driver);
230 for (list = lookup_list; list; list = list->next) {
231 struct proxy_lookup *lookup = list->data;
233 if (lookup->proxy == driver)
234 lookup->proxy = NULL;
239 int __connman_proxy_init(void)
246 void __connman_proxy_cleanup(void)
250 remove_lookups(lookup_list);