From: Marcel Holtmann Date: Mon, 14 Dec 2009 04:44:21 +0000 (+0100) Subject: Add framework for handling time servers X-Git-Tag: 2.0_alpha~3071 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2b9ebffd997ea68dbec91e58d060526bcdf24152;p=framework%2Fconnectivity%2Fconnman.git Add framework for handling time servers --- diff --git a/include/timeserver.h b/include/timeserver.h new file mode 100644 index 0000000..eaf11d7 --- /dev/null +++ b/include/timeserver.h @@ -0,0 +1,52 @@ +/* + * + * Connection Manager + * + * Copyright (C) 2007-2009 Intel Corporation. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * 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 + * + */ + +#ifndef __CONNMAN_TIMESERVER_H +#define __CONNMAN_TIMESERVER_H + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * SECTION:timeserver + * @title: timeserver premitives + * @short_description: Functions for handling time servers (including NTP) + */ + +int connman_timeserver_append(const char *server); +int connman_timeserver_remove(const char *server); + +struct connman_timeserver_driver { + const char *name; + int priority; + int (*append) (const char *server); + int (*remove) (const char *server); +}; + +int connman_timeserver_driver_register(struct connman_timeserver_driver *driver); +void connman_timeserver_driver_unregister(struct connman_timeserver_driver *driver); + +#ifdef __cplusplus +} +#endif + +#endif /* __CONNMAN_TIMESERVER_H */ diff --git a/src/connman.h b/src/connman.h index 92a5c12..dcb0aef 100644 --- a/src/connman.h +++ b/src/connman.h @@ -230,6 +230,8 @@ gboolean __connman_element_device_isfiltered(const char *devname); int __connman_utsname_set_hostname(const char *hostname); int __connman_utsname_set_domainname(const char *domainname); +#include + #include int __connman_dhcp_init(void); diff --git a/src/timeserver.c b/src/timeserver.c new file mode 100644 index 0000000..5d68246 --- /dev/null +++ b/src/timeserver.c @@ -0,0 +1,105 @@ +/* + * + * Connection Manager + * + * Copyright (C) 2007-2009 Intel Corporation. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * 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 +#endif + +#include + +#include "connman.h" + +static GSList *driver_list = NULL; + +static gint compare_priority(gconstpointer a, gconstpointer b) +{ + const struct connman_timeserver_driver *driver1 = a; + const struct connman_timeserver_driver *driver2 = b; + + return driver2->priority - driver1->priority; +} + +/** + * connman_timeserver_driver_register: + * @driver: timeserver driver definition + * + * Register a new timeserver driver + * + * Returns: %0 on success + */ +int connman_timeserver_driver_register(struct connman_timeserver_driver *driver) +{ + DBG("driver %p name %s", driver, driver->name); + + driver_list = g_slist_insert_sorted(driver_list, driver, + compare_priority); + + return 0; +} + +/** + * connman_timeserver_driver_unregister: + * @driver: timeserver driver definition + * + * Remove a previously registered timeserver driver + */ +void connman_timeserver_driver_unregister(struct connman_timeserver_driver *driver) +{ + DBG("driver %p name %s", driver, driver->name); + + driver_list = g_slist_remove(driver_list, driver); +} + +/** + * connman_timeserver_append: + * @server: server address + * + * Append time server server address to current list + */ +int connman_timeserver_append(const char *server) +{ + DBG("server %s", server); + + if (server == NULL) + return -EINVAL; + + connman_info("Adding time server %s", server); + + return 0; +} + +/** + * connman_timeserver_remove: + * @server: server address + * + * Remover time server server address from current list + */ +int connman_timeserver_remove(const char *server) +{ + DBG("server %s", server); + + if (server == NULL) + return -EINVAL; + + connman_info("Removing time server %s", server); + + return 0; +}