/*******************************************************************************
* This file is part of OpenNMS(R).
*
* Copyright (C) 2006-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.netmgt.collectd;
import java.io.File;
import org.opennms.netmgt.config.StorageStrategy;
import org.opennms.netmgt.config.collector.ServiceParameters;
import org.opennms.netmgt.model.RrdRepository;
import org.opennms.netmgt.snmp.SnmpInstId;
/**
* <p>GenericIndexResource class.</p>
*
* @author ranger
* @version $Id: $
*/
public class GenericIndexResource extends SnmpCollectionResource {
private SnmpInstId m_inst;
private String m_name;
private String m_resourceLabel;
/**
* <p>Constructor for GenericIndexResource.</p>
*
* @param def a {@link org.opennms.netmgt.collectd.ResourceType} object.
* @param name a {@link java.lang.String} object.
* @param inst a {@link org.opennms.netmgt.snmp.SnmpInstId} object.
*/
public GenericIndexResource(ResourceType def, String name, SnmpInstId inst) {
super(def);
m_name = name;
m_inst = inst;
}
/** {@inheritDoc} */
@Override
public File getResourceDir(RrdRepository repository) {
String resourcePath = getStrategy().getRelativePathForAttribute(getParent(), getLabel(), null);
File resourceDir = new File(repository.getRrdBaseDir(), resourcePath);
log().debug("getResourceDir: " + resourceDir);
return resourceDir;
}
/**
* <p>toString</p>
*
* @return a {@link java.lang.String} object.
*/
// NMS-5062: Avoid call getLabel here, otherwise the SiblingColumnStorageStrategy will fail if DEBUG is enabled for Collectd.
public String toString() {
return "node["+getCollectionAgent().getNodeId() + "]." + getResourceTypeName() + "[" + getInstance() + "]";
}
/** {@inheritDoc} */
@Override
public int getType() {
return -1; // XXX is this right?
}
/** {@inheritDoc} */
@Override
public boolean shouldPersist(ServiceParameters params) {
return ((GenericIndexResourceType)getResourceType()).getPersistenceSelectorStrategy().shouldPersist(this);
}
/**
* <p>getResourceTypeName</p>
*
* @return a {@link java.lang.String} object.
*/
public String getResourceTypeName() {
return m_name;
}
/**
* <p>getInstance</p>
*
* @return a {@link java.lang.String} object.
*/
public String getInstance() {
return m_inst.toString();
}
private StorageStrategy getStrategy() {
return ((GenericIndexResourceType)getResourceType()).getStorageStrategy();
}
public String getParent() {
return String.valueOf(getCollectionAgent().getNodeId());
}
/*
* Because call getResourceNameFromIndex could be expensive.
* This class save the returned value from Strategy on a local variable.
*/
/**
* <p>getLabel</p>
*
* @return a {@link java.lang.String} object.
*/
public String getLabel() {
if (m_resourceLabel == null) {
m_resourceLabel = getStrategy().getResourceNameFromIndex(this);
}
return m_resourceLabel;
}
}