/* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * 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 . */ 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() || !officeDir.isDirectory()) { 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 { 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