2010-07-16 17:09:12 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2010 Thiago Santos <thiago.sousa.santos@collabora.co.uk>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_DATE_TIME_H__
|
|
|
|
#define __GST_DATE_TIME_H__
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstDateTime:
|
|
|
|
*
|
2010-09-27 22:35:08 +00:00
|
|
|
* Opaque, immutable, refcounted struct that stores date, time and timezone
|
2010-07-16 17:09:12 +00:00
|
|
|
* information. It currently supports ranges from 0001-01-01 to
|
|
|
|
* 9999-12-31 in the Gregorian proleptic calendar.
|
|
|
|
*
|
|
|
|
* Use the acessor functions to get the stored values.
|
|
|
|
*/
|
|
|
|
typedef struct _GstDateTime GstDateTime;
|
|
|
|
|
2012-06-12 22:52:02 +00:00
|
|
|
/* query which fields are set */
|
|
|
|
|
|
|
|
gboolean gst_date_time_has_year (const GstDateTime * datetime);
|
|
|
|
gboolean gst_date_time_has_month (const GstDateTime * datetime);
|
|
|
|
gboolean gst_date_time_has_day (const GstDateTime * datetime);
|
|
|
|
gboolean gst_date_time_has_time (const GstDateTime * datetime);
|
|
|
|
gboolean gst_date_time_has_second (const GstDateTime * datetime);
|
|
|
|
|
|
|
|
/* field getters */
|
|
|
|
|
|
|
|
gint gst_date_time_get_year (const GstDateTime * datetime);
|
|
|
|
gint gst_date_time_get_month (const GstDateTime * datetime);
|
|
|
|
gint gst_date_time_get_day (const GstDateTime * datetime);
|
|
|
|
gint gst_date_time_get_hour (const GstDateTime * datetime);
|
|
|
|
gint gst_date_time_get_minute (const GstDateTime * datetime);
|
|
|
|
gint gst_date_time_get_second (const GstDateTime * datetime);
|
|
|
|
gint gst_date_time_get_microsecond (const GstDateTime * datetime);
|
|
|
|
gfloat gst_date_time_get_time_zone_offset (const GstDateTime * datetime);
|
|
|
|
|
|
|
|
/* constructors */
|
2010-07-16 17:09:12 +00:00
|
|
|
|
2011-11-26 19:44:23 +00:00
|
|
|
GstDateTime * gst_date_time_new_from_unix_epoch_local_time (gint64 secs) G_GNUC_MALLOC;
|
2012-06-12 22:52:02 +00:00
|
|
|
|
2011-11-26 19:44:23 +00:00
|
|
|
GstDateTime * gst_date_time_new_from_unix_epoch_utc (gint64 secs) G_GNUC_MALLOC;
|
2012-06-12 22:52:02 +00:00
|
|
|
|
|
|
|
GstDateTime * gst_date_time_new_local_time (gint year,
|
|
|
|
gint month,
|
|
|
|
gint day,
|
|
|
|
gint hour,
|
2011-11-11 15:52:41 +00:00
|
|
|
gint minute,
|
2011-11-26 19:44:23 +00:00
|
|
|
gdouble seconds) G_GNUC_MALLOC;
|
2012-06-12 22:52:02 +00:00
|
|
|
|
2012-06-12 20:35:42 +00:00
|
|
|
GstDateTime * gst_date_time_new_y (gint year) G_GNUC_MALLOC;
|
2012-06-12 22:52:02 +00:00
|
|
|
|
|
|
|
GstDateTime * gst_date_time_new_ym (gint year,
|
|
|
|
gint month) G_GNUC_MALLOC;
|
|
|
|
|
|
|
|
GstDateTime * gst_date_time_new_ymd (gint year,
|
|
|
|
gint month,
|
2012-06-12 20:35:42 +00:00
|
|
|
gint day) G_GNUC_MALLOC;
|
2012-06-12 22:52:02 +00:00
|
|
|
|
2011-11-11 15:52:41 +00:00
|
|
|
GstDateTime * gst_date_time_new (gfloat tzoffset,
|
|
|
|
gint year, gint month,
|
|
|
|
gint day, gint hour,
|
|
|
|
gint minute,
|
2011-11-26 19:44:23 +00:00
|
|
|
gdouble seconds) G_GNUC_MALLOC;
|
2012-06-12 22:52:02 +00:00
|
|
|
|
2011-11-26 19:44:23 +00:00
|
|
|
GstDateTime * gst_date_time_new_now_local_time (void) G_GNUC_MALLOC;
|
2012-06-12 22:52:02 +00:00
|
|
|
|
2011-11-26 19:44:23 +00:00
|
|
|
GstDateTime * gst_date_time_new_now_utc (void) G_GNUC_MALLOC;
|
2010-07-16 17:09:12 +00:00
|
|
|
|
2012-06-18 06:06:49 +00:00
|
|
|
|
|
|
|
gchar * gst_date_time_to_iso8601_string (GstDateTime * datetime) G_GNUC_MALLOC;
|
|
|
|
GstDateTime * gst_date_time_new_from_iso8601_string (const gchar * string) G_GNUC_MALLOC;
|
|
|
|
|
2012-06-30 01:52:47 +00:00
|
|
|
GDateTime * gst_date_time_to_g_date_time (GstDateTime * datetime);
|
|
|
|
|
|
|
|
GstDateTime * gst_date_time_new_from_g_date_time (GDateTime * dt);
|
|
|
|
|
2012-06-12 22:52:02 +00:00
|
|
|
/* refcounting */
|
|
|
|
|
2011-11-11 15:52:41 +00:00
|
|
|
GstDateTime * gst_date_time_ref (GstDateTime * datetime);
|
2012-06-12 22:52:02 +00:00
|
|
|
|
2011-11-11 15:52:41 +00:00
|
|
|
void gst_date_time_unref (GstDateTime * datetime);
|
2010-07-16 17:09:12 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
2012-06-12 22:52:02 +00:00
|
|
|
|
2010-07-16 17:09:12 +00:00
|
|
|
#endif /* __GST_DATE_TIME_H__ */
|