public class TransformationConnectionManager extends BaseTable implements ITransformationConnectionManager
Field | Type | Description |
---|---|---|
connectionname | VARCHAR(32) | Primary Key |
description | VARCHAR(255) | |
classname | VARCHAR(255) | |
maxcount | BIGINT | |
configxml | LONGTEXT |
Modifier and Type | Class and Description |
---|---|
protected static class |
TransformationConnectionManager.TransformationConnectionDescription
This is the object description for a transformation connection object.
|
protected static class |
TransformationConnectionManager.TransformationConnectionExecutor
This is the executor object for locating transformation connection objects.
|
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
_rcsid |
protected ICacheManager |
cacheManager |
protected static java.lang.String |
classNameField |
protected static java.lang.String |
configField |
protected static java.lang.String |
descriptionField |
protected static int |
FETCH_MAX |
protected ILockManager |
lockManager |
protected static java.lang.String |
maxCountField |
protected static java.lang.String |
nameField |
protected IThreadContext |
threadContext |
protected static java.lang.String |
transformationsLock |
dbInterface, tableName
Constructor and Description |
---|
TransformationConnectionManager(IThreadContext threadContext,
IDBInterface database)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
boolean |
checkConnectorExists(java.lang.String name)
Check if underlying connector exists.
|
ITransformationConnection |
create()
Create a new transformation connection object.
|
void |
deinstall()
Uninstall the manager.
|
void |
delete(java.lang.String name)
Delete an output connection.
|
void |
exportConfiguration(java.io.OutputStream os)
Export configuration
|
java.lang.String[] |
findConnectionsForConnector(java.lang.String className)
Get a list of output connections that share the same connector.
|
ITransformationConnection[] |
getAllConnections()
Obtain a list of the transformation connections, ordered by name.
|
java.lang.String |
getConnectionNameColumn()
Return the name column.
|
protected static java.lang.String |
getTransformationConnectionKey(java.lang.String connectionName)
Construct a key which represents an individual transformation connection.
|
protected void |
getTransformationConnectionsChunk(TransformationConnection[] rval,
java.util.Map<java.lang.String,java.lang.Integer> returnIndex,
java.util.ArrayList params)
Read a chunk of transformation connections.
|
protected static java.lang.String |
getTransformationConnectionsKey()
Construct a key which represents the general list of transformation connectors.
|
protected TransformationConnection[] |
getTransformationConnectionsMultiple(java.lang.String[] connectionNames)
Fetch multiple output connections at a single time.
|
void |
importConfiguration(java.io.InputStream is)
Import configuration
|
void |
install()
Install the manager.
|
ITransformationConnection |
load(java.lang.String name)
Load a transformation connection by name.
|
ITransformationConnection[] |
loadMultiple(java.lang.String[] names)
Load multiple transformation connections by name.
|
protected int |
loadMultipleInternal(ITransformationConnection[] rval,
int outputIndex,
java.lang.String[] fetchNames,
int inputIndex,
int length) |
protected int |
maxClauseGetTransformationConnectionsChunk()
Calculate max number of clauses to send to getTransformationConnectionsChunk.
|
boolean |
save(ITransformationConnection object)
Save a transformation connection object.
|
addTableIndex, analyzeTable, beginTransaction, buildConjunctionClause, constructCountClause, constructDistinctOnClause, constructDoubleCastClause, constructOffsetLimitClause, constructRegexpClause, constructSubstringClause, endTransaction, findConjunctionClauseMax, getDatabaseCacheKey, getDBInterface, getMaxInClause, getMaxOrClause, getSleepAmt, getTableIndexes, getTableName, getTableSchema, getTransactionID, getWindowedReportMaxRows, makeTableKey, noteModifications, performAddIndex, performAlter, performCommit, performCreate, performDelete, performDrop, performInsert, performModification, performQuery, performQuery, performRemoveIndex, performUpdate, prepareRowForSave, readRow, reindexTable, signalRollback, sleepFor
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getTableName
public static final java.lang.String _rcsid
protected static final java.lang.String nameField
protected static final java.lang.String descriptionField
protected static final java.lang.String classNameField
protected static final java.lang.String maxCountField
protected static final java.lang.String configField
protected final ICacheManager cacheManager
protected final IThreadContext threadContext
protected final ILockManager lockManager
protected static final java.lang.String transformationsLock
protected static final int FETCH_MAX
public TransformationConnectionManager(IThreadContext threadContext, IDBInterface database) throws ManifoldCFException
threadContext
- is the thread context.ManifoldCFException
public void install() throws ManifoldCFException
install
in interface ITransformationConnectionManager
ManifoldCFException
public void deinstall() throws ManifoldCFException
deinstall
in interface ITransformationConnectionManager
ManifoldCFException
public void exportConfiguration(java.io.OutputStream os) throws java.io.IOException, ManifoldCFException
exportConfiguration
in interface ITransformationConnectionManager
java.io.IOException
ManifoldCFException
public void importConfiguration(java.io.InputStream is) throws java.io.IOException, ManifoldCFException
importConfiguration
in interface ITransformationConnectionManager
java.io.IOException
ManifoldCFException
public ITransformationConnection[] getAllConnections() throws ManifoldCFException
getAllConnections
in interface ITransformationConnectionManager
ManifoldCFException
public ITransformationConnection load(java.lang.String name) throws ManifoldCFException
load
in interface ITransformationConnectionManager
name
- is the name of the transformation connection.ManifoldCFException
public ITransformationConnection[] loadMultiple(java.lang.String[] names) throws ManifoldCFException
loadMultiple
in interface ITransformationConnectionManager
names
- are the names to load.ManifoldCFException
protected int loadMultipleInternal(ITransformationConnection[] rval, int outputIndex, java.lang.String[] fetchNames, int inputIndex, int length) throws ManifoldCFException
ManifoldCFException
public ITransformationConnection create() throws ManifoldCFException
create
in interface ITransformationConnectionManager
ManifoldCFException
public boolean save(ITransformationConnection object) throws ManifoldCFException
save
in interface ITransformationConnectionManager
object
- is the object to save.ManifoldCFException
public void delete(java.lang.String name) throws ManifoldCFException
delete
in interface ITransformationConnectionManager
name
- is the name of the connection to delete. If the
name does not exist, no error is returned.ManifoldCFException
public java.lang.String[] findConnectionsForConnector(java.lang.String className) throws ManifoldCFException
findConnectionsForConnector
in interface ITransformationConnectionManager
className
- is the class name of the connector.ManifoldCFException
public boolean checkConnectorExists(java.lang.String name) throws ManifoldCFException
checkConnectorExists
in interface ITransformationConnectionManager
name
- is the name of the connection to check.ManifoldCFException
public java.lang.String getConnectionNameColumn()
getConnectionNameColumn
in interface ITransformationConnectionManager
protected static java.lang.String getTransformationConnectionsKey()
protected static java.lang.String getTransformationConnectionKey(java.lang.String connectionName)
connectionName
- is the name of the connector.protected TransformationConnection[] getTransformationConnectionsMultiple(java.lang.String[] connectionNames) throws ManifoldCFException
connectionNames
- are a list of connection names.ManifoldCFException
protected int maxClauseGetTransformationConnectionsChunk()
protected void getTransformationConnectionsChunk(TransformationConnection[] rval, java.util.Map<java.lang.String,java.lang.Integer> returnIndex, java.util.ArrayList params) throws ManifoldCFException
rval
- is the place to put the read policies.returnIndex
- is a map from the object id (resource id) and the rval index.params
- is the set of parameters.ManifoldCFException