/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org 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 version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #include #include #include #include #include #include #include #include #include #include #include using namespace ::osl; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::ucb; namespace utl { sal_Bool LocalFileHelper::ConvertSystemPathToURL( const String& rName, const String& rBaseURL, String& rReturn ) { rReturn = ::rtl::OUString(); ::ucbhelper::ContentBroker* pBroker = ::ucbhelper::ContentBroker::get(); if ( !pBroker ) { rtl::OUString aRet; if ( FileBase::getFileURLFromSystemPath( rName, aRet ) == FileBase::E_None ) rReturn = aRet; } else { ::com::sun::star::uno::Reference< ::com::sun::star::ucb::XContentProviderManager > xManager = pBroker->getContentProviderManagerInterface(); try { rReturn = ::ucbhelper::getFileURLFromSystemPath( xManager, rBaseURL, rName ); } catch ( ::com::sun::star::uno::RuntimeException& ) { return sal_False; } } return ( rReturn.Len() != 0 ); } sal_Bool LocalFileHelper::ConvertURLToSystemPath( const String& rName, String& rReturn ) { rReturn = ::rtl::OUString(); ::ucbhelper::ContentBroker* pBroker = ::ucbhelper::ContentBroker::get(); if ( !pBroker ) { rtl::OUString aRet; if( FileBase::getSystemPathFromFileURL( rName, aRet ) == FileBase::E_None ) rReturn = aRet; } else { ::com::sun::star::uno::Reference< ::com::sun::star::ucb::XContentProviderManager > xManager = pBroker->getContentProviderManagerInterface(); try { rReturn = ::ucbhelper::getSystemPathFromFileURL( xManager, rName ); } catch ( ::com::sun::star::uno::RuntimeException& ) { } } return ( rReturn.Len() != 0 ); } bool LocalFileHelper::ConvertPhysicalNameToURL(const rtl::OUString& rName, rtl::OUString& rReturn) { rReturn = ::rtl::OUString(); ::ucbhelper::ContentBroker* pBroker = ::ucbhelper::ContentBroker::get(); if ( !pBroker ) { rtl::OUString aRet; if ( FileBase::getFileURLFromSystemPath( rName, aRet ) == FileBase::E_None ) rReturn = aRet; } else { ::com::sun::star::uno::Reference< ::com::sun::star::ucb::XContentProviderManager > xManager = pBroker->getContentProviderManagerInterface(); try { rtl::OUString aBase( ::ucbhelper::getLocalFileURL() ); rReturn = ::ucbhelper::getFileURLFromSystemPath( xManager, aBase, rName ); } catch (const ::com::sun::star::uno::RuntimeException&) { } } return !rReturn.isEmpty(); } bool LocalFileHelper::ConvertURLToPhysicalName(const rtl::OUString& rName, rtl::OUString& rReturn) { rReturn = ::rtl::OUString(); ::ucbhelper::ContentBroker* pBroker = ::ucbhelper::ContentBroker::get(); if ( !pBroker ) { ::rtl::OUString aRet; if ( FileBase::getSystemPathFromFileURL( rName, aRet ) == FileBase::E_None ) rReturn = aRet; } else { ::com::sun::star::uno::Reference< ::com::sun::star::ucb::XContentProviderManager > xManager = pBroker->getContentProviderManagerInterface(); try { INetURLObject aObj( rName ); INetURLObject aLocal( ::ucbhelper::getLocalFileURL() ); if ( aObj.GetProtocol() == aLocal.GetProtocol() ) rReturn = ::ucbhelper::getSystemPathFromFileURL( xManager, rName ); } catch (const ::com::sun::star::uno::RuntimeException&) { } } return !rReturn.isEmpty(); } sal_Bool LocalFileHelper::IsLocalFile(const rtl::OUString& rName) { rtl::OUString aTmp; return ConvertURLToPhysicalName(rName, aTmp); } sal_Bool LocalFileHelper::IsFileContent(const rtl::OUString& rName) { String aTmp; return ConvertURLToSystemPath(rName, aTmp); } typedef ::std::vector< ::rtl::OUString* > StringList_Impl; ::com::sun::star::uno::Sequence < ::rtl::OUString > LocalFileHelper::GetFolderContents( const ::rtl::OUString& rFolder, sal_Bool bFolder ) { StringList_Impl* pFiles = NULL; try { ::ucbhelper::Content aCnt( rFolder, Reference< XCommandEnvironment > () ); Reference< ::com::sun::star::sdbc::XResultSet > xResultSet; ::com::sun::star::uno::Sequence< ::rtl::OUString > aProps(1); ::rtl::OUString* pProps = aProps.getArray(); pProps[0] = ::rtl::OUString("Url"); try { ::ucbhelper::ResultSetInclude eInclude = bFolder ? ::ucbhelper::INCLUDE_FOLDERS_AND_DOCUMENTS : ::ucbhelper::INCLUDE_DOCUMENTS_ONLY; xResultSet = aCnt.createCursor( aProps, eInclude ); } catch( ::com::sun::star::ucb::CommandAbortedException& ) { } catch( Exception& ) { } if ( xResultSet.is() ) { pFiles = new StringList_Impl; Reference< XContentAccess > xContentAccess( xResultSet, UNO_QUERY ); try { while ( xResultSet->next() ) { ::rtl::OUString aId = xContentAccess->queryContentIdentifierString(); ::rtl::OUString* pFile = new ::rtl::OUString( aId ); pFiles->push_back( pFile ); } } catch( ::com::sun::star::ucb::CommandAbortedException& ) { } catch( Exception& ) { } } } catch( Exception& ) { } if ( pFiles ) { size_t nCount = pFiles->size(); Sequence < ::rtl::OUString > aRet( nCount ); ::rtl::OUString* pRet = aRet.getArray(); for ( size_t i = 0; i < nCount; ++i ) { ::rtl::OUString* pFile = (*pFiles)[ i ]; pRet[i] = *( pFile ); delete pFile; } delete pFiles; return aRet; } else return Sequence < ::rtl::OUString > (); } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */