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

org.simpleframework.xml.stream.InputNodeMap Maven / Gradle / Ivy

Go to download

Simple is a high performance XML serialization and configuration framework for Java

There is a newer version: 2.7.1
Show newest version
/*
 * InputNodeMap.java July 2006
 *
 * Copyright (C) 2006, Niall Gallagher 
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General 
 * Public License along with this library; if not, write to the 
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330, 
 * Boston, MA  02111-1307  USA
 */

package org.simpleframework.xml.stream;

import javax.xml.stream.events.Attribute;
import javax.xml.stream.events.StartElement;
import java.util.LinkedHashMap;
import java.util.Iterator;

/**
 * The InputNodeMap object represents a map to contain
 * attributes used by an input node. This can be used as an empty
 * node map, it can be used to extract its values from a start
 * element. This creates InputAttribute objects for 
 * each node added to the map, these can then be used by an element
 * input node to represent attributes as input nodes.
 *
 * @author Niall Gallagher
 */ 
class InputNodeMap extends LinkedHashMap implements NodeMap {

   /**
    * This is the source node that this node map belongs to.
    */          
   private final InputNode source;        
   
   /**
    * Constructor for the InputNodeMap object. This
    * is used to create an empty input node map, which will create
    * InputAttribute object for each inserted node.
    *
    * @param source this is the node this node map belongs to
    */ 
   protected InputNodeMap(InputNode source) {
      this.source = source;            
   }        

   /**
    * Constructor for the InputNodeMap object. This
    * is used to create an input node map, which will be populated
    * with the attributes from the StartElement that
    * is specified.
    *
    * @param source this is the node this node map belongs to
    * @param element the element to populate the node map with
    */ 
   public InputNodeMap(InputNode source, StartElement element) {
      this.source = source;           
      this.put(element);   
   }
   
   /**
    * This is used to acquire the actual node this map represents.
    * The source node provides further details on the context of
    * the node, such as the parent name, the namespace, and even
    * the value in the node. Care should be taken when using this. 
    * 
    * @return this returns the node that this map represents
    */
   public InputNode getNode() {
       return source;
   }

   /**
    * This is used to get the name of the element that owns the
    * nodes for the specified map. This can be used to determine
    * which element the node map belongs to.
    * 
    * @return this returns the name of the owning element
    */         
   public String getName() {
      return source.getName();           
   }   

   /**
    * This is used to insert all attributes belonging to the start
    * element to the map. All attributes acquired from the element
    * are converted into InputAttribute objects so 
    * that they can be used as input nodes by an input node.
    *
    * @param element the element to acquire attributes from
    */ 
   private void put(StartElement element) {
      Iterator list = element.getAttributes();
      
      while(list.hasNext()) {
         Object event = list.next();
         
         if(event instanceof Attribute) {
            put((Attribute)event);                 
         }              
      }           
   }

   /**
    * This is used to insert an Attribute node to 
    * the map. The inserted attribute is converted into an input
    * node by wrapping it in an InputAttribute object.
    * Once the node is inserted it can be acquired by its name.
    *
    * @param event this is the attribute to add to this node map
    * 
    * @return this returns the node that has just been added
    */     
   private InputNode put(Attribute event) {
      InputNode node = new InputAttribute(source, event);
      String name = node.getName();
      
      if(name != null) {
         put(name, node);
      }
      return node;
   }

   /**
    * This is used to add a new InputAttribute node to
    * the map. The created node can be used by an input node to
    * to represent the attribute as another input node. Once the 
    * node is created it can be acquired using the specified name.
    *
    * @param name this is the name of the node to be created
    * @param value this is the value to be given to the node
    * 
    * @return this returns the node that has just been added
    */    
   public InputNode put(String name, String value) {
      InputNode node = new InputAttribute(source, name, value);
      
      if(name != null) {
         put(name, node);
      }
      return node;
   }
   
   /**
    * This is used to remove the Node mapped to the
    * given name.  This returns a name value pair that represents
    * an attribute. If no node is mapped to the specified name 
    * then this method will return a null value.
    *
    * @param name this is the name of the node to remove
    * 
    * @return this will return the node mapped to the given name
    */    
   public InputNode remove(String name) {
      return super.remove(name);
   }
   
   /**
    * This is used to acquire the Node mapped to the
    * given name. This returns a name value pair that represents
    * an attribute. If no node is mapped to the specified name 
    * then this method will return a null value.
    *
    * @param name this is the name of the node to retrieve
    * 
    * @return this will return the node mapped to the given name
    */       
   public InputNode get(String name) {
      return super.get(name);
   }

   /**
    * This returns an iterator for the names of all the nodes in
    * this NodeMap. This allows the names to be 
    * iterated within a for each loop in order to extract nodes.
    *
    * @return this returns the names of the nodes in the map
    */    
   public Iterator iterator() {
      return keySet().iterator();
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy