2004-10-22 13:04:15 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-09 01:26:08 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-10-22 13:04:15 +00:00
|
|
|
*
|
2005-09-09 01:26:08 +00:00
|
|
|
* $RCSfile: MiscUtils.hxx,v $
|
2004-10-22 13:04:15 +00:00
|
|
|
*
|
2005-09-09 01:26:08 +00:00
|
|
|
* $Revision: 1.7 $
|
2004-10-22 13:04:15 +00:00
|
|
|
*
|
2005-09-09 01:26:08 +00:00
|
|
|
* last change: $Author: rt $ $Date: 2005-09-09 02:26:08 $
|
2004-10-22 13:04:15 +00:00
|
|
|
*
|
2005-09-09 01:26:08 +00:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2004-10-22 13:04:15 +00:00
|
|
|
*
|
|
|
|
*
|
2005-09-09 01:26:08 +00:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2004-10-22 13:04:15 +00:00
|
|
|
*
|
2005-09-09 01:26:08 +00:00
|
|
|
* 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.
|
2004-10-22 13:04:15 +00:00
|
|
|
*
|
2005-09-09 01:26:08 +00:00
|
|
|
* 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.
|
2004-10-22 13:04:15 +00:00
|
|
|
*
|
2005-09-09 01:26:08 +00:00
|
|
|
* 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
|
2004-10-22 13:04:15 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _SCRIPT_FRAMEWORK_MISCUTILS_HXX_
|
|
|
|
#define _SCRIPT_FRAMEWORK_MISCUTILS_HXX_
|
|
|
|
|
|
|
|
#include <rtl/ustring>
|
|
|
|
|
2005-04-18 10:46:44 +00:00
|
|
|
#ifndef _URLOBJ_HXX
|
|
|
|
#include <tools/urlobj.hxx>
|
|
|
|
#endif
|
|
|
|
|
2004-10-22 13:04:15 +00:00
|
|
|
#include <ucbhelper/content.hxx>
|
|
|
|
#include <com/sun/star/uno/XComponentContext.hpp>
|
|
|
|
#include <com/sun/star/frame/XModel.hpp>
|
2005-03-04 08:16:21 +00:00
|
|
|
#include <com/sun/star/frame/XTransientDocumentsDocumentContentFactory.hpp>
|
2004-10-22 13:04:15 +00:00
|
|
|
#include <com/sun/star/document/XDocumentInfoSupplier.hpp>
|
|
|
|
#include <com/sun/star/beans/XPropertySet.hpp>
|
|
|
|
#include <com/sun/star/container/XContentEnumerationAccess.hpp>
|
|
|
|
#include <com/sun/star/ucb/XCommandEnvironment.hpp>
|
|
|
|
#include <com/sun/star/ucb/XSimpleFileAccess.hpp>
|
|
|
|
#include <com/sun/star/ucb/XContentAccess.hpp>
|
|
|
|
#include <com/sun/star/sdbc/XResultSet.hpp>
|
|
|
|
#include <com/sun/star/sdbc/XRow.hpp>
|
|
|
|
#include <com/sun/star/lang/XMultiComponentFactory.hpp>
|
|
|
|
|
|
|
|
|
|
|
|
#include "util.hxx"
|
|
|
|
|
|
|
|
namespace sf_misc
|
|
|
|
{
|
|
|
|
// for simplification
|
|
|
|
#define css ::com::sun::star
|
|
|
|
|
|
|
|
class MiscUtils
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static css::uno::Sequence< ::rtl::OUString > allOpenTDocUrls( const css::uno::Reference< css::uno::XComponentContext >& xCtx)
|
|
|
|
{
|
|
|
|
css::uno::Sequence< ::rtl::OUString > result;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if ( !xCtx.is() )
|
|
|
|
{
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
css::uno::Reference < css::lang::XMultiComponentFactory > xFac( xCtx->getServiceManager(), css::uno::UNO_QUERY );
|
|
|
|
if ( xFac.is() )
|
|
|
|
{
|
|
|
|
css::uno::Reference < com::sun::star::ucb::XSimpleFileAccess > xSFA( xFac->createInstanceWithContext( OUSTR("com.sun.star.ucb.SimpleFileAccess"), xCtx ), css::uno::UNO_QUERY );
|
|
|
|
if ( xSFA.is() )
|
|
|
|
{
|
|
|
|
result = xSFA->getFolderContents( OUSTR("vnd.sun.star.tdoc:/"), true );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-03-04 08:16:21 +00:00
|
|
|
catch ( css::uno::Exception& )
|
2004-10-22 13:04:15 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2005-03-04 08:16:21 +00:00
|
|
|
|
2004-10-22 13:04:15 +00:00
|
|
|
static ::rtl::OUString xModelToDocTitle( const css::uno::Reference< css::frame::XModel >& xModel )
|
|
|
|
{
|
|
|
|
// Set a default name, this should never be seen.
|
|
|
|
::rtl::OUString docNameOrURL =
|
|
|
|
::rtl::OUString::createFromAscii("Unknown");
|
|
|
|
if ( xModel.is() )
|
|
|
|
{
|
|
|
|
::rtl::OUString tempName;
|
|
|
|
try
|
|
|
|
{
|
2005-03-18 08:47:24 +00:00
|
|
|
css::uno::Reference< css::frame::XController > xCurrentController = xModel->getCurrentController();
|
|
|
|
if( xCurrentController.is() )
|
2004-10-22 13:04:15 +00:00
|
|
|
{
|
2005-03-18 08:47:24 +00:00
|
|
|
css::uno::Reference< css::beans::XPropertySet > propSet( xCurrentController->getFrame(), css::uno::UNO_QUERY );
|
|
|
|
if ( propSet.is() )
|
2004-10-22 13:04:15 +00:00
|
|
|
{
|
2005-03-18 08:47:24 +00:00
|
|
|
if ( sal_True == ( propSet->getPropertyValue(::rtl::OUString::createFromAscii( "Title" ) ) >>= tempName ) )
|
2004-10-22 13:04:15 +00:00
|
|
|
{
|
2005-03-18 08:47:24 +00:00
|
|
|
docNameOrURL = tempName;
|
|
|
|
if ( xModel->getURL().getLength() == 0 )
|
2004-10-22 13:04:15 +00:00
|
|
|
{
|
2005-03-18 08:47:24 +00:00
|
|
|
// process "UntitledX - YYYYYYYY"
|
|
|
|
// to get UntitledX
|
|
|
|
sal_Int32 pos = 0;
|
|
|
|
docNameOrURL = tempName.getToken(0,' ',pos);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
css::uno::Reference< css::document::XDocumentInfoSupplier > xDIS( xModel, css::uno::UNO_QUERY_THROW );
|
|
|
|
css::uno::Reference< css::beans::XPropertySet > xProp (xDIS->getDocumentInfo(), css::uno::UNO_QUERY_THROW );
|
|
|
|
css::uno::Any aTitle = xProp->getPropertyValue(::rtl::OUString::createFromAscii( "Title" ) );
|
|
|
|
|
|
|
|
aTitle >>= docNameOrURL;
|
|
|
|
if ( docNameOrURL.getLength() == 0 )
|
|
|
|
{
|
|
|
|
docNameOrURL = parseLocationName( xModel->getURL() );
|
|
|
|
}
|
2004-10-22 13:04:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch ( css::uno::Exception& e )
|
|
|
|
{
|
|
|
|
OSL_TRACE("MiscUtils::xModelToDocTitle() exception thrown: !!! %s",
|
|
|
|
::rtl::OUStringToOString( e.Message,
|
|
|
|
RTL_TEXTENCODING_ASCII_US ).pData->buffer );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return docNameOrURL;
|
|
|
|
}
|
|
|
|
static ::rtl::OUString tDocUrlToTitle( const ::rtl::OUString& url )
|
|
|
|
{
|
|
|
|
::rtl::OUString title;
|
2005-01-27 14:30:33 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
::ucb::Content root( url, NULL );
|
|
|
|
::rtl::OUString propName = OUSTR("Title");
|
|
|
|
getUCBProperty( root, propName ) >>= title;
|
|
|
|
}
|
2005-03-04 08:16:21 +00:00
|
|
|
catch ( css::ucb::ContentCreationException& )
|
2005-01-27 14:30:33 +00:00
|
|
|
{
|
|
|
|
// carry on, empty value will be returned
|
|
|
|
}
|
2005-03-04 08:16:21 +00:00
|
|
|
catch ( css::uno::RuntimeException& )
|
2005-01-27 14:30:33 +00:00
|
|
|
{
|
|
|
|
// carry on, empty value will be returned
|
|
|
|
}
|
|
|
|
|
2005-03-04 08:16:21 +00:00
|
|
|
OSL_ENSURE( title.getLength() > 0, "Unable to obtain title!" );
|
2004-10-22 13:04:15 +00:00
|
|
|
return title;
|
|
|
|
}
|
2005-03-04 08:16:21 +00:00
|
|
|
static ::rtl::OUString xModelToTdocUrl( const css::uno::Reference< css::frame::XModel >& xModel,
|
|
|
|
const css::uno::Reference< css::uno::XComponentContext >& xContext )
|
2004-10-22 13:04:15 +00:00
|
|
|
{
|
2005-03-04 08:16:21 +00:00
|
|
|
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
|
|
|
|
}
|
2004-10-22 13:04:15 +00:00
|
|
|
|
2005-03-04 08:16:21 +00:00
|
|
|
if ( xDocFac.is() )
|
2004-10-22 13:04:15 +00:00
|
|
|
{
|
2005-03-04 08:16:21 +00:00
|
|
|
try
|
2004-10-22 13:04:15 +00:00
|
|
|
{
|
2005-03-04 08:16:21 +00:00
|
|
|
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!" );
|
2004-10-22 13:04:15 +00:00
|
|
|
}
|
|
|
|
}
|
2005-03-04 08:16:21 +00:00
|
|
|
|
|
|
|
OSL_ENSURE( false, "Unable to obtain URL for document model!" );
|
|
|
|
return rtl::OUString();
|
2004-10-22 13:04:15 +00:00
|
|
|
}
|
|
|
|
static css::uno::Reference< css::frame::XModel > tDocUrlToModel( const ::rtl::OUString& url )
|
|
|
|
{
|
|
|
|
css::uno::Any result;
|
|
|
|
|
2005-01-27 14:30:33 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
::ucb::Content root( url, NULL );
|
|
|
|
::rtl::OUString propName = OUSTR("DocumentModel");
|
|
|
|
result = getUCBProperty( root, propName );
|
|
|
|
}
|
2005-03-04 08:16:21 +00:00
|
|
|
catch ( css::ucb::ContentCreationException& )
|
2005-01-27 14:30:33 +00:00
|
|
|
{
|
|
|
|
// carry on, empty value will be returned
|
|
|
|
}
|
2005-03-04 08:16:21 +00:00
|
|
|
catch ( css::uno::RuntimeException& )
|
2005-01-27 14:30:33 +00:00
|
|
|
{
|
|
|
|
// carry on, empty value will be returned
|
|
|
|
}
|
|
|
|
|
|
|
|
css::uno::Reference< css::frame::XModel > xModel(
|
|
|
|
result, css::uno::UNO_QUERY );
|
|
|
|
|
2004-10-22 13:04:15 +00:00
|
|
|
return xModel;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static css::uno::Any getUCBProperty( ::ucb::Content& content, ::rtl::OUString& prop )
|
|
|
|
{
|
|
|
|
css::uno::Any result;
|
|
|
|
try
|
|
|
|
{
|
2005-03-04 08:16:21 +00:00
|
|
|
result = content.getPropertyValue( prop );
|
2004-10-22 13:04:15 +00:00
|
|
|
}
|
2005-03-04 08:16:21 +00:00
|
|
|
catch ( css::uno::Exception& )
|
2004-10-22 13:04:15 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
static ::rtl::OUString parseLocationName( const ::rtl::OUString& location )
|
|
|
|
{
|
|
|
|
// strip out the last leaf of location name
|
|
|
|
// e.g. file://dir1/dir2/Blah.sxw - > Blah.sxw
|
|
|
|
::rtl::OUString temp = location;
|
2005-04-18 10:46:44 +00:00
|
|
|
INetURLObject aURLObj( temp );
|
|
|
|
if ( !aURLObj.HasError() )
|
|
|
|
temp = aURLObj.getName( INetURLObject::LAST_SEGMENT, true, INetURLObject::DECODE_WITH_CHARSET );
|
2004-10-22 13:04:15 +00:00
|
|
|
return temp;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
} // namespace sf_misc
|
|
|
|
#endif //
|