2 * Copyright (C) 2012 Patrick Gansterer <paroga@paroga.com>
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
17 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
20 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 #include "DateConversion.h"
28 #include <wtf/Assertions.h>
29 #include <wtf/DateMath.h>
30 #include <wtf/text/StringBuilder.h>
31 #include <wtf/text/WTFString.h>
42 static inline void appendNumber(StringBuilder
& builder
, int value
)
44 int fillingZerosCount
= width
;
50 String valueString
= String::number(value
);
51 fillingZerosCount
-= valueString
.length();
52 for (int i
= 0; i
< fillingZerosCount
; ++i
)
54 builder
.append(valueString
);
58 void appendNumber
<2>(StringBuilder
& builder
, int value
)
60 ASSERT(0 <= value
&& value
<= 99);
61 builder
.append(static_cast<char>('0' + value
/ 10));
62 builder
.append(static_cast<char>('0' + value
% 10));
65 String
formatDateTime(const GregorianDateTime
& t
, DateTimeFormat format
, bool asUTCVariant
)
67 bool appendDate
= format
& DateTimeFormatDate
;
68 bool appendTime
= format
& DateTimeFormatTime
;
70 StringBuilder builder
;
73 builder
.append(weekdayName
[(t
.weekDay() + 6) % 7]);
76 builder
.appendLiteral(", ");
77 appendNumber
<2>(builder
, t
.monthDay());
79 builder
.append(monthName
[t
.month()]);
82 builder
.append(monthName
[t
.month()]);
84 appendNumber
<2>(builder
, t
.monthDay());
87 appendNumber
<4>(builder
, t
.year());
90 if (appendDate
&& appendTime
)
94 appendNumber
<2>(builder
, t
.hour());
96 appendNumber
<2>(builder
, t
.minute());
98 appendNumber
<2>(builder
, t
.second());
99 builder
.appendLiteral(" GMT");
102 int offset
= abs(t
.utcOffset()) / 60;
103 builder
.append(t
.utcOffset() < 0 ? '-' : '+');
104 appendNumber
<2>(builder
, offset
/ 60);
105 appendNumber
<2>(builder
, offset
% 60);
108 TIME_ZONE_INFORMATION timeZoneInformation
;
109 GetTimeZoneInformation(&timeZoneInformation
);
110 const WCHAR
* timeZoneName
= t
.isDST() ? timeZoneInformation
.DaylightName
: timeZoneInformation
.StandardName
;
113 char timeZoneName
[70];
114 strftime(timeZoneName
, sizeof(timeZoneName
), "%Z", >m
);
116 if (timeZoneName
[0]) {
117 builder
.appendLiteral(" (");
118 builder
.append(timeZoneName
);
124 return builder
.toString().impl();