com.google.api.client.xml.XmlNamespaceDictionary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-api-client Show documentation
Show all versions of google-api-client Show documentation
Google API Client Library for Java. Supports Java 5 (or higher) desktop (SE)
and web (EE), Android, and Google App Engine.
/*
* Copyright (c) 2010 Google Inc.
*
* 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 com.google.api.client.xml;
import com.google.api.client.util.DataUtil;
import com.google.api.client.util.DateTime;
import com.google.api.client.util.FieldInfo;
import org.xmlpull.v1.XmlSerializer;
import java.io.IOException;
import java.io.StringWriter;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.SortedSet;
import java.util.TreeSet;
/**
* XML namespace dictionary that maps namespace aliases to URI.
*
* Sample usage:
*
*
static final XmlNamespaceDictionary NAMESPACE_DICTIONARY = new * XmlNamespaceDictionary(); * static { * Map map = NAMESPACE_DICTIONARY.namespaceAliasToUriMap; * map.put("", "http://www.w3.org/2005/Atom"); * map.put("activity", "http://activitystrea.ms/spec/1.0/"); * map.put("georss", "http://www.georss.org/georss"); * map.put("media", "http://search.yahoo.com/mrss/"); * map.put("thr", "http://purl.org/syndication/thread/1.0"); * }
*
*
* @since 1.0
* @author Yaniv Inbar
*/
public final class XmlNamespaceDictionary {
/**
* Map from XML namespace alias (or {@code ""} for the default namespace) to
* XML namespace URI.
*/
public final HashMap namespaceAliasToUriMap =
new HashMap();
/**
* Adds a known namespace of the given alias and URI.
*
* @param alias alias
* @param uri namespace URI
*/
public void addNamespace(String alias, String uri) {
if (alias == null || uri == null) {
throw new NullPointerException();
}
HashMap namespaceAliasToUriMap =
this.namespaceAliasToUriMap;
String knownUri = namespaceAliasToUriMap.get(alias);
if (!uri.equals(knownUri)) {
if (knownUri != null) {
throw new IllegalArgumentException(
"expected namespace alias <" + alias + "> to be <" + knownUri
+ "> but encountered <" + uri + ">");
}
namespaceAliasToUriMap.put(alias, uri);
}
}
/**
* Shows a debug string representation of an element data object of key/value
* pairs.
*
* @param element element data object ({@link GenericXml}, {@link Map}, or any
* object with public fields)
* @param elementName optional XML element local name prefixed by its
* namespace alias -- for example {@code "atom:entry"} -- or {@code
* null} to make up something
*/
public String toStringOf(String elementName, Object element) {
try {
StringWriter writer = new StringWriter();
XmlSerializer serializer = Xml.createSerializer();
serializer.setOutput(writer);
serialize(serializer, elementName, element, false);
return writer.toString();
} catch (IOException e) {
throw new IllegalArgumentException(e);
}
}
/**
* Shows a debug string representation of an element data object of key/value
* pairs.
*
* @param element element data object ({@link GenericXml}, {@link Map}, or any
* object with public fields)
* @param elementNamespaceUri XML namespace URI or {@code null} for no
* namespace
* @param elementLocalName XML local name
* @throws IOException I/O exception
*/
public void serialize(XmlSerializer serializer, String elementNamespaceUri,
String elementLocalName, Object element) throws IOException {
serialize(serializer, elementNamespaceUri, elementLocalName, element, true);
}
/**
* Shows a debug string representation of an element data object of key/value
* pairs.
*
* @param element element data object ({@link GenericXml}, {@link Map}, or any
* object with public fields)
* @param elementName XML element local name prefixed by its namespace alias
* @throws IOException I/O exception
*/
public void serialize(
XmlSerializer serializer, String elementName, Object element)
throws IOException {
serialize(serializer, elementName, element, true);
}
private void serialize(XmlSerializer serializer, String elementNamespaceUri,
String elementLocalName, Object element, boolean errorOnUnknown)
throws IOException {
startDoc(serializer, element, errorOnUnknown, elementNamespaceUri)
.serialize(serializer, elementNamespaceUri, elementLocalName);
serializer.endDocument();
}
private void serialize(XmlSerializer serializer, String elementName,
Object element, boolean errorOnUnknown) throws IOException {
startDoc(serializer, element, errorOnUnknown, null).serialize(
serializer, elementName);
serializer.endDocument();
}
private ElementSerializer startDoc(XmlSerializer serializer, Object element,
boolean errorOnUnknown, String extraNamespace) throws IOException {
serializer.startDocument(null, null);
SortedSet aliases = new TreeSet();
computeAliases(element, aliases);
HashMap namespaceAliasToUriMap =
this.namespaceAliasToUriMap;
boolean foundExtra = extraNamespace == null;
for (String alias : aliases) {
String uri = namespaceAliasToUriMap.get(alias);
serializer.setPrefix(alias, uri);
if (!foundExtra && uri.equals(extraNamespace)) {
foundExtra = true;
}
}
if (!foundExtra) {
for (Map.Entry entry :
namespaceAliasToUriMap.entrySet()) {
if (extraNamespace.equals(entry.getValue())) {
serializer.setPrefix(entry.getKey(), extraNamespace);
break;
}
}
}
return new ElementSerializer(element, errorOnUnknown);
}
private void computeAliases(Object element, SortedSet aliases) {
for (Map.Entry entry : DataUtil.mapOf(element).entrySet()) {
Object value = entry.getValue();
if (value != null) {
String name = entry.getKey();
if (!"text()".equals(name)) {
int colon = name.indexOf(':');
boolean isAttribute = name.charAt(0) == '@';
if (colon != -1 || !isAttribute) {
String alias = colon == -1 ? "" : name.substring(
name.charAt(0) == '@' ? 1 : 0, colon);
aliases.add(alias);
}
if (!isAttribute && !FieldInfo.isPrimitive(value)) {
if (value instanceof Collection>) {
for (Object subValue : (Collection>) value) {
computeAliases(subValue, aliases);
}
} else {
computeAliases(value, aliases);
}
}
}
}
}
}
class ElementSerializer {
private final boolean errorOnUnknown;
Object textValue = null;
final List attributeNames = new ArrayList();
final List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy