/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. * *************************************************************/ import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.Hashtable; import java.util.Enumeration; import java.util.StringTokenizer; import com.sun.star.script.framework.container.ScriptEntry; import com.sun.star.script.framework.container.ParcelDescriptor; import org.openoffice.idesupport.zip.ParcelZipper; import org.openoffice.idesupport.filter.AllFilesFilter; import com.sun.star.script.framework.container.XMLParserFactory; import org.openoffice.idesupport.*; public class CommandLineTools { private static final String PARCEL_XML_FILE = ParcelZipper.PARCEL_DESCRIPTOR_XML; private static String officePath = null; public static void main(String[] args) { CommandLineTools driver = new CommandLineTools(); Command command = driver.parseArgs(args); // Get the URL for the Office DTD directory and pass it to the // XMLParserFactory so that Office xml files can be parsed if (officePath == null) { try { SVersionRCFile sv = SVersionRCFile.createInstance(); if (sv.getDefaultVersion() != null) { officePath = sv.getDefaultVersion().getPath(); } } catch (IOException ioe) { System.err.println("Error getting Office directory"); } } if (officePath == null) { driver.fatalUsage("Error: Office Installation path not set"); } File officeDir = new File(officePath); if (officeDir.exists() == false || officeDir.isDirectory() == false) { driver.fatalUsage( "Error: Office Installation path not valid: " + officePath); } OfficeInstallation oi = new OfficeInstallation(officePath); String url = oi.getURL("share/dtd/officedocument/1_0/"); XMLParserFactory.setOfficeDTDURL(url); if (command == null) driver.printUsage(); else { try { command.execute(); } catch (Exception e) { driver.fatal("Error: " + e.getMessage()); } } } private interface Command { public void execute() throws Exception; } private void printUsage() { System.out.println("java " + getClass().getName() + " -h " + "prints this message"); System.out.println("java " + getClass().getName() + " [-o Path to Office Installation] " + "-d