]> git.stg.codes - stg.git/blob - libs/common/include/stg/common.h
Port to CMake, get rid of os_int.h.
[stg.git] / libs / common / include / stg / common.h
1 /*
2  *    This program is free software; you can redistribute it and/or modify
3  *    it under the terms of the GNU General Public License as published by
4  *    the Free Software Foundation; either version 2 of the License, or
5  *    (at your option) any later version.
6  *
7  *    This program is distributed in the hope that it will be useful,
8  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *    GNU General Public License for more details.
11  *
12  *    You should have received a copy of the GNU General Public License
13  *    along with this program; if not, write to the Free Software
14  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15  */
16
17 /*
18  *    Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
19  */
20
21  /*
22  $Revision: 1.32 $
23  $Date: 2010/11/08 10:11:19 $
24  $Author: faust $
25  */
26
27 #ifndef common_h
28 #define common_h
29
30 //#include "stg/const.h"
31
32 #include <string>
33 #include <sstream>
34 #include <ctime>
35 #include <climits> // NAME_MAX
36 #include <cstdint>
37
38 #include <unistd.h> // uid_t, gid_t
39 #include <sys/stat.h> // mode_t
40
41 #define STAT_TIME_3         (1)
42 #define STAT_TIME_2         (2)
43 #define STAT_TIME_1         (3)
44 #define STAT_TIME_1_2       (4)
45 #define STAT_TIME_1_4       (5)
46 #define STAT_TIME_1_6       (6)
47
48 #define FN_STR_LEN      (NAME_MAX)
49
50 #define ST_F    0
51 #define ST_B    1
52 #define ST_KB   2
53 #define ST_MB   3
54
55 //-----------------------------------------------------------------------------
56 const char    * IntToKMG(int64_t a, int statType = ST_F);
57 const char    * LogDate(time_t t);
58 int             ParesTimeStat(const char * str);
59 int             IsTimeStat(struct tm * t, int statTime);
60 int             strtodouble2(const char * str, double & value);
61 inline int      strtodouble2(const std::string & str, double & value) { return strtodouble2(str.c_str(), value); }
62 int             printfd(const char * __file__, const char * fmt, ...);
63 void            Encode12(char * dst, const char * src, size_t srcLen);
64 void            Decode21(char * dst, const char * src);
65
66 void            Encode12str(std::string & dst, const std::string & src);
67 void            Decode21str(std::string & dst, const std::string & src);
68 inline std::string Encode12str(const std::string & src) { std::string dst; Encode12str(dst, src); return dst; }
69 inline std::string Decode21str(const std::string & src) { std::string dst; Decode21str(dst, src); return dst; }
70
71 int             ParseIPString(const char * str, uint32_t * ips, int maxIP);
72 void            KOIToWin(const char * s1, char * s2, int l);
73 void            WinToKOI(const char * s1, char * s2, int l);
74 void            KOIToWin(const std::string & s1, std::string * s2);
75 void            WinToKOI(const std::string & s1, std::string * s2);
76 int             DaysInMonth(unsigned year, unsigned mon);
77 int             DaysInCurrentMonth();
78 int             Min8(int a);
79 std::string     inet_ntostring(uint32_t);
80 uint32_t        inet_strington(const std::string & value);
81 std::string     TimeToString(time_t time);
82 int             strprintf(std::string * str, const char * fmt, ...);
83 int             ParseTariffTimeStr(const char * str, int &h1, int &m1, int &h2, int &m2);
84 uint32_t        CalcMask(uint32_t msk);
85 void            TouchFile(const std::string & fileName);
86 #ifdef WIN32
87 void            EncodeStr(char * str, unsigned long serial, int useHDD);
88 void            DecodeStr(char * str, unsigned long serial, int useHDD);
89 #endif //WIN32
90 void            SwapBytes(uint16_t & value);
91 void            SwapBytes(uint32_t & value);
92 void            SwapBytes(uint64_t & value);
93 void            SwapBytes(int16_t & value);
94 void            SwapBytes(int32_t & value);
95 void            SwapBytes(int64_t & value);
96
97 std::string &   TrimL(std::string & val);
98 std::string &   TrimR(std::string & val);
99 std::string &   Trim(std::string & val);
100 std::string     Trim(const std::string & val);
101
102 std::string     ToLower(std::string value);
103 std::string     ToUpper(std::string value);
104
105 template <typename C, typename F>
106 inline
107 C Split(const std::string & value, char delim, F conv)
108 {
109 C res;
110 size_t startPos = 0;
111 size_t pos = value.find_first_of(delim);
112 while (pos != std::string::npos)
113     {
114     res.push_back(conv(value.substr(startPos, pos - startPos)));
115     startPos = pos + 1;
116     pos = value.find_first_of(delim, pos + 1);
117     }
118 res.push_back(conv(value.substr(startPos, pos - startPos)));
119 return res;
120 }
121
122 template <typename T>
123 inline
124 T FromString(const std::string & value)
125 {
126 T res;
127 std::istringstream stream(value);
128 stream >> res;
129 return res;
130 }
131
132 template <>
133 inline
134 std::string FromString<std::string>(const std::string & value)
135 {
136 return value;
137 }
138
139 template <typename C>
140 inline
141 C Split(const std::string & value, char delim)
142 {
143     return Split<C>(value, delim, FromString<typename C::value_type>);
144 }
145
146 std::string IconvString(const std::string & source, const std::string & from, const std::string & to);
147
148 int ParseInt(const std::string & str, int * val);
149 int ParseUnsigned(const std::string & str, unsigned * val);
150 int ParseIntInRange(const std::string & str, int min, int max, int * val);
151 int ParseUnsignedInRange(const std::string & str, unsigned min,
152                          unsigned max, unsigned * val);
153 int ParseYesNo(const std::string & str, bool * val);
154
155 bool WaitPackets(int sd);
156
157 bool ReadAll(int sd, void * dest, size_t size);
158 bool WriteAll(int sd, const void * source, size_t size);
159
160 std::string ToPrintable(const std::string & src);
161
162 std::string formatTime(time_t value);
163 time_t readTime(const std::string & value);
164 //-----------------------------------------------------------------------------
165 int str2x(const std::string & str, int32_t & x);
166 int str2x(const std::string & str, uint32_t & x);
167 inline
168 int str2x(const std::string & str, double & x) { return strtodouble2(str.c_str(), x); }
169 #ifndef WIN32
170 int str2x(const std::string & str, int64_t & x);
171 int str2x(const std::string & str, uint64_t & x);
172 #endif
173 //-----------------------------------------------------------------------------
174 const std::string & x2str(uint32_t x, std::string & s);
175 const std::string & x2str(uint64_t x, std::string & s);
176 //-----------------------------------------------------------------------------
177 const std::string & x2str(double x, std::string & s);
178 //-----------------------------------------------------------------------------
179
180 template <typename varT>
181 int str2x(const std::string & str, varT & x);
182 template <typename varT>
183 const std::string & x2str(varT x, std::string & s);
184 template <typename varT>
185 std::string x2str(varT x) { std::string s; return x2str(x, s); }
186 template <typename varT>
187 const std::string & unsigned2str(varT x, std::string & s);
188 template <typename varT>
189 std::string unsigned2str(varT x) { std::string s; return unsigned2str(x, s); }
190
191 //-----------------------------------------------------------------------------
192 template <typename varT>
193 inline
194 int str2x(const std::string & str, varT & x)
195 {
196     int pos = 0;
197     int minus = 1;
198
199     if (str.empty())
200         return -1;
201
202     if (str[0] == '+')
203         pos++;
204
205     if (str[0] == '-')
206     {
207         pos++;
208         minus = -1;
209     }
210
211     if ((str[pos] < '0' || str[pos] > '9'))
212         return -1;
213
214     x = str[pos++] - '0';
215
216     for (unsigned i = pos; i < str.size(); i++)
217     {
218         if ((str[i] < '0' || str[i] > '9'))
219             return -1;
220
221         x *= 10;
222         x += str[i] - '0';
223     }
224
225     x *= minus;
226
227     return 0;
228 }
229 //-----------------------------------------------------------------------------
230 template <typename varT>
231 inline
232 const std::string & x2str(varT x, std::string & s)
233 {
234     varT xx = x;
235     int pos = 1;
236
237     x /= 10;
238     while (x != 0)
239     {
240         x /= 10;
241         pos++;
242     }
243
244     if (xx < 0)
245     {
246         pos++;
247         s.resize(pos, 0);
248         s[0] = '-';
249     }
250     else if (xx > 0)
251     {
252         s.resize(pos, 0);
253     }
254     else
255     {
256         s.resize(1, 0);
257         s[0] = '0';
258         return s;
259     }
260
261     x = xx;
262
263     while (x != 0)
264     {
265         if (x < 0)
266             s[--pos] = -(x % 10) + '0';
267         else
268             s[--pos] = x % 10 + '0';
269
270         x /= 10;
271     }
272
273     return s;
274 }
275 //-----------------------------------------------------------------------------
276 template <typename varT>
277 inline
278 const std::string & unsigned2str(varT x, std::string & s)
279 {
280     varT xx = x;
281     int pos = 1;
282
283     x /= 10;
284     while (x != 0)
285     {
286         x /= 10;
287         pos++;
288     }
289
290     if (xx > 0)
291     {
292         s.resize(pos, 0);
293     }
294     else
295     {
296         s.resize(1, 0);
297         s[0] = '0';
298         return s;
299     }
300
301     x = xx;
302
303     while (x != 0)
304     {
305         s[--pos] = x % 10 + '0';
306
307         x /= 10;
308     }
309
310     return s;
311 }
312 //-----------------------------------------------------------------------------
313 char * stg_strptime(const char *, const char *, struct tm *);
314 time_t stg_timegm(struct tm *);
315
316 uid_t str2uid(const std::string& name);
317 gid_t str2gid(const std::string& name);
318 mode_t str2mode(const std::string& mode);
319
320 #endif