icaltimezone.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*======================================================================
  2. FILE: icaltimezone.h
  3. CREATOR: Damon Chaplin 15 March 2001
  4. (C) COPYRIGHT 2001, Damon Chaplin <damon@ximian.com>
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of either:
  7. The LGPL as published by the Free Software Foundation, version
  8. 2.1, available at: http://www.gnu.org/licenses/lgpl-2.1.html
  9. Or:
  10. The Mozilla Public License Version 1.0. You may obtain a copy of
  11. the License at http://www.mozilla.org/MPL/
  12. ======================================================================*/
  13. /**
  14. * @file icaltimezone.h
  15. * @brief timezone handling routines
  16. */
  17. #ifndef ICALTIMEZONE_H
  18. #define ICALTIMEZONE_H
  19. #include "libical_ical_export.h"
  20. #include "icalcomponent.h"
  21. #include <stdio.h>
  22. #if !defined(ICALTIMEZONE_DEFINED)
  23. #define ICALTIMEZONE_DEFINED
  24. /** @brief An opaque struct representing a timezone.
  25. * We declare this here to avoid a circular dependancy.
  26. */
  27. typedef struct _icaltimezone icaltimezone;
  28. #endif
  29. /**
  30. * @par Creating/Destroying individual icaltimezones.
  31. */
  32. /** Creates a new icaltimezone. */
  33. LIBICAL_ICAL_EXPORT icaltimezone *icaltimezone_new(void);
  34. LIBICAL_ICAL_EXPORT icaltimezone *icaltimezone_copy(icaltimezone *originalzone);
  35. /** Frees all memory used for the icaltimezone. Set free_struct to free the
  36. icaltimezone struct as well. */
  37. LIBICAL_ICAL_EXPORT void icaltimezone_free(icaltimezone *zone, int free_struct);
  38. /** Sets the prefix to be used for tzid's generated from system tzdata.
  39. Must be globally unique (such as a domain name owned by the developer
  40. of the calling application), and begin and end with forward slashes.
  41. Do not change or de-allocate the string buffer after calling this.
  42. */
  43. LIBICAL_ICAL_EXPORT void icaltimezone_set_tzid_prefix(const char *new_prefix);
  44. /**
  45. * @par Accessing timezones.
  46. */
  47. /** Free any builtin timezone information **/
  48. LIBICAL_ICAL_EXPORT void icaltimezone_free_builtin_timezones(void);
  49. /** Returns the array of builtin icaltimezones. */
  50. LIBICAL_ICAL_EXPORT icalarray *icaltimezone_get_builtin_timezones(void);
  51. /** Returns a single builtin timezone, given its Olson city name. */
  52. LIBICAL_ICAL_EXPORT icaltimezone *icaltimezone_get_builtin_timezone(const char *location);
  53. /** Returns a single builtin timezone, given its offset. */
  54. LIBICAL_ICAL_EXPORT icaltimezone *icaltimezone_get_builtin_timezone_from_offset(int offset,
  55. const char *tzname);
  56. /** Returns a single builtin timezone, given its TZID. */
  57. LIBICAL_ICAL_EXPORT icaltimezone *icaltimezone_get_builtin_timezone_from_tzid(const char *tzid);
  58. /** Returns the UTC timezone. */
  59. LIBICAL_ICAL_EXPORT icaltimezone *icaltimezone_get_utc_timezone(void);
  60. /** Returns the TZID of a timezone. */
  61. LIBICAL_ICAL_EXPORT const char *icaltimezone_get_tzid(icaltimezone *zone);
  62. /** Returns the city name of a timezone. */
  63. LIBICAL_ICAL_EXPORT const char *icaltimezone_get_location(icaltimezone *zone);
  64. /** Returns the TZNAME properties used in the latest STANDARD and DAYLIGHT
  65. components. If they are the same it will return just one, e.g. "LMT".
  66. If they are different it will format them like "EST/EDT". Note that this
  67. may also return NULL. */
  68. LIBICAL_ICAL_EXPORT const char *icaltimezone_get_tznames(icaltimezone *zone);
  69. /** Returns the latitude of a builtin timezone. */
  70. LIBICAL_ICAL_EXPORT double icaltimezone_get_latitude(icaltimezone *zone);
  71. /** Returns the longitude of a builtin timezone. */
  72. LIBICAL_ICAL_EXPORT double icaltimezone_get_longitude(icaltimezone *zone);
  73. /** Returns the VTIMEZONE component of a timezone. */
  74. LIBICAL_ICAL_EXPORT icalcomponent *icaltimezone_get_component(icaltimezone *zone);
  75. /** Sets the VTIMEZONE component of an icaltimezone, initializing the tzid,
  76. location & tzname fields. It returns 1 on success or 0 on failure, i.e.
  77. no TZID was found. */
  78. LIBICAL_ICAL_EXPORT int icaltimezone_set_component(icaltimezone *zone, icalcomponent *comp);
  79. LIBICAL_ICAL_EXPORT const char *icaltimezone_get_display_name(icaltimezone *zone);
  80. /**
  81. * @par Converting times between timezones.
  82. */
  83. LIBICAL_ICAL_EXPORT void icaltimezone_convert_time(struct icaltimetype *tt,
  84. icaltimezone *from_zone,
  85. icaltimezone *to_zone);
  86. /**
  87. * @par Getting offsets from UTC.
  88. */
  89. /** Calculates the UTC offset of a given local time in the given
  90. timezone. It is the number of seconds to add to UTC to get local
  91. time. The is_daylight flag is set to 1 if the time is in
  92. daylight-savings time. */
  93. LIBICAL_ICAL_EXPORT int icaltimezone_get_utc_offset(icaltimezone *zone,
  94. struct icaltimetype *tt, int *is_daylight);
  95. /** Calculates the UTC offset of a given UTC time in the given
  96. timezone. It is the number of seconds to add to UTC to get local
  97. time. The is_daylight flag is set to 1 if the time is in
  98. daylight-savings time. */
  99. LIBICAL_ICAL_EXPORT int icaltimezone_get_utc_offset_of_utc_time(icaltimezone *zone,
  100. struct icaltimetype *tt,
  101. int *is_daylight);
  102. /*
  103. * Handling arrays of timezones. Mainly for internal use.
  104. */
  105. LIBICAL_ICAL_EXPORT icalarray *icaltimezone_array_new(void);
  106. LIBICAL_ICAL_EXPORT void icaltimezone_array_append_from_vtimezone(icalarray *timezones,
  107. icalcomponent *child);
  108. LIBICAL_ICAL_EXPORT void icaltimezone_array_free(icalarray *timezones);
  109. /*
  110. * By request (issue #112) make vtimezone functions public
  111. */
  112. LIBICAL_ICAL_EXPORT void icaltimezone_expand_vtimezone(icalcomponent *comp,
  113. int end_year, icalarray *changes);
  114. LIBICAL_ICAL_EXPORT char *icaltimezone_get_location_from_vtimezone(icalcomponent *component);
  115. LIBICAL_ICAL_EXPORT char *icaltimezone_get_tznames_from_vtimezone(icalcomponent *component);
  116. /*
  117. * @par Handling the default location the timezone files
  118. */
  119. /** Set the directory to look for the zonefiles */
  120. LIBICAL_ICAL_EXPORT void set_zone_directory(char *path);
  121. /** Free memory dedicated to the zonefile directory */
  122. LIBICAL_ICAL_EXPORT void free_zone_directory(void);
  123. LIBICAL_ICAL_EXPORT void icaltimezone_release_zone_tab(void);
  124. /*
  125. * @par Handling whether to use builtin timezone files
  126. */
  127. LIBICAL_ICAL_EXPORT void icaltimezone_set_builtin_tzdata(int set);
  128. LIBICAL_ICAL_EXPORT int icaltimezone_get_builtin_tzdata(void);
  129. /*
  130. * @par Debugging Output.
  131. */
  132. /** Dumps information about changes in the timezone up to and including
  133. max_year. */
  134. LIBICAL_ICAL_EXPORT int icaltimezone_dump_changes(icaltimezone *zone, int max_year, FILE *fp);
  135. /* For the library only -- do not make visible */
  136. extern const char *icaltimezone_tzid_prefix(void);
  137. #endif /* ICALTIMEZONE_H */