summaryrefslogtreecommitdiff
path: root/telepathy-logger/datetime.c
diff options
context:
space:
mode:
Diffstat (limited to 'telepathy-logger/datetime.c')
-rw-r--r--telepathy-logger/datetime.c127
1 files changed, 0 insertions, 127 deletions
diff --git a/telepathy-logger/datetime.c b/telepathy-logger/datetime.c
deleted file mode 100644
index dde31e15d..000000000
--- a/telepathy-logger/datetime.c
+++ /dev/null
@@ -1,127 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-/*
- * Copyright (C) 2003-2007 Imendio AB
- * Copyright (C) 2007-2010 Collabora Ltd.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- *
- * Authors: Richard Hult <richard@imendio.com>
- */
-
-#include "config.h"
-#include "datetime-internal.h"
-
-#include <glib/gi18n.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <time.h>
-
-
-/* Note: time is always in UTC. */
-
-time_t
-_tpl_time_get_current (void)
-{
- return time (NULL);
-}
-
-static time_t
-_tpl_time_get_local_time (struct tm *tm)
-{
- const gchar *tz;
- time_t t;
-
- tz = g_getenv ("TZ");
- g_setenv ("TZ", "", TRUE);
-
- tzset ();
-
- t = mktime (tm);
-
- if (tz != NULL)
- g_setenv ("TZ", tz, TRUE);
- else
- g_unsetenv ("TZ");
-
- tzset ();
-
- return t;
-}
-
-/* The format is: "20021209T23:51:30" and is in UTC. 0 is returned on
- * failure. The alternative format "20021209" is also accepted.
- */
-time_t
-_tpl_time_parse (const gchar *str)
-{
- struct tm tm;
- gint year, month;
- gint n_parsed;
-
- memset (&tm, 0, sizeof (struct tm));
-
- n_parsed = sscanf (str, "%4d%2d%2dT%2d:%2d:%2d",
- &year, &month, &tm.tm_mday, &tm.tm_hour,
- &tm.tm_min, &tm.tm_sec);
- if (n_parsed != 3 && n_parsed != 6)
- {
- return 0;
- }
-
- tm.tm_year = year - 1900;
- tm.tm_mon = month - 1;
- tm.tm_isdst = -1;
-
- return _tpl_time_get_local_time (&tm);
-}
-
-/* Converts the UTC timestamp to a string, also in UTC. Returns NULL on failure. */
-gchar *
-_tpl_time_to_string_utc (time_t t,
- const gchar * format)
-{
- gchar stamp[128];
- struct tm *tm;
-
- g_return_val_if_fail (format != NULL, NULL);
-
- tm = gmtime (&t);
- if (strftime (stamp, sizeof (stamp), format, tm) == 0)
- {
- return NULL;
- }
-
- return g_strdup (stamp);
-}
-
-/* Converts the UTC timestamp to a string, in local time. Returns NULL on failure. */
-gchar *
-_tpl_time_to_string_local (time_t t,
- const gchar *format)
-{
- gchar stamp[128];
- struct tm *tm;
-
- g_return_val_if_fail (format != NULL, NULL);
-
- tm = localtime (&t);
- if (strftime (stamp, sizeof (stamp), format, tm) == 0)
- {
- return NULL;
- }
-
- return g_strdup (stamp);
-}