/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2010-2011 The OpenNMS Group, Inc. * OpenNMS(R) is Copyright (C) 1999-2011 The OpenNMS Group, Inc. * * OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc. * * OpenNMS(R) is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation, either version 3 of the License, * or (at your option) any later version. * * OpenNMS(R) 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenNMS(R). If not, see: * http://www.gnu.org/licenses/ * * For more information contact: * OpenNMS(R) Licensing <license@opennms.org> * http://www.opennms.org/ * http://www.opennms.com/ *******************************************************************************/ package org.opennms.protocols.xml.config; import java.io.File; import java.io.Serializable; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlTransient; import org.apache.commons.lang.builder.CompareToBuilder; import org.apache.commons.lang.builder.EqualsBuilder; import org.opennms.netmgt.model.RrdRepository; /** * The Class XmlDataCollectionConfig. * * @author <a href="mailto:agalue@opennms.org">Alejandro Galue</a> */ @XmlRootElement(name="xml-datacollection-config") public class XmlDataCollectionConfig implements Serializable, Comparable<XmlDataCollectionConfig> { /** The Constant serialVersionUID. */ private static final long serialVersionUID = -7884808717236892997L; /** The Constant XML_DATACOLLECTION_CONFIG_FILE. */ public static final String XML_DATACOLLECTION_CONFIG_FILE = "xml-datacollection-config.xml"; /** The Constant OF_DATA_COLLECTIONS. */ private static final XmlDataCollection[] OF_DATA_COLLECTIONS = new XmlDataCollection[0]; /** The XML data collections list. */ @XmlElement(name="xml-collection") private List<XmlDataCollection> m_xmlDataCollections = new ArrayList<XmlDataCollection>(); /** The RRD Repository. */ @XmlAttribute(name="rrdRepository") private String m_rrdRepository; /** * Instantiates a new XML data collection configuration. */ public XmlDataCollectionConfig() { } /** * Gets the XML data collections. * * @return the XML data collections */ @XmlTransient public List<XmlDataCollection> getXmlDataCollections() { return m_xmlDataCollections; } /** * Sets the XML data collections. * * @param xmlDataCollections the new XML data collections */ public void setXmlDataCollections(List<XmlDataCollection> xmlDataCollections) { m_xmlDataCollections = xmlDataCollections; } /** * Gets the RRD repository. * * @return the RRD repository */ @XmlTransient public String getRrdRepository() { return m_rrdRepository; } /** * Sets the RRD repository. * * @param rrdRepository the new RRD repository */ public void setRrdRepository(String rrdRepository) { m_rrdRepository = rrdRepository; } /** * Adds the data collection. * * @param dataCollection the data collection */ public void addDataCollection(XmlDataCollection dataCollection) { m_xmlDataCollections.add(dataCollection); } /** * Removes the data collection. * * @param dataCollection the data collection */ public void removeDataCollection(XmlDataCollection dataCollection) { m_xmlDataCollections.remove(dataCollection); } /** * Removes the data collection by name. * * @param name the name */ public void removeDataCollectionByName(String name) { for (Iterator<XmlDataCollection> itr = m_xmlDataCollections.iterator(); itr.hasNext(); ) { XmlDataCollection dataCollection = itr.next(); if(dataCollection.getName().equals(name)) { m_xmlDataCollections.remove(dataCollection); return; } } } /** * Gets the data collection by name. * * @param name the name * @return the data collection by name */ public XmlDataCollection getDataCollectionByName(String name) { for (XmlDataCollection dataCol : m_xmlDataCollections) { if(dataCol.getName().equals(name)) { return dataCol; } } return null; } /** * Builds the RRD repository. * * @param collectionName the collection name * @return the RRD repository */ public RrdRepository buildRrdRepository(String collectionName) { XmlDataCollection collection = getDataCollectionByName(collectionName); if (collection == null) return null; XmlRrd rrd = collection.getXmlRrd(); RrdRepository repo = new RrdRepository(); repo.setRrdBaseDir(new File(getRrdRepository())); repo.setRraList(rrd.getXmlRras()); repo.setStep(rrd.getStep()); repo.setHeartBeat((2 * rrd.getStep())); return repo; } /* (non-Javadoc) * @see java.lang.Comparable#compareTo(java.lang.Object) */ public int compareTo(XmlDataCollectionConfig obj) { return new CompareToBuilder() .append(getRrdRepository(), obj.getRrdRepository()) .append(getXmlDataCollections().toArray(OF_DATA_COLLECTIONS), obj.getXmlDataCollections().toArray(OF_DATA_COLLECTIONS)) .toComparison(); } /* (non-Javadoc) * @see java.lang.Object#equals(java.lang.Object) */ @Override public boolean equals(Object obj) { if (obj instanceof XmlDataCollectionConfig) { XmlDataCollectionConfig other = (XmlDataCollectionConfig) obj; return new EqualsBuilder() .append(getRrdRepository(), other.getRrdRepository()) .append(getXmlDataCollections().toArray(OF_DATA_COLLECTIONS), other.getXmlDataCollections().toArray(OF_DATA_COLLECTIONS)) .isEquals(); } return false; } }