initial import
[vuplus_webkit] / Source / WebCore / html / MonthInputType.cpp
1 /*
2  * Copyright (C) 2010 Google Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following disclaimer
12  * in the documentation and/or other materials provided with the
13  * distribution.
14  *     * Neither the name of Google Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #include "config.h"
32 #include "MonthInputType.h"
33
34 #include "DateComponents.h"
35 #include "HTMLInputElement.h"
36 #include "HTMLNames.h"
37 #include <wtf/CurrentTime.h>
38 #include <wtf/DateMath.h>
39 #include <wtf/MathExtras.h>
40 #include <wtf/PassOwnPtr.h>
41
42 namespace WebCore {
43
44 using namespace HTMLNames;
45
46 static const double monthDefaultStep = 1.0;
47 static const double monthStepScaleFactor = 1.0;
48
49 PassOwnPtr<InputType> MonthInputType::create(HTMLInputElement* element)
50 {
51     return adoptPtr(new MonthInputType(element));
52 }
53
54 const AtomicString& MonthInputType::formControlType() const
55 {
56     return InputTypeNames::month();
57 }
58
59 DateComponents::Type MonthInputType::dateType() const
60 {
61     return DateComponents::Month;
62 }
63
64 double MonthInputType::valueAsDate() const
65 {
66     DateComponents date;
67     if (!parseToDateComponents(element()->value(), &date))
68         return DateComponents::invalidMilliseconds();
69     double msec = date.millisecondsSinceEpoch();
70     ASSERT(isfinite(msec));
71     return msec;
72 }
73
74 String MonthInputType::serializeWithMilliseconds(double value) const
75 {
76     DateComponents date;
77     if (!date.setMillisecondsSinceEpochForMonth(value))
78         return String();
79     return serializeWithComponents(date);
80 }
81
82 double MonthInputType::defaultValueForStepUp() const
83 {
84     double current = currentTimeMS();
85     double utcOffset = calculateUTCOffset();
86     double dstOffset = calculateDSTOffset(current, utcOffset);
87     int offset = static_cast<int>((utcOffset + dstOffset) / msPerMinute);
88     current += offset * msPerMinute;
89
90     DateComponents date;
91     date.setMillisecondsSinceEpochForMonth(current);
92     double months = date.monthsSinceEpoch();
93     ASSERT(isfinite(months));
94     return months;
95 }
96
97 double MonthInputType::minimum() const
98 {
99     return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumMonth());
100 }
101
102 double MonthInputType::maximum() const
103 {
104     return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumMonth());
105 }
106
107 double MonthInputType::defaultStep() const
108 {
109     return monthDefaultStep;
110 }
111
112 double MonthInputType::stepScaleFactor() const
113 {
114     return monthStepScaleFactor;
115 }
116
117 bool MonthInputType::parsedStepValueShouldBeInteger() const
118 {
119     return true;
120 }
121
122 double MonthInputType::parseToDouble(const String& src, double defaultValue) const
123 {
124     DateComponents date;
125     if (!parseToDateComponents(src, &date))
126         return defaultValue;
127     double months = date.monthsSinceEpoch();
128     ASSERT(isfinite(months));
129     return months;
130 }
131
132 bool MonthInputType::parseToDateComponentsInternal(const UChar* characters, unsigned length, DateComponents* out) const
133 {
134     ASSERT(out);
135     unsigned end;
136     return out->parseMonth(characters, length, 0, end) && end == length;
137 }
138
139 bool MonthInputType::setMillisecondToDateComponents(double value, DateComponents* date) const
140 {
141     ASSERT(date);
142     return date->setMonthsSinceEpoch(value);
143 }
144
145 } // namespace WebCore