tsdp_header_Z.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * Copyright (C) 2010-2011 Mamadou Diop.
  3. *
  4. * Contact: Mamadou Diop <diopmamadou(at)doubango[dot]org>
  5. *
  6. * This file is part of Open Source Doubango Framework.
  7. *
  8. * DOUBANGO is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * DOUBANGO is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with DOUBANGO.
  20. *
  21. */
  22. /**@file tsdp_header_Z.h
  23. * @brief SDP "z=" header (Time Zones).
  24. *
  25. * @author Mamadou Diop <diopmamadou(at)doubango[dot]org>
  26. *
  27. *
  28. */
  29. #ifndef _TSDP_HEADER_Z_H_
  30. #define _TSDP_HEADER_Z_H_
  31. #include "tinysdp_config.h"
  32. #include "tinysdp/headers/tsdp_header.h"
  33. TSDP_BEGIN_DECLS
  34. #define TSDP_HEADER_Z_VA_ARGS(time, shifted_back, typed_time) tsdp_header_Z_def_t, (uint64_t)time, (tsk_bool_t)shifted_back, (const char*)typed_time
  35. typedef struct tsdp_zone_s {
  36. TSK_DECLARE_OBJECT;
  37. uint64_t time;
  38. tsk_bool_t shifted_back;
  39. char* typed_time;
  40. }
  41. tsdp_zone_t;
  42. typedef tsk_list_t tsdp_zones_L_t;
  43. TINYSDP_API tsdp_zone_t* tsdp_zone_create(uint64_t time, tsk_bool_t shifted_back, const char* typed_time) ;
  44. TINYSDP_API tsdp_zone_t* tsdp_zone_create_null();
  45. ////////////////////////////////////////////////////////////////////////////////////////////////////
  46. /// @struct
  47. ///
  48. /// @brief SDP "z=" header (Time Zones).
  49. ///
  50. /// @par ABNF : z=time SP ["-"] typed-time
  51. /// *(SP time SP ["-"] typed-time)
  52. /// time = POS-DIGIT 9*DIGIT
  53. /// typed-time = 1*DIGIT [fixed-len-time-unit]
  54. /// fixed-len-time-unit = "d" / "h" / "m" / "s"
  55. ///
  56. ////////////////////////////////////////////////////////////////////////////////////////////////////
  57. typedef struct tsdp_header_Z_s {
  58. TSDP_DECLARE_HEADER;
  59. tsdp_zones_L_t* zones;
  60. }
  61. tsdp_header_Z_t;
  62. typedef tsk_list_t tsdp_headers_Z_L_t;
  63. TINYSDP_API tsdp_header_Z_t* tsdp_header_Z_create(uint64_t time, tsk_bool_t shifted_back, const char* typed_time);
  64. TINYSDP_API tsdp_header_Z_t* tsdp_header_Z_create_null();
  65. TINYSDP_API tsdp_header_Z_t *tsdp_header_Z_parse(const char *data, tsk_size_t size);
  66. TINYSDP_GEXTERN const tsk_object_def_t *tsdp_header_Z_def_t;
  67. TINYSDP_GEXTERN const tsk_object_def_t *tsdp_zone_def_t;
  68. TSDP_END_DECLS
  69. #endif /* _TSDP_HEADER_Z_H_ */