Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.snmp4j.agent.mo.DefaultMOFactory Maven / Gradle / Ivy
/*_############################################################################
_##
_## SNMP4J-Agent - DefaultMOFactory.java
_##
_## Copyright (C) 2005-2009 Frank Fock (SNMP4J.org)
_##
_## 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 org.snmp4j.agent.mo;
import org.snmp4j.agent.*;
import org.snmp4j.smi.*;
import java.util.Map;
import org.snmp4j.agent.mo.snmp.tc.TextualConvention;
import java.util.HashMap;
import org.snmp4j.agent.mo.snmp.SNMPv2TC;
import java.util.*;
/**
* The DefaultMOFactory
is the default factory for creating
* ManagedObjects. The default factory creates columnar and scalar objects
* based on SNMPv2-TC textual conventions with appropriate constraints.
* Other textual conventions can be added too.
*
* @author Frank Fock
* @version 1.2
*/
public class DefaultMOFactory implements MOFactory, LinkedMOFactory {
private Map textualConventions = new HashMap();
private Map links;
private static MOFactory instance;
protected DefaultMOFactory() {
}
/**
* Returns the factory singleton with default support for SNMPv2-TC textual
* conventions.
*
* @return
* a MOFactory instance.
*/
public static MOFactory getInstance() {
if (instance == null) {
instance = new DefaultMOFactory();
addSNMPv2TCs(instance);
}
return instance;
}
/**
* Sets the singleton factory.
* @param factory
* a MOFactory instance.
*/
public static void setInstance(MOFactory factory) {
instance = factory;
}
/**
* Adds support for SNMPv2TC textual conventions to the supplied ManagedObject
* factory.
* @param factory
* a MOFactory instance.
*/
public static void addSNMPv2TCs(MOFactory factory) {
Collection tcs = new SNMPv2TC().getTextualConventions();
for (Iterator it = tcs.iterator(); it.hasNext(); ) {
TextualConvention tc = (TextualConvention) it.next();
factory.addTextualConvention(tc);
}
}
protected Map getTextualConventions() {
return textualConventions;
}
/**
* Adds a textual convention to this factory which can then be used by the
* factory to create appropriate value constraints for columnar and scalar
* managed objects.
* @param tc
* a TextualConvention instance.
*/
public synchronized void addTextualConvention(TextualConvention tc) {
Map tcMap = (Map) textualConventions.get(tc.getModuleName());
if (tcMap == null) {
tcMap = new HashMap(10);
textualConventions.put(tc.getModuleName(), tcMap);
}
tcMap.put(tc.getName(), tc);
}
public synchronized void removeTextualConvention(TextualConvention tc) {
Map tcMap = (Map) textualConventions.get(tc.getModuleName());
if (tcMap != null) {
tcMap.remove(tc.getName());
if (tcMap.isEmpty()) {
textualConventions.remove(tc.getModuleName());
}
}
}
public synchronized TextualConvention
getTextualConvention(String moduleName, String name) {
Map tcMap = (Map) textualConventions.get(moduleName);
if (tcMap != null) {
return (TextualConvention) tcMap.get(name);
}
return null;
}
public MOColumn createColumn(int columnID, int syntax, MOAccess access) {
return new MOMutableColumn(columnID, syntax, access);
}
public MOColumn createColumn(int columnID, int syntax, MOAccess access,
Variable defaultValue, boolean mutableInService) {
return new MOMutableColumn(columnID, syntax, access,
defaultValue, mutableInService);
}
public MOTableRelation createTableRelation(MOTable baseTable,
MOTable dependentTable) {
return new MOTableRelation(baseTable, dependentTable);
}
public MOTableRow createRow(OID index, Variable[] values) throws
UnsupportedOperationException {
return new DefaultMOMutableRow2PC(index, values);
}
public MOScalar createScalar(OID id, MOAccess access, Variable value) {
return new MOScalar(id, access, value);
}
public MOTable createTable(OID oid, MOTableIndex indexDef, MOColumn[] columns) {
return createTable(oid, indexDef, columns,
createTableModel(oid, indexDef, columns));
}
public MOTable createTable(OID oid, MOTableIndex indexDef, MOColumn[] columns,
MOTableModel model) {
return new DefaultMOTable(oid, indexDef, columns, model);
}
public MOTableModel createTableModel(OID tableOID,
MOTableIndex indexDef,
MOColumn[] columns) {
return new DefaultMOMutableTableModel();
}
public void freeRow(MOTableRow row) {
}
public MOTableIndex createIndex(MOTableSubIndex[] subIndexes,
boolean impliedLength) {
return new MOTableIndex(subIndexes, impliedLength);
}
public MOTableSubIndex createSubIndex(int smiSyntax) {
return new MOTableSubIndex(smiSyntax);
}
public MOTableSubIndex createSubIndex(OID oid, int smiSyntax) {
return new MOTableSubIndex(oid, smiSyntax);
}
public MOTableSubIndex createSubIndex(int smiSyntax, int minLength,
int maxLength) {
return new MOTableSubIndex(smiSyntax, minLength, maxLength);
}
public MOTableSubIndex createSubIndex(OID oid, int smiSyntax, int minLength,
int maxLength) {
return new MOTableSubIndex(oid, smiSyntax, minLength, maxLength);
}
public MOTableIndex createIndex(MOTableSubIndex[] subIndexes,
boolean impliedLength,
MOTableIndexValidator validator) {
return new MOTableIndex(subIndexes, impliedLength, validator);
}
public MOColumn createColumn(int columnID, int syntax, MOAccess access,
String tcModuleName, String textualConvention) {
TextualConvention tc =
getTextualConvention(tcModuleName, textualConvention);
if (tc != null) {
return tc.createColumn(columnID, syntax, access, null, true);
}
return createColumn(columnID, syntax, access);
}
public MOColumn createColumn(int columnID, int syntax, MOAccess access,
Variable defaultValue, boolean mutableInService,
String tcModuleName, String textualConvention) {
TextualConvention tc =
getTextualConvention(tcModuleName, textualConvention);
if (tc != null) {
return tc.createColumn(columnID, syntax, access,
defaultValue, mutableInService);
}
return createColumn(columnID, syntax, access,
defaultValue, mutableInService);
}
public MOScalar createScalar(OID id, MOAccess access, Variable value,
String tcModuleName, String textualConvention) {
TextualConvention tc =
getTextualConvention(tcModuleName, textualConvention);
if (tc != null) {
return tc.createScalar(id, access, value);
}
return createScalar(id, access, value);
}
public MOAccess createAccess(int moAccess) {
return MOAccessImpl.getInstance(moAccess);
}
public void setLink(OID oid, Object instrumentationHelperObject) {
if (links == null) {
initLinkMap();
}
links.put(oid, instrumentationHelperObject);
}
public Object getLink(OID oid) {
if (links != null) {
OID searchOID = new OID(oid);
Object result = null;
while ((searchOID.size() > 0) &&
((result = links.get(searchOID)) == null)) {
searchOID.trim(1);
}
return result;
}
return null;
}
protected synchronized void initLinkMap() {
if (links == null) {
links = new HashMap();
}
}
}