/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ using System; namespace Lucene.Net.Documents { /// Provides support for converting dates to strings and vice-versa. /// The strings are structured so that lexicographic sorting orders /// them by date, which makes them suitable for use as field values /// and search terms. /// ///

This class also helps you to limit the resolution of your dates. Do not /// save dates with a finer resolution than you really need, as then /// RangeQuery and PrefixQuery will require more memory and become slower. /// ///

Compared to {@link DateField} the strings generated by the methods /// in this class take slightly more space, unless your selected resolution /// is set to Resolution.DAY or lower. ///

public class DateTools { // private static readonly System.TimeZone GMT = TimeZone.getTimeZone("GMT"); // {{Aroush-2.1}} private static readonly System.String YEAR_FORMAT = "yyyy"; private static readonly System.String MONTH_FORMAT = "yyyyMM"; private static readonly System.String DAY_FORMAT = "yyyyMMdd"; private static readonly System.String HOUR_FORMAT = "yyyyMMddHH"; private static readonly System.String MINUTE_FORMAT = "yyyyMMddHHmm"; private static readonly System.String SECOND_FORMAT = "yyyyMMddHHmmss"; private static readonly System.String MILLISECOND_FORMAT = "yyyyMMddHHmmssfff"; // cannot create, the class has static methods only private DateTools() { } /// Converts a Date to a string suitable for indexing. /// /// /// the date to be converted /// /// the desired resolution, see /// {@link #Round(Date, DateTools.Resolution)} /// /// a string in format yyyyMMddHHmmssSSS or shorter, /// depeding on resolution; using UTC as timezone /// public static System.String DateToString(System.DateTime date, Resolution resolution) { return TimeToString(date.Ticks, resolution); } /// Converts a millisecond time to a string suitable for indexing. /// /// /// the date expressed as milliseconds since January 1, 1970, 00:00:00 GMT /// /// the desired resolution, see /// {@link #Round(long, DateTools.Resolution)} /// /// a string in format yyyyMMddHHmmssSSS or shorter, /// depeding on resolution; using UTC as timezone /// public static System.String TimeToString(long time, Resolution resolution) { System.Globalization.Calendar cal = new System.Globalization.GregorianCalendar(); //protected in JDK's prior to 1.4 //cal.setTimeInMillis(round(time, resolution)); System.DateTime dt = new System.DateTime(Round(time, resolution)); System.String result; if (resolution == Resolution.YEAR) { lock (YEAR_FORMAT) { result = dt.ToString(YEAR_FORMAT); } } else if (resolution == Resolution.MONTH) { lock (MONTH_FORMAT) { result = dt.ToString(MONTH_FORMAT); } } else if (resolution == Resolution.DAY) { lock (DAY_FORMAT) { result = result = dt.ToString(DAY_FORMAT); } } else if (resolution == Resolution.HOUR) { lock (HOUR_FORMAT) { result = result = dt.ToString(HOUR_FORMAT); } } else if (resolution == Resolution.MINUTE) { lock (MINUTE_FORMAT) { result = result = dt.ToString(MINUTE_FORMAT); } } else if (resolution == Resolution.SECOND) { lock (SECOND_FORMAT) { result = result = dt.ToString(SECOND_FORMAT); } } else if (resolution == Resolution.MILLISECOND) { lock (MILLISECOND_FORMAT) { result = result = dt.ToString(MILLISECOND_FORMAT); } } else { throw new System.ArgumentException("unknown resolution " + resolution); } return result; } /// Converts a string produced by timeToString or /// dateToString back to a time, represented as the /// number of milliseconds since January 1, 1970, 00:00:00 GMT. /// /// /// the date string to be converted /// /// the number of milliseconds since January 1, 1970, 00:00:00 GMT /// /// ParseException if dateString is not in the /// expected format /// public static long StringToTime(System.String dateString) { return StringToDate(dateString).Ticks; } /// Converts a string produced by timeToString or /// dateToString back to a time, represented as a /// Date object. /// /// /// the date string to be converted /// /// the parsed time as a Date object /// /// ParseException if dateString is not in the /// expected format /// public static System.DateTime StringToDate(System.String dateString) { System.DateTime date; if (dateString.Length == 4) { lock (YEAR_FORMAT) { date = new System.DateTime(Convert.ToInt16(dateString.Substring(0, 4)), 1, 1, 0, 0, 0, 0); } } else if (dateString.Length == 6) { lock (MONTH_FORMAT) { date = new System.DateTime(Convert.ToInt16(dateString.Substring(0, 4)), Convert.ToInt16(dateString.Substring(4, 2)), 1, 0, 0, 0, 0); } } else if (dateString.Length == 8) { lock (DAY_FORMAT) { date = new System.DateTime(Convert.ToInt16(dateString.Substring(0, 4)), Convert.ToInt16(dateString.Substring(4, 2)), Convert.ToInt16(dateString.Substring(6, 2)), 0, 0, 0, 0); } } else if (dateString.Length == 10) { lock (HOUR_FORMAT) { date = new System.DateTime(Convert.ToInt16(dateString.Substring(0, 4)), Convert.ToInt16(dateString.Substring(4, 2)), Convert.ToInt16(dateString.Substring(6, 2)), Convert.ToInt16(dateString.Substring(8, 2)), 0, 0, 0); } } else if (dateString.Length == 12) { lock (MINUTE_FORMAT) { date = new System.DateTime(Convert.ToInt16(dateString.Substring(0, 4)), Convert.ToInt16(dateString.Substring(4, 2)), Convert.ToInt16(dateString.Substring(6, 2)), Convert.ToInt16(dateString.Substring(8, 2)), Convert.ToInt16(dateString.Substring(10, 2)), 0, 0); } } else if (dateString.Length == 14) { lock (SECOND_FORMAT) { date = new System.DateTime(Convert.ToInt16(dateString.Substring(0, 4)), Convert.ToInt16(dateString.Substring(4, 2)), Convert.ToInt16(dateString.Substring(6, 2)), Convert.ToInt16(dateString.Substring(8, 2)), Convert.ToInt16(dateString.Substring(10, 2)), Convert.ToInt16(dateString.Substring(12, 2)), 0); } } else if (dateString.Length == 17) { lock (MILLISECOND_FORMAT) { date = new System.DateTime(Convert.ToInt16(dateString.Substring(0, 4)), Convert.ToInt16(dateString.Substring(4, 2)), Convert.ToInt16(dateString.Substring(6, 2)), Convert.ToInt16(dateString.Substring(8, 2)), Convert.ToInt16(dateString.Substring(10, 2)), Convert.ToInt16(dateString.Substring(12, 2)), Convert.ToInt16(dateString.Substring(14, 3))); } } else { throw new System.FormatException("Input is not valid date string: " + dateString); } return date; } /// Limit a date's resolution. For example, the date 2004-09-21 13:50:11 /// will be changed to 2004-09-01 00:00:00 when using /// Resolution.MONTH. /// /// /// The desired resolution of the date to be returned /// /// the date with all values more precise than resolution /// set to 0 or 1 /// public static System.DateTime Round(System.DateTime date, Resolution resolution) { return new System.DateTime(Round(date.Ticks, resolution)); } /// Limit a date's resolution. For example, the date 1095767411000 /// (which represents 2004-09-21 13:50:11) will be changed to /// 1093989600000 (2004-09-01 00:00:00) when using /// Resolution.MONTH. /// /// /// The desired resolution of the date to be returned /// /// the date with all values more precise than resolution /// set to 0 or 1, expressed as milliseconds since January 1, 1970, 00:00:00 GMT /// public static long Round(long time, Resolution resolution) { System.Globalization.Calendar cal = new System.Globalization.GregorianCalendar(); // {{Aroush}} do we care about 'cal' // protected in JDK's prior to 1.4 //cal.setTimeInMillis(time); System.DateTime dt = new System.DateTime(time); if (resolution == Resolution.YEAR) { dt = dt.AddMonths(1 - dt.Month); dt = dt.AddDays(1 - dt.Day); dt = dt.AddHours(0 - dt.Hour); dt = dt.AddMinutes(0 - dt.Minute); dt = dt.AddSeconds(0 - dt.Second); dt = dt.AddMilliseconds(0 - dt.Millisecond); } else if (resolution == Resolution.MONTH) { dt = dt.AddDays(1 - dt.Day); dt = dt.AddHours(0 - dt.Hour); dt = dt.AddMinutes(0 - dt.Minute); dt = dt.AddSeconds(0 - dt.Second); dt = dt.AddMilliseconds(0 - dt.Millisecond); } else if (resolution == Resolution.DAY) { dt = dt.AddHours(0 - dt.Hour); dt = dt.AddMinutes(0 - dt.Minute); dt = dt.AddSeconds(0 - dt.Second); dt = dt.AddMilliseconds(0 - dt.Millisecond); } else if (resolution == Resolution.HOUR) { dt = dt.AddMinutes(0 - dt.Minute); dt = dt.AddSeconds(0 - dt.Second); dt = dt.AddMilliseconds(0 - dt.Millisecond); } else if (resolution == Resolution.MINUTE) { dt = dt.AddSeconds(0 - dt.Second); dt = dt.AddMilliseconds(0 - dt.Millisecond); } else if (resolution == Resolution.SECOND) { dt = dt.AddMilliseconds(0 - dt.Millisecond); } else if (resolution == Resolution.MILLISECOND) { // don't cut off anything } else { throw new System.ArgumentException("unknown resolution " + resolution); } return dt.Ticks; } /// Specifies the time granularity. public class Resolution { public static readonly Resolution YEAR = new Resolution("year"); public static readonly Resolution MONTH = new Resolution("month"); public static readonly Resolution DAY = new Resolution("day"); public static readonly Resolution HOUR = new Resolution("hour"); public static readonly Resolution MINUTE = new Resolution("minute"); public static readonly Resolution SECOND = new Resolution("second"); public static readonly Resolution MILLISECOND = new Resolution("millisecond"); private System.String resolution; internal Resolution() { } internal Resolution(System.String resolution) { this.resolution = resolution; } public override System.String ToString() { return resolution; } } static DateTools() { { // times need to be normalized so the value doesn't depend on the // location the index is created/used: // {{Aroush-2.1}} /* YEAR_FORMAT.setTimeZone(GMT); MONTH_FORMAT.setTimeZone(GMT); DAY_FORMAT.setTimeZone(GMT); HOUR_FORMAT.setTimeZone(GMT); MINUTE_FORMAT.setTimeZone(GMT); SECOND_FORMAT.setTimeZone(GMT); MILLISECOND_FORMAT.setTimeZone(GMT); */ } } } }