source: webkit/trunk/JavaScriptCore/runtime/DateConversion.cpp@ 44508

Last change on this file since 44508 was 44508, checked in by Dimitri Glazkov, 16 years ago

JavaScriptCore:

2009-06-08 Dimitri Glazkov <Dimitri Glazkov>

Reviewed by Eric Seidel.

https://bugs.webkit.org/show_bug.cgi?id=26238
Move most of runtime/DateMath functions to wtf/DateMath, and split off conversion-related
helpers to DateConversion.

  • AllInOneFile.cpp: Changed DateMath->DateConversion.
  • GNUmakefile.am: Ditto and added DateMath.
  • JavaScriptCore.exp: Ditto.
  • JavaScriptCore.pri: Ditto.
  • JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj: Ditto.
  • JavaScriptCore.vcproj/WTF/WTF.vcproj: Added DateMath.
  • JavaScriptCore.xcodeproj/project.pbxproj: Ditto.
  • JavaScriptCoreSources.bkl: Ditto.
  • pcre/pcre_exec.cpp: Changed to use DateMath.
  • profiler/ProfileNode.cpp: (JSC::getCount): Changed to use DateConversion.
  • runtime/DateConstructor.cpp: Ditto.
  • runtime/DateConversion.cpp: Copied from JavaScriptCore/runtime/DateMath.cpp. (JSC::parseDate): Refactored to use null-terminated characters as input.
  • runtime/DateConversion.h: Copied from JavaScriptCore/runtime/DateMath.h.
  • runtime/DateInstance.cpp: Changed to use wtf/DateMath.
  • runtime/DateInstance.h: Ditto.
  • runtime/DateMath.cpp: Removed.
  • runtime/DateMath.h: Removed.
  • runtime/DatePrototype.cpp: Ditto.
  • runtime/InitializeThreading.cpp: Ditto.
  • wtf/DateMath.cpp: Copied from JavaScriptCore/runtime/DateMath.cpp.
  • wtf/DateMath.h: Copied from JavaScriptCore/runtime/DateMath.h.

WebCore:

2009-06-08 Dimitri Glazkov <Dimitri Glazkov>

Reviewed by Eric Seidel.

https://bugs.webkit.org/show_bug.cgi?id=26238
Add parseDate helper to HTTPParsers, which uses WTF::parseDateFromNullTerminatedCharacters.

  • ForwardingHeaders/runtime/DateMath.h: Removed.
  • ForwardingHeaders/wtf/DateMath.h: Copied from WebCore/ForwardingHeaders/runtime/DateMath.h.
  • platform/network/HTTPParsers.cpp: (WebCore::parseDate): Added.
  • platform/network/HTTPParsers.h:
  • platform/network/ResourceResponseBase.cpp: (WebCore::parseDateValueInHeader): Changed to use the new helper.
  • Property svn:eol-style set to native
File size: 3.7 KB
Line 
1/*
2 * Copyright (C) 1999-2000 Harri Porten ([email protected])
3 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
4 * Copyright (C) 2009 Google Inc. All rights reserved.
5 *
6 * The Original Code is Mozilla Communicator client code, released
7 * March 31, 1998.
8 *
9 * The Initial Developer of the Original Code is
10 * Netscape Communications Corporation.
11 * Portions created by the Initial Developer are Copyright (C) 1998
12 * the Initial Developer. All Rights Reserved.
13 *
14 * This library is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU Lesser General Public
16 * License as published by the Free Software Foundation; either
17 * version 2.1 of the License, or (at your option) any later version.
18 *
19 * This library is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * Lesser General Public License for more details.
23 *
24 * You should have received a copy of the GNU Lesser General Public
25 * License along with this library; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 *
28 * Alternatively, the contents of this file may be used under the terms
29 * of either the Mozilla Public License Version 1.1, found at
30 * http://www.mozilla.org/MPL/ (the "MPL") or the GNU General Public
31 * License Version 2.0, found at http://www.fsf.org/copyleft/gpl.html
32 * (the "GPL"), in which case the provisions of the MPL or the GPL are
33 * applicable instead of those above. If you wish to allow use of your
34 * version of this file only under the terms of one of those two
35 * licenses (the MPL or the GPL) and not to allow others to use your
36 * version of this file under the LGPL, indicate your decision by
37 * deletingthe provisions above and replace them with the notice and
38 * other provisions required by the MPL or the GPL, as the case may be.
39 * If you do not delete the provisions above, a recipient may use your
40 * version of this file under any of the LGPL, the MPL or the GPL.
41 */
42
43#include "config.h"
44#include "DateConversion.h"
45
46#include <wtf/DateMath.h>
47
48using namespace WTF;
49
50namespace JSC {
51
52double parseDate(const UString &date)
53{
54 return parseDateFromNullTerminatedCharacters(date.UTF8String().c_str());
55}
56
57UString formatDate(const GregorianDateTime &t)
58{
59 char buffer[100];
60 snprintf(buffer, sizeof(buffer), "%s %s %02d %04d",
61 weekdayName[(t.weekDay + 6) % 7],
62 monthName[t.month], t.monthDay, t.year + 1900);
63 return buffer;
64}
65
66UString formatDateUTCVariant(const GregorianDateTime &t)
67{
68 char buffer[100];
69 snprintf(buffer, sizeof(buffer), "%s, %02d %s %04d",
70 weekdayName[(t.weekDay + 6) % 7],
71 t.monthDay, monthName[t.month], t.year + 1900);
72 return buffer;
73}
74
75UString formatTime(const GregorianDateTime &t, bool utc)
76{
77 char buffer[100];
78 if (utc) {
79 snprintf(buffer, sizeof(buffer), "%02d:%02d:%02d GMT", t.hour, t.minute, t.second);
80 } else {
81 int offset = abs(gmtoffset(t));
82 char timeZoneName[70];
83 struct tm gtm = t;
84 strftime(timeZoneName, sizeof(timeZoneName), "%Z", &gtm);
85
86 if (timeZoneName[0]) {
87 snprintf(buffer, sizeof(buffer), "%02d:%02d:%02d GMT%c%02d%02d (%s)",
88 t.hour, t.minute, t.second,
89 gmtoffset(t) < 0 ? '-' : '+', offset / (60*60), (offset / 60) % 60, timeZoneName);
90 } else {
91 snprintf(buffer, sizeof(buffer), "%02d:%02d:%02d GMT%c%02d%02d",
92 t.hour, t.minute, t.second,
93 gmtoffset(t) < 0 ? '-' : '+', offset / (60*60), (offset / 60) % 60);
94 }
95 }
96 return UString(buffer);
97}
98
99} // namespace JSC
Note: See TracBrowser for help on using the repository browser.