org.pentaho.di.pkg.KettleDependencies Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kettle-engine Show documentation
Show all versions of kettle-engine Show documentation
Container pom for Pentaho Data Integration modules
The newest version!
/*! ******************************************************************************
*
* Pentaho Data Integration
*
* Copyright (C) 2002-2017 by Hitachi Vantara : http://www.pentaho.com
*
*******************************************************************************
*
* 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.pentaho.di.pkg;
import java.util.ArrayList;
import java.util.List;
import org.pentaho.di.core.Const;
import org.pentaho.di.core.database.DatabaseMeta;
import org.pentaho.di.trans.TransMeta;
public class KettleDependencies {
public static final String[] generalLibs = new String[] {
// see PDI-1859: this was a proof of concept and is no longer valid
"log4j-1.2.8.jar", // Logging
"js.jar", // JavaScript / Rhino
"pentaho-1.2.0.jar", // JNDI database connections
"simple-jndi-0.11.1.jar", // JNDI database connections
"commons-logging.jar", // Apache commons: Logging
"commons-pool-1.3.jar", // Apache commons: Object pooling
"commons-dbcp-1.2.1.jar", // Apache commons: Database Connection Pooling
"edtftpj-1.5.3.jar", // EnterpriseDT FTP for JobEntryFTP
"activation.jar", // JobEntryMail
"mail.jar", // JobEntryMail
"jsch-0.1.24.jar", // JobEntrySFTP
};
private String[] libraryFiles;
public KettleDependencies( TransMeta transMeta ) {
extractLibraries( transMeta );
}
private void extractLibraries( TransMeta transMeta ) {
List libraries = new ArrayList();
// First the common libraries
//
libraries.add( "lib/kettle-engine-3.0.jar" );
for ( int i = 0; i < generalLibs.length; i++ ) {
libraries.add( "libext/" + generalLibs[i] );
}
// Determine the libs that the steps use.
//
for ( int s = 0; s < transMeta.nrSteps(); s++ ) {
// The step itself
String[] stepLibs = transMeta.getStep( s ).getStepMetaInterface().getUsedLibraries();
if ( stepLibs != null ) {
for ( int i = 0; i < stepLibs.length; i++ ) {
libraries.add( "libext/" + stepLibs[i] );
}
}
// Used connections
DatabaseMeta[] usedDatabaseConnections =
transMeta.getStep( s ).getStepMetaInterface().getUsedDatabaseConnections();
for ( int c = 0; c < usedDatabaseConnections.length; c++ ) {
String[] dbLibs = usedDatabaseConnections[c].getDatabaseInterface().getUsedLibraries();
if ( dbLibs != null ) {
for ( int i = 0; i < dbLibs.length; i++ ) {
libraries.add( "libext/" + dbLibs[i] );
}
}
}
}
libraryFiles = Const.getDistinctStrings( libraries.toArray( new String[libraries.size()] ) );
}
/**
* @return the libraryFiles (library filenames, including the relative path to those (libext/, lib/)
*/
public String[] getLibraryFiles() {
return libraryFiles;
}
/**
* @param libraryFiles
* the libraryFiles to set, including the relative path to those (libext/, lib/)
*/
public void setLibraryFiles( String[] libraryFiles ) {
this.libraryFiles = libraryFiles;
}
}