Files
libreoffice/qadevOOo/runner/util/utils.java

975 lines
35 KiB
Java
Raw Normal View History

2012-06-29 14:02:24 +01:00
/*
* 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 .
*/
2003-01-27 15:27:53 +00:00
package util;
import com.sun.star.frame.XController;
import com.sun.star.frame.XDispatch;
import com.sun.star.frame.XDispatchProvider;
import com.sun.star.frame.XModel;
import com.sun.star.lang.XComponent;
2003-01-27 15:27:53 +00:00
import java.lang.System;
import java.util.StringTokenizer;
import java.io.*;
import java.util.ArrayList;
import java.io.RandomAccessFile;
import java.net.Socket;
import java.net.ServerSocket;
import java.net.URI;
import java.net.URISyntaxException;
2003-01-27 15:27:53 +00:00
import com.sun.star.beans.XPropertySet;
import com.sun.star.beans.Property;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.uno.UnoRuntime;
2010-04-28 11:08:02 +02:00
import com.sun.star.ucb.InteractiveAugmentedIOException;
2003-01-27 15:27:53 +00:00
import com.sun.star.ucb.XSimpleFileAccess;
import com.sun.star.lang.XServiceInfo;
import com.sun.star.util.URL;
import com.sun.star.util.XURLTransformer;
import com.sun.star.uno.AnyConverter;
import com.sun.star.uno.Type;
import com.sun.star.uno.XComponentContext;
import com.sun.star.util.XMacroExpander;
import java.text.DecimalFormat;
import java.util.Calendar;
import java.util.Collections;
import java.util.GregorianCalendar;
2003-01-27 15:27:53 +00:00
public class utils {
/**
*
* This method adds the DOCPTH to a given file
*
2008-09-30 07:44:27 +00:00
* @param sDocName the file which should be completed to the test doc path
* @return $TESTDOCPATH/sDocName
2003-01-27 15:27:53 +00:00
*/
public static String getFullTestDocName(String sDocName) {
2003-01-27 15:27:53 +00:00
String docpth = System.getProperty("DOCPTH");
if (docpth.endsWith("\\") || docpth.endsWith("/")) {
docpth = docpth.substring(0, docpth.length() - 1);
}
2003-01-27 15:27:53 +00:00
2008-09-30 07:44:27 +00:00
System.out.println("docpth:" + docpth);
String pthSep = System.getProperty("file.separator");
dba33a: summary migration from SVN 2009-11-06 13:10:39 +0000 msc r277387 : minor fix for automatic test 2009-11-06 13:09:33 +0000 msc r277385 : minor fix for automatic test 2009-11-06 12:30:57 +0000 fs r277383 : argh. On some virtual machines, waiting 5 seconds for the event to arrive is not enough. Increasing the timeout ... 2009-11-06 12:13:34 +0000 fs r277382 : this diagnostic code should not have slipped in 2009-11-05 13:21:06 +0000 fs r277369 : SHL2NOCHECK=TRUE (requested by hjs) 2009-11-04 14:09:46 +0000 msc r277355 : minor fix for automatic testing 2009-11-04 13:23:02 +0000 msc r277352 : minor fix for automatic testing 2009-11-04 10:53:28 +0000 msc r277341 : minor fix for automated testscript 2009-11-04 08:30:58 +0000 msc r277333 : minor fix for automatic test 2009-11-04 08:15:43 +0000 msc r277332 : minor fix for automatic test 2009-11-03 14:25:44 +0000 fs r277324 : #i10000# 2009-11-03 09:47:47 +0000 fs r277315 : found yet another help ID zombie ... moved formhelpid.hrc content to propctrlr.hrc, where it belongs 2009-11-03 08:50:24 +0000 fs r277312 : use createTempFileURL, which cares for some more specialities ... 2009-11-03 08:44:55 +0000 fs r277311 : when creating a temp file for purpose of getting a temp file URL, the delete the file immediately. On some machines/JVMs, the file exists, with write access denied, which isn't Good (TM) 2009-10-22 13:06:17 +0000 fs r277126 : removed wrong assertion 2009-10-21 08:10:35 +0000 fs r277077 : reverted the previous change, which was nonsense 2009-10-21 07:19:43 +0000 fs r277076 : export the component_foo functions, now that some of the objects are built with VISIBILITY_HIDDEN=TRUE 2009-10-21 07:08:35 +0000 fs r277075 : spare useless call 2009-10-20 21:26:31 +0000 fs r277072 : #i10000# 2009-10-20 08:06:04 +0000 fs r277039 : CWS-TOOLING: rebase CWS dba33a to trunk@277035 (milestone: DEV300:m62) 2009-10-16 09:55:25 +0000 fs r276960 : remove one of the superfluous implts_doLayout calls introduced with the previous patch 2009-10-15 13:18:52 +0000 fs r276941 : removed the basic tests. According to cn, they're not used anymore (for a long time), and according to 'du -h', they take up 6.0M on my hard disc. For too much for useless code, /me thinks. 2009-10-15 13:06:51 +0000 fs r276940 : #i10000# remove useless include (otherwise the compiler warning it provokes would need to be fixed by declaring VISIBILITY_HIDDEN=TRUE in the makefile.mk) 2009-10-15 12:52:39 +0000 fs r276939 : #i10000# 2009-10-15 12:44:26 +0000 fs r276938 : #i10000# 2009-10-15 12:00:33 +0000 fs r276936 : #i10000# 2009-10-15 10:31:37 +0000 fs r276934 : #i105259# prepare for the Hidden arg 2009-10-15 10:31:05 +0000 fs r276933 : IsMaximized -> const 2009-10-15 09:50:15 +0000 fs r276932 : during #i105259#: introduce an option to the layout manager to preserve, if possible, the size of the content window when layouting. Enable this option for embedded (SFX-based) documents opened for outplace editing. (the option is incompatible with in-place editing, anyway) This is because such embedded objects couple the (content) window size to the VisAreaSize, in that both are used interchangeably. When an embedded object is closed, it remembers the VisAreaSize, and restores it upon next open. This, however, leads to different content window sizes when the window is closed with another toolbar set than used during opening. This patch here prevents those different content window sizes. Also, now the content window size doesn't change when, explicitly or implicitly, a toolbar is shown or hidden. Instead, the content window size stays the same, and the container window size is adjusted. 2009-10-15 09:32:41 +0000 fs r276931 : during #i105259#: UNO access to more attributes of top windows 2009-10-15 09:30:28 +0000 fs r276930 : indention corrected (better readable) 2009-10-15 09:26:46 +0000 fs r276929 : during #i105259#: access to more attributes of top windows 2009-10-14 10:04:39 +0000 fs r276889 : connecting via services manager, not naming service 2009-10-12 11:31:08 +0000 fs r276831 : during #i105806# FillPropertySet: do not attempt to set *AutoStyleName if it doesn't exist 2009-10-12 11:24:44 +0000 fs r276830 : #i105806# getPropertyValue: throw an UnknownPropertyException for, well, unknown properties 2009-10-08 08:20:58 +0000 fs r276774 : implSubmit: re-throw WrappedTargetExceptions unmodified 2009-10-07 19:19:42 +0000 fs r276770 : #i105198# do not pass an CommandType if we do not have a command 2009-10-07 17:39:36 +0000 fs r276768 : export the OWeakObject::disposeWeakConnectionPoint symbol 2009-10-07 12:59:17 +0000 fs r276754 : #i87693# 2009-10-07 11:19:22 +0000 fs r276752 : #i10000# 2009-10-07 10:21:08 +0000 fs r276748 : #105482# do not require a controller, at least not in *all* circumstances (executed reports have a model, the ReportDefinition, but no Controller) 2009-10-07 10:04:08 +0000 fs r276747 : copying the changes from CWS fwk121 herein, in particular the fix for issue #i105371# 2009-10-07 09:58:30 +0000 fs r276746 : copying the changes from CWS fwk121 herein, in particular the fix for issue #i105371# 2009-10-07 09:48:14 +0000 fs r276744 : removed (now) pointless assertion 2009-10-07 06:59:19 +0000 fs r276740 : export the OWeakObject::disposeWeakConnectionPoint symbol 2009-10-07 06:44:43 +0000 fs r276739 : OComponentHelper::release & WeakAggComponentImplHelperBase::release: when our ref count drops to 0, call OWeakObject's disposeWeakConnectionPoint before (temporarily) incrementing the ref count, again. This ensures that our adapter cannot create references to the dying object anymore. (A complex test case in dbaccess (#i105505#) triggered such a situation, but in another class using an analogous release/dispose/destroy pattern, namely WeakComponentImplHelperBase) 2009-10-07 06:37:20 +0000 fs r276738 : found during some new complex test cases: call disposeWeakConnectionPoint before actually starting to destroy the object, this ensures no other threads will resurrect it while it is dying 2009-10-06 21:58:24 +0000 fs r276734 : oops, two small corrections to the previous fix (hey, complex test cases are cool) 2009-10-06 21:51:16 +0000 fs r276733 : log the name of the data source which cannot be revoked 2009-10-06 21:50:41 +0000 fs r276732 : more detailed error message when cleanup fails 2009-10-06 21:50:01 +0000 fs r276731 : reworked the ModelImpl caching. The new and improved UNO API test for css.sdb.RowSet revealed some inconsistencies, in whether the objects are cached by their URL, or by their registration name. This has been changed to caching by registration name. 2009-10-06 13:50:34 +0000 fs r276714 : print diagnostics when we cannot clean up the test case 2009-10-06 13:45:02 +0000 fs r276713 : this test failed all the time, since the core (rightfully) threw an exception. Disabled it for the moment, until issue 84253 is fixed 2009-10-06 12:52:46 +0000 fs r276711 : rewrote this test. Now we do not re-use the same .odb across different test cases, as this leads to unreliable (timing-dependent) results/failures. Instead, every test sets up a new odb file. Also, did some re-factoring, improved the cleanup code, and caught a few more errors. 2009-10-06 12:51:07 +0000 fs r276710 : DBTools taking a logger now 2009-10-06 12:50:42 +0000 fs r276709 : taking a PrintWriter for logging purpose 2009-10-06 12:50:03 +0000 fs r276708 : DBTools taking a logger now 2009-10-06 12:49:22 +0000 fs r276707 : typo 2009-10-06 12:49:03 +0000 fs r276706 : typo 2009-10-06 12:48:52 +0000 fs r276705 : wrappers around some database-related services - initial versions only, to evolve over time, and intended to finally replace the DBTools class 2009-10-06 12:48:02 +0000 fs r276704 : typo 2009-10-06 12:38:42 +0000 fs r276702 : some better diagnostics, done during getting the API tests to work more reliably 2009-10-06 10:35:51 +0000 fs r276698 : when living in, e.g., the DataSourceBrowser, we can't expect to find an XModifiable2, so don't assert its existence 2009-10-05 12:47:52 +0000 oj r276677 : #i105607# check for read moved into if scope 2009-10-05 11:37:06 +0000 fs r276676 : when saving a file fails, retrieve the error message from the InteractionRequestStringResolver - this is better than any generic message we can create 2009-10-05 10:04:23 +0000 oj r276673 : #i105607# check for read moved into if scope 2009-10-05 09:46:17 +0000 fs r276671 : #i10000# 2009-10-05 08:43:58 +0000 fs r276664 : #i105505# release: dispose the (base classes) weak connection point before disposing ourself, and in particular before temporarily incrementing our ref count, again. This way, we prevent that a separate thread re-surrects us (using the weak connection point's queryAdapted) while we're in the process of destruction 2009-10-05 08:41:49 +0000 fs r276663 : #i105505# +disposeWeakConnectionPoint (outsourced into dedicated method from ::release) 2009-10-05 08:40:26 +0000 fs r276662 : no need to derived from OSubComponent, its features are not used, directly derive from WeakComponentImplFoo instead 2009-10-05 08:39:38 +0000 fs r276661 : #i105505# diagnostics 2009-10-05 08:39:16 +0000 fs r276660 : #i105505# +testDocumentRevenants 2009-10-05 08:36:01 +0000 fs r276659 : #i105560# reverted the removal of GenericController::openHelpAgent - this is needed in module reportdesign 2009-10-04 19:53:30 +0000 fs r276657 : #105560# remove unused code thanks to cmc@openoffice.org for submitting the patch 2009-10-04 19:50:28 +0000 fs r276656 : #i105550# remove unused 'fire' method (thanks to cmc) 2009-10-03 16:13:15 +0000 fs r276655 : CWS-TOOLING: rebase CWS dba33a to trunk@276429 (milestone: DEV300:m60) 2009-10-02 19:20:48 +0000 fs r276651 : #i104117# lotta changed IDs ... 2009-10-02 10:52:24 +0000 fs r276634 : #i105505# If a model is created, and is a revenant of a previous incarnation, then ensure it is properly initialized. In particular, in its ctor, set the state to "Initializing", not "Initialized", and then let the ModelImpl call attachResource. This ensures that the model is initialized completely, including firing the necessary events. 2009-10-02 10:51:08 +0000 fs r276633 : #i105505# always do an attachResource at the newly loaded model, even if it (internally) was not really loaded, but only a revenant of a previous incarnation of this document 2009-10-01 11:10:13 +0000 fs r276597 : do not rely on the name 'Standard' for the one and only form in a document 2009-10-01 10:36:29 +0000 fs r276590 : #i105509# don't rely on default form component names, use indexes 2009-10-01 09:12:20 +0000 fs r276582 : #i105505# 2009-09-30 07:55:21 +0000 fs r276542 : removed some unsed methods / spared some unnecessary pixel<->logic conversion 2009-09-30 07:53:22 +0000 fs r276541 : removed unneeded methods 2009-09-30 06:35:59 +0000 fs r276538 : #i10000# 2009-09-29 13:45:02 +0000 fs r276531 : refactored the Roadmap* classes, to be able to fix above-mentioned #i105113# 2009-09-29 10:27:10 +0000 fs r276520 : #i105367# 2009-09-29 08:46:45 +0000 fs r276510 : #i104956# cleaned up the makefiles 2009-09-28 21:00:07 +0000 fs r276505 : #i104117# sourced those IDs out from extension.hrc 2009-09-28 20:59:05 +0000 fs r276504 : no need to let one FREE... 2009-09-28 20:53:36 +0000 fs r276503 : #i104117# cleaned up the mess with help IDs in module extensions. Formerly, extensions used to use help IDs which were declared in module svx, and vice versa. Also, help ID ranges were not respected. 2009-09-28 11:25:36 +0000 fs r276489 : typo 2009-09-28 11:25:10 +0000 fs r276488 : #i105235# 2009-09-24 11:53:16 +0000 fs r276423 : #i105234# do not zoom the control when they view information is still uninitialized (happens at least in Writer when opening a form document) 2009-09-24 09:42:28 +0000 fs r276415 : #i105234# proper zoom handling for the nav bar 2009-09-24 09:42:19 +0000 fs r276414 : #i105234# setZoom: care for precision errors caused by implicit conversion float->double 2009-09-16 11:11:43 +0000 fs r276195 : #i105082# consolidated the sub storage handling, by delegating more functionality into the DocumentStorageAccess class. As a result, there won't be that many unnecessary commits anymore. Also, the two different storage caches (in ModelImpl::m_aStorages and DocumentStorageAccess::m_aExposedStorages) have been consolidated. This is not really part of the fix of issue 105082, but it helped reducing the calls to the storage/package implementation. 2009-09-15 21:42:27 +0000 fs r276190 : don't calculate space for BOLD if the text is not really bold (speeds up rendering for large tree structures) 2009-09-15 20:20:23 +0000 fs r276188 : getTypeInfo: fill m_aTypeInfoRows only if really all type infos could be retrieved 2009-09-15 20:19:29 +0000 fs r276187 : do not continue loading when the controller initialization throws an error 2009-09-14 12:25:57 +0000 fs r276119 : oops, this patch was not intended for this CWS 2009-09-14 12:13:57 +0000 fs r276114 : #cr6875455# introduce a ReferenceDevice property for various control models 2009-09-14 10:33:02 +0000 fs r276106 : removed dead file 2009-09-09 08:37:31 +0000 fs r275972 : remove OSL_TRACE in VCLXButton dtor 2009-09-08 11:19:17 +0000 oj r275926 : i76534# remove mnemonic from fixed text 2009-09-07 08:39:37 +0000 fs r275874 : create CWS dba33a from cws/dba32g@275857 (CWS: dba32g)
2009-11-27 12:39:32 +00:00
if (docpth.equals("unknown")) {
2008-09-30 07:44:27 +00:00
System.out.println("try to get tDoc from $SRC_ROOT/qadevOOo");
String srcRoot = System.getProperty(PropertyName.SRC_ROOT);
if (srcRoot != null) {
File srcR = new File(srcRoot);
String[] list = srcR.list(new FilenameFilter() {
public boolean accept(File dir, String name) {
return name.startsWith("qadevOOo");
}
});
if (list[0] != null) {
String tDoc = srcRoot.concat(pthSep).concat(list[0]).concat(pthSep).concat("testdocs");
if (new File(tDoc).exists()) {
docpth = tDoc;
}
}
}
}
2003-01-27 15:27:53 +00:00
if (docpth.startsWith("http:")) {
return docpth + "/" + sDocName;
2003-01-27 15:27:53 +00:00
}
String testdocPth = "";
2008-09-30 07:44:27 +00:00
dba33a: summary migration from SVN 2009-11-06 13:10:39 +0000 msc r277387 : minor fix for automatic test 2009-11-06 13:09:33 +0000 msc r277385 : minor fix for automatic test 2009-11-06 12:30:57 +0000 fs r277383 : argh. On some virtual machines, waiting 5 seconds for the event to arrive is not enough. Increasing the timeout ... 2009-11-06 12:13:34 +0000 fs r277382 : this diagnostic code should not have slipped in 2009-11-05 13:21:06 +0000 fs r277369 : SHL2NOCHECK=TRUE (requested by hjs) 2009-11-04 14:09:46 +0000 msc r277355 : minor fix for automatic testing 2009-11-04 13:23:02 +0000 msc r277352 : minor fix for automatic testing 2009-11-04 10:53:28 +0000 msc r277341 : minor fix for automated testscript 2009-11-04 08:30:58 +0000 msc r277333 : minor fix for automatic test 2009-11-04 08:15:43 +0000 msc r277332 : minor fix for automatic test 2009-11-03 14:25:44 +0000 fs r277324 : #i10000# 2009-11-03 09:47:47 +0000 fs r277315 : found yet another help ID zombie ... moved formhelpid.hrc content to propctrlr.hrc, where it belongs 2009-11-03 08:50:24 +0000 fs r277312 : use createTempFileURL, which cares for some more specialities ... 2009-11-03 08:44:55 +0000 fs r277311 : when creating a temp file for purpose of getting a temp file URL, the delete the file immediately. On some machines/JVMs, the file exists, with write access denied, which isn't Good (TM) 2009-10-22 13:06:17 +0000 fs r277126 : removed wrong assertion 2009-10-21 08:10:35 +0000 fs r277077 : reverted the previous change, which was nonsense 2009-10-21 07:19:43 +0000 fs r277076 : export the component_foo functions, now that some of the objects are built with VISIBILITY_HIDDEN=TRUE 2009-10-21 07:08:35 +0000 fs r277075 : spare useless call 2009-10-20 21:26:31 +0000 fs r277072 : #i10000# 2009-10-20 08:06:04 +0000 fs r277039 : CWS-TOOLING: rebase CWS dba33a to trunk@277035 (milestone: DEV300:m62) 2009-10-16 09:55:25 +0000 fs r276960 : remove one of the superfluous implts_doLayout calls introduced with the previous patch 2009-10-15 13:18:52 +0000 fs r276941 : removed the basic tests. According to cn, they're not used anymore (for a long time), and according to 'du -h', they take up 6.0M on my hard disc. For too much for useless code, /me thinks. 2009-10-15 13:06:51 +0000 fs r276940 : #i10000# remove useless include (otherwise the compiler warning it provokes would need to be fixed by declaring VISIBILITY_HIDDEN=TRUE in the makefile.mk) 2009-10-15 12:52:39 +0000 fs r276939 : #i10000# 2009-10-15 12:44:26 +0000 fs r276938 : #i10000# 2009-10-15 12:00:33 +0000 fs r276936 : #i10000# 2009-10-15 10:31:37 +0000 fs r276934 : #i105259# prepare for the Hidden arg 2009-10-15 10:31:05 +0000 fs r276933 : IsMaximized -> const 2009-10-15 09:50:15 +0000 fs r276932 : during #i105259#: introduce an option to the layout manager to preserve, if possible, the size of the content window when layouting. Enable this option for embedded (SFX-based) documents opened for outplace editing. (the option is incompatible with in-place editing, anyway) This is because such embedded objects couple the (content) window size to the VisAreaSize, in that both are used interchangeably. When an embedded object is closed, it remembers the VisAreaSize, and restores it upon next open. This, however, leads to different content window sizes when the window is closed with another toolbar set than used during opening. This patch here prevents those different content window sizes. Also, now the content window size doesn't change when, explicitly or implicitly, a toolbar is shown or hidden. Instead, the content window size stays the same, and the container window size is adjusted. 2009-10-15 09:32:41 +0000 fs r276931 : during #i105259#: UNO access to more attributes of top windows 2009-10-15 09:30:28 +0000 fs r276930 : indention corrected (better readable) 2009-10-15 09:26:46 +0000 fs r276929 : during #i105259#: access to more attributes of top windows 2009-10-14 10:04:39 +0000 fs r276889 : connecting via services manager, not naming service 2009-10-12 11:31:08 +0000 fs r276831 : during #i105806# FillPropertySet: do not attempt to set *AutoStyleName if it doesn't exist 2009-10-12 11:24:44 +0000 fs r276830 : #i105806# getPropertyValue: throw an UnknownPropertyException for, well, unknown properties 2009-10-08 08:20:58 +0000 fs r276774 : implSubmit: re-throw WrappedTargetExceptions unmodified 2009-10-07 19:19:42 +0000 fs r276770 : #i105198# do not pass an CommandType if we do not have a command 2009-10-07 17:39:36 +0000 fs r276768 : export the OWeakObject::disposeWeakConnectionPoint symbol 2009-10-07 12:59:17 +0000 fs r276754 : #i87693# 2009-10-07 11:19:22 +0000 fs r276752 : #i10000# 2009-10-07 10:21:08 +0000 fs r276748 : #105482# do not require a controller, at least not in *all* circumstances (executed reports have a model, the ReportDefinition, but no Controller) 2009-10-07 10:04:08 +0000 fs r276747 : copying the changes from CWS fwk121 herein, in particular the fix for issue #i105371# 2009-10-07 09:58:30 +0000 fs r276746 : copying the changes from CWS fwk121 herein, in particular the fix for issue #i105371# 2009-10-07 09:48:14 +0000 fs r276744 : removed (now) pointless assertion 2009-10-07 06:59:19 +0000 fs r276740 : export the OWeakObject::disposeWeakConnectionPoint symbol 2009-10-07 06:44:43 +0000 fs r276739 : OComponentHelper::release & WeakAggComponentImplHelperBase::release: when our ref count drops to 0, call OWeakObject's disposeWeakConnectionPoint before (temporarily) incrementing the ref count, again. This ensures that our adapter cannot create references to the dying object anymore. (A complex test case in dbaccess (#i105505#) triggered such a situation, but in another class using an analogous release/dispose/destroy pattern, namely WeakComponentImplHelperBase) 2009-10-07 06:37:20 +0000 fs r276738 : found during some new complex test cases: call disposeWeakConnectionPoint before actually starting to destroy the object, this ensures no other threads will resurrect it while it is dying 2009-10-06 21:58:24 +0000 fs r276734 : oops, two small corrections to the previous fix (hey, complex test cases are cool) 2009-10-06 21:51:16 +0000 fs r276733 : log the name of the data source which cannot be revoked 2009-10-06 21:50:41 +0000 fs r276732 : more detailed error message when cleanup fails 2009-10-06 21:50:01 +0000 fs r276731 : reworked the ModelImpl caching. The new and improved UNO API test for css.sdb.RowSet revealed some inconsistencies, in whether the objects are cached by their URL, or by their registration name. This has been changed to caching by registration name. 2009-10-06 13:50:34 +0000 fs r276714 : print diagnostics when we cannot clean up the test case 2009-10-06 13:45:02 +0000 fs r276713 : this test failed all the time, since the core (rightfully) threw an exception. Disabled it for the moment, until issue 84253 is fixed 2009-10-06 12:52:46 +0000 fs r276711 : rewrote this test. Now we do not re-use the same .odb across different test cases, as this leads to unreliable (timing-dependent) results/failures. Instead, every test sets up a new odb file. Also, did some re-factoring, improved the cleanup code, and caught a few more errors. 2009-10-06 12:51:07 +0000 fs r276710 : DBTools taking a logger now 2009-10-06 12:50:42 +0000 fs r276709 : taking a PrintWriter for logging purpose 2009-10-06 12:50:03 +0000 fs r276708 : DBTools taking a logger now 2009-10-06 12:49:22 +0000 fs r276707 : typo 2009-10-06 12:49:03 +0000 fs r276706 : typo 2009-10-06 12:48:52 +0000 fs r276705 : wrappers around some database-related services - initial versions only, to evolve over time, and intended to finally replace the DBTools class 2009-10-06 12:48:02 +0000 fs r276704 : typo 2009-10-06 12:38:42 +0000 fs r276702 : some better diagnostics, done during getting the API tests to work more reliably 2009-10-06 10:35:51 +0000 fs r276698 : when living in, e.g., the DataSourceBrowser, we can't expect to find an XModifiable2, so don't assert its existence 2009-10-05 12:47:52 +0000 oj r276677 : #i105607# check for read moved into if scope 2009-10-05 11:37:06 +0000 fs r276676 : when saving a file fails, retrieve the error message from the InteractionRequestStringResolver - this is better than any generic message we can create 2009-10-05 10:04:23 +0000 oj r276673 : #i105607# check for read moved into if scope 2009-10-05 09:46:17 +0000 fs r276671 : #i10000# 2009-10-05 08:43:58 +0000 fs r276664 : #i105505# release: dispose the (base classes) weak connection point before disposing ourself, and in particular before temporarily incrementing our ref count, again. This way, we prevent that a separate thread re-surrects us (using the weak connection point's queryAdapted) while we're in the process of destruction 2009-10-05 08:41:49 +0000 fs r276663 : #i105505# +disposeWeakConnectionPoint (outsourced into dedicated method from ::release) 2009-10-05 08:40:26 +0000 fs r276662 : no need to derived from OSubComponent, its features are not used, directly derive from WeakComponentImplFoo instead 2009-10-05 08:39:38 +0000 fs r276661 : #i105505# diagnostics 2009-10-05 08:39:16 +0000 fs r276660 : #i105505# +testDocumentRevenants 2009-10-05 08:36:01 +0000 fs r276659 : #i105560# reverted the removal of GenericController::openHelpAgent - this is needed in module reportdesign 2009-10-04 19:53:30 +0000 fs r276657 : #105560# remove unused code thanks to cmc@openoffice.org for submitting the patch 2009-10-04 19:50:28 +0000 fs r276656 : #i105550# remove unused 'fire' method (thanks to cmc) 2009-10-03 16:13:15 +0000 fs r276655 : CWS-TOOLING: rebase CWS dba33a to trunk@276429 (milestone: DEV300:m60) 2009-10-02 19:20:48 +0000 fs r276651 : #i104117# lotta changed IDs ... 2009-10-02 10:52:24 +0000 fs r276634 : #i105505# If a model is created, and is a revenant of a previous incarnation, then ensure it is properly initialized. In particular, in its ctor, set the state to "Initializing", not "Initialized", and then let the ModelImpl call attachResource. This ensures that the model is initialized completely, including firing the necessary events. 2009-10-02 10:51:08 +0000 fs r276633 : #i105505# always do an attachResource at the newly loaded model, even if it (internally) was not really loaded, but only a revenant of a previous incarnation of this document 2009-10-01 11:10:13 +0000 fs r276597 : do not rely on the name 'Standard' for the one and only form in a document 2009-10-01 10:36:29 +0000 fs r276590 : #i105509# don't rely on default form component names, use indexes 2009-10-01 09:12:20 +0000 fs r276582 : #i105505# 2009-09-30 07:55:21 +0000 fs r276542 : removed some unsed methods / spared some unnecessary pixel<->logic conversion 2009-09-30 07:53:22 +0000 fs r276541 : removed unneeded methods 2009-09-30 06:35:59 +0000 fs r276538 : #i10000# 2009-09-29 13:45:02 +0000 fs r276531 : refactored the Roadmap* classes, to be able to fix above-mentioned #i105113# 2009-09-29 10:27:10 +0000 fs r276520 : #i105367# 2009-09-29 08:46:45 +0000 fs r276510 : #i104956# cleaned up the makefiles 2009-09-28 21:00:07 +0000 fs r276505 : #i104117# sourced those IDs out from extension.hrc 2009-09-28 20:59:05 +0000 fs r276504 : no need to let one FREE... 2009-09-28 20:53:36 +0000 fs r276503 : #i104117# cleaned up the mess with help IDs in module extensions. Formerly, extensions used to use help IDs which were declared in module svx, and vice versa. Also, help ID ranges were not respected. 2009-09-28 11:25:36 +0000 fs r276489 : typo 2009-09-28 11:25:10 +0000 fs r276488 : #i105235# 2009-09-24 11:53:16 +0000 fs r276423 : #i105234# do not zoom the control when they view information is still uninitialized (happens at least in Writer when opening a form document) 2009-09-24 09:42:28 +0000 fs r276415 : #i105234# proper zoom handling for the nav bar 2009-09-24 09:42:19 +0000 fs r276414 : #i105234# setZoom: care for precision errors caused by implicit conversion float->double 2009-09-16 11:11:43 +0000 fs r276195 : #i105082# consolidated the sub storage handling, by delegating more functionality into the DocumentStorageAccess class. As a result, there won't be that many unnecessary commits anymore. Also, the two different storage caches (in ModelImpl::m_aStorages and DocumentStorageAccess::m_aExposedStorages) have been consolidated. This is not really part of the fix of issue 105082, but it helped reducing the calls to the storage/package implementation. 2009-09-15 21:42:27 +0000 fs r276190 : don't calculate space for BOLD if the text is not really bold (speeds up rendering for large tree structures) 2009-09-15 20:20:23 +0000 fs r276188 : getTypeInfo: fill m_aTypeInfoRows only if really all type infos could be retrieved 2009-09-15 20:19:29 +0000 fs r276187 : do not continue loading when the controller initialization throws an error 2009-09-14 12:25:57 +0000 fs r276119 : oops, this patch was not intended for this CWS 2009-09-14 12:13:57 +0000 fs r276114 : #cr6875455# introduce a ReferenceDevice property for various control models 2009-09-14 10:33:02 +0000 fs r276106 : removed dead file 2009-09-09 08:37:31 +0000 fs r275972 : remove OSL_TRACE in VCLXButton dtor 2009-09-08 11:19:17 +0000 oj r275926 : i76534# remove mnemonic from fixed text 2009-09-07 08:39:37 +0000 fs r275874 : create CWS dba33a from cws/dba32g@275857 (CWS: dba32g)
2009-11-27 12:39:32 +00:00
if (docpth.equals("unknown")) {
2008-09-30 07:44:27 +00:00
System.out.println("try to get tDoc from OBJDSCS");
2003-01-27 15:27:53 +00:00
String objdscPth = System.getProperty("OBJDSCS");
2008-09-30 07:44:27 +00:00
if (objdscPth != null) {
int i = objdscPth.indexOf("objdsc");
String arcPth = objdscPth.substring(0, i - 1);
testdocPth = arcPth + pthSep + "doc" + pthSep + "java" +
pthSep + "testdocs" + pthSep + sDocName;
}
} else {
2003-01-27 15:27:53 +00:00
testdocPth = docpth + pthSep + sDocName;
}
return testdocPth;
}
/**
*
* This method adds the DOCPTH to a given file
* and changes the format to an file URL
*
*/
public static String getFullTestURL(String sDocName) {
2003-01-27 15:27:53 +00:00
String fullDocPath = getFullTestDocName(sDocName);
if (fullDocPath.startsWith("http:")) {
return fullDocPath;
}
if (fullDocPath.startsWith("file:")) {
return fullDocPath;
}
String prefix = null;
// Windows: \\\\margritte\\qaapi\\workspace\\qadev\\testdocs/emptyChart.sds
if (fullDocPath.startsWith("\\\\")) {
prefix = "file:";
}
fullDocPath = fullDocPath.replace('\\', '/');
if (prefix == null) {
if (fullDocPath.startsWith("//")) {
prefix = "file:/";
} else if (fullDocPath.startsWith("/")) {
prefix = "file://";
} else {
prefix = "file:///";
}
}
2003-01-27 15:27:53 +00:00
if (!fullDocPath.endsWith("/")) {
File aFile = new File(fullDocPath);
if (aFile.isDirectory()) {
fullDocPath += "/";
2003-01-27 15:27:53 +00:00
}
}
String fulldocURL = prefix + fullDocPath;
2003-01-27 15:27:53 +00:00
return fulldocURL;
}
2003-01-27 15:27:53 +00:00
/**
*
* This method changes a given URL to a valid file URL
*
*/
public static String getFullURL(String sDocName) {
2003-01-27 15:27:53 +00:00
String fullDocPath = sDocName;
fullDocPath = fullDocPath.replace('\\', '/');
2003-01-27 15:27:53 +00:00
if (fullDocPath.startsWith("http:")) {
return fullDocPath;
}
if (fullDocPath.startsWith("ftp:")) {
return fullDocPath;
}
String prefix = "";
if (!fullDocPath.startsWith("file:///")) {
if (fullDocPath.startsWith("//")) {
prefix = "file:";
} else {
if (fullDocPath.startsWith("/")) {
prefix = "file://";
}
else
{
prefix = "file:///";
}
}
2003-02-26 09:00:29 +00:00
}
if (!fullDocPath.endsWith("/")) {
File aFile = new File(fullDocPath);
if (aFile.isDirectory()) {
fullDocPath += "/";
}
}
String fulldocURL = prefix + fullDocPath;
2003-01-27 15:27:53 +00:00
return fulldocURL;
}
/**
*
* This method creates folders needed
*
*/
public static void make_Directories(String first, String path) {
String already_done = null;
String fs = System.getProperty("file.separator");
StringTokenizer path_tokenizer = new StringTokenizer(path, fs, false);
2003-01-27 15:27:53 +00:00
already_done = first;
while (path_tokenizer.hasMoreTokens()) {
String part = path_tokenizer.nextToken();
File new_dir = new File(already_done + File.separatorChar + part);
already_done = new_dir.toString();
//create the directory
new_dir.mkdirs();
}
return;
}
/**
*
* This method get the version for a given TestBase/platform combination
*
*/
public static String getVersion(String aFile, String aPlatform, String aTestbase) {
if ((aFile == null) || (aPlatform == null) || (aTestbase == null)) {
2003-01-27 15:27:53 +00:00
return "/";
}
File the_file = new File(aFile);
2003-01-27 15:27:53 +00:00
try {
RandomAccessFile raf = new RandomAccessFile(the_file, "r");
String res = "";
while (!res.equals("[" + aTestbase.toUpperCase() + "]")) {
2003-01-27 15:27:53 +00:00
res = raf.readLine();
}
res = "=/";
while ((!res.startsWith(aPlatform)) || (res.startsWith("["))) {
2003-01-27 15:27:53 +00:00
res = raf.readLine();
}
raf.close();
if (res.startsWith("[")) {
res = "/";
}
return res.substring(res.indexOf("=") + 1);
2003-01-27 15:27:53 +00:00
} catch (Exception e) {
System.out.println("Couldn't find version");
return "/";
}
}
2003-01-27 15:27:53 +00:00
/**
*
* This method get's the user dir of the connected office
2003-01-27 15:27:53 +00:00
*
*/
public static String getOfficeUserPath(XMultiServiceFactory msf) {
String userPath = null;
2003-01-27 15:27:53 +00:00
2013-05-06 20:07:23 +02:00
// get a folder located in the user dir
try {
userPath = getOfficeSettingsValue(msf, "UserConfig");
} catch (Exception e) {
System.out.println("Couldn't get Office User Path");
e.printStackTrace();
}
// strip the returned folder to the user dir
if (userPath.charAt(userPath.length() - 1) == '/') {
userPath = userPath.substring(0, userPath.length() - 1);
}
int index = userPath.lastIndexOf('/');
if (index != -1) {
userPath = userPath.substring(0, index);
}
return userPath;
}
/**
* In the office there are some sttetings available. This function
* returns the value of the given setting name. For Example the setting name "Temp"
* "Temp" returns the temp folder of the office instance.
* @param msf a XMultiServiceFactory
* @param setting the name of the setting the value should be returned.
* For example "Temp" reutrns the temp folder of the current office instance.
* @see com.sun.star.util.PathSettings
* @return the value as String
*/
public static String getOfficeSettingsValue(XMultiServiceFactory msf, String setting) {
String settingPath = null;
2003-01-27 15:27:53 +00:00
try {
Object settings = msf.createInstance("com.sun.star.comp.framework.PathSettings");
XPropertySet pthSettings = null;
try {
pthSettings = (XPropertySet) AnyConverter.toObject(
new Type(XPropertySet.class), settings);
} catch (com.sun.star.lang.IllegalArgumentException iae) {
System.out.println("### couldn't get Office Settings");
}
settingPath = (String) pthSettings.getPropertyValue(setting);
} catch (Exception e) {
System.out.println("Couldn't get stting value for " + setting);
e.printStackTrace();
}
return settingPath;
}
public static void setOfficeSettingsValue(XMultiServiceFactory msf, String setting, String value) {
try {
Object settings = msf.createInstance("com.sun.star.comp.framework.PathSettings");
XPropertySet pthSettings = null;
try {
pthSettings = (XPropertySet) AnyConverter.toObject(
new Type(XPropertySet.class), settings);
} catch (com.sun.star.lang.IllegalArgumentException iae) {
System.out.println("### couldn't get Office Settings");
}
pthSettings.setPropertyValue(setting, value);
} catch (Exception e) {
System.out.println("Couldn't set '" + setting + "' to value '" + value + "'");
e.printStackTrace();
}
}
/**
* This method returns the temp dicrectory of the user.
* Since Java 1.4 it is not possible to read environment variables. To workaround
* this, the Java parameter -D could be used.
*/
public static String getUsersTempDir() {
String tempDir = System.getProperty("my.temp");
if (tempDir == null) {
tempDir = System.getProperty("my.tmp");
if (tempDir == null) {
tempDir = System.getProperty("java.io.tmpdir");
}
}
// remove ending file separator
if (tempDir.endsWith(System.getProperty("file.separator"))) {
tempDir = tempDir.substring(0, tempDir.length() - 1);
}
return tempDir;
}
/**
*
* This method get's the temp dir of the connected office
*
*/
public static String getOfficeTemp(XMultiServiceFactory msf) {
String url = getOfficeUserPath(msf) + "/test-temp/";
try {
new File(new URI(url)).mkdir();
} catch (URISyntaxException e) {
throw new RuntimeException(e);
2003-01-27 15:27:53 +00:00
}
return url;
2003-01-27 15:27:53 +00:00
}
/**
* Gets StarOffice temp directory without 'file:///' prefix.
* For example is useful for Registry URL specifying.
* @msf Office factory for accessing its settings.
* @return SOffice temporary directory in form for example
* 'd:/Office60/user/temp/'.
*/
public static String getOfficeTempDir(XMultiServiceFactory msf) {
2003-01-27 15:27:53 +00:00
String dir = getOfficeTemp(msf);
2003-01-27 15:27:53 +00:00
int idx = dir.indexOf("file:///");
2003-01-27 15:27:53 +00:00
if (idx < 0) {
return dir;
}
2003-01-27 15:27:53 +00:00
dir = dir.substring("file:///".length());
2003-01-27 15:27:53 +00:00
idx = dir.indexOf(":");
2003-01-27 15:27:53 +00:00
// is the last character a '/' or a '\'?
boolean lastCharSet = dir.endsWith("/") || dir.endsWith("\\");
if (idx < 0) { // linux or solaris
dir = "/" + dir;
dir += lastCharSet ? "" : "/";
} else { // windows
dir += lastCharSet ? "" : "\\";
2003-01-27 15:27:53 +00:00
}
return dir;
}
/**
* Gets StarOffice temp directory without 'file:///' prefix.
2014-04-09 12:44:22 +02:00
* and System dependent file separator
*/
public static String getOfficeTempDirSys(XMultiServiceFactory msf) {
2003-01-27 15:27:53 +00:00
String dir = getOfficeTemp(msf);
2003-01-27 15:27:53 +00:00
String sysDir = "";
int idx = dir.indexOf("file://");
2003-01-27 15:27:53 +00:00
// remove leading 'file://'
if (idx < 0) {
sysDir = dir;
} else {
sysDir = dir.substring("file://".length());
}
2003-01-27 15:27:53 +00:00
// append '/' if not there (e.g. linux)
if (sysDir.charAt(sysDir.length() - 1) != '/') {
2003-01-27 15:27:53 +00:00
sysDir += "/";
}
2003-01-27 15:27:53 +00:00
// remove leading '/' and replace others with '\' on windows machines
if (sysDir.indexOf(":") != -1) {
sysDir = sysDir.substring(1);
sysDir = sysDir.replace('/', '\\');
}
return sysDir;
}
/**
* converts a fileURL to a system URL
* @param fileURL a file URL
* @return a system URL
*/
public static String getSystemURL(String fileURL) {
String sysDir = "";
int idx = fileURL.indexOf("file://");
// remove leading 'file://'
if (idx < 0) {
sysDir = fileURL;
} else {
sysDir = fileURL.substring("file://".length());
}
// remove leading '/' and replace others with '\' on windows machines
if (sysDir.indexOf(":") != -1) {
2003-01-27 15:27:53 +00:00
sysDir = sysDir.substring(1);
sysDir = sysDir.replace('/', '\\');
2003-01-27 15:27:53 +00:00
}
return sysDir;
}
/**
Many spelling fixes: directory qadevOOo. Attempt to clean up most but certainly not all the spelling mistakes that found home in OpenOffice through decades. We could probably blame the international nature of the code but it is somewhat shameful that this wasn't done before. (cherry picked from commit c3f20ae9a447f50517fe545a53de91d412c3337c) Conflicts: qadevOOo/runner/base/java_complex.java qadevOOo/runner/basicrunner/BasicHandler.java qadevOOo/runner/basicrunner/basichelper/Connector.java qadevOOo/runner/helper/LoggingThread.java qadevOOo/runner/helper/StreamSimulator.java qadevOOo/runner/helper/URLHelper.java qadevOOo/runner/stats/SQLExecution.java qadevOOo/runner/util/SOfficeFactory.java qadevOOo/runner/util/utils.java qadevOOo/tests/basic/ifc/awt/XWindow/awt_XWindow.xba qadevOOo/tests/basic/ifc/beans/XPropertyState/beans_XPropertyState.xba qadevOOo/tests/basic/ifc/container/XIndexReplace/container_XIndexReplace.xba qadevOOo/tests/basic/ifc/io/XMarkableStream/io_XMarkableStream.xba qadevOOo/tests/basic/ifc/lang/XInitialization/lang_XInitialization.xba qadevOOo/tests/basic/ifc/sdbc/XCloseable/sdbc_XCloseable.xba qadevOOo/tests/basic/ifc/sdbcx/XRowLocate/sdbcx_XRowLocate.xba qadevOOo/tests/basic/ifc/text/XRelativeTextContentInsert/text_XRelativeTextContentInsert.xba qadevOOo/tests/basic/ifc/text/XTextColumns/text_XTextColumns.xba qadevOOo/tests/basic/mod/dynamicloader.uno/Dynamic/dynamicloader_uno_Dynamic.xba qadevOOo/tests/basic/mod/dynamicloader/Dynamic/dynamicloader_Dynamic.xba qadevOOo/tests/basic/mod/sc/ScDDELinkObj/sc_ScDDELinkObj.xba qadevOOo/tests/basic/mod/sc/ScDDELinksObj/sc_ScDDELinksObj.xba qadevOOo/tests/basic/mod/sc/ScIndexEnumeration_DDELinksEnumeration/sc_ScIndexEnumeration_DDELinksEnumeration.xba qadevOOo/tests/java/ifc/container/_XNameReplace.java qadevOOo/tests/java/ifc/document/_XStandaloneDocumentInfo.java qadevOOo/tests/java/ifc/frame/_XFrame.java qadevOOo/tests/java/ifc/i18n/_XCalendar.java qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java qadevOOo/tests/java/ifc/sdbc/_XRowSet.java qadevOOo/tests/java/ifc/sheet/_XSheetCellCursor.java qadevOOo/tests/java/ifc/util/_XTextSearch.java qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java qadevOOo/tests/java/mod/_bridgefac.uno/package.html qadevOOo/tests/java/mod/_connector.uno/package.html qadevOOo/tests/java/mod/_corereflection.uno/package.html qadevOOo/tests/java/mod/_forms/GenericModelTest.java qadevOOo/tests/java/mod/_implreg.uno/package.html qadevOOo/tests/java/mod/_introspection.uno/package.html qadevOOo/tests/java/mod/_invocadapt.uno/package.html qadevOOo/tests/java/mod/_invocation.uno/package.html qadevOOo/tests/java/mod/_nestedreg.uno/package.html qadevOOo/tests/java/mod/_sc/XMLMetaImporter.java qadevOOo/tests/java/mod/_servicemgr.uno/package.html qadevOOo/tests/java/mod/_shlibloader.uno/package.html qadevOOo/tests/java/mod/_simplereg.uno/package.html qadevOOo/tests/java/mod/_streams.uno/package.html qadevOOo/tests/java/mod/_sw/SwXTextView.java qadevOOo/tests/java/mod/_sw/XMLMetaImporter.java qadevOOo/tests/java/mod/_typeconverter.uno/package.html qadevOOo/tests/java/mod/_typemgr.uno/package.html qadevOOo/tests/java/mod/_uuresolver.uno/package.html qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaImporter.java qadevOOo/tests/java/mod/_xmloff/Impress/XMLMetaImporter.java Change-Id: I1ca48fdbb7aa71685b6145218d482dd9fa41be26
2014-04-29 19:13:51 +00:00
* This method check via Office the existence of the given file URL
* @param msf the multiservice factory
Many spelling fixes: directory qadevOOo. Attempt to clean up most but certainly not all the spelling mistakes that found home in OpenOffice through decades. We could probably blame the international nature of the code but it is somewhat shameful that this wasn't done before. (cherry picked from commit c3f20ae9a447f50517fe545a53de91d412c3337c) Conflicts: qadevOOo/runner/base/java_complex.java qadevOOo/runner/basicrunner/BasicHandler.java qadevOOo/runner/basicrunner/basichelper/Connector.java qadevOOo/runner/helper/LoggingThread.java qadevOOo/runner/helper/StreamSimulator.java qadevOOo/runner/helper/URLHelper.java qadevOOo/runner/stats/SQLExecution.java qadevOOo/runner/util/SOfficeFactory.java qadevOOo/runner/util/utils.java qadevOOo/tests/basic/ifc/awt/XWindow/awt_XWindow.xba qadevOOo/tests/basic/ifc/beans/XPropertyState/beans_XPropertyState.xba qadevOOo/tests/basic/ifc/container/XIndexReplace/container_XIndexReplace.xba qadevOOo/tests/basic/ifc/io/XMarkableStream/io_XMarkableStream.xba qadevOOo/tests/basic/ifc/lang/XInitialization/lang_XInitialization.xba qadevOOo/tests/basic/ifc/sdbc/XCloseable/sdbc_XCloseable.xba qadevOOo/tests/basic/ifc/sdbcx/XRowLocate/sdbcx_XRowLocate.xba qadevOOo/tests/basic/ifc/text/XRelativeTextContentInsert/text_XRelativeTextContentInsert.xba qadevOOo/tests/basic/ifc/text/XTextColumns/text_XTextColumns.xba qadevOOo/tests/basic/mod/dynamicloader.uno/Dynamic/dynamicloader_uno_Dynamic.xba qadevOOo/tests/basic/mod/dynamicloader/Dynamic/dynamicloader_Dynamic.xba qadevOOo/tests/basic/mod/sc/ScDDELinkObj/sc_ScDDELinkObj.xba qadevOOo/tests/basic/mod/sc/ScDDELinksObj/sc_ScDDELinksObj.xba qadevOOo/tests/basic/mod/sc/ScIndexEnumeration_DDELinksEnumeration/sc_ScIndexEnumeration_DDELinksEnumeration.xba qadevOOo/tests/java/ifc/container/_XNameReplace.java qadevOOo/tests/java/ifc/document/_XStandaloneDocumentInfo.java qadevOOo/tests/java/ifc/frame/_XFrame.java qadevOOo/tests/java/ifc/i18n/_XCalendar.java qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java qadevOOo/tests/java/ifc/sdbc/_XRowSet.java qadevOOo/tests/java/ifc/sheet/_XSheetCellCursor.java qadevOOo/tests/java/ifc/util/_XTextSearch.java qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java qadevOOo/tests/java/mod/_bridgefac.uno/package.html qadevOOo/tests/java/mod/_connector.uno/package.html qadevOOo/tests/java/mod/_corereflection.uno/package.html qadevOOo/tests/java/mod/_forms/GenericModelTest.java qadevOOo/tests/java/mod/_implreg.uno/package.html qadevOOo/tests/java/mod/_introspection.uno/package.html qadevOOo/tests/java/mod/_invocadapt.uno/package.html qadevOOo/tests/java/mod/_invocation.uno/package.html qadevOOo/tests/java/mod/_nestedreg.uno/package.html qadevOOo/tests/java/mod/_sc/XMLMetaImporter.java qadevOOo/tests/java/mod/_servicemgr.uno/package.html qadevOOo/tests/java/mod/_shlibloader.uno/package.html qadevOOo/tests/java/mod/_simplereg.uno/package.html qadevOOo/tests/java/mod/_streams.uno/package.html qadevOOo/tests/java/mod/_sw/SwXTextView.java qadevOOo/tests/java/mod/_sw/XMLMetaImporter.java qadevOOo/tests/java/mod/_typeconverter.uno/package.html qadevOOo/tests/java/mod/_typemgr.uno/package.html qadevOOo/tests/java/mod/_uuresolver.uno/package.html qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaImporter.java qadevOOo/tests/java/mod/_xmloff/Impress/XMLMetaImporter.java Change-Id: I1ca48fdbb7aa71685b6145218d482dd9fa41be26
2014-04-29 19:13:51 +00:00
* @param fileURL the file which existence should be checked
* @return true if the file exists, else false
2003-01-27 15:27:53 +00:00
*/
public static boolean fileExists(XMultiServiceFactory msf, String fileURL) {
boolean exists = false;
2003-01-27 15:27:53 +00:00
try {
2003-01-27 15:27:53 +00:00
Object fileacc = msf.createInstance("com.sun.star.comp.ucb.SimpleFileAccess");
XSimpleFileAccess simpleAccess = UnoRuntime.queryInterface(XSimpleFileAccess.class,
fileacc);
if (simpleAccess.exists(fileURL)) {
exists = true;
}
} catch (Exception e) {
System.out.println("Couldn't access file '" + fileURL + "'");
e.printStackTrace();
exists = false;
}
return exists;
}
/**
Many spelling fixes: directory qadevOOo. Attempt to clean up most but certainly not all the spelling mistakes that found home in OpenOffice through decades. We could probably blame the international nature of the code but it is somewhat shameful that this wasn't done before. (cherry picked from commit c3f20ae9a447f50517fe545a53de91d412c3337c) Conflicts: qadevOOo/runner/base/java_complex.java qadevOOo/runner/basicrunner/BasicHandler.java qadevOOo/runner/basicrunner/basichelper/Connector.java qadevOOo/runner/helper/LoggingThread.java qadevOOo/runner/helper/StreamSimulator.java qadevOOo/runner/helper/URLHelper.java qadevOOo/runner/stats/SQLExecution.java qadevOOo/runner/util/SOfficeFactory.java qadevOOo/runner/util/utils.java qadevOOo/tests/basic/ifc/awt/XWindow/awt_XWindow.xba qadevOOo/tests/basic/ifc/beans/XPropertyState/beans_XPropertyState.xba qadevOOo/tests/basic/ifc/container/XIndexReplace/container_XIndexReplace.xba qadevOOo/tests/basic/ifc/io/XMarkableStream/io_XMarkableStream.xba qadevOOo/tests/basic/ifc/lang/XInitialization/lang_XInitialization.xba qadevOOo/tests/basic/ifc/sdbc/XCloseable/sdbc_XCloseable.xba qadevOOo/tests/basic/ifc/sdbcx/XRowLocate/sdbcx_XRowLocate.xba qadevOOo/tests/basic/ifc/text/XRelativeTextContentInsert/text_XRelativeTextContentInsert.xba qadevOOo/tests/basic/ifc/text/XTextColumns/text_XTextColumns.xba qadevOOo/tests/basic/mod/dynamicloader.uno/Dynamic/dynamicloader_uno_Dynamic.xba qadevOOo/tests/basic/mod/dynamicloader/Dynamic/dynamicloader_Dynamic.xba qadevOOo/tests/basic/mod/sc/ScDDELinkObj/sc_ScDDELinkObj.xba qadevOOo/tests/basic/mod/sc/ScDDELinksObj/sc_ScDDELinksObj.xba qadevOOo/tests/basic/mod/sc/ScIndexEnumeration_DDELinksEnumeration/sc_ScIndexEnumeration_DDELinksEnumeration.xba qadevOOo/tests/java/ifc/container/_XNameReplace.java qadevOOo/tests/java/ifc/document/_XStandaloneDocumentInfo.java qadevOOo/tests/java/ifc/frame/_XFrame.java qadevOOo/tests/java/ifc/i18n/_XCalendar.java qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java qadevOOo/tests/java/ifc/sdbc/_XRowSet.java qadevOOo/tests/java/ifc/sheet/_XSheetCellCursor.java qadevOOo/tests/java/ifc/util/_XTextSearch.java qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java qadevOOo/tests/java/mod/_bridgefac.uno/package.html qadevOOo/tests/java/mod/_connector.uno/package.html qadevOOo/tests/java/mod/_corereflection.uno/package.html qadevOOo/tests/java/mod/_forms/GenericModelTest.java qadevOOo/tests/java/mod/_implreg.uno/package.html qadevOOo/tests/java/mod/_introspection.uno/package.html qadevOOo/tests/java/mod/_invocadapt.uno/package.html qadevOOo/tests/java/mod/_invocation.uno/package.html qadevOOo/tests/java/mod/_nestedreg.uno/package.html qadevOOo/tests/java/mod/_sc/XMLMetaImporter.java qadevOOo/tests/java/mod/_servicemgr.uno/package.html qadevOOo/tests/java/mod/_shlibloader.uno/package.html qadevOOo/tests/java/mod/_simplereg.uno/package.html qadevOOo/tests/java/mod/_streams.uno/package.html qadevOOo/tests/java/mod/_sw/SwXTextView.java qadevOOo/tests/java/mod/_sw/XMLMetaImporter.java qadevOOo/tests/java/mod/_typeconverter.uno/package.html qadevOOo/tests/java/mod/_typemgr.uno/package.html qadevOOo/tests/java/mod/_uuresolver.uno/package.html qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaImporter.java qadevOOo/tests/java/mod/_xmloff/Impress/XMLMetaImporter.java Change-Id: I1ca48fdbb7aa71685b6145218d482dd9fa41be26
2014-04-29 19:13:51 +00:00
* This method deletes via office the given file URL. It checks the existence
* of <CODE>fileURL</CODE>. If exists it will be deletet.
* @param xMsf the multiservice factory
* @param fileURL the file to delete
* @return true if the file could be deletet or the file does not exist
*/
public static boolean deleteFile(XMultiServiceFactory xMsf, String fileURL) {
boolean delete = true;
try {
Object fileacc = xMsf.createInstance("com.sun.star.comp.ucb.SimpleFileAccess");
XSimpleFileAccess simpleAccess = UnoRuntime.queryInterface(XSimpleFileAccess.class,
fileacc);
if (simpleAccess.exists(fileURL)) {
simpleAccess.kill(fileURL);
}
} catch (Exception e) {
System.out.println("Couldn't delete file '" + fileURL + "'");
e.printStackTrace();
delete = false;
}
return delete;
}
/**
* This method copies via office a given file to a new one
* @param xMsf the multi service factory
* @param source the source file
* @param destinaion the destination file
* @return true at success
*/
public static boolean copyFile(XMultiServiceFactory xMsf, String source, String destinaion) {
boolean res = false;
try {
Object fileacc = xMsf.createInstance("com.sun.star.comp.ucb.SimpleFileAccess");
XSimpleFileAccess simpleAccess = UnoRuntime.queryInterface(XSimpleFileAccess.class,
fileacc);
if (!simpleAccess.exists(destinaion)) {
simpleAccess.copy(source, destinaion);
}
2003-01-27 15:27:53 +00:00
res = true;
} catch (Exception e) {
System.out.println("Couldn't copy file '" + source + "' -> '" + destinaion + "'");
2003-01-27 15:27:53 +00:00
e.printStackTrace();
res = false;
}
return res;
}
2010-04-28 11:08:02 +02:00
private static void overwriteFile_impl(
XMultiServiceFactory xMsf, String oldF, String newF)
throws InteractiveAugmentedIOException
{
2003-01-27 15:27:53 +00:00
try {
Object fileacc = xMsf.createInstance("com.sun.star.comp.ucb.SimpleFileAccess");
2003-01-27 15:27:53 +00:00
XSimpleFileAccess simpleAccess = UnoRuntime.queryInterface(XSimpleFileAccess.class,
fileacc);
if (simpleAccess.exists(newF)) {
simpleAccess.kill(newF);
}
simpleAccess.copy(oldF, newF);
2010-04-28 11:08:02 +02:00
} catch (InteractiveAugmentedIOException e) {
throw e;
2003-01-27 15:27:53 +00:00
} catch (com.sun.star.uno.Exception e) {
2010-04-28 11:08:02 +02:00
System.out.println("Couldn't copy " + oldF + " to " + newF + ":");
2003-01-27 15:27:53 +00:00
e.printStackTrace();
2010-04-28 11:08:02 +02:00
throw new RuntimeException(e);
2003-01-27 15:27:53 +00:00
}
2010-04-28 11:08:02 +02:00
}
2003-01-27 15:27:53 +00:00
2010-04-28 11:08:02 +02:00
/**
* Copies file to a new location using OpenOffice.org features. If the target
* file already exists, the file is deleted.
*
* @returns <code>true</code> if the file was successfully copied,
2010-12-04 13:28:03 +09:00
* <code>false</code> if some errors occurred (e.g. file is locked, used
2010-04-28 11:08:02 +02:00
* by another process).
*/
public static boolean tryOverwriteFile(
XMultiServiceFactory xMsf, String oldF, String newF)
{
try {
overwriteFile_impl(xMsf, oldF, newF);
} catch (InteractiveAugmentedIOException e) {
return false;
}
return true;
}
public static void doOverwriteFile(
XMultiServiceFactory xMsf, String oldF, String newF)
{
try {
overwriteFile_impl(xMsf, oldF, newF);
} catch (InteractiveAugmentedIOException e) {
throw new RuntimeException(e);
}
2003-01-27 15:27:53 +00:00
}
public static boolean hasPropertyByName(XPropertySet props, String aName) {
Property[] list = props.getPropertySetInfo().getProperties();
boolean res = false;
for (int i = 0; i < list.length; i++) {
2003-01-27 15:27:53 +00:00
String the_name = list[i].Name;
if (aName.equals(the_name)) {
res = true;
}
2003-01-27 15:27:53 +00:00
}
return res;
}
/**
*
* This method returns the implementation name of a given object
*
*/
public static String getImplName(Object aObject) {
2003-01-27 15:27:53 +00:00
String res = "Error getting Implementation name";
try {
XServiceInfo xSI = UnoRuntime.queryInterface(XServiceInfo.class, aObject);
2003-01-27 15:27:53 +00:00
res = xSI.getImplementationName();
} catch (Exception e) {
res = "Error getting Implementation name ( " + e + " )";
2003-01-27 15:27:53 +00:00
}
return res;
}
/**
*
* This method checks if an Object is void
*
*/
public static boolean isVoid(Object aObject) {
2003-01-27 15:27:53 +00:00
if (aObject instanceof com.sun.star.uno.Any) {
com.sun.star.uno.Any oAny = (com.sun.star.uno.Any) aObject;
return (oAny.getType().getTypeName().equals("void"));
} else {
return false;
}
}
/**
* Scan localhost for the next free port-number from a starting port
* on. If the starting port is smaller than 1024, port number starts with
* 10000 as default, because numbers < 1024 are never free on unix machines.
* @param startPort The port where scanning starts.
* @return The next free port.
*/
public static int getNextFreePort(int startPort) {
if (startPort < 1024) {
startPort = 10000;
}
2003-01-27 15:27:53 +00:00
for (int port = startPort; port < 65536; port++) {
System.out.println("Scan port " + port);
try {
// first trying to establish a server-socket on localhost
// fails if there is already a server running
ServerSocket sSock = new ServerSocket(port);
sSock.close();
} catch (IOException e) {
2003-01-27 15:27:53 +00:00
System.out.println(" -> server: occupied port " + port);
continue;
}
try {
new Socket("localhost", port);
2003-01-27 15:27:53 +00:00
System.out.println(" -> socket: occupied port: " + port);
} catch (IOException e) {
2003-01-27 15:27:53 +00:00
System.out.println(" -> free port");
return port;
}
}
return 65535;
}
public static URL parseURL(XMultiServiceFactory xMSF, String url) {
2003-01-27 15:27:53 +00:00
URL[] rUrl = new URL[1];
rUrl[0] = new URL();
rUrl[0].Complete = url;
XURLTransformer xTrans = null;
try {
Object inst = xMSF.createInstance("com.sun.star.util.URLTransformer");
xTrans = UnoRuntime.queryInterface(XURLTransformer.class, inst);
} catch (com.sun.star.uno.Exception e) {
}
2003-01-27 15:27:53 +00:00
xTrans.parseStrict(rUrl);
return rUrl[0];
}
public static String getOfficeURL(XMultiServiceFactory msf) {
try {
Object settings = msf.createInstance("com.sun.star.util.PathSettings");
XPropertySet settingProps = UnoRuntime.queryInterface(XPropertySet.class, settings);
String path = (String) settingProps.getPropertyValue("Module");
2003-01-27 15:27:53 +00:00
return path;
} catch (Exception e) {
System.out.println("Couldn't get Office Settings ");
e.printStackTrace();
}
return null;
}
/** returns the path to the office binary folder
*
* @param msf The XMultiSeriveFactory
* @return the path to the office binrary or an empty string on any error
*/
public static String getOfficeBinPath(XMultiServiceFactory msf) {
String sysBinDir = "";
try {
sysBinDir = utils.getSystemURL(utils.expandMacro(msf, "$SYSBINDIR"));
} catch (java.lang.Exception e) {
}
return sysBinDir;
}
/**
* Get an array of all property names from the property set. With the include
* and exclude parameters the properties can be filtered. <br>
* Set excludePropertyAttribute = 0 and includePropertyAttribute = 0
* to include all and exclude none.
* @param props The instance of XPropertySet
* @param includePropertyAttribute Properties without these attributes are filtered and will not be returned.
* @param excludePropertyAttribute Properties with these attributes are filtered and will not be returned.
* @return A String array with all property names.
* @see com.sun.star.beans.XPropertySet
* @see com.sun.star.beans.Property
* @see com.sun.star.beans.PropertyAttribute
*/
public static String[] getFilteredPropertyNames(XPropertySet props, short includePropertyAttribute,
short excludePropertyAttribute) {
Property[] the_props = props.getPropertySetInfo().getProperties();
ArrayList<String> l = new ArrayList<String>();
for (int i = 0; i < the_props.length; i++) {
boolean exclude = ((the_props[i].Attributes & excludePropertyAttribute) != 0);
boolean include = (includePropertyAttribute == 0) ||
((the_props[i].Attributes & includePropertyAttribute) != 0);
if (include && !exclude) {
l.add(the_props[i].Name);
}
}
Collections.sort(l);
String[] names = new String[l.size()];
names = l.toArray(names);
return names;
}
2003-01-27 15:27:53 +00:00
/** Causes the thread to sleep some time.
* It can be used f.e. like:
* util.utils.shortWait(tParam.getInt("ShortWait"));
*/
public static void shortWait(int milliseconds) {
try {
Thread.sleep(milliseconds);
} catch (InterruptedException e) {
System.out.println("While waiting :" + e);
}
}
/**
* Validate the AppExecutionCommand. Returned is an error message, starting
* with "Error:", or a warning, if the command might work.
* @param appExecCommand The application execution command that is checked.
* @param os The operating system where the check runs.
* @return The error message, or OK, if no error was detected.
*/
public static String validateAppExecutionCommand(String appExecCommand, String os) {
String errorMessage = "OK";
appExecCommand = appExecCommand.replace("\"", "");
appExecCommand = appExecCommand.replace("'", "");
StringTokenizer commandTokens = new StringTokenizer(appExecCommand, " \t");
String officeExecutable = "";
String officeExecCommand = "soffice";
// is there a 'soffice' in the command? 2do: eliminate case sensitivity on windows
int index = -1;
while (commandTokens.hasMoreTokens() && index == -1) {
officeExecutable += commandTokens.nextToken() + " ";
index = officeExecutable.indexOf(officeExecCommand);
}
if (index == -1) {
errorMessage = "Error: Your 'AppExecutionCommand' parameter does not " +
"contain '" + officeExecCommand + "'.";
} else {
// does the directory exist?
officeExecutable = officeExecutable.trim();
String officePath = officeExecutable.substring(0, index);
File f = new File(officePath);
if (!f.exists() || !f.isDirectory()) {
errorMessage = "Error: Your 'AppExecutionCommand' parameter does not " +
"point to a valid system directory: " + officePath;
} else {
// is it an office installation?
f = new File(officeExecutable);
// one try for windows platform can't be wrong...
if (!f.exists() || !f.isFile()) {
f = new File(officeExecutable + ".exe");
}
if (!f.exists() || !f.isFile()) {
errorMessage = "Error: Your 'AppExecutionCommand' parameter does not " +
"point to a valid office installation.";
} else {
// do we have the accept parameter?
boolean gotNoAccept = true;
while (commandTokens.hasMoreElements()) {
String officeParam = commandTokens.nextToken();
if (officeParam.indexOf("--accept=") != -1) {
gotNoAccept = false;
errorMessage = validateConnectString(officeParam, true);
}
}
if (gotNoAccept) {
errorMessage = "Error: Your 'AppExecutionCommand' parameter does not " +
"contain a '--accept' parameter for connecting the office.";
}
}
}
}
return errorMessage;
}
/**
* Validate the connection string. Returned is an error message, starting
* with "Error:", or a warning, if the command might work.
* @param connectString The connection string that is checked.
* @param checkAppExecutionCommand If the AppExecutionCommand is checked, the error messages willbe different.
* @return The error message, or OK, if no error was detected.
*/
public static String validateConnectString(String connectString, boolean checkAppExecutionCommand) {
String acceptPrefix = "";
if (checkAppExecutionCommand) {
acceptPrefix = "--accept=";
}
String errorMessage = "OK";
// a warning, if an unknown connection method is used
if (connectString.indexOf("socket") != -1) {
if (connectString.indexOf(acceptPrefix + "socket,host=") == -1 ||
connectString.indexOf("port=") == -1) {
if (checkAppExecutionCommand) {
errorMessage = "Error: The '--accept' parameter contains a syntax error: It should be like: '--accept=socket,host=localhost,port=8100;urp;";
} else {
errorMessage = "Error: The 'ConnectionString' parameter contains a syntax error: It should be like: 'socket,host=localhost,port=8100'";
}
}
} else if (connectString.indexOf("pipe") != -1) {
if (connectString.indexOf(acceptPrefix + "pipe,name=") == -1) {
if (checkAppExecutionCommand) {
errorMessage = "Error: The '--accept' parameter contains a syntax error: It should be like: '--accept=pipe,name=myuniquename;urp;'";
} else {
errorMessage = "Error: The 'ConnectionString' parameter contains a syntax error: It should be like: 'pipe,name=myuniquename'";
}
}
} else {
if (checkAppExecutionCommand) {
errorMessage = "Warning: The '--accept' parameter contains an unknown connection method.";
} else {
errorMessage = "Warning: The 'ConnectionString' parameter contains an unknown connection method.";
}
}
return errorMessage;
}
/**
* expand macrofied strings like <CODE>${$ORIGIN/bootstrap.ini:UserInstallation}</CODE> or
* <CODE>$_OS</CODE>
* @param xMSF the MultiServiceFactory
* @param expand the string to expand
* @throws java.lang.Exception was thrown on any exception
* @return return the expanded string
* @see com.sun.star.util.XMacroExpander
*/
public static String expandMacro(XMultiServiceFactory xMSF, String expand) throws java.lang.Exception {
try {
XPropertySet xPS = UnoRuntime.queryInterface(XPropertySet.class, xMSF);
XComponentContext xContext = UnoRuntime.queryInterface(XComponentContext.class,
xPS.getPropertyValue("DefaultContext"));
XMacroExpander xME = UnoRuntime.queryInterface(XMacroExpander.class,
xContext.getValueByName("/singletons/com.sun.star.util.theMacroExpander"));
return xME.expandMacros(expand);
} catch (Exception e) {
throw new Exception("could not expand macro: " + e.toString(), e);
}
}
/**
* returns the platform of the office.<br>
* Since the runner and the office could run on different platform this function delivers the
* platform the office is running.
* @param xMSF the XMultiServiceFactory
* @return unxsols, unxsoli, unxlngi, wntmsci
*/
public static String getOfficeOS(XMultiServiceFactory xMSF) {
dba33a: summary migration from SVN 2009-11-06 13:10:39 +0000 msc r277387 : minor fix for automatic test 2009-11-06 13:09:33 +0000 msc r277385 : minor fix for automatic test 2009-11-06 12:30:57 +0000 fs r277383 : argh. On some virtual machines, waiting 5 seconds for the event to arrive is not enough. Increasing the timeout ... 2009-11-06 12:13:34 +0000 fs r277382 : this diagnostic code should not have slipped in 2009-11-05 13:21:06 +0000 fs r277369 : SHL2NOCHECK=TRUE (requested by hjs) 2009-11-04 14:09:46 +0000 msc r277355 : minor fix for automatic testing 2009-11-04 13:23:02 +0000 msc r277352 : minor fix for automatic testing 2009-11-04 10:53:28 +0000 msc r277341 : minor fix for automated testscript 2009-11-04 08:30:58 +0000 msc r277333 : minor fix for automatic test 2009-11-04 08:15:43 +0000 msc r277332 : minor fix for automatic test 2009-11-03 14:25:44 +0000 fs r277324 : #i10000# 2009-11-03 09:47:47 +0000 fs r277315 : found yet another help ID zombie ... moved formhelpid.hrc content to propctrlr.hrc, where it belongs 2009-11-03 08:50:24 +0000 fs r277312 : use createTempFileURL, which cares for some more specialities ... 2009-11-03 08:44:55 +0000 fs r277311 : when creating a temp file for purpose of getting a temp file URL, the delete the file immediately. On some machines/JVMs, the file exists, with write access denied, which isn't Good (TM) 2009-10-22 13:06:17 +0000 fs r277126 : removed wrong assertion 2009-10-21 08:10:35 +0000 fs r277077 : reverted the previous change, which was nonsense 2009-10-21 07:19:43 +0000 fs r277076 : export the component_foo functions, now that some of the objects are built with VISIBILITY_HIDDEN=TRUE 2009-10-21 07:08:35 +0000 fs r277075 : spare useless call 2009-10-20 21:26:31 +0000 fs r277072 : #i10000# 2009-10-20 08:06:04 +0000 fs r277039 : CWS-TOOLING: rebase CWS dba33a to trunk@277035 (milestone: DEV300:m62) 2009-10-16 09:55:25 +0000 fs r276960 : remove one of the superfluous implts_doLayout calls introduced with the previous patch 2009-10-15 13:18:52 +0000 fs r276941 : removed the basic tests. According to cn, they're not used anymore (for a long time), and according to 'du -h', they take up 6.0M on my hard disc. For too much for useless code, /me thinks. 2009-10-15 13:06:51 +0000 fs r276940 : #i10000# remove useless include (otherwise the compiler warning it provokes would need to be fixed by declaring VISIBILITY_HIDDEN=TRUE in the makefile.mk) 2009-10-15 12:52:39 +0000 fs r276939 : #i10000# 2009-10-15 12:44:26 +0000 fs r276938 : #i10000# 2009-10-15 12:00:33 +0000 fs r276936 : #i10000# 2009-10-15 10:31:37 +0000 fs r276934 : #i105259# prepare for the Hidden arg 2009-10-15 10:31:05 +0000 fs r276933 : IsMaximized -> const 2009-10-15 09:50:15 +0000 fs r276932 : during #i105259#: introduce an option to the layout manager to preserve, if possible, the size of the content window when layouting. Enable this option for embedded (SFX-based) documents opened for outplace editing. (the option is incompatible with in-place editing, anyway) This is because such embedded objects couple the (content) window size to the VisAreaSize, in that both are used interchangeably. When an embedded object is closed, it remembers the VisAreaSize, and restores it upon next open. This, however, leads to different content window sizes when the window is closed with another toolbar set than used during opening. This patch here prevents those different content window sizes. Also, now the content window size doesn't change when, explicitly or implicitly, a toolbar is shown or hidden. Instead, the content window size stays the same, and the container window size is adjusted. 2009-10-15 09:32:41 +0000 fs r276931 : during #i105259#: UNO access to more attributes of top windows 2009-10-15 09:30:28 +0000 fs r276930 : indention corrected (better readable) 2009-10-15 09:26:46 +0000 fs r276929 : during #i105259#: access to more attributes of top windows 2009-10-14 10:04:39 +0000 fs r276889 : connecting via services manager, not naming service 2009-10-12 11:31:08 +0000 fs r276831 : during #i105806# FillPropertySet: do not attempt to set *AutoStyleName if it doesn't exist 2009-10-12 11:24:44 +0000 fs r276830 : #i105806# getPropertyValue: throw an UnknownPropertyException for, well, unknown properties 2009-10-08 08:20:58 +0000 fs r276774 : implSubmit: re-throw WrappedTargetExceptions unmodified 2009-10-07 19:19:42 +0000 fs r276770 : #i105198# do not pass an CommandType if we do not have a command 2009-10-07 17:39:36 +0000 fs r276768 : export the OWeakObject::disposeWeakConnectionPoint symbol 2009-10-07 12:59:17 +0000 fs r276754 : #i87693# 2009-10-07 11:19:22 +0000 fs r276752 : #i10000# 2009-10-07 10:21:08 +0000 fs r276748 : #105482# do not require a controller, at least not in *all* circumstances (executed reports have a model, the ReportDefinition, but no Controller) 2009-10-07 10:04:08 +0000 fs r276747 : copying the changes from CWS fwk121 herein, in particular the fix for issue #i105371# 2009-10-07 09:58:30 +0000 fs r276746 : copying the changes from CWS fwk121 herein, in particular the fix for issue #i105371# 2009-10-07 09:48:14 +0000 fs r276744 : removed (now) pointless assertion 2009-10-07 06:59:19 +0000 fs r276740 : export the OWeakObject::disposeWeakConnectionPoint symbol 2009-10-07 06:44:43 +0000 fs r276739 : OComponentHelper::release & WeakAggComponentImplHelperBase::release: when our ref count drops to 0, call OWeakObject's disposeWeakConnectionPoint before (temporarily) incrementing the ref count, again. This ensures that our adapter cannot create references to the dying object anymore. (A complex test case in dbaccess (#i105505#) triggered such a situation, but in another class using an analogous release/dispose/destroy pattern, namely WeakComponentImplHelperBase) 2009-10-07 06:37:20 +0000 fs r276738 : found during some new complex test cases: call disposeWeakConnectionPoint before actually starting to destroy the object, this ensures no other threads will resurrect it while it is dying 2009-10-06 21:58:24 +0000 fs r276734 : oops, two small corrections to the previous fix (hey, complex test cases are cool) 2009-10-06 21:51:16 +0000 fs r276733 : log the name of the data source which cannot be revoked 2009-10-06 21:50:41 +0000 fs r276732 : more detailed error message when cleanup fails 2009-10-06 21:50:01 +0000 fs r276731 : reworked the ModelImpl caching. The new and improved UNO API test for css.sdb.RowSet revealed some inconsistencies, in whether the objects are cached by their URL, or by their registration name. This has been changed to caching by registration name. 2009-10-06 13:50:34 +0000 fs r276714 : print diagnostics when we cannot clean up the test case 2009-10-06 13:45:02 +0000 fs r276713 : this test failed all the time, since the core (rightfully) threw an exception. Disabled it for the moment, until issue 84253 is fixed 2009-10-06 12:52:46 +0000 fs r276711 : rewrote this test. Now we do not re-use the same .odb across different test cases, as this leads to unreliable (timing-dependent) results/failures. Instead, every test sets up a new odb file. Also, did some re-factoring, improved the cleanup code, and caught a few more errors. 2009-10-06 12:51:07 +0000 fs r276710 : DBTools taking a logger now 2009-10-06 12:50:42 +0000 fs r276709 : taking a PrintWriter for logging purpose 2009-10-06 12:50:03 +0000 fs r276708 : DBTools taking a logger now 2009-10-06 12:49:22 +0000 fs r276707 : typo 2009-10-06 12:49:03 +0000 fs r276706 : typo 2009-10-06 12:48:52 +0000 fs r276705 : wrappers around some database-related services - initial versions only, to evolve over time, and intended to finally replace the DBTools class 2009-10-06 12:48:02 +0000 fs r276704 : typo 2009-10-06 12:38:42 +0000 fs r276702 : some better diagnostics, done during getting the API tests to work more reliably 2009-10-06 10:35:51 +0000 fs r276698 : when living in, e.g., the DataSourceBrowser, we can't expect to find an XModifiable2, so don't assert its existence 2009-10-05 12:47:52 +0000 oj r276677 : #i105607# check for read moved into if scope 2009-10-05 11:37:06 +0000 fs r276676 : when saving a file fails, retrieve the error message from the InteractionRequestStringResolver - this is better than any generic message we can create 2009-10-05 10:04:23 +0000 oj r276673 : #i105607# check for read moved into if scope 2009-10-05 09:46:17 +0000 fs r276671 : #i10000# 2009-10-05 08:43:58 +0000 fs r276664 : #i105505# release: dispose the (base classes) weak connection point before disposing ourself, and in particular before temporarily incrementing our ref count, again. This way, we prevent that a separate thread re-surrects us (using the weak connection point's queryAdapted) while we're in the process of destruction 2009-10-05 08:41:49 +0000 fs r276663 : #i105505# +disposeWeakConnectionPoint (outsourced into dedicated method from ::release) 2009-10-05 08:40:26 +0000 fs r276662 : no need to derived from OSubComponent, its features are not used, directly derive from WeakComponentImplFoo instead 2009-10-05 08:39:38 +0000 fs r276661 : #i105505# diagnostics 2009-10-05 08:39:16 +0000 fs r276660 : #i105505# +testDocumentRevenants 2009-10-05 08:36:01 +0000 fs r276659 : #i105560# reverted the removal of GenericController::openHelpAgent - this is needed in module reportdesign 2009-10-04 19:53:30 +0000 fs r276657 : #105560# remove unused code thanks to cmc@openoffice.org for submitting the patch 2009-10-04 19:50:28 +0000 fs r276656 : #i105550# remove unused 'fire' method (thanks to cmc) 2009-10-03 16:13:15 +0000 fs r276655 : CWS-TOOLING: rebase CWS dba33a to trunk@276429 (milestone: DEV300:m60) 2009-10-02 19:20:48 +0000 fs r276651 : #i104117# lotta changed IDs ... 2009-10-02 10:52:24 +0000 fs r276634 : #i105505# If a model is created, and is a revenant of a previous incarnation, then ensure it is properly initialized. In particular, in its ctor, set the state to "Initializing", not "Initialized", and then let the ModelImpl call attachResource. This ensures that the model is initialized completely, including firing the necessary events. 2009-10-02 10:51:08 +0000 fs r276633 : #i105505# always do an attachResource at the newly loaded model, even if it (internally) was not really loaded, but only a revenant of a previous incarnation of this document 2009-10-01 11:10:13 +0000 fs r276597 : do not rely on the name 'Standard' for the one and only form in a document 2009-10-01 10:36:29 +0000 fs r276590 : #i105509# don't rely on default form component names, use indexes 2009-10-01 09:12:20 +0000 fs r276582 : #i105505# 2009-09-30 07:55:21 +0000 fs r276542 : removed some unsed methods / spared some unnecessary pixel<->logic conversion 2009-09-30 07:53:22 +0000 fs r276541 : removed unneeded methods 2009-09-30 06:35:59 +0000 fs r276538 : #i10000# 2009-09-29 13:45:02 +0000 fs r276531 : refactored the Roadmap* classes, to be able to fix above-mentioned #i105113# 2009-09-29 10:27:10 +0000 fs r276520 : #i105367# 2009-09-29 08:46:45 +0000 fs r276510 : #i104956# cleaned up the makefiles 2009-09-28 21:00:07 +0000 fs r276505 : #i104117# sourced those IDs out from extension.hrc 2009-09-28 20:59:05 +0000 fs r276504 : no need to let one FREE... 2009-09-28 20:53:36 +0000 fs r276503 : #i104117# cleaned up the mess with help IDs in module extensions. Formerly, extensions used to use help IDs which were declared in module svx, and vice versa. Also, help ID ranges were not respected. 2009-09-28 11:25:36 +0000 fs r276489 : typo 2009-09-28 11:25:10 +0000 fs r276488 : #i105235# 2009-09-24 11:53:16 +0000 fs r276423 : #i105234# do not zoom the control when they view information is still uninitialized (happens at least in Writer when opening a form document) 2009-09-24 09:42:28 +0000 fs r276415 : #i105234# proper zoom handling for the nav bar 2009-09-24 09:42:19 +0000 fs r276414 : #i105234# setZoom: care for precision errors caused by implicit conversion float->double 2009-09-16 11:11:43 +0000 fs r276195 : #i105082# consolidated the sub storage handling, by delegating more functionality into the DocumentStorageAccess class. As a result, there won't be that many unnecessary commits anymore. Also, the two different storage caches (in ModelImpl::m_aStorages and DocumentStorageAccess::m_aExposedStorages) have been consolidated. This is not really part of the fix of issue 105082, but it helped reducing the calls to the storage/package implementation. 2009-09-15 21:42:27 +0000 fs r276190 : don't calculate space for BOLD if the text is not really bold (speeds up rendering for large tree structures) 2009-09-15 20:20:23 +0000 fs r276188 : getTypeInfo: fill m_aTypeInfoRows only if really all type infos could be retrieved 2009-09-15 20:19:29 +0000 fs r276187 : do not continue loading when the controller initialization throws an error 2009-09-14 12:25:57 +0000 fs r276119 : oops, this patch was not intended for this CWS 2009-09-14 12:13:57 +0000 fs r276114 : #cr6875455# introduce a ReferenceDevice property for various control models 2009-09-14 10:33:02 +0000 fs r276106 : removed dead file 2009-09-09 08:37:31 +0000 fs r275972 : remove OSL_TRACE in VCLXButton dtor 2009-09-08 11:19:17 +0000 oj r275926 : i76534# remove mnemonic from fixed text 2009-09-07 08:39:37 +0000 fs r275874 : create CWS dba33a from cws/dba32g@275857 (CWS: dba32g)
2009-11-27 12:39:32 +00:00
String platform = "unknown";
try {
String theOS = expandMacro(xMSF, "$_OS");
if (theOS.equals("Windows")) {
platform = "wntmsci";
} else if (theOS.equals("Linux")) {
platform = "unxlngi";
} else {
if (theOS.equals("Solaris")) {
String theArch = expandMacro(xMSF, "$_ARCH");
if (theArch.equals("SPARC")) {
platform = "unxsols";
} else if (theArch.equals("x86")) {
platform = "unxsoli";
}
}
}
} catch (Exception ex) {
}
return platform;
}
/**
* dispatches given <CODE>URL</CODE> to the document <CODE>XComponent</CODE>
* @param xMSF the <CODE>XMultiServiceFactory</CODE>
* @param xDoc the document where to dispatch
* @param URL the <CODE>URL</CODE> to dispatch
* @throws java.lang.Exception throws <CODE>java.lang.Exception</CODE> on any error
*/
public static void dispatchURL(XMultiServiceFactory xMSF, XComponent xDoc, String URL) throws java.lang.Exception {
XModel aModel = UnoRuntime.queryInterface(XModel.class, xDoc);
XController xCont = aModel.getCurrentController();
dispatchURL(xMSF, xCont, URL);
}
/**
* dispatches given <CODE>URL</CODE> to the <CODE>XController</CODE>
* @param xMSF the <CODE>XMultiServiceFactory</CODE>
* @param xCont the <CODE>XController</CODE> to query for a XDispatchProvider
* @param URL the <CODE>URL</CODE> to dispatch
* @throws java.lang.Exception throws <CODE>java.lang.Exception</CODE> on any error
*/
public static void dispatchURL(XMultiServiceFactory xMSF, XController xCont, String URL) throws java.lang.Exception {
try {
XDispatchProvider xDispProv = UnoRuntime.queryInterface(XDispatchProvider.class, xCont);
XURLTransformer xParser = UnoRuntime.queryInterface(
2008-09-30 07:44:27 +00:00
XURLTransformer.class,
xMSF.createInstance("com.sun.star.util.URLTransformer"));
// Because it's an in/out parameter we must use an array of URL objects.
URL[] aParseURL = new URL[1];
aParseURL[0] = new URL();
aParseURL[0].Complete = URL;
xParser.parseStrict(aParseURL);
URL aURL = aParseURL[0];
XDispatch xDispatcher = xDispProv.queryDispatch(aURL, "", 0);
xDispatcher.dispatch(aURL, null);
utils.shortWait(3000);
} catch (Exception e) {
throw new Exception("ERROR: could not dispatch URL '" + URL + "': " + e.toString());
}
}
/** returns a String which contains the current date and time<br>
* format: [DD.MM.YYYY - HH:MM:SS::mm]
*
** @return a String which contains the current date and time
*/
public static String getDateTime() {
Calendar cal = new GregorianCalendar();
DecimalFormat dfmt = new DecimalFormat("00");
String dateTime = dfmt.format(cal.get(Calendar.DAY_OF_MONTH)) + "." +
dfmt.format(cal.get(Calendar.MONTH) + 1) + "." +
dfmt.format(cal.get(Calendar.YEAR)) + " - " +
dfmt.format(cal.get(Calendar.HOUR_OF_DAY)) + ":" +
dfmt.format(cal.get(Calendar.MINUTE)) + ":" +
dfmt.format(cal.get(Calendar.SECOND)) + "," +
dfmt.format(cal.get(Calendar.MILLISECOND));
return "[" + dateTime + "]";
}
}