X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gst%2Fgstdatetime.h;h=61a32ec8f65a47c2dd51c8baaef912ca63841933;hb=5470f6df00595f4ab44871e0e633bf15006abc5c;hp=96d8bbdb7badcba719f6607bbc1081bfe2333c23;hpb=d83d9d35eecbb399a165d7376cf16d568491fe74;p=platform%2Fupstream%2Fgstreamer.git diff --git a/gst/gstdatetime.h b/gst/gstdatetime.h index 96d8bbd..61a32ec 100644 --- a/gst/gstdatetime.h +++ b/gst/gstdatetime.h @@ -13,15 +13,18 @@ * * 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. + * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301, USA. */ #ifndef __GST_DATE_TIME_H__ #define __GST_DATE_TIME_H__ +#include + #include #include +#include G_BEGIN_DECLS @@ -32,35 +35,129 @@ G_BEGIN_DECLS * 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. + * Use the accessor functions to get the stored values. */ typedef struct _GstDateTime GstDateTime; -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); +GST_API GType _gst_date_time_type; + +/** + * GST_TYPE_DATE_TIME: + * + * a boxed #GValue type for #GstDateTime that represents a date and time. + * + * Returns: the #GType of GstDateTime + */ + +#define GST_TYPE_DATE_TIME (_gst_date_time_type) + +GST_API +GType gst_date_time_get_type (void); + +/* query which fields are set */ + +GST_API +gboolean gst_date_time_has_year (const GstDateTime * datetime); + +GST_API +gboolean gst_date_time_has_month (const GstDateTime * datetime); + +GST_API +gboolean gst_date_time_has_day (const GstDateTime * datetime); + +GST_API +gboolean gst_date_time_has_time (const GstDateTime * datetime); + +GST_API +gboolean gst_date_time_has_second (const GstDateTime * datetime); + +/* field getters */ + +GST_API +gint gst_date_time_get_year (const GstDateTime * datetime); + +GST_API +gint gst_date_time_get_month (const GstDateTime * datetime); + +GST_API +gint gst_date_time_get_day (const GstDateTime * datetime); + +GST_API +gint gst_date_time_get_hour (const GstDateTime * datetime); +GST_API +gint gst_date_time_get_minute (const GstDateTime * datetime); + +GST_API +gint gst_date_time_get_second (const GstDateTime * datetime); + +GST_API +gint gst_date_time_get_microsecond (const GstDateTime * datetime); + +GST_API +gfloat gst_date_time_get_time_zone_offset (const GstDateTime * datetime); + +/* constructors */ + +GST_API GstDateTime * gst_date_time_new_from_unix_epoch_local_time (gint64 secs) G_GNUC_MALLOC; + +GST_API GstDateTime * gst_date_time_new_from_unix_epoch_utc (gint64 secs) G_GNUC_MALLOC; -GstDateTime * gst_date_time_new_local_time (gint year, gint month, - gint day, gint hour, + +GST_API +GstDateTime * gst_date_time_new_local_time (gint year, + gint month, + gint day, + gint hour, gint minute, gdouble seconds) G_GNUC_MALLOC; +GST_API +GstDateTime * gst_date_time_new_y (gint year) G_GNUC_MALLOC; + +GST_API +GstDateTime * gst_date_time_new_ym (gint year, + gint month) G_GNUC_MALLOC; +GST_API +GstDateTime * gst_date_time_new_ymd (gint year, + gint month, + gint day) G_GNUC_MALLOC; +GST_API GstDateTime * gst_date_time_new (gfloat tzoffset, gint year, gint month, gint day, gint hour, gint minute, gdouble seconds) G_GNUC_MALLOC; +GST_API GstDateTime * gst_date_time_new_now_local_time (void) G_GNUC_MALLOC; + +GST_API GstDateTime * gst_date_time_new_now_utc (void) G_GNUC_MALLOC; +GST_API +gchar * gst_date_time_to_iso8601_string (GstDateTime * datetime) G_GNUC_MALLOC; + +GST_API +GstDateTime * gst_date_time_new_from_iso8601_string (const gchar * string) G_GNUC_MALLOC; + +GST_API +GDateTime * gst_date_time_to_g_date_time (GstDateTime * datetime); + +GST_API +GstDateTime * gst_date_time_new_from_g_date_time (GDateTime * dt); + +/* refcounting */ + +GST_API GstDateTime * gst_date_time_ref (GstDateTime * datetime); + +GST_API void gst_date_time_unref (GstDateTime * datetime); +#ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstDateTime, gst_date_time_unref) +#endif + G_END_DECLS + #endif /* __GST_DATE_TIME_H__ */