summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2003-10-06 11:42:02 +0000
committerVladimir Glazounov <vg@openoffice.org>2003-10-06 11:42:02 +0000
commit27628b92141f143116d2bead7aea06a39d8759d5 (patch)
tree4fc7e8bf9149d48d01941f68a9515cd171239f46 /qadevOOo
parentf505f4aea41b97bca39f8087406b4c5e1d9f529d (diff)
INTEGRATION: CWS qadev12 (1.1.2); FILE ADDED
2003/09/30 08:34:29 cn 1.1.2.2: CHG: #112259# replace of TestParam by XMultiServieFactory 2003/09/29 16:37:24 sg 1.1.2.1: #112259#NEW:initial version
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/runner/util/BasicMacroTools.java264
1 files changed, 264 insertions, 0 deletions
diff --git a/qadevOOo/runner/util/BasicMacroTools.java b/qadevOOo/runner/util/BasicMacroTools.java
new file mode 100644
index 000000000000..b1b231b0ef23
--- /dev/null
+++ b/qadevOOo/runner/util/BasicMacroTools.java
@@ -0,0 +1,264 @@
+/*************************************************************************
+ *
+ * $RCSfile: BasicMacroTools.java,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change:$Date: 2003-10-06 12:42:02 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (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.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+package util;
+
+import com.sun.star.awt.XWindow;
+import com.sun.star.beans.PropertyValue;
+import com.sun.star.beans.XPropertySet;
+import com.sun.star.container.XNameAccess;
+import com.sun.star.container.XNameContainer;
+import com.sun.star.frame.XController;
+import com.sun.star.frame.XDispatch;
+import com.sun.star.frame.XDispatchProvider;
+import com.sun.star.frame.XFrame;
+import com.sun.star.frame.XModel;
+import com.sun.star.lang.XComponent;
+import com.sun.star.lang.XMultiServiceFactory;
+import com.sun.star.script.XLibraryContainer;
+import com.sun.star.uno.UnoRuntime;
+import com.sun.star.uno.XInterface;
+import com.sun.star.util.URL;
+import com.sun.star.util.XURLTransformer;
+
+import java.util.Vector;
+
+
+
+public class BasicMacroTools {
+ private final XDispatchProvider mDispProv;
+ private final XMultiServiceFactory mMSF;
+ private final XURLTransformer mParser;
+ private final XNameAccess mLCxNA; //LibraryContainer::XNameAccess
+ private final XLibraryContainer mLCxLC; //LibraryContainer::XLibraryContainer
+ private final XNameContainer mLCxNC; // LibraryContainer::XNameContainer
+
+ /*
+ *While initializing the Basic Libraries will be appendend to the Document
+ */
+ public BasicMacroTools(XMultiServiceFactory msf, XModel xModel,
+ XComponent xDoc) throws java.lang.Exception {
+ try {
+ mMSF = msf;
+ mDispProv = makeDispatchProvider(mMSF, xModel);
+ mParser = makeParser(mMSF);
+
+ Object DocLibCont = null;
+
+ try {
+ XPropertySet xDocProps = (XPropertySet) UnoRuntime.queryInterface(
+ XPropertySet.class, xDoc);
+ DocLibCont = xDocProps.getPropertyValue("BasicLibraries");
+ } catch (com.sun.star.uno.Exception e) {
+ e.printStackTrace();
+ throw new Exception(
+ "Couldn't get BasicLibraries-Container from document: ", e);
+ }
+
+ mLCxNA = (XNameAccess) UnoRuntime.queryInterface(XNameAccess.class,
+ DocLibCont);
+
+ mLCxLC = (XLibraryContainer) UnoRuntime.queryInterface(
+ XLibraryContainer.class, DocLibCont);
+
+ mLCxNC = (XNameContainer) UnoRuntime.queryInterface(
+ XNameContainer.class, DocLibCont);
+ } catch (Exception e) {
+ throw new Exception("could not initialize BasicMacros " +
+ e.toString());
+ }
+ }
+
+ /*
+ * While initializing the Basic Libraries will be appendend to the Office
+ */
+ public BasicMacroTools(XMultiServiceFactory msf, XModel xModel)
+ throws java.lang.Exception {
+ try {
+ mMSF = msf;
+ mDispProv = makeDispatchProvider(mMSF, xModel);
+ mParser = makeParser(mMSF);
+
+ Object ASLC = null;
+
+ try {
+ ASLC = mMSF.createInstance(
+ "com.sun.star.script.ApplicationScriptLibraryContainer");
+ } catch (com.sun.star.uno.Exception e) {
+ e.printStackTrace();
+ throw new Exception(
+ "Couldn't create ApplicationScriptLibraryContainer", e);
+ }
+
+ mLCxNA = (XNameAccess) UnoRuntime.queryInterface(XNameAccess.class,
+ ASLC);
+
+ mLCxLC = (XLibraryContainer) UnoRuntime.queryInterface(
+ XLibraryContainer.class, ASLC);
+
+ mLCxNC = (XNameContainer) UnoRuntime.queryInterface(
+ XNameContainer.class, ASLC);
+ } catch (Exception e) {
+ throw new Exception("could not initialize BasicMacros " +
+ e.toString());
+ }
+ }
+
+ private static XDispatchProvider makeDispatchProvider(XMultiServiceFactory mMSF,
+ XModel aModel)
+ throws java.lang.Exception {
+ XController xController = aModel.getCurrentController();
+ XFrame xFrame = xController.getFrame();
+
+ if (xFrame == null) {
+ throw new Exception("Could not create DispatchProvider");
+ }
+
+ return (XDispatchProvider) UnoRuntime.queryInterface(
+ XDispatchProvider.class, xFrame);
+ }
+
+ private static XURLTransformer makeParser(XMultiServiceFactory mMSF)
+ throws java.lang.Exception {
+ try {
+ return (com.sun.star.util.XURLTransformer) UnoRuntime.queryInterface(
+ XURLTransformer.class, mMSF.createInstance(
+ "com.sun.star.util.URLTransformer"));
+ } catch (Exception e) {
+ throw new Exception("could not create UTL-Transformer " +
+ e.toString());
+ }
+ }
+
+ public void loadLibrary(String LibraryName, String LibraryURL)
+ throws java.lang.Exception {
+ try {
+ appendLibrary(LibraryName, LibraryURL);
+ } catch (java.lang.Exception e) {
+ e.printStackTrace();
+ throw new Exception("ERROR: Could not append Library " +
+ LibraryName, e);
+ }
+
+ try {
+ mLCxLC.loadLibrary(LibraryName);
+ } catch (com.sun.star.container.NoSuchElementException e) {
+ e.printStackTrace();
+ throw new Exception("ERROR: Could not load Library " +
+ LibraryName, e);
+ } catch (com.sun.star.lang.WrappedTargetException e) {
+ e.printStackTrace();
+ throw new Exception("ERROR: Could not load Library " +
+ LibraryName, e);
+ }
+ }
+
+ private void appendLibrary(String LibraryName, String LibraryURL)
+ throws java.lang.Exception {
+ try {
+ removeLibrary(LibraryName);
+ } catch (java.lang.Exception e) {
+ }
+
+ try {
+ mLCxLC.createLibraryLink(LibraryName, LibraryURL, false);
+ } catch (com.sun.star.container.ElementExistException e) {
+ e.printStackTrace();
+ throw new Exception("ERROR: Library " + LibraryName +
+ "already exist.", e);
+ } catch (com.sun.star.uno.Exception e) {
+ e.printStackTrace();
+ throw new Exception("Could not link Basic library:" +
+ LibraryName, e);
+ }
+ }
+
+ public void removeLibrary(String LibraryName) throws java.lang.Exception {
+ if (mLCxNA.hasByName(LibraryName)) {
+ try {
+ mLCxLC.removeLibrary(LibraryName);
+ } catch (com.sun.star.container.NoSuchElementException e) {
+ e.printStackTrace();
+ throw new Exception("Could not remove Basic library:" +
+ LibraryName + ": Library does not exist", e);
+ } catch (com.sun.star.lang.WrappedTargetException e) {
+ e.printStackTrace();
+ throw new Exception("Could not remove Basic library:" +
+ LibraryName, e);
+ }
+ }
+ }
+
+ public void runMarco(String MacroName) throws java.lang.Exception {
+ URL[] aParseURL = new URL[1];
+ aParseURL[0] = new URL();
+ aParseURL[0].Complete = "macro://./" + MacroName; //Standard.Stock.GetSymbol('micro','')";
+ mParser.parseStrict(aParseURL);
+
+ URL aURL = aParseURL[0];
+ XDispatch xDispatcher = mDispProv.queryDispatch(aURL, "", 0);
+
+ if (xDispatcher != null) {
+ xDispatcher.dispatch(aURL, null);
+ } else {
+ throw new Exception("Could not run Macro " + MacroName);
+ }
+ }
+} \ No newline at end of file