/******************************************************************************* * * Pentaho Data Integration * * Copyright (C) 2002-2013 by Pentaho : 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.core.compress; import java.io.InputStream; import java.lang.annotation.Annotation; import java.net.URL; import java.util.List; import java.util.Map; import org.pentaho.di.core.Const; import org.pentaho.di.core.exception.KettlePluginException; import org.pentaho.di.core.exception.KettleXMLException; import org.pentaho.di.core.plugins.BasePluginType; import org.pentaho.di.core.plugins.PluginAnnotationType; import org.pentaho.di.core.plugins.PluginMainClassType; import org.pentaho.di.core.plugins.PluginTypeInterface; import org.pentaho.di.core.xml.XMLHandler; import org.w3c.dom.Document; import org.w3c.dom.Node; /** * This class represents the compression plugin type. * */ @PluginMainClassType( CompressionProvider.class ) @PluginAnnotationType( CompressionPlugin.class ) public class CompressionPluginType extends BasePluginType implements PluginTypeInterface { protected static CompressionPluginType pluginType; private CompressionPluginType() { super( CompressionPlugin.class, "COMPRESSION", "Compression" ); populateFolders( "compress" ); } public static CompressionPluginType getInstance() { if ( pluginType == null ) { pluginType = new CompressionPluginType(); } return pluginType; } /** * Scan & register internal step plugins */ @Override protected void registerNatives() throws KettlePluginException { // Scan the native database types... // String xmlFile = Const.XML_FILE_KETTLE_COMPRESSION_PROVIDERS; // Load the plugins for this file... // try { InputStream inputStream = getClass().getResourceAsStream( xmlFile ); if ( inputStream == null ) { inputStream = getClass().getResourceAsStream( "/" + xmlFile ); } if ( inputStream == null ) { throw new KettlePluginException( "Unable to find native kettle compression providers definition file: " + xmlFile ); } Document document = XMLHandler.loadXMLFile( inputStream, null, true, false ); Node repsNode = XMLHandler.getSubNode( document, "compression-providers" ); List<Node> repsNodes = XMLHandler.getNodes( repsNode, "compression-provider" ); for ( Node repNode : repsNodes ) { registerPluginFromXmlResource( repNode, "./", this.getClass(), true, null ); } } catch ( KettleXMLException e ) { throw new KettlePluginException( "Unable to read the kettle compression providers config file: " + xmlFile, e ); } } @Override protected void registerXmlPlugins() throws KettlePluginException { } @Override public void handlePluginAnnotation( Class<?> clazz, Annotation annotation, List<String> libraries, boolean nativePluginType, URL pluginFolder ) throws KettlePluginException { super.handlePluginAnnotation( clazz, annotation, libraries, nativePluginType, pluginFolder ); } public String[] getNaturalCategoriesOrder() { return new String[0]; } @Override protected String extractCategory( Annotation annotation ) { return ""; } @Override protected String extractDesc( Annotation annotation ) { return ( (CompressionPlugin) annotation ).description(); } @Override protected String extractID( Annotation annotation ) { return ( (CompressionPlugin) annotation ).id(); } @Override protected String extractName( Annotation annotation ) { return ( (CompressionPlugin) annotation ).name(); } @Override protected boolean extractSeparateClassLoader( Annotation annotation ) { return ( (CompressionPlugin) annotation ).isSeparateClassLoaderNeeded(); } @Override protected String extractI18nPackageName( Annotation annotation ) { return ( (CompressionPlugin) annotation ).i18nPackageName(); } @Override protected void addExtraClasses( Map<Class<?>, String> classMap, Class<?> clazz, Annotation annotation ) { } @Override protected String extractDocumentationUrl( Annotation annotation ) { return ( (CompressionPlugin) annotation ).documentationUrl(); } @Override protected String extractCasesUrl( Annotation annotation ) { return ( (CompressionPlugin) annotation ).casesUrl(); } @Override protected String extractForumUrl( Annotation annotation ) { return ( (CompressionPlugin) annotation ).forumUrl(); } @Override protected String extractImageFile( Annotation annotation ) { return null; } @Override protected String extractClassLoaderGroup( Annotation annotation ) { return ( (CompressionPlugin) annotation ).classLoaderGroup(); } }