package ezvcard.property;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.xml.sax.SAXException;
import ezvcard.SupportedVersions;
import ezvcard.VCard;
import ezvcard.VCardVersion;
import ezvcard.Warning;
import ezvcard.util.XmlUtils;
/*
Copyright (c) 2012-2016, Michael Angstadt
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The views and conclusions contained in the software and documentation are those
of the authors and should not be interpreted as representing official policies,
either expressed or implied, of the FreeBSD Project.
*/
/**
* <p>
* Contains an XML element that was not recognized when parsing an xCard
* (XML-formatted vCard).
* </p>
*
* <p>
* <b>Code sample</b>
* </p>
*
* <pre class="brush:java">
* VCard vcard = new VCard();
*
* Xml xml = new Xml("<b>Some xml</b>");
* vcard.addXml(xml);
* </pre>
*
* <p>
* <b>Property name:</b> {@code XML}
* </p>
* <p>
* <b>Supported versions:</b> {@code 4.0}
* </p>
* @author Michael Angstadt
* @see <a href="http://tools.ietf.org/html/rfc6350#page-27">RFC 6350 p.27</a>
*/
/*
* Note: This class does not extend SimpleProperty because of issues
* implementing "equals". SimpleProperty's "equals" method calls the "equals"
* method on the "value" field. However, equals method for the "Document" class
* does not check for true equality.
*/
@SupportedVersions(VCardVersion.V4_0)
public class Xml extends VCardProperty implements HasAltId {
private Document value;
/**
* Creates an XML property.
* @param xml the XML to use as the property's value
* @throws SAXException if the XML cannot be parsed
*/
public Xml(String xml) throws SAXException {
this((xml == null) ? null : XmlUtils.toDocument(xml));
}
/**
* Creates an XML property.
* @param element the XML element to use as the property's value (the
* element is imported into an empty {@link Document} object)
*/
public Xml(Element element) {
this((element == null) ? null : detachElement(element));
}
private static Document detachElement(Element element) {
Document document = XmlUtils.createDocument();
Node imported = document.importNode(element, true);
document.appendChild(imported);
return document;
}
/**
* Creates an XML property.
* @param document the XML document to use as the property's value
*/
public Xml(Document document) {
this.value = document;
}
/**
* Copy constructor.
* @param original the property to make a copy of
*/
public Xml(Xml original) {
super(original);
if (original.value != null) {
Element root = original.value.getDocumentElement();
value = (root == null) ? XmlUtils.createDocument() : detachElement(root);
}
}
/**
* Gets the value of this property.
* @return the value or null if not set
*/
public Document getValue() {
return value;
}
/**
* Sets the value of this property.
* @param value the value
*/
public void setValue(Document value) {
this.value = value;
}
//@Override
public String getAltId() {
return parameters.getAltId();
}
//@Override
public void setAltId(String altId) {
parameters.setAltId(altId);
}
@Override
protected void _validate(List<Warning> warnings, VCardVersion version, VCard vcard) {
if (value == null) {
warnings.add(new Warning(8));
}
}
@Override
protected Map<String, Object> toStringValues() {
Map<String, Object> values = new LinkedHashMap<String, Object>();
values.put("value", (value == null) ? "null" : XmlUtils.toString(value));
return values;
}
@Override
public Xml copy() {
return new Xml(this);
}
@Override
public int hashCode() {
final int prime = 31;
int result = super.hashCode();
result = prime * result + ((value == null) ? 0 : XmlUtils.toString(value).hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (!super.equals(obj)) return false;
Xml other = (Xml) obj;
if (value == null) {
if (other.value != null) return false;
} else {
if (other.value == null) return false;
if (!XmlUtils.toString(value).equals(XmlUtils.toString(other.value))) return false;
}
return true;
}
}