summaryrefslogtreecommitdiff
path: root/scripting
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-03-04 08:16:21 +0000
committerKurt Zenker <kz@openoffice.org>2005-03-04 08:16:21 +0000
commitcad7db10da982d07343291b7e0def3c29e2b6aa9 (patch)
tree1bf9be0e59225d2ee897a9b849c6f6b40c9920a9 /scripting
parent236d68a55101a49729c942b84512f8a0ebcbf4dd (diff)
INTEGRATION: CWS fwkpostbeta03 (1.3.4); FILE MERGED
2005/02/16 10:33:53 kso 1.3.4.1: #i42740# - Some optimizations. Issue number: Submitted by: Reviewed by:
Diffstat (limited to 'scripting')
-rw-r--r--scripting/source/inc/util/MiscUtils.hxx94
1 files changed, 46 insertions, 48 deletions
diff --git a/scripting/source/inc/util/MiscUtils.hxx b/scripting/source/inc/util/MiscUtils.hxx
index 0e2736ea4ca3..40375783adb6 100644
--- a/scripting/source/inc/util/MiscUtils.hxx
+++ b/scripting/source/inc/util/MiscUtils.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: MiscUtils.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2005-01-27 15:30:33 $
+ * last change: $Author: kz $ $Date: 2005-03-04 09:16:21 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -67,6 +67,7 @@
#include <ucbhelper/content.hxx>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/frame/XModel.hpp>
+#include <com/sun/star/frame/XTransientDocumentsDocumentContentFactory.hpp>
#include <com/sun/star/document/XDocumentInfoSupplier.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/container/XContentEnumerationAccess.hpp>
@@ -107,11 +108,12 @@ public:
}
}
}
- catch ( css::uno::Exception& e )
+ catch ( css::uno::Exception& )
{
}
return result;
}
+
static ::rtl::OUString xModelToDocTitle( const css::uno::Reference< css::frame::XModel >& xModel )
{
// Set a default name, this should never be seen.
@@ -159,7 +161,6 @@ public:
}
return docNameOrURL;
}
-
static ::rtl::OUString tDocUrlToTitle( const ::rtl::OUString& url )
{
::rtl::OUString title;
@@ -170,51 +171,58 @@ public:
::rtl::OUString propName = OUSTR("Title");
getUCBProperty( root, propName ) >>= title;
}
- catch ( css::ucb::ContentCreationException& cce )
+ catch ( css::ucb::ContentCreationException& )
{
// carry on, empty value will be returned
}
- catch ( css::uno::RuntimeException& re )
+ catch ( css::uno::RuntimeException& )
{
// carry on, empty value will be returned
}
+ OSL_ENSURE( title.getLength() > 0, "Unable to obtain title!" );
return title;
}
- static ::rtl::OUString xModelToTdocUrl( const css::uno::Reference< css::frame::XModel >& xModel )
+ static ::rtl::OUString xModelToTdocUrl( const css::uno::Reference< css::frame::XModel >& xModel,
+ const css::uno::Reference< css::uno::XComponentContext >& xContext )
{
- css::uno::Reference < com::sun::star::ucb::XCommandEnvironment > dummy;
- ::rtl::OUString sDocRoot = OUSTR( "vnd.sun.star.tdoc:/" );
- ::ucb::Content root( sDocRoot, dummy );
-
- css::uno::Sequence < ::rtl::OUString > aPropertyNames( 0 );
- ::rtl::OUString propName = OUSTR( "DocumentModel" );
-
- css::uno::Reference < com::sun::star::sdbc::XResultSet > xResultSet =
- root.createCursor( aPropertyNames );
+ css::uno::Reference< css::lang::XMultiComponentFactory > xMCF(
+ xContext->getServiceManager() );
+ css::uno::Reference<
+ css::frame::XTransientDocumentsDocumentContentFactory > xDocFac;
+ try
+ {
+ xDocFac =
+ css::uno::Reference<
+ css::frame::XTransientDocumentsDocumentContentFactory >(
+ xMCF->createInstanceWithContext(
+ rtl::OUString(
+ RTL_CONSTASCII_USTRINGPARAM(
+ "com.sun.star.frame.TransientDocumentsDocumentContentFactory" ) ),
+ xContext ),
+ css::uno::UNO_QUERY );
+ }
+ catch ( css::uno::Exception const & )
+ {
+ // handled below
+ }
- css::uno::Reference< com::sun::star::ucb::XContentAccess > xContentAccess(
- xResultSet, css::uno::UNO_QUERY );
- ::rtl::OUString docUrl;
- if ( xResultSet.is() && xContentAccess.is() )
+ if ( xDocFac.is() )
{
- css::uno::Reference< css::sdbc::XRow > values( xResultSet, css::uno::UNO_QUERY );
- if ( values.is() )
+ try
{
- while ( xResultSet->next() )
- {
- ::rtl::OUString url = xContentAccess->queryContentIdentifierString();
- css::uno::Reference < css::frame::XModel > xMod( tDocUrlToModel( url ), css::uno::UNO_QUERY );
-
- if ( xMod.is() && xMod == xModel )
- {
- docUrl = url;
- break;
- }
- }
+ css::uno::Reference< css::ucb::XContent > xContent(
+ xDocFac->createDocumentContent( xModel ) );
+ return xContent->getIdentifier()->getContentIdentifier();
+ }
+ catch ( css::lang::IllegalArgumentException const & )
+ {
+ OSL_ENSURE( false, "Invalid document model!" );
}
}
- return docUrl;
+
+ OSL_ENSURE( false, "Unable to obtain URL for document model!" );
+ return rtl::OUString();
}
static css::uno::Reference< css::frame::XModel > tDocUrlToModel( const ::rtl::OUString& url )
{
@@ -226,11 +234,11 @@ public:
::rtl::OUString propName = OUSTR("DocumentModel");
result = getUCBProperty( root, propName );
}
- catch ( css::ucb::ContentCreationException& cce )
+ catch ( css::ucb::ContentCreationException& )
{
// carry on, empty value will be returned
}
- catch ( css::uno::RuntimeException& re )
+ catch ( css::uno::RuntimeException& )
{
// carry on, empty value will be returned
}
@@ -244,22 +252,12 @@ public:
static css::uno::Any getUCBProperty( ::ucb::Content& content, ::rtl::OUString& prop )
{
- css::uno::Sequence < ::rtl::OUString > aPropertyNames( 1 );
- ::rtl::OUString* pNames = aPropertyNames.getArray();
- pNames[ 0 ] = prop;
css::uno::Any result;
try
{
- css::uno::Sequence< css::uno::Any > props = content.getPropertyValues( aPropertyNames );
- if ( props.getLength() )
- {
- result = props[ 0 ];
- }
+ result = content.getPropertyValue( prop );
}
-/* catch ( ucb::CommandAbortedException& e )
- {
- }*/
- catch ( css::uno::Exception& e )
+ catch ( css::uno::Exception& )
{
}
return result;