src.main.java.com.dd.plist.NSDate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dd-plist Show documentation
Show all versions of dd-plist Show documentation
This library enables Java applications to work with property lists in various formats.
Supported formats for reading and writing are OS X/iOS binary and XML property lists.
ASCII property lists are also supported.
The library also provides access to basic functions of NeXTSTEP/Cocoa classes like
NSDictionary, NSArray, etc.
/*
* plist - An open source library to parse and generate property lists
* Copyright (C) 2011-2017 Daniel Dreibrodt, Keith Randall
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.dd.plist;
import java.io.IOException;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;
/**
* The NSDate class wraps a date.
* @see Foundation NSDate documentation
* @author Daniel Dreibrodt
*/
public class NSDate extends NSObject {
private Date date;
// EPOCH = new SimpleDateFormat("yyyy MM dd zzz").parse("2001 01 01 GMT").getTime();
// ...but that's annoying in a static initializer because it can throw exceptions, ick.
// So we just hardcode the correct value.
private final static long EPOCH = 978307200000L;
private static final SimpleDateFormat sdfDefault = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
private static final SimpleDateFormat sdfGnuStep = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z");
/**
* Creates new NSDate instance from its binary representation.
*
* @param bytes The binary date representation.
*/
public NSDate(byte[] bytes){
this(bytes, 0, bytes.length);
}
/**
* Creates a new NSDate instance from its binary representation.
*
* @param bytes The byte array containing the date data.
* @param startIndex The index within the array at which the date data begins.
* @param endIndex The index within the array at which the data date ends.
*/
public NSDate(byte[] bytes, final int startIndex, final int endIndex) {
//dates are 8 byte big-endian double, seconds since the epoch
date = new Date(EPOCH + (long) (1000 * BinaryPropertyListParser.parseDouble(bytes, startIndex, endIndex)));
}
/**
* Creates a new NSDate instance from is textual representation.
* The textual representation must adhere to one of the following patterns.
* For XML property lists: yyyy-MM-dd'T'HH:mm:ss'Z'
* For ASCII property lists: yyyy-MM-dd HH:mm:ss Z
*
* @param textRepresentation The textual representation of the date.
* @throws ParseException If the date could not be parsed, i.e. it does not match the expected pattern.
*/
public NSDate(String textRepresentation) throws ParseException {
date = parseDateString(textRepresentation);
}
/**
* Creates a new NSDate instance.
*
* @param d The date.
*/
public NSDate(Date d) {
if (d == null)
throw new IllegalArgumentException("Date cannot be null");
date = d;
}
static {
sdfDefault.setTimeZone(TimeZone.getTimeZone("GMT"));
sdfGnuStep.setTimeZone(TimeZone.getTimeZone("GMT"));
}
/**
* Parses a date string and creates a Java Date object from it.
* This function is synchronized because the underlying SimpleDateFormat instances are not thread-safe.
*
* @param textRepresentation The date string as found in an ASCII or XML property list
* @return The parsed Date
* @throws ParseException If the given string cannot be parsed.
* @see SimpleDateFormat#parse(java.lang.String)
*/
private static synchronized Date parseDateString(String textRepresentation) throws ParseException {
try {
return sdfDefault.parse(textRepresentation);
} catch (ParseException ex) {
return sdfGnuStep.parse(textRepresentation);
}
}
/**
* Generates a string representation of a Java Date object. The string
* is formatted according to the specification for XML property list dates.
*
* @param date The date which should be represented.
* @return The string representation of the date.
*/
private static synchronized String makeDateString(Date date) {
return sdfDefault.format(date);
}
/**
* Generates a string representation of a Java Date object. The string
* is formatted according to the specification for GnuStep ASCII property
* list dates.
*
* @param date The date which should be represented.
* @return The string representation of the date.
*/
private static synchronized String makeDateStringGnuStep(Date date) {
return sdfGnuStep.format(date);
}
/**
* Gets the date.
*
* @return The date.
*/
public Date getDate() {
return date;
}
@Override
public boolean equals(Object obj) {
return obj.getClass().equals(getClass()) && date.equals(((NSDate) obj).getDate());
}
@Override
public int hashCode() {
return date.hashCode();
}
@Override
void toXML(StringBuilder xml, int level) {
indent(xml, level);
xml.append("");
xml.append(makeDateString(date));
xml.append(" ");
}
@Override
public void toBinary(BinaryPropertyListWriter out) throws IOException {
out.write(0x33);
out.writeDouble((date.getTime() - EPOCH) / 1000.0);
}
/**
* Generates a string representation of the date.
*
* @return A string representation of the date.
* @see java.util.Date#toString()
*/
@Override
public String toString() {
return date.toString();
}
@Override
protected void toASCII(StringBuilder ascii, int level) {
indent(ascii, level);
ascii.append('"');
ascii.append(makeDateString(date));
ascii.append('"');
}
@Override
protected void toASCIIGnuStep(StringBuilder ascii, int level) {
indent(ascii, level);
ascii.append("<*D");
ascii.append(makeDateStringGnuStep(date));
ascii.append('>');
}
}