All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.geosolutions.geoserver.rest.encoder.utils.PropertyXMLEncoder Maven / Gradle / Ivy

Go to download

GeoServer Manager is a library to interact with GeoServer The scope of this library is to have a simple API, and use as few external libs as possible.

There is a newer version: 1.8.7
Show newest version
/*
 *  GeoServer-Manager - Simple Manager Library for GeoServer
 *  
 *  Copyright (C) 2007,2011 GeoSolutions S.A.S.
 *  http://www.geo-solutions.it
 *
 * 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 it.geosolutions.geoserver.rest.encoder.utils;

import org.jdom.Element;

/**
 * Creates an XML document by mapping properties to XML nodes.
 * You can set the root element name in the constructor. Any key/value pair will
 * be encoded as {@code value} node.
 *
 * Any key containing one or more slash ("/") will be encoded as nested nodes;
 * e.g.:
 *
 * 
 * {@code
 *          key = "k1/k2/k3", value = "value" }
 * 
* * will be encoded as * *
 * {@code        value }
 * 
* * @author ETj (etj at geo-solutions.it) * @author Carlo Cancellieri - [email protected] * @version $Id: $ */ public class PropertyXMLEncoder extends XmlElement { /** *

Constructor for PropertyXMLEncoder.

* * @param rootName a {@link java.lang.String} object. */ public PropertyXMLEncoder(final String rootName) { super(rootName); } /** *

Constructor for PropertyXMLEncoder.

* * @param root a {@link org.jdom.Element} object. */ public PropertyXMLEncoder(Element root) { super(root); } /** *

get

* * @param key a {@link java.lang.String} object. * @param deep a int. * @return a {@link org.jdom.Element} object. */ protected Element get(final String key, int deep) { return get(getRoot(), key); } /** *

get

* * @param key a {@link java.lang.String} object. * @return a {@link org.jdom.Element} object. */ protected Element get(final String key) { return get(getRoot(), key); } private Element get(final Element el, final String key) { if (el==null) return null; if (key.contains("/")) { final int i = key.indexOf("/"); final String parentName = key.substring(0, i); final String newkey = key.substring(i + 1); return get(ElementUtils.contains(el, parentName),newkey); } else { return ElementUtils.contains(el, key); } } /** *

set

* * @param key a {@link java.lang.String} object. * @param value a {@link java.lang.String} object. */ protected void set(final String key, final String value) { if (key != null && value != null) { set(getRoot(), key, value); } } private void set(final Element e, final String key, final String value) { if (key.contains("/")) { final int i = key.indexOf("/"); final String childName = key.substring(0, i); final String newkey = key.substring(i + 1); Element child = e.getChild(childName); if (child == null) { child = new Element(childName); e.addContent(child); add(child, newkey, value); } set(child, newkey, value); } else { Element pp = null; if ((pp = ElementUtils.contains(e, key)) == null) add(e, key, value); else { ElementUtils.remove(pp, pp); add(e, key, value); } } } /** *

add

* * @param key a {@link java.lang.String} object. * @param value a {@link java.lang.String} object. */ protected void add(final String key, final String value) { if (key != null && value != null) { add(this.getRoot(), key, value); } } private void add(Element e, String key, String value) { if (key.contains("/")) { final int i = key.indexOf("/"); final String childName = key.substring(0, i); final String newkey = key.substring(i + 1); Element child = e.getChild(childName); if (child == null) { child = new Element(childName); e.addContent(child); } add(child, newkey, value); } else { e.addContent(new Element(key).setText(value)); } } // public void set(final String key, final String value) { // if (key != null && value != null) { // set(getRoot(), key, value); // } // } // // private void set(final Element e, final String key, final String value){ // if (!key.contains("/")) { // Element pp = null; // if ((pp = contains(key)) == null) // add(e,key, value); // else { // remove(pp); // add(e,key, value); // } // } else { // final int i = key.indexOf("/"); // final String childName = key.substring(0, i); // final String newkey = key.substring(i + 1); // // Element child = e.getChild(childName); // if (child == null) { // child = new Element(childName); // e.addContent(child); // add(child,newkey,value); // } // set(child, newkey, value); // } // } // // public void add(final String key, final String value) { // if (key != null && value != null) { // add(this.getRoot(), key, value); // } // } // // private void add(Element e, String key, String value) { // if (!key.contains("/")) { // e.addContent(new Element(key).setText(value)); // } else { // final int i = key.indexOf("/"); // final String childName = key.substring(0, i); // final String newkey = key.substring(i + 1); // // Element child = e.getChild(childName); // if (child == null) { // child = new Element(childName); // e.addContent(child); // } // // add(child, newkey, value); // } // // } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy