mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12096 57a11ea4-9604-0410-9ed3-97b8803252fd
100 lines
2.4 KiB
C
100 lines
2.4 KiB
C
/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/*
|
|
* gsf-timestamp.c:
|
|
*
|
|
* Copyright (C) 2002-2004 Jody Goldberg (jody@gnome.org)
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of version 2.1 of the GNU Lesser General Public
|
|
* License 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 Lesser 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
|
|
*/
|
|
|
|
#include <gsf-config.h>
|
|
#include <gsf/gsf-timestamp.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
|
|
static void
|
|
timestamp_to_string (GValue const *src_value, GValue *dest_value)
|
|
{
|
|
char *str = gsf_timestamp_as_string (g_value_get_boxed (src_value));
|
|
g_value_set_string (dest_value, str);
|
|
g_free (str);
|
|
}
|
|
|
|
GType
|
|
gsf_timestamp_get_type (void)
|
|
{
|
|
static GType our_type = 0;
|
|
|
|
if (our_type == 0) {
|
|
our_type = g_boxed_type_register_static ("GsfTimestamp",
|
|
(GBoxedCopyFunc)gsf_timestamp_copy,
|
|
(GBoxedFreeFunc)gsf_timestamp_free);
|
|
g_value_register_transform_func (our_type, G_TYPE_STRING,
|
|
×tamp_to_string);
|
|
}
|
|
return our_type;
|
|
}
|
|
|
|
GsfTimestamp *
|
|
gsf_timestamp_copy (GsfTimestamp const *stamp)
|
|
{
|
|
GsfTimestamp *res = g_new0 (GsfTimestamp, 1);
|
|
res->timet = stamp->timet;
|
|
return res;
|
|
}
|
|
|
|
void
|
|
gsf_timestamp_free (GsfTimestamp *stamp)
|
|
{
|
|
g_free (stamp);
|
|
}
|
|
|
|
int
|
|
gsf_timestamp_parse (G_GNUC_UNUSED char const *spec,
|
|
G_GNUC_UNUSED GsfTimestamp *stamp)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
char *
|
|
gsf_timestamp_as_string (GsfTimestamp const *stamp)
|
|
{
|
|
time_t t;
|
|
g_return_val_if_fail (stamp != NULL, g_strdup ("<invalid>"));
|
|
|
|
/* Use an honest time_t for ctime. */
|
|
t = stamp->timet;
|
|
/* FIXME FIXME FIXME ctime is not thread safe, use ctime_r if available */
|
|
return g_strdup (ctime (&t));
|
|
}
|
|
|
|
guint
|
|
gsf_timestamp_hash (GsfTimestamp const *stamp)
|
|
{
|
|
return stamp->timet;
|
|
}
|
|
|
|
gboolean
|
|
gsf_timestamp_equal (GsfTimestamp const *a, GsfTimestamp const *b)
|
|
{
|
|
return a->timet == b->timet;
|
|
}
|
|
|
|
void
|
|
gsf_value_set_timestamp (GValue *value, GsfTimestamp const *stamp)
|
|
{
|
|
g_value_set_boxed (value, stamp);
|
|
}
|