/************************************************************************* * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: MiscUtils.hxx,v $ * * $Revision: 1.11 $ * * last change: $Author: obo $ $Date: 2008-02-26 13:28:06 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. * * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2005 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 * ************************************************************************/ #ifndef _SCRIPT_FRAMEWORK_MISCUTILS_HXX_ #define _SCRIPT_FRAMEWORK_MISCUTILS_HXX_ #include #ifndef _URLOBJ_HXX #include #endif #include #include #include #include #include #include #include #include #include #include #include #include #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 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 { ::ucbhelper::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( ::ucbhelper::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 // '>distro/lhm/libreoffice-4-1-6+backports LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2020-05-06Move all public Java classes to libreoffice.jarSamuel Mehrbrodt
2020-02-04tdf#117331 Merge jurt and unoil into ridlSamuel Mehrbrodt
2019-09-06Fixing '....' and '..'Andrea Gelmini
2018-11-29Rename Mac OS X to official name macOS in comments and documentationBartosz Kosiorek
2016-05-17odk: add missing modelinesMiklos Vajna
2016-01-10Fix typosAndrea Gelmini
2015-10-02Fix typosAndrea Gelmini
2014-04-30Many spelling fixes: directories h* - p*.Pedro Giffuni
2014-01-21OfficeBean example does not work on OS X (where officebean.jar is not built)Stephan Bergmann
2013-05-07Move the example code off the com.sun.star.comp.beans packageStephan Bergmann
2013-04-29Remove some obsolete makefile.mkStephan Bergmann