org.jwat.arc.ArcDateParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwat-arc Show documentation
Show all versions of jwat-arc Show documentation
Used for reading, writing and validating ARC files.
Trying to follow the adhoc standard as much as possible.
/**
* Java Web Archive Toolkit - Software to read and validate ARC, WARC
* and GZip files. (http://jwat.org/)
* Copyright 2011-2012 Netarkivet.dk (http://netarkivet.dk/)
*
* Licensed 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.
*/
package org.jwat.arc;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;
/**
* ARC Date parser and format validator ("yyyyMMddHHmmss").
*
* @author lbihanic, selghissassi
*/
public final class ArcDateParser {
/** ARC DateFormat
as specified in the ARC documentation. */
private final DateFormat dateFormat;
/** Basic DateFormat
is not thread safe. */
private static final ThreadLocal DateParserTL =
new ThreadLocal() {
@Override
public ArcDateParser initialValue() {
return new ArcDateParser();
}
};
/**
* Creates a new DateParser
.
*/
private ArcDateParser() {
dateFormat = new SimpleDateFormat(ArcConstants.ARC_DATE_FORMAT);
dateFormat.setLenient(false);
dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
}
/**
* Parses a date.
* @param dateStr date to parse
* @return the formatted date or null if unable to parse date
*/
private Date parseDate(String dateStr) {
Date date = null;
try {
if ((dateStr != null)
&& dateStr.length() == ArcConstants.ARC_DATE_FORMAT.length()) {
date = dateFormat.parse(dateStr);
}
} catch (Exception e) { /* Ignore */ }
return date;
}
/**
* Parses the date using the format yyyyMMddHHmmss.
* @param dateStr the date to parse
* @return the formatted date or null
based on whether the date
* to parse is compliant with the format yyyyMMddHHmmss or not
*/
public static Date getDate(String dateStr) {
Date date = DateParserTL.get().parseDate(dateStr);
boolean isValid = (date == null) ? false
: (date.getTime() > 0);
return isValid ? date : null;
}
/**
* Return a DateFormat
object which can be used to string
* format ARC dates.
* @return DateFormat
object which can be used to string
* format ARC dates.
*/
public static DateFormat getDateFormat() {
return DateParserTL.get().dateFormat;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy