1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir package com.sun.star.help; 29*cdf0e10cSrcweir 30*cdf0e10cSrcweir import com.sun.star.lib.uno.helper.WeakBase; 31*cdf0e10cSrcweir import com.sun.star.lang.XServiceInfo; 32*cdf0e10cSrcweir import com.sun.star.script.XInvocation; 33*cdf0e10cSrcweir import com.sun.star.beans.XIntrospectionAccess; 34*cdf0e10cSrcweir import com.sun.star.uno.AnyConverter; 35*cdf0e10cSrcweir import com.sun.star.uno.XComponentContext; 36*cdf0e10cSrcweir 37*cdf0e10cSrcweir import java.io.File; 38*cdf0e10cSrcweir import java.io.FileNotFoundException; 39*cdf0e10cSrcweir import java.io.IOException; 40*cdf0e10cSrcweir import java.util.Date; 41*cdf0e10cSrcweir import java.util.zip.ZipOutputStream; 42*cdf0e10cSrcweir 43*cdf0e10cSrcweir /** 44*cdf0e10cSrcweir When this tool is used with long path names on Windows, that is paths which start 45*cdf0e10cSrcweir with \\?\, then the caller must make sure that the path is unique. This is achieved 46*cdf0e10cSrcweir by removing '.' and '..' from the path. Paths which are created by 47*cdf0e10cSrcweir osl_getSystemPathFromFileURL fulfill this requirement. This is necessary because 48*cdf0e10cSrcweir lucene is patched to not use File.getCanonicalPath. See long_path.patch in the lucene 49*cdf0e10cSrcweir module. 50*cdf0e10cSrcweir */ 51*cdf0e10cSrcweir public class HelpIndexer extends WeakBase 52*cdf0e10cSrcweir implements XServiceInfo, XInvocation 53*cdf0e10cSrcweir { 54*cdf0e10cSrcweir static private final String __serviceName = 55*cdf0e10cSrcweir "com.sun.star.help.HelpIndexer"; 56*cdf0e10cSrcweir static private final String aCreateIndexMethodName = "createIndex"; 57*cdf0e10cSrcweir 58*cdf0e10cSrcweir static private com.sun.star.help.HelpIndexerTool helpindexer = new com.sun.star.help.HelpIndexerTool(); 59*cdf0e10cSrcweir 60*cdf0e10cSrcweir public HelpIndexer() 61*cdf0e10cSrcweir { 62*cdf0e10cSrcweir } 63*cdf0e10cSrcweir 64*cdf0e10cSrcweir public HelpIndexer(XComponentContext xCompContext) 65*cdf0e10cSrcweir { 66*cdf0e10cSrcweir } 67*cdf0e10cSrcweir 68*cdf0e10cSrcweir public static void mainImpl( String[] args, boolean bExtensionMode ) 69*cdf0e10cSrcweir { 70*cdf0e10cSrcweir helpindexer.mainImpl( args , bExtensionMode ); 71*cdf0e10cSrcweir } 72*cdf0e10cSrcweir 73*cdf0e10cSrcweir public static void createZipFile( File aDirToZip, String aTargetZipFileStr ) 74*cdf0e10cSrcweir throws FileNotFoundException, IOException 75*cdf0e10cSrcweir { 76*cdf0e10cSrcweir helpindexer.createZipFile( aDirToZip , aTargetZipFileStr ); 77*cdf0e10cSrcweir } 78*cdf0e10cSrcweir 79*cdf0e10cSrcweir public static void addToZipRecursively( ZipOutputStream zos, File aFile, String aBasePath ) 80*cdf0e10cSrcweir throws FileNotFoundException, IOException 81*cdf0e10cSrcweir { 82*cdf0e10cSrcweir helpindexer.addToZipRecursively( zos , aFile , aBasePath ); 83*cdf0e10cSrcweir } 84*cdf0e10cSrcweir 85*cdf0e10cSrcweir static public boolean deleteRecursively( File aFile ) 86*cdf0e10cSrcweir { 87*cdf0e10cSrcweir return helpindexer.deleteRecursively( aFile ); 88*cdf0e10cSrcweir } 89*cdf0e10cSrcweir 90*cdf0e10cSrcweir //=================================================== 91*cdf0e10cSrcweir // XInvocation 92*cdf0e10cSrcweir public XIntrospectionAccess getIntrospection() 93*cdf0e10cSrcweir { 94*cdf0e10cSrcweir return null; 95*cdf0e10cSrcweir } 96*cdf0e10cSrcweir 97*cdf0e10cSrcweir public Object invoke( String aFunctionName, java.lang.Object[] aParams, 98*cdf0e10cSrcweir short[][] aOutParamIndex, java.lang.Object[][] aOutParam ) 99*cdf0e10cSrcweir throws com.sun.star.lang.IllegalArgumentException, 100*cdf0e10cSrcweir com.sun.star.script.CannotConvertException, 101*cdf0e10cSrcweir com.sun.star.reflection.InvocationTargetException 102*cdf0e10cSrcweir { 103*cdf0e10cSrcweir if( 104*cdf0e10cSrcweir !aFunctionName.equals( aCreateIndexMethodName ) ) 105*cdf0e10cSrcweir throw new com.sun.star.lang.IllegalArgumentException(); 106*cdf0e10cSrcweir 107*cdf0e10cSrcweir aOutParamIndex[0] = new short[0]; 108*cdf0e10cSrcweir aOutParam[0] = new Object[0]; 109*cdf0e10cSrcweir 110*cdf0e10cSrcweir int nParamCount = aParams.length; 111*cdf0e10cSrcweir String aStrs[] = new String[nParamCount]; 112*cdf0e10cSrcweir for( int i = 0 ; i < nParamCount ; i++ ) 113*cdf0e10cSrcweir { 114*cdf0e10cSrcweir try 115*cdf0e10cSrcweir { 116*cdf0e10cSrcweir aStrs[i] = AnyConverter.toString( aParams[i] ); 117*cdf0e10cSrcweir } 118*cdf0e10cSrcweir catch( IllegalArgumentException e ) 119*cdf0e10cSrcweir { 120*cdf0e10cSrcweir aStrs[i] = ""; 121*cdf0e10cSrcweir } 122*cdf0e10cSrcweir } 123*cdf0e10cSrcweir 124*cdf0e10cSrcweir boolean bExtensionMode = true; 125*cdf0e10cSrcweir mainImpl( aStrs, bExtensionMode ); 126*cdf0e10cSrcweir 127*cdf0e10cSrcweir return null; 128*cdf0e10cSrcweir } 129*cdf0e10cSrcweir 130*cdf0e10cSrcweir public void setValue( String aPropertyName, java.lang.Object aValue ) 131*cdf0e10cSrcweir throws com.sun.star.beans.UnknownPropertyException, 132*cdf0e10cSrcweir com.sun.star.script.CannotConvertException, 133*cdf0e10cSrcweir com.sun.star.reflection.InvocationTargetException 134*cdf0e10cSrcweir { 135*cdf0e10cSrcweir throw new com.sun.star.beans.UnknownPropertyException(); 136*cdf0e10cSrcweir } 137*cdf0e10cSrcweir 138*cdf0e10cSrcweir public Object getValue( String aPropertyName ) 139*cdf0e10cSrcweir throws com.sun.star.beans.UnknownPropertyException 140*cdf0e10cSrcweir { 141*cdf0e10cSrcweir throw new com.sun.star.beans.UnknownPropertyException(); 142*cdf0e10cSrcweir } 143*cdf0e10cSrcweir 144*cdf0e10cSrcweir public boolean hasMethod( String aMethodName ) 145*cdf0e10cSrcweir { 146*cdf0e10cSrcweir boolean bRet = (aMethodName.equals( aCreateIndexMethodName ) ); 147*cdf0e10cSrcweir return bRet; 148*cdf0e10cSrcweir } 149*cdf0e10cSrcweir public boolean hasProperty( String aName ) { 150*cdf0e10cSrcweir return false; 151*cdf0e10cSrcweir } 152*cdf0e10cSrcweir 153*cdf0e10cSrcweir 154*cdf0e10cSrcweir 155*cdf0e10cSrcweir /** This method returns an array of all supported service names. 156*cdf0e10cSrcweir * @return Array of supported service names. 157*cdf0e10cSrcweir */ 158*cdf0e10cSrcweir public String[] getSupportedServiceNames() 159*cdf0e10cSrcweir { 160*cdf0e10cSrcweir return getServiceNames(); 161*cdf0e10cSrcweir } 162*cdf0e10cSrcweir 163*cdf0e10cSrcweir /** This method is a simple helper function to used in the 164*cdf0e10cSrcweir * static component initialisation functions as well as in 165*cdf0e10cSrcweir * getSupportedServiceNames. 166*cdf0e10cSrcweir */ 167*cdf0e10cSrcweir public static String[] getServiceNames() 168*cdf0e10cSrcweir { 169*cdf0e10cSrcweir String[] sSupportedServiceNames = { __serviceName }; 170*cdf0e10cSrcweir return sSupportedServiceNames; 171*cdf0e10cSrcweir } 172*cdf0e10cSrcweir 173*cdf0e10cSrcweir 174*cdf0e10cSrcweir /** This method returns true, if the given service will be 175*cdf0e10cSrcweir * supported by the component. 176*cdf0e10cSrcweir * @param sServiceName Service name. 177*cdf0e10cSrcweir * @return True, if the given service name will be supported. 178*cdf0e10cSrcweir */ 179*cdf0e10cSrcweir public boolean supportsService( String sServiceName ) 180*cdf0e10cSrcweir { 181*cdf0e10cSrcweir return sServiceName.equals( __serviceName ); 182*cdf0e10cSrcweir } 183*cdf0e10cSrcweir 184*cdf0e10cSrcweir 185*cdf0e10cSrcweir /** Return the class name of the component. 186*cdf0e10cSrcweir * @return Class name of the component. 187*cdf0e10cSrcweir */ 188*cdf0e10cSrcweir public String getImplementationName() 189*cdf0e10cSrcweir { 190*cdf0e10cSrcweir return HelpIndexer.class.getName(); 191*cdf0e10cSrcweir } 192*cdf0e10cSrcweir 193*cdf0e10cSrcweir } 194*cdf0e10cSrcweir 195