Files
libreoffice/scripting/source/inc/util/MiscUtils.hxx
Oliver Bolte 2b80771e21 INTEGRATION: CWS fwkfinal8 (1.5.6); FILE MERGED
2005/04/06 15:26:03 tbe 1.5.6.1: #i42647# Badly Viewed Filenames for the Macro Assignments Saving in Customize Dialog
2005-04-18 10:46:44 +00:00

289 lines
9.7 KiB
C++

/*************************************************************************
*
* $RCSfile: MiscUtils.hxx,v $
*
* $Revision: 1.6 $
*
* last change: $Author: obo $ $Date: 2005-04-18 11:46:44 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#ifndef _SCRIPT_FRAMEWORK_MISCUTILS_HXX_
#define _SCRIPT_FRAMEWORK_MISCUTILS_HXX_
#include <rtl/ustring>
#ifndef _URLOBJ_HXX
#include <tools/urlobj.hxx>
#endif
#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>
#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 );
}
}
}
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.
::rtl::OUString docNameOrURL =
::rtl::OUString::createFromAscii("Unknown");
if ( xModel.is() )
{
::rtl::OUString tempName;
try
{
css::uno::Reference< css::frame::XController > xCurrentController = xModel->getCurrentController();
if( xCurrentController.is() )
{
css::uno::Reference< css::beans::XPropertySet > propSet( xCurrentController->getFrame(), css::uno::UNO_QUERY );
if ( propSet.is() )
{
if ( sal_True == ( propSet->getPropertyValue(::rtl::OUString::createFromAscii( "Title" ) ) >>= tempName ) )
{
docNameOrURL = tempName;
if ( xModel->getURL().getLength() == 0 )
{
// 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() );
}
}
}
}
}
}
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;
try
{
::ucb::Content root( url, NULL );
::rtl::OUString propName = OUSTR("Title");
getUCBProperty( root, propName ) >>= title;
}
catch ( css::ucb::ContentCreationException& )
{
// carry on, empty value will be returned
}
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,
const css::uno::Reference< css::uno::XComponentContext >& xContext )
{
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
}
if ( xDocFac.is() )
{
try
{
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!" );
}
}
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 )
{
css::uno::Any result;
try
{
::ucb::Content root( url, NULL );
::rtl::OUString propName = OUSTR("DocumentModel");
result = getUCBProperty( root, propName );
}
catch ( css::ucb::ContentCreationException& )
{
// carry on, empty value will be returned
}
catch ( css::uno::RuntimeException& )
{
// carry on, empty value will be returned
}
css::uno::Reference< css::frame::XModel > xModel(
result, css::uno::UNO_QUERY );
return xModel;
}
static css::uno::Any getUCBProperty( ::ucb::Content& content, ::rtl::OUString& prop )
{
css::uno::Any result;
try
{
result = content.getPropertyValue( prop );
}
catch ( css::uno::Exception& )
{
}
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;
INetURLObject aURLObj( temp );
if ( !aURLObj.HasError() )
temp = aURLObj.getName( INetURLObject::LAST_SEGMENT, true, INetURLObject::DECODE_WITH_CHARSET );
return temp;
}
};
} // namespace sf_misc
#endif //