author | kbarrett |
Fri, 15 Nov 2019 16:58:29 -0500 | |
changeset 59115 | a129f10e1b9a |
parent 48065 | c4f2b6749c86 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
41889
54d1ff9312ce
8169020: Add since element to JDBC deprecated methods
lancea
parents:
32834
diff
changeset
|
2 |
* Copyright (c) 1996, 2016, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
||
26 |
package java.sql; |
|
27 |
||
15658 | 28 |
import java.time.Instant; |
29 |
import java.time.LocalDate; |
|
30 |
||
2 | 31 |
/** |
32 |
* <P>A thin wrapper around a millisecond value that allows |
|
33 |
* JDBC to identify this as an SQL <code>DATE</code> value. A |
|
34 |
* milliseconds value represents the number of milliseconds that |
|
35 |
* have passed since January 1, 1970 00:00:00.000 GMT. |
|
36 |
* <p> |
|
37 |
* To conform with the definition of SQL <code>DATE</code>, the |
|
38 |
* millisecond values wrapped by a <code>java.sql.Date</code> instance |
|
39 |
* must be 'normalized' by setting the |
|
40 |
* hours, minutes, seconds, and milliseconds to zero in the particular |
|
41 |
* time zone with which the instance is associated. |
|
44256 | 42 |
* |
43 |
* @since 1.1 |
|
2 | 44 |
*/ |
45 |
public class Date extends java.util.Date { |
|
46 |
||
47 |
/** |
|
48 |
* Constructs a <code>Date</code> object initialized with the given |
|
49 |
* year, month, and day. |
|
50 |
* <P> |
|
51 |
* The result is undefined if a given argument is out of bounds. |
|
52 |
* |
|
53 |
* @param year the year minus 1900; must be 0 to 8099. (Note that |
|
54 |
* 8099 is 9999 minus 1900.) |
|
55 |
* @param month 0 to 11 |
|
56 |
* @param day 1 to 31 |
|
57 |
* @deprecated instead use the constructor <code>Date(long date)</code> |
|
58 |
*/ |
|
41889
54d1ff9312ce
8169020: Add since element to JDBC deprecated methods
lancea
parents:
32834
diff
changeset
|
59 |
@Deprecated(since="1.2") |
2 | 60 |
public Date(int year, int month, int day) { |
61 |
super(year, month, day); |
|
62 |
} |
|
63 |
||
64 |
/** |
|
65 |
* Constructs a <code>Date</code> object using the given milliseconds |
|
66 |
* time value. If the given milliseconds value contains time |
|
67 |
* information, the driver will set the time components to the |
|
68 |
* time in the default time zone (the time zone of the Java virtual |
|
69 |
* machine running the application) that corresponds to zero GMT. |
|
70 |
* |
|
71 |
* @param date milliseconds since January 1, 1970, 00:00:00 GMT not |
|
72 |
* to exceed the milliseconds representation for the year 8099. |
|
73 |
* A negative number indicates the number of milliseconds |
|
74 |
* before January 1, 1970, 00:00:00 GMT. |
|
75 |
*/ |
|
76 |
public Date(long date) { |
|
77 |
// If the millisecond date value contains time info, mask it out. |
|
78 |
super(date); |
|
79 |
||
80 |
} |
|
81 |
||
82 |
/** |
|
83 |
* Sets an existing <code>Date</code> object |
|
84 |
* using the given milliseconds time value. |
|
85 |
* If the given milliseconds value contains time information, |
|
86 |
* the driver will set the time components to the |
|
87 |
* time in the default time zone (the time zone of the Java virtual |
|
88 |
* machine running the application) that corresponds to zero GMT. |
|
89 |
* |
|
90 |
* @param date milliseconds since January 1, 1970, 00:00:00 GMT not |
|
91 |
* to exceed the milliseconds representation for the year 8099. |
|
92 |
* A negative number indicates the number of milliseconds |
|
93 |
* before January 1, 1970, 00:00:00 GMT. |
|
94 |
*/ |
|
95 |
public void setTime(long date) { |
|
96 |
// If the millisecond date value contains time info, mask it out. |
|
97 |
super.setTime(date); |
|
98 |
} |
|
99 |
||
100 |
/** |
|
101 |
* Converts a string in JDBC date escape format to |
|
102 |
* a <code>Date</code> value. |
|
103 |
* |
|
104 |
* @param s a <code>String</code> object representing a date in |
|
6540 | 105 |
* in the format "yyyy-[m]m-[d]d". The leading zero for <code>mm</code> |
106 |
* and <code>dd</code> may also be omitted. |
|
2 | 107 |
* @return a <code>java.sql.Date</code> object representing the |
108 |
* given date |
|
109 |
* @throws IllegalArgumentException if the date given is not in the |
|
6540 | 110 |
* JDBC date escape format (yyyy-[m]m-[d]d) |
2 | 111 |
*/ |
112 |
public static Date valueOf(String s) { |
|
26596 | 113 |
if (s == null) { |
114 |
throw new java.lang.IllegalArgumentException(); |
|
115 |
} |
|
6298
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
116 |
final int YEAR_LENGTH = 4; |
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
117 |
final int MONTH_LENGTH = 2; |
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
118 |
final int DAY_LENGTH = 2; |
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
119 |
final int MAX_MONTH = 12; |
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
120 |
final int MAX_DAY = 31; |
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
121 |
Date d = null; |
2 | 122 |
|
26596 | 123 |
int firstDash = s.indexOf('-'); |
124 |
int secondDash = s.indexOf('-', firstDash + 1); |
|
125 |
int len = s.length(); |
|
6298
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
126 |
|
26596 | 127 |
if ((firstDash > 0) && (secondDash > 0) && (secondDash < len - 1)) { |
128 |
if (firstDash == YEAR_LENGTH && |
|
129 |
(secondDash - firstDash > 1 && secondDash - firstDash <= MONTH_LENGTH + 1) && |
|
130 |
(len - secondDash > 1 && len - secondDash <= DAY_LENGTH + 1)) { |
|
131 |
int year = Integer.parseInt(s, 0, firstDash, 10); |
|
132 |
int month = Integer.parseInt(s, firstDash + 1, secondDash, 10); |
|
133 |
int day = Integer.parseInt(s, secondDash + 1, len, 10); |
|
6298
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
134 |
|
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
135 |
if ((month >= 1 && month <= MAX_MONTH) && (day >= 1 && day <= MAX_DAY)) { |
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
136 |
d = new Date(year - 1900, month - 1, day); |
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
137 |
} |
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
138 |
} |
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
139 |
} |
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
140 |
if (d == null) { |
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
141 |
throw new java.lang.IllegalArgumentException(); |
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
142 |
} |
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
143 |
|
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
144 |
return d; |
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
145 |
|
2 | 146 |
} |
147 |
||
6298
470b6c49fe5c
6898593: java.sql.Date.valueOf no exception if date given is not in the JDBC date escape syntax
lancea
parents:
5506
diff
changeset
|
148 |
|
2 | 149 |
/** |
150 |
* Formats a date in the date escape format yyyy-mm-dd. |
|
23590 | 151 |
* |
2 | 152 |
* @return a String in yyyy-mm-dd format |
153 |
*/ |
|
11129
f9ad1aadf3fa
7116445: Miscellaneous warnings in the JDBC/RowSet classes
lancea
parents:
6540
diff
changeset
|
154 |
@SuppressWarnings("deprecation") |
2 | 155 |
public String toString () { |
156 |
int year = super.getYear() + 1900; |
|
157 |
int month = super.getMonth() + 1; |
|
158 |
int day = super.getDate(); |
|
159 |
||
26597 | 160 |
char buf[] = new char[10]; |
161 |
formatDecimalInt(year, buf, 0, 4); |
|
162 |
buf[4] = '-'; |
|
163 |
Date.formatDecimalInt(month, buf, 5, 2); |
|
164 |
buf[7] = '-'; |
|
165 |
Date.formatDecimalInt(day, buf, 8, 2); |
|
166 |
||
48065
c4f2b6749c86
8176188: jdk/internal/misc/JavaLangAccess/NewUnsafeString.java failing since 9-b93
redestad
parents:
47216
diff
changeset
|
167 |
return new String(buf); |
26597 | 168 |
} |
2 | 169 |
|
26616 | 170 |
/** |
26597 | 171 |
* Formats an unsigned integer into a char array in decimal output format. |
172 |
* Numbers will be zero-padded or truncated if the string representation |
|
173 |
* of the integer is smaller than or exceeds len, respectively. |
|
174 |
* |
|
175 |
* Should consider moving this to Integer and expose it through |
|
176 |
* JavaLangAccess similar to Integer::formatUnsignedInt |
|
26616 | 177 |
* @param val Value to convert |
178 |
* @param buf Array containing converted value |
|
179 |
* @param offset Starting pos in buf |
|
180 |
* @param len length of output value |
|
26597 | 181 |
*/ |
26619
28b1c3535fe7
8058413: Change formatDecimalInt so it is package private
lancea
parents:
26616
diff
changeset
|
182 |
static void formatDecimalInt(int val, char[] buf, int offset, int len) { |
26597 | 183 |
int charPos = offset + len; |
184 |
do { |
|
185 |
buf[--charPos] = (char)('0' + (val % 10)); |
|
186 |
val /= 10; |
|
187 |
} while (charPos > offset); |
|
2 | 188 |
} |
189 |
||
190 |
// Override all the time operations inherited from java.util.Date; |
|
191 |
||
192 |
/** |
|
193 |
* This method is deprecated and should not be used because SQL Date |
|
194 |
* values do not have a time component. |
|
195 |
* |
|
196 |
* @deprecated |
|
197 |
* @exception java.lang.IllegalArgumentException if this method is invoked |
|
198 |
* @see #setHours |
|
199 |
*/ |
|
41889
54d1ff9312ce
8169020: Add since element to JDBC deprecated methods
lancea
parents:
32834
diff
changeset
|
200 |
@Deprecated(since="1.2") |
2 | 201 |
public int getHours() { |
202 |
throw new java.lang.IllegalArgumentException(); |
|
203 |
} |
|
204 |
||
205 |
/** |
|
206 |
* This method is deprecated and should not be used because SQL Date |
|
207 |
* values do not have a time component. |
|
208 |
* |
|
209 |
* @deprecated |
|
210 |
* @exception java.lang.IllegalArgumentException if this method is invoked |
|
211 |
* @see #setMinutes |
|
212 |
*/ |
|
41889
54d1ff9312ce
8169020: Add since element to JDBC deprecated methods
lancea
parents:
32834
diff
changeset
|
213 |
@Deprecated(since="1.2") |
2 | 214 |
public int getMinutes() { |
215 |
throw new java.lang.IllegalArgumentException(); |
|
216 |
} |
|
217 |
||
218 |
/** |
|
219 |
* This method is deprecated and should not be used because SQL Date |
|
220 |
* values do not have a time component. |
|
221 |
* |
|
222 |
* @deprecated |
|
223 |
* @exception java.lang.IllegalArgumentException if this method is invoked |
|
224 |
* @see #setSeconds |
|
225 |
*/ |
|
41889
54d1ff9312ce
8169020: Add since element to JDBC deprecated methods
lancea
parents:
32834
diff
changeset
|
226 |
@Deprecated(since="1.2") |
2 | 227 |
public int getSeconds() { |
228 |
throw new java.lang.IllegalArgumentException(); |
|
229 |
} |
|
230 |
||
231 |
/** |
|
232 |
* This method is deprecated and should not be used because SQL Date |
|
233 |
* values do not have a time component. |
|
234 |
* |
|
235 |
* @deprecated |
|
236 |
* @exception java.lang.IllegalArgumentException if this method is invoked |
|
237 |
* @see #getHours |
|
238 |
*/ |
|
41889
54d1ff9312ce
8169020: Add since element to JDBC deprecated methods
lancea
parents:
32834
diff
changeset
|
239 |
@Deprecated(since="1.2") |
2 | 240 |
public void setHours(int i) { |
241 |
throw new java.lang.IllegalArgumentException(); |
|
242 |
} |
|
243 |
||
244 |
/** |
|
245 |
* This method is deprecated and should not be used because SQL Date |
|
246 |
* values do not have a time component. |
|
247 |
* |
|
248 |
* @deprecated |
|
249 |
* @exception java.lang.IllegalArgumentException if this method is invoked |
|
250 |
* @see #getMinutes |
|
251 |
*/ |
|
41889
54d1ff9312ce
8169020: Add since element to JDBC deprecated methods
lancea
parents:
32834
diff
changeset
|
252 |
@Deprecated(since="1.2") |
2 | 253 |
public void setMinutes(int i) { |
254 |
throw new java.lang.IllegalArgumentException(); |
|
255 |
} |
|
256 |
||
257 |
/** |
|
258 |
* This method is deprecated and should not be used because SQL Date |
|
259 |
* values do not have a time component. |
|
260 |
* |
|
261 |
* @deprecated |
|
262 |
* @exception java.lang.IllegalArgumentException if this method is invoked |
|
263 |
* @see #getSeconds |
|
264 |
*/ |
|
41889
54d1ff9312ce
8169020: Add since element to JDBC deprecated methods
lancea
parents:
32834
diff
changeset
|
265 |
@Deprecated(since="1.2") |
2 | 266 |
public void setSeconds(int i) { |
267 |
throw new java.lang.IllegalArgumentException(); |
|
268 |
} |
|
269 |
||
270 |
/** |
|
271 |
* Private serial version unique ID to ensure serialization |
|
272 |
* compatibility. |
|
273 |
*/ |
|
274 |
static final long serialVersionUID = 1511598038487230103L; |
|
15658 | 275 |
|
276 |
/** |
|
277 |
* Obtains an instance of {@code Date} from a {@link LocalDate} object |
|
278 |
* with the same year, month and day of month value as the given |
|
279 |
* {@code LocalDate}. |
|
280 |
* <p> |
|
281 |
* The provided {@code LocalDate} is interpreted as the local date |
|
282 |
* in the local time zone. |
|
283 |
* |
|
284 |
* @param date a {@code LocalDate} to convert |
|
285 |
* @return a {@code Date} object |
|
286 |
* @exception NullPointerException if {@code date} is null |
|
287 |
* @since 1.8 |
|
288 |
*/ |
|
289 |
@SuppressWarnings("deprecation") |
|
290 |
public static Date valueOf(LocalDate date) { |
|
291 |
return new Date(date.getYear() - 1900, date.getMonthValue() -1, |
|
292 |
date.getDayOfMonth()); |
|
293 |
} |
|
294 |
||
295 |
/** |
|
32277
8671ccb7af7c
8133939: javadoc clarification for java.sql.Date.toLocalDate
lancea
parents:
26619
diff
changeset
|
296 |
* Creates a {@code LocalDate} instance using the year, month and day |
8671ccb7af7c
8133939: javadoc clarification for java.sql.Date.toLocalDate
lancea
parents:
26619
diff
changeset
|
297 |
* from this {@code Date} object. |
15658 | 298 |
* @return a {@code LocalDate} object representing the same date value |
299 |
* |
|
300 |
* @since 1.8 |
|
301 |
*/ |
|
302 |
@SuppressWarnings("deprecation") |
|
303 |
public LocalDate toLocalDate() { |
|
304 |
return LocalDate.of(getYear() + 1900, getMonth() + 1, getDate()); |
|
305 |
} |
|
306 |
||
307 |
/** |
|
308 |
* This method always throws an UnsupportedOperationException and should |
|
309 |
* not be used because SQL {@code Date} values do not have a time |
|
310 |
* component. |
|
311 |
* |
|
312 |
* @exception java.lang.UnsupportedOperationException if this method is invoked |
|
313 |
*/ |
|
314 |
@Override |
|
315 |
public Instant toInstant() { |
|
316 |
throw new java.lang.UnsupportedOperationException(); |
|
317 |
} |
|
2 | 318 |
} |