blob: 07a8c8ca259633d1ebf8b3fba410d15d0c0cd082 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
//
// Copyright (c) 2009-2011 Artyom Beilis (Tonkikh)
//
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef BOOST_LOCALE_IMPL_UTIL_TIMEZONE_HPP
#define BOOST_LOCALE_IMPL_UTIL_TIMEZONE_HPP
#include <string>
#include <stdlib.h>
#include <string.h>
namespace boost {
namespace locale {
namespace util {
inline int parse_tz(std::string const &tz)
{
int gmtoff = 0;
std::string ltz;
for(unsigned i=0;i<tz.size();i++) {
if('a' <= tz[i] && tz[i] <= 'z')
ltz += tz[i]-'a' + 'A';
else if(tz[i]==' ')
;
else
ltz+=tz[i];
}
if(ltz.compare(0,3,"GMT")!=0 && ltz.compare(0,3,"UTC")!=0)
return 0;
if(ltz.size()<=3)
return 0;
char const *begin = ltz.c_str()+3;
char *end=0;
int hours = strtol(begin,&end,10);
if(end != begin) {
gmtoff+=hours * 3600;
}
if(*end==':') {
begin=end+1;
int minutes = strtol(begin,&end,10);
if(end!=begin)
gmtoff+=minutes * 60;
}
return gmtoff;
}
} // util
} // locale
} //boost
#endif
// vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
|