-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
asyncrt_utils.cpp
1105 lines (973 loc) · 34.2 KB
/
asyncrt_utils.cpp
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/***
* Copyright (C) Microsoft. All rights reserved.
* Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
*
* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
*
* Utilities
*
* For the latest on this and related APIs, please see: https://github.com/Microsoft/cpprestsdk
*
* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
****/
#include "stdafx.h"
#ifndef _WIN32
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunused-local-typedef"
#endif
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/date_time/posix_time/posix_time_io.hpp>
#if defined(__clang__)
#pragma clang diagnostic pop
#endif
#endif
using namespace web;
using namespace utility;
using namespace utility::conversions;
namespace utility
{
namespace details
{
#if !defined(ANDROID) && !defined(__ANDROID__)
std::once_flag g_c_localeFlag;
std::unique_ptr<scoped_c_thread_locale::xplat_locale, void(*)(scoped_c_thread_locale::xplat_locale *)> g_c_locale(nullptr, [](scoped_c_thread_locale::xplat_locale *){});
scoped_c_thread_locale::xplat_locale scoped_c_thread_locale::c_locale()
{
std::call_once(g_c_localeFlag, [&]()
{
scoped_c_thread_locale::xplat_locale *clocale = new scoped_c_thread_locale::xplat_locale();
#ifdef _WIN32
*clocale = _create_locale(LC_ALL, "C");
if (clocale == nullptr || *clocale == nullptr)
{
throw std::runtime_error("Unable to create 'C' locale.");
}
auto deleter = [](scoped_c_thread_locale::xplat_locale *clocale)
{
_free_locale(*clocale);
delete clocale;
};
#else
*clocale = newlocale(LC_ALL, "C", nullptr);
if (clocale == nullptr || *clocale == nullptr)
{
throw std::runtime_error("Unable to create 'C' locale.");
}
auto deleter = [](scoped_c_thread_locale::xplat_locale *clocale)
{
freelocale(*clocale);
delete clocale;
};
#endif
g_c_locale = std::unique_ptr<scoped_c_thread_locale::xplat_locale, void(*)(scoped_c_thread_locale::xplat_locale *)>(clocale, deleter);
});
return *g_c_locale;
}
#endif
#ifdef _WIN32
scoped_c_thread_locale::scoped_c_thread_locale()
: m_prevLocale(), m_prevThreadSetting(-1)
{
char *prevLocale = setlocale(LC_ALL, nullptr);
if (prevLocale == nullptr)
{
throw std::runtime_error("Unable to retrieve current locale.");
}
if (std::strcmp(prevLocale, "C") != 0)
{
m_prevLocale = prevLocale;
m_prevThreadSetting = _configthreadlocale(_ENABLE_PER_THREAD_LOCALE);
if (m_prevThreadSetting == -1)
{
throw std::runtime_error("Unable to enable per thread locale.");
}
if (setlocale(LC_ALL, "C") == nullptr)
{
_configthreadlocale(m_prevThreadSetting);
throw std::runtime_error("Unable to set locale");
}
}
}
scoped_c_thread_locale::~scoped_c_thread_locale()
{
if (m_prevThreadSetting != -1)
{
setlocale(LC_ALL, m_prevLocale.c_str());
_configthreadlocale(m_prevThreadSetting);
}
}
#elif (defined(ANDROID) || defined(__ANDROID__))
scoped_c_thread_locale::scoped_c_thread_locale() {}
scoped_c_thread_locale::~scoped_c_thread_locale() {}
#else
scoped_c_thread_locale::scoped_c_thread_locale()
: m_prevLocale(nullptr)
{
char *prevLocale = setlocale(LC_ALL, nullptr);
if (prevLocale == nullptr)
{
throw std::runtime_error("Unable to retrieve current locale.");
}
if (std::strcmp(prevLocale, "C") != 0)
{
m_prevLocale = uselocale(c_locale());
if (m_prevLocale == nullptr)
{
throw std::runtime_error("Unable to set locale");
}
}
}
scoped_c_thread_locale::~scoped_c_thread_locale()
{
if (m_prevLocale != nullptr)
{
uselocale(m_prevLocale);
}
}
#endif
}
namespace details
{
const std::error_category & __cdecl platform_category()
{
#ifdef _WIN32
return windows_category();
#else
return linux_category();
#endif
}
#ifdef _WIN32
// Remove once VS 2013 is no longer supported.
#if _MSC_VER < 1900
static details::windows_category_impl instance;
#endif
const std::error_category & __cdecl windows_category()
{
#if _MSC_VER >= 1900
static details::windows_category_impl instance;
#endif
return instance;
}
std::string windows_category_impl::message(int errorCode) const CPPREST_NOEXCEPT
{
const size_t buffer_size = 4096;
DWORD dwFlags = FORMAT_MESSAGE_FROM_SYSTEM;
LPCVOID lpSource = NULL;
#if !defined(__cplusplus_winrt)
if (errorCode >= 12000)
{
dwFlags = FORMAT_MESSAGE_FROM_HMODULE;
lpSource = GetModuleHandleA("winhttp.dll"); // this handle DOES NOT need to be freed
}
#endif
std::wstring buffer;
buffer.resize(buffer_size);
const auto result = ::FormatMessageW(
dwFlags,
lpSource,
errorCode,
0,
&buffer[0],
buffer_size,
NULL);
if (result == 0)
{
std::ostringstream os;
os << "Unable to get an error message for error code: " << errorCode << ".";
return os.str();
}
return utility::conversions::to_utf8string(buffer);
}
std::error_condition windows_category_impl::default_error_condition(int errorCode) const CPPREST_NOEXCEPT
{
// First see if the STL implementation can handle the mapping for common cases.
const std::error_condition errCondition = std::system_category().default_error_condition(errorCode);
const std::string errConditionMsg = errCondition.message();
if(_stricmp(errConditionMsg.c_str(), "unknown error") != 0)
{
return errCondition;
}
switch(errorCode)
{
#ifndef __cplusplus_winrt
case ERROR_WINHTTP_TIMEOUT:
return std::errc::timed_out;
case ERROR_WINHTTP_CANNOT_CONNECT:
return std::errc::host_unreachable;
case ERROR_WINHTTP_CONNECTION_ERROR:
return std::errc::connection_aborted;
#endif
case INET_E_RESOURCE_NOT_FOUND:
case INET_E_CANNOT_CONNECT:
return std::errc::host_unreachable;
case INET_E_CONNECTION_TIMEOUT:
return std::errc::timed_out;
case INET_E_DOWNLOAD_FAILURE:
return std::errc::connection_aborted;
default:
break;
}
return std::error_condition(errorCode, *this);
}
#else
const std::error_category & __cdecl linux_category()
{
// On Linux we are using boost error codes which have the exact same
// mapping and are equivalent with std::generic_category error codes.
return std::generic_category();
}
#endif
}
#define LOW_3BITS 0x7
#define LOW_4BITS 0xF
#define LOW_5BITS 0x1F
#define LOW_6BITS 0x3F
#define BIT4 0x8
#define BIT5 0x10
#define BIT6 0x20
#define BIT7 0x40
#define BIT8 0x80
#define L_SURROGATE_START 0xDC00
#define L_SURROGATE_END 0xDFFF
#define H_SURROGATE_START 0xD800
#define H_SURROGATE_END 0xDBFF
#define SURROGATE_PAIR_START 0x10000
inline size_t count_utf8_to_utf16(const std::string& s)
{
const size_t sSize = s.size();
const char* const sData = s.data();
size_t result{ sSize };
for (size_t index = 0; index < sSize;)
{
const char c{ sData[index++] };
if ((c & BIT8) == 0)
{
continue;
}
if ((c & BIT7) == 0)
{
throw std::range_error("UTF-8 string character can never start with 10xxxxxx");
}
else if ((c & BIT6) == 0) // 2 byte character, 0x80 to 0x7FF
{
if (index == sSize)
{
throw std::range_error("UTF-8 string is missing bytes in character");
}
const char c2{ sData[index++] };
if ((c2 & 0xC0) != BIT8)
{
throw std::range_error("UTF-8 continuation byte is missing leading byte");
}
// can't require surrogates for 7FF
--result;
}
else if ((c & BIT5) == 0) // 3 byte character, 0x800 to 0xFFFF
{
if (sSize - index < 2)
{
throw std::range_error("UTF-8 string is missing bytes in character");
}
const char c2{ sData[index++] };
const char c3{ sData[index++] };
if (((c2 | c3) & 0xC0) != BIT8)
{
throw std::range_error("UTF-8 continuation byte is missing leading byte");
}
result -= 2;
}
else if ((c & BIT4) == 0) // 4 byte character, 0x10000 to 0x10FFFF
{
if (sSize - index < 3)
{
throw std::range_error("UTF-8 string is missing bytes in character");
}
const char c2{ sData[index++] };
const char c3{ sData[index++] };
const char c4{ sData[index++] };
if (((c2 | c3 | c4) & 0xC0) != BIT8)
{
throw std::range_error("UTF-8 continuation byte is missing leading byte");
}
const uint32_t codePoint = ((c & LOW_3BITS) << 18) | ((c2 & LOW_6BITS) << 12) | ((c3 & LOW_6BITS) << 6) | (c4 & LOW_6BITS);
result -= (3 - (codePoint >= SURROGATE_PAIR_START));
}
else
{
throw std::range_error("UTF-8 string has invalid Unicode code point");
}
}
return result;
}
utf16string __cdecl conversions::utf8_to_utf16(const std::string &s)
{
// Save repeated heap allocations, use the length of resulting sequence.
const size_t srcSize = s.size();
const std::string::value_type* const srcData = &s[0];
utf16string dest(count_utf8_to_utf16(s), L'\0');
utf16string::value_type* const destData = &dest[0];
size_t destIndex = 0;
for (size_t index = 0; index < srcSize; ++index)
{
std::string::value_type src = srcData[index];
switch (src & 0xF0)
{
case 0xF0: // 4 byte character, 0x10000 to 0x10FFFF
{
const char c2{ srcData[++index] };
const char c3{ srcData[++index] };
const char c4{ srcData[++index] };
uint32_t codePoint = ((src & LOW_3BITS) << 18) | ((c2 & LOW_6BITS) << 12) | ((c3 & LOW_6BITS) << 6) | (c4 & LOW_6BITS);
if (codePoint >= SURROGATE_PAIR_START)
{
// In UTF-16 U+10000 to U+10FFFF are represented as two 16-bit code units, surrogate pairs.
// - 0x10000 is subtracted from the code point
// - high surrogate is 0xD800 added to the top ten bits
// - low surrogate is 0xDC00 added to the low ten bits
codePoint -= SURROGATE_PAIR_START;
destData[destIndex++] = static_cast<utf16string::value_type>((codePoint >> 10) | H_SURROGATE_START);
destData[destIndex++] = static_cast<utf16string::value_type>((codePoint & 0x3FF) | L_SURROGATE_START);
}
else
{
// In UTF-16 U+0000 to U+D7FF and U+E000 to U+FFFF are represented exactly as the Unicode code point value.
// U+D800 to U+DFFF are not valid characters, for simplicity we assume they are not present but will encode
// them if encountered.
destData[destIndex++] = static_cast<utf16string::value_type>(codePoint);
}
}
break;
case 0xE0: // 3 byte character, 0x800 to 0xFFFF
{
const char c2{ srcData[++index] };
const char c3{ srcData[++index] };
destData[destIndex++] = static_cast<utf16string::value_type>(((src & LOW_4BITS) << 12) | ((c2 & LOW_6BITS) << 6) | (c3 & LOW_6BITS));
}
break;
case 0xD0: // 2 byte character, 0x80 to 0x7FF
case 0xC0:
{
const char c2{ srcData[++index] };
destData[destIndex++] = static_cast<utf16string::value_type>(((src & LOW_5BITS) << 6) | (c2 & LOW_6BITS));
}
break;
default: // single byte character, 0x0 to 0x7F
destData[destIndex++] = static_cast<utf16string::value_type>(src);
}
}
return dest;
}
inline size_t count_utf16_to_utf8(const utf16string &w)
{
const utf16string::value_type * const srcData = &w[0];
const size_t srcSize = w.size();
size_t destSize(srcSize);
for (size_t index = 0; index < srcSize; ++index)
{
const utf16string::value_type ch(srcData[index]);
if (ch <= 0x7FF)
{
if (ch > 0x7F) // 2 bytes needed (11 bits used)
{
++destSize;
}
}
// Check for high surrogate.
else if (ch >= H_SURROGATE_START && ch <= H_SURROGATE_END) // 4 bytes need using 21 bits
{
++index;
if (index == srcSize)
{
throw std::range_error("UTF-16 string is missing low surrogate");
}
const auto lowSurrogate = srcData[index];
if (lowSurrogate < L_SURROGATE_START || lowSurrogate > L_SURROGATE_END)
{
throw std::range_error("UTF-16 string has invalid low surrogate");
}
destSize += 2;
}
else // 3 bytes needed (16 bits used)
{
destSize += 2;
}
}
return destSize;
}
std::string __cdecl conversions::utf16_to_utf8(const utf16string &w)
{
const size_t srcSize = w.size();
const utf16string::value_type* const srcData = &w[0];
std::string dest(count_utf16_to_utf8(w), '\0');
std::string::value_type* const destData = &dest[0];
size_t destIndex(0);
for (size_t index = 0; index < srcSize; ++index)
{
const utf16string::value_type src = srcData[index];
if (src <= 0x7FF)
{
if (src <= 0x7F) // single byte character
{
destData[destIndex++] = static_cast<char>(src);
}
else // 2 bytes needed (11 bits used)
{
destData[destIndex++] = static_cast<char>(char((src >> 6) | 0xC0)); // leading 5 bits
destData[destIndex++] = static_cast<char>(char((src & LOW_6BITS) | BIT8)); // trailing 6 bits
}
}
// Check for high surrogate.
else if (src >= H_SURROGATE_START && src <= H_SURROGATE_END)
{
const auto highSurrogate = src;
const auto lowSurrogate = srcData[++index];
// To get from surrogate pair to Unicode code point:
// - subract 0xD800 from high surrogate, this forms top ten bits
// - subract 0xDC00 from low surrogate, this forms low ten bits
// - add 0x10000
// Leaves a code point in U+10000 to U+10FFFF range.
uint32_t codePoint = highSurrogate - H_SURROGATE_START;
codePoint <<= 10;
codePoint |= lowSurrogate - L_SURROGATE_START;
codePoint += SURROGATE_PAIR_START;
// 4 bytes need using 21 bits
destData[destIndex++] = static_cast<char>((codePoint >> 18) | 0xF0); // leading 3 bits
destData[destIndex++] = static_cast<char>(((codePoint >> 12) & LOW_6BITS) | BIT8); // next 6 bits
destData[destIndex++] = static_cast<char>(((codePoint >> 6) & LOW_6BITS) | BIT8); // next 6 bits
destData[destIndex++] = static_cast<char>((codePoint & LOW_6BITS) | BIT8); // trailing 6 bits
}
else // 3 bytes needed (16 bits used)
{
destData[destIndex++] = static_cast<char>((src >> 12) | 0xE0); // leading 4 bits
destData[destIndex++] = static_cast<char>(((src >> 6) & LOW_6BITS) | BIT8); // middle 6 bits
destData[destIndex++] = static_cast<char>((src & LOW_6BITS) | BIT8); // trailing 6 bits
}
}
return dest;
}
utf16string __cdecl conversions::usascii_to_utf16(const std::string &s)
{
// Ascii is a subset of UTF-8 so just convert to UTF-16
return utf8_to_utf16(s);
}
utf16string __cdecl conversions::latin1_to_utf16(const std::string &s)
{
// Latin1 is the first 256 code points in Unicode.
// In UTF-16 encoding each of these is represented as exactly the numeric code point.
utf16string dest;
dest.resize(s.size());
for (size_t i = 0; i < s.size(); ++i)
{
dest[i] = utf16char(static_cast<unsigned char>(s[i]));
}
return dest;
}
utf8string __cdecl conversions::latin1_to_utf8(const std::string &s)
{
return utf16_to_utf8(latin1_to_utf16(s));
}
#ifndef _UTF16_STRINGS
utility::string_t __cdecl conversions::to_string_t(utf16string &&s)
{
return utf16_to_utf8(std::move(s));
}
#endif
#ifdef _UTF16_STRINGS
utility::string_t __cdecl conversions::to_string_t(std::string &&s)
{
return utf8_to_utf16(std::move(s));
}
#endif
#ifndef _UTF16_STRINGS
utility::string_t __cdecl conversions::to_string_t(const utf16string &s)
{
return utf16_to_utf8(s);
}
#endif
#ifdef _UTF16_STRINGS
utility::string_t __cdecl conversions::to_string_t(const std::string &s)
{
return utf8_to_utf16(s);
}
#endif
std::string __cdecl conversions::to_utf8string(const utf16string &value) { return utf16_to_utf8(value); }
utf16string __cdecl conversions::to_utf16string(const std::string &value) { return utf8_to_utf16(value); }
#ifndef WIN32
datetime datetime::timeval_to_datetime(const timeval &time)
{
const uint64_t epoch_offset = 11644473600LL; // diff between windows and unix epochs (seconds)
uint64_t result = epoch_offset + time.tv_sec;
result *= _secondTicks; // convert to 10e-7
result += time.tv_usec * 10; // convert and add microseconds, 10e-6 to 10e-7
return datetime(result);
}
#endif
static bool is_digit(utility::char_t c) { return c >= _XPLATSTR('0') && c <= _XPLATSTR('9'); }
datetime __cdecl datetime::utc_now()
{
#ifdef _WIN32
ULARGE_INTEGER largeInt;
FILETIME fileTime;
GetSystemTimeAsFileTime(&fileTime);
largeInt.LowPart = fileTime.dwLowDateTime;
largeInt.HighPart = fileTime.dwHighDateTime;
return datetime(largeInt.QuadPart);
#else //LINUX
struct timeval time;
gettimeofday(&time, nullptr);
return timeval_to_datetime(time);
#endif
}
utility::string_t datetime::to_string(date_format format) const
{
#ifdef _WIN32
int status;
ULARGE_INTEGER largeInt;
largeInt.QuadPart = m_interval;
FILETIME ft;
ft.dwHighDateTime = largeInt.HighPart;
ft.dwLowDateTime = largeInt.LowPart;
SYSTEMTIME systemTime;
if (!FileTimeToSystemTime((const FILETIME *)&ft, &systemTime))
{
throw utility::details::create_system_error(GetLastError());
}
std::wostringstream outStream;
outStream.imbue(std::locale::classic());
if (format == RFC_1123)
{
#if _WIN32_WINNT < _WIN32_WINNT_VISTA
TCHAR dateStr[18] = {0};
status = GetDateFormat(LOCALE_INVARIANT, 0, &systemTime, __TEXT("ddd',' dd MMM yyyy"), dateStr, sizeof(dateStr) / sizeof(TCHAR));
#else
wchar_t dateStr[18] = {0};
status = GetDateFormatEx(LOCALE_NAME_INVARIANT, 0, &systemTime, L"ddd',' dd MMM yyyy", dateStr, sizeof(dateStr) / sizeof(wchar_t), NULL);
#endif // _WIN32_WINNT < _WIN32_WINNT_VISTA
if (status == 0)
{
throw utility::details::create_system_error(GetLastError());
}
#if _WIN32_WINNT < _WIN32_WINNT_VISTA
TCHAR timeStr[10] = {0};
status = GetTimeFormat(LOCALE_INVARIANT, TIME_NOTIMEMARKER | TIME_FORCE24HOURFORMAT, &systemTime, __TEXT("HH':'mm':'ss"), timeStr, sizeof(timeStr) / sizeof(TCHAR));
#else
wchar_t timeStr[10] = {0};
status = GetTimeFormatEx(LOCALE_NAME_INVARIANT, TIME_NOTIMEMARKER | TIME_FORCE24HOURFORMAT, &systemTime, L"HH':'mm':'ss", timeStr, sizeof(timeStr) / sizeof(wchar_t));
#endif // _WIN32_WINNT < _WIN32_WINNT_VISTA
if (status == 0)
{
throw utility::details::create_system_error(GetLastError());
}
outStream << dateStr << " " << timeStr << " " << "GMT";
}
else if (format == ISO_8601)
{
const size_t buffSize = 64;
#if _WIN32_WINNT < _WIN32_WINNT_VISTA
TCHAR dateStr[buffSize] = {0};
status = GetDateFormat(LOCALE_INVARIANT, 0, &systemTime, __TEXT("yyyy-MM-dd"), dateStr, buffSize);
#else
wchar_t dateStr[buffSize] = {0};
status = GetDateFormatEx(LOCALE_NAME_INVARIANT, 0, &systemTime, L"yyyy-MM-dd", dateStr, buffSize, NULL);
#endif // _WIN32_WINNT < _WIN32_WINNT_VISTA
if (status == 0)
{
throw utility::details::create_system_error(GetLastError());
}
#if _WIN32_WINNT < _WIN32_WINNT_VISTA
TCHAR timeStr[buffSize] = {0};
status = GetTimeFormat(LOCALE_INVARIANT, TIME_NOTIMEMARKER | TIME_FORCE24HOURFORMAT, &systemTime, __TEXT("HH':'mm':'ss"), timeStr, buffSize);
#else
wchar_t timeStr[buffSize] = {0};
status = GetTimeFormatEx(LOCALE_NAME_INVARIANT, TIME_NOTIMEMARKER | TIME_FORCE24HOURFORMAT, &systemTime, L"HH':'mm':'ss", timeStr, buffSize);
#endif // _WIN32_WINNT < _WIN32_WINNT_VISTA
if (status == 0)
{
throw utility::details::create_system_error(GetLastError());
}
outStream << dateStr << "T" << timeStr;
uint64_t frac_sec = largeInt.QuadPart % _secondTicks;
if (frac_sec > 0)
{
// Append fractional second, which is a 7-digit value with no trailing zeros
// This way, '1200' becomes '00012'
char buf[9] = { 0 };
sprintf_s(buf, sizeof(buf), ".%07ld", (long int)frac_sec);
// trim trailing zeros
for (int i = 7; buf[i] == '0'; i--) buf[i] = '\0';
outStream << buf;
}
outStream << "Z";
}
return outStream.str();
#else //LINUX
uint64_t input = m_interval;
uint64_t frac_sec = input % _secondTicks;
input /= _secondTicks; // convert to seconds
time_t time = (time_t)input - (time_t)11644473600LL;// diff between windows and unix epochs (seconds)
struct tm datetime;
gmtime_r(&time, &datetime);
const int max_dt_length = 64;
char output[max_dt_length+1] = {0};
if (format != RFC_1123 && frac_sec > 0)
{
// Append fractional second, which is a 7-digit value with no trailing zeros
// This way, '1200' becomes '00012'
char buf[9] = { 0 };
snprintf(buf, sizeof(buf), ".%07ld", (long int)frac_sec);
// trim trailing zeros
for (int i = 7; buf[i] == '0'; i--) buf[i] = '\0';
// format the datetime into a separate buffer
char datetime_str[max_dt_length+1] = {0};
strftime(datetime_str, sizeof(datetime_str), "%Y-%m-%dT%H:%M:%S", &datetime);
// now print this buffer into the output buffer
snprintf(output, sizeof(output), "%s%sZ", datetime_str, buf);
}
else
{
strftime(output, sizeof(output),
format == RFC_1123 ? "%a, %d %b %Y %H:%M:%S GMT" : "%Y-%m-%dT%H:%M:%SZ",
&datetime);
}
return std::string(output);
#endif
}
#ifdef _WIN32
bool __cdecl datetime::system_type_to_datetime(void* pvsysTime, uint64_t seconds, datetime * pdt)
{
SYSTEMTIME* psysTime = (SYSTEMTIME*)pvsysTime;
FILETIME fileTime;
if (SystemTimeToFileTime(psysTime, &fileTime))
{
ULARGE_INTEGER largeInt;
largeInt.LowPart = fileTime.dwLowDateTime;
largeInt.HighPart = fileTime.dwHighDateTime;
// Add hundredths of nanoseconds
largeInt.QuadPart += seconds;
*pdt = datetime(largeInt.QuadPart);
return true;
}
return false;
}
#endif
// Take a string that represents a fractional second and return the number of ticks
// This is equivalent to doing atof on the string and multiplying by 10000000,
// but does not lose precision
template<typename StringIterator>
uint64_t timeticks_from_second(StringIterator begin, StringIterator end)
{
int size = (int)(end - begin);
_ASSERTE(begin[0] == U('.'));
uint64_t ufrac_second = 0;
for (int i = 1; i <= 7; ++i)
{
ufrac_second *= 10;
int add = i < size ? begin[i] - U('0') : 0;
ufrac_second += add;
}
return ufrac_second;
}
void extract_fractional_second(const utility::string_t& dateString, utility::string_t& resultString, uint64_t& ufrac_second)
{
resultString = dateString;
// First, the string must be strictly longer than 2 characters, and the trailing character must be 'Z'
if (resultString.size() > 2 && resultString[resultString.size() - 1] == U('Z'))
{
// Second, find the last non-digit by scanning the string backwards
auto last_non_digit = std::find_if_not(resultString.rbegin() + 1, resultString.rend(), is_digit);
if (last_non_digit < resultString.rend() - 1)
{
// Finally, make sure the last non-digit is a dot:
auto last_dot = last_non_digit.base() - 1;
if (*last_dot == U('.'))
{
// Got it! Now extract the fractional second
auto last_before_Z = std::end(resultString) - 1;
ufrac_second = timeticks_from_second(last_dot, last_before_Z);
// And erase it from the string
resultString.erase(last_dot, last_before_Z);
}
}
}
}
datetime __cdecl datetime::from_string(const utility::string_t& dateString, date_format format)
{
// avoid floating point math to preserve precision
uint64_t ufrac_second = 0;
#ifdef _WIN32
datetime result;
if (format == RFC_1123)
{
SYSTEMTIME sysTime = {0};
std::wstring month(3, L'\0');
std::wstring unused(3, L'\0');
const wchar_t * formatString = L"%3c, %2d %3c %4d %2d:%2d:%2d %3c";
auto n = swscanf_s(dateString.c_str(), formatString,
unused.data(), unused.size(),
&sysTime.wDay,
month.data(), month.size(),
&sysTime.wYear,
&sysTime.wHour,
&sysTime.wMinute,
&sysTime.wSecond,
unused.data(), unused.size());
if (n == 8)
{
std::wstring monthnames[12] = {L"Jan", L"Feb", L"Mar", L"Apr", L"May", L"Jun", L"Jul", L"Aug", L"Sep", L"Oct", L"Nov", L"Dec"};
auto loc = std::find_if(monthnames, monthnames+12, [&month](const std::wstring& m) { return m == month;});
if (loc != monthnames+12)
{
sysTime.wMonth = (short) ((loc - monthnames) + 1);
if (system_type_to_datetime(&sysTime, ufrac_second, &result))
{
return result;
}
}
}
}
else if (format == ISO_8601)
{
// Unlike FILETIME, SYSTEMTIME does not have enough precision to hold seconds in 100 nanosecond
// increments. Therefore, start with seconds and milliseconds set to 0, then add them separately
// Try to extract the fractional second from the timestamp
utility::string_t input;
extract_fractional_second(dateString, input, ufrac_second);
{
SYSTEMTIME sysTime = { 0 };
const wchar_t * formatString = L"%4d-%2d-%2dT%2d:%2d:%2dZ";
auto n = swscanf_s(input.c_str(), formatString,
&sysTime.wYear,
&sysTime.wMonth,
&sysTime.wDay,
&sysTime.wHour,
&sysTime.wMinute,
&sysTime.wSecond);
if (n == 3 || n == 6)
{
if (system_type_to_datetime(&sysTime, ufrac_second, &result))
{
return result;
}
}
}
{
SYSTEMTIME sysTime = {0};
DWORD date = 0;
const wchar_t * formatString = L"%8dT%2d:%2d:%2dZ";
auto n = swscanf_s(input.c_str(), formatString,
&date,
&sysTime.wHour,
&sysTime.wMinute,
&sysTime.wSecond);
if (n == 1 || n == 4)
{
sysTime.wDay = date % 100;
date /= 100;
sysTime.wMonth = date % 100;
date /= 100;
sysTime.wYear = (WORD)date;
if (system_type_to_datetime(&sysTime, ufrac_second, &result))
{
return result;
}
}
}
{
SYSTEMTIME sysTime = {0};
GetSystemTime(&sysTime); // Fill date portion with today's information
sysTime.wSecond = 0;
sysTime.wMilliseconds = 0;
const wchar_t * formatString = L"%2d:%2d:%2dZ";
auto n = swscanf_s(input.c_str(), formatString,
&sysTime.wHour,
&sysTime.wMinute,
&sysTime.wSecond);
if (n == 3)
{
if (system_type_to_datetime(&sysTime, ufrac_second, &result))
{
return result;
}
}
}
}
return datetime();
#else
std::string input(dateString);
struct tm output = tm();
if (format == RFC_1123)
{
strptime(input.data(), "%a, %d %b %Y %H:%M:%S GMT", &output);
}
else
{
// Try to extract the fractional second from the timestamp
utility::string_t input;
extract_fractional_second(dateString, input, ufrac_second);
auto result = strptime(input.data(), "%Y-%m-%dT%H:%M:%SZ", &output);
if (result == nullptr)
{
result = strptime(input.data(), "%Y%m%dT%H:%M:%SZ", &output);
}
if (result == nullptr)
{
// Fill the date portion with the epoch,
// strptime will do the rest
memset(&output, 0, sizeof(struct tm));
output.tm_year = 70;
output.tm_mon = 1;
output.tm_mday = 1;
result = strptime(input.data(), "%H:%M:%SZ", &output);
}
if (result == nullptr)
{
result = strptime(input.data(), "%Y-%m-%d", &output);
}
if (result == nullptr)
{
result = strptime(input.data(), "%Y%m%d", &output);
}
if (result == nullptr)
{
return datetime();
}
}
#if (defined(ANDROID) || defined(__ANDROID__))
// HACK: The (nonportable?) POSIX function timegm is not available in
// bionic. As a workaround[1][2], we set the C library timezone to
// UTC, call mktime, then set the timezone back. However, the C
// environment is fundamentally a shared global resource and thread-
// unsafe. We can protect our usage here, however any other code might
// manipulate the environment at the same time.
//
// [1] http://linux.die.net/man/3/timegm
// [2] http://www.gnu.org/software/libc/manual/html_node/Broken_002ddown-Time.html
time_t time;
static boost::mutex env_var_lock;
{
boost::lock_guard<boost::mutex> lock(env_var_lock);
std::string prev_env;
auto prev_env_cstr = getenv("TZ");
if (prev_env_cstr != nullptr)
{
prev_env = prev_env_cstr;
}
setenv("TZ", "UTC", 1);
time = mktime(&output);
if (prev_env_cstr)
{
setenv("TZ", prev_env.c_str(), 1);
}
else
{
unsetenv("TZ");
}
}
#else
time_t time = timegm(&output);
#endif
struct timeval tv = timeval();
tv.tv_sec = time;
auto result = timeval_to_datetime(tv);
// fractional seconds are already in correct format so just add them.
result = result + ufrac_second;
return result;
#endif
}
/// <summary>
/// Converts a timespan/interval in seconds to xml duration string as specified by
/// http://www.w3.org/TR/xmlschema-2/#duration
/// </summary>
utility::string_t __cdecl timespan::seconds_to_xml_duration(utility::seconds durationSecs)
{
auto numSecs = durationSecs.count();
// Find the number of minutes
auto numMins = numSecs / 60;
if (numMins > 0)
{
numSecs = numSecs % 60;
}