CPPMyth
Library to interoperate with MythTV server
builtin.h
1 /*
2  * Copyright (C) 2014 Jean-Luc Barriere
3  *
4  * This Program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2, or (at your option)
7  * any later version.
8  *
9  * This Program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; see the file COPYING. If not, write to
16  * the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
17  * MA 02110-1301 USA
18  * http://www.gnu.org/copyleft/gpl.html
19  *
20  */
21 
22 #ifndef BUILTIN_H
23 #define BUILTIN_H
24 
25 #if defined __cplusplus
26 #define __STDC_LIMIT_MACROS
27 extern "C" {
28 #endif
29 
30 #include <cppmyth_config.h>
31 
32 #include <string.h>
33 #include <stdint.h>
34 #include <time.h>
35 #include <stdio.h>
36 
37 #define string_to_int64 __str2int64
38 extern int string_to_int64(const char *str, int64_t *num);
39 
40 #define string_to_int32 __str2int32
41 extern int string_to_int32(const char *str, int32_t *num);
42 
43 #define string_to_int16 __str2int16
44 extern int string_to_int16(const char *str, int16_t *num);
45 
46 #define string_to_int8 __str2int8
47 extern int string_to_int8(const char *str, int8_t *num);
48 
49 #define string_to_uint32 __str2uint32
50 extern int string_to_uint32(const char *str, uint32_t *num);
51 
52 #define string_to_uint16 __str2uint16
53 extern int string_to_uint16(const char *str, uint16_t *num);
54 
55 #define string_to_uint8 __str2uint8
56 extern int string_to_uint8(const char *str, uint8_t *num);
57 
58 #define int64_to_string __int64str
59 static CC_INLINE void int64_to_string(int64_t num, char *str)
60 {
61  sprintf(str, "%lld", (long long)num);
62 }
63 
64 #define int32_to_string __int32str
65 static CC_INLINE void int32_to_string(int32_t num, char *str)
66 {
67  sprintf(str, "%ld", (long)num);
68 }
69 
70 #define int16_to_string __int16str
71 static CC_INLINE void int16_to_string(int16_t num, char *str)
72 {
73  sprintf(str, "%d", num);
74 }
75 
76 #define int8_to_string __int8str
77 static CC_INLINE void int8_to_string(int8_t num, char *str)
78 {
79  sprintf(str, "%d", num);
80 }
81 
82 #define uint32_to_string __uint32str
83 static CC_INLINE void uint32_to_string(uint32_t num, char *str)
84 {
85  sprintf(str, "%lu", (unsigned long)num);
86 }
87 
88 #define uint16_to_string __uint16str
89 static CC_INLINE void uint16_to_string(uint16_t num, char *str)
90 {
91  sprintf(str, "%u", num);
92 }
93 
94 #define uint8_to_string __uint8str
95 static CC_INLINE void uint8_to_string(uint8_t num, char *str)
96 {
97  sprintf(str, "%u", num);
98 }
99 
100 #define TIMESTAMP_UTC_LEN (sizeof("YYYY-MM-DDTHH:MM:SSZ") - 1)
101 #define TIMESTAMP_LEN (sizeof("YYYY-MM-DDTHH:MM:SS") - 1)
102 #define DATESTAMP_LEN (sizeof("YYYY-MM-DD") - 1)
103 #define INVALID_TIME (time_t)(0)
104 
105 #if !HAVE_TIMEGM && !defined(timegm)
106 #define timegm __timegm
107 extern time_t timegm(struct tm *utctime_tm);
108 #endif
109 
110 #if !HAVE_LOCALTIME_R && !defined(localtime_r)
111 #define localtime_r __localtime_r
112 static CC_INLINE struct tm *localtime_r(const time_t *clock, struct tm *result)
113 {
114  struct tm *data;
115  if (!clock || !result)
116  return NULL;
117  data = localtime(clock);
118  if (!data)
119  return NULL;
120  memcpy(result, data, sizeof(*result));
121  return result;
122 }
123 #endif
124 
125 #if !HAVE_GMTIME_R && !defined(gmtime_r)
126 #define gmtime_r __gmtime_r
127 static CC_INLINE struct tm *gmtime_r(const time_t *clock, struct tm *result)
128 {
129  struct tm *data;
130  if (!clock || !result)
131  return NULL;
132  data = gmtime(clock);
133  if (!data)
134  return NULL;
135  memcpy(result, data, sizeof(*result));
136  return result;
137 }
138 #endif
139 
140 #define string_to_time __str2time
141 extern int string_to_time(const char *str, time_t *time);
142 
143 #define time_to_iso8601utc __time2iso8601utc
144 extern void time_to_iso8601utc(time_t time, char *str);
145 
146 #define time_to_iso8601 __time2iso8601
147 extern void time_to_iso8601(time_t time, char *str);
148 
149 #define time_to_isodate __time2isodate
150 extern void time_to_isodate(time_t time, char *str);
151 
152 #ifdef __cplusplus
153 }
154 #endif
155 
156 #endif /* BUILTIN_H */