Files
libreoffice/scripting/source/storage/ScriptStorageManager.hxx
Duncan Foster c09e0ef0d6 #i12215# XScriptSecurity::checkPermissions now returns void if permission
is granted.
Removed IllegalArgumentException from specification of
XScriptInfoAccess::getScriptLogicalNames
2003-03-12 14:54:18 +00:00

260 lines
10 KiB
C++

/*************************************************************************
*
* $RCSfile: ScriptStorageManager.hxx,v $
*
* $Revision: 1.17 $
*
* last change: $Author: dfoster $ $Date: 2003-03-12 15:54:18 $
*
* 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 _DRAFTS_COM_SUN_STAR_SCRIPT_FRAMEWORK_STORAGE_SCRIPTSTORAGEMANAGER_HXX_
#define _DRAFTS_COM_SUN_STAR_SCRIPT_FRAMEWORK_STORAGE_SCRIPTSTORAGEMANAGER_HXX_
#include <hash_map>
#include <map>
#include <osl/mutex.hxx>
#include <cppuhelper/implbase4.hxx>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XEventListener.hpp>
#include <com/sun/star/lang/IllegalArgumentException.hpp>
#include <com/sun/star/security/AccessControlException.hpp>
#include <com/sun/star/uno/RuntimeException.hpp>
#include <drafts/com/sun/star/script/framework/storage/XScriptStorageManager.hpp>
#include <drafts/com/sun/star/script/framework/storage/XScriptStorageRefresh.hpp>
#include <drafts/com/sun/star/script/framework/storage/XScriptInfo.hpp>
#include <drafts/com/sun/star/script/framework/security/XScriptSecurity.hpp>
#include "ScriptSecurityManager.hxx"
namespace scripting_impl
{
// for simplification
#define css ::com::sun::star
#define dcsssf ::drafts::com::sun::star::script::framework
// Define a map used to store the ScriptingStorages key;d by ID
typedef ::std::map < sal_Int32, css::uno::Reference < css::uno::XInterface > >
ScriptStorage_map;
typedef ::std::hash_map < ::rtl::OUString, sal_Int32, ::rtl::OUStringHash>
StorageId_hash;
class ScriptStorageManager : public
::cppu::WeakImplHelper4 < dcsssf::storage::XScriptStorageManager,
dcsssf::security::XScriptSecurity, css::lang::XServiceInfo,
css::lang::XEventListener >
{
public:
explicit ScriptStorageManager(
const css::uno::Reference< css::uno::XComponentContext > & xContext )
SAL_THROW ( ( css::uno::RuntimeException ) );
~ScriptStorageManager() SAL_THROW ( () );
// XServiceInfo implementation
//======================================================================
virtual ::rtl::OUString SAL_CALL getImplementationName()
throw( css::uno::RuntimeException );
//----------------------------------------------------------------------
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName )
throw( css::uno::RuntimeException );
//----------------------------------------------------------------------
virtual css::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames()
throw( css::uno::RuntimeException );
//======================================================================
//XScriptStorageManager
//======================================================================
/**
create a ScriptStorage using the XSimpleFileAccess passed as an
argument, and return a ID for getting the associated ScriptStorage
@params xSFA
an implementation of XSimpleFileAccess that knows its own base URL
and can thus take URLs relative to that base.
@returns an unsigned short ScriptStorage ID, which can be used in the
getScriptStorage method
*/
virtual sal_Int32 SAL_CALL createScriptStorage(
const css::uno::Reference< css::ucb::XSimpleFileAccess > & xSFA )
throw ( css::uno::RuntimeException );
//----------------------------------------------------------------------
/**
create a ScriptStorage using the XSimpleFileAccess, and a string URL
and return a ID for getting the associated ScriptStorage
@params xSFA
a standard implementation of XSimpleFileAccess
@params stringURI
a string URI to the head of the script storage
@returns an unsigned short ScriptStorage ID, which can be used in the
getScriptStorage method
*/
virtual sal_Int32 SAL_CALL
createScriptStorageWithURI(
const css::uno::Reference< css::ucb::XSimpleFileAccess >& xSFA,
const ::rtl::OUString& stringURI )
throw ( css::uno::RuntimeException );
//----------------------------------------------------------------------
/**
get a ScriptStorage component using its scriptStorageID
@params scriptStorageID
the usigned short returned by one of the methods above. ID=0 is
reserved for the application/share scripts, and ID=1 is reserved
for the application/user scripts
@returns an XInterface to a component that implements the ScriptStorage
service
*/
virtual css::uno::Reference< css::uno::XInterface > SAL_CALL getScriptStorage(
sal_Int32 scriptStorageID )
throw ( css::uno::RuntimeException );
/**
get a ScriptStorage ID using storage URI
@param scriptStorageURI
the file URL for the document will retrieve storage id for the document, special treatment is reserved for the strings "USER"and "SHARE" which
retrieve storage id for application/user application/share areas respectively.
@returns as long ScriptStorage ID (-1 if no storage exists), which can be used in getScriptStorage method.
*/
virtual sal_Int32 SAL_CALL getScriptStorageID( const ::rtl::OUString& scriptStorageURI )
throw (::com::sun::star::uno::RuntimeException);
/**
refresh a storage component using its URI
@param StringURI
URI of storage area, for documents, url to document eg, file:///home/user/ADocument.sxw To refresh the storage for user or share area, use USER or SHARE respectively instead or a url.
*/
virtual void SAL_CALL refreshScriptStorage(const ::rtl::OUString & stringURI)
throw ( css::uno::RuntimeException );
//======================================================================
//XScriptSecurity
//======================================================================
//----------------------------------------------------------------------
/**
the language independent interface for invocation
@param scriptURI
a string containing the script URI
@returns
the value returned from the function being invoked
@throws IllegalArgumentException
if there is no matching script name
*/
virtual void SAL_CALL ScriptStorageManager::checkPermission(
const rtl::OUString & scriptStorageURI,
const rtl::OUString & permissionRequest )
throw ( css::uno::RuntimeException, css::lang::IllegalArgumentException,
css::security::AccessControlException );
//======================================================================
//XEventListener
//======================================================================
virtual void SAL_CALL disposing( const css::lang::EventObject& Source )
throw ( css::uno::RuntimeException );
private:
ScriptStorageManager( const ScriptStorageManager & );
ScriptStorageManager& operator= ( const ScriptStorageManager & );
void removeScriptDocURIHashEntry( const ::rtl::OUString & origURI );
// to obtain other services if needed
css::uno::Reference< css::uno::XComponentContext > m_xContext;
css::uno::Reference< css::lang::XMultiComponentFactory > m_xMgr;
::osl::Mutex m_mutex;
ScriptStorage_map m_ScriptStorageMap;
StorageId_hash m_StorageIdOrigURIHash;
sal_Int32 m_count;
scripting_securitymgr::ScriptSecurityManager m_securityMgr;
void setupAppStorage( const css::uno::Reference< css::util::XMacroExpander > & xME,
const ::rtl::OUString & storageStr,
const ::rtl::OUString & appStr)
SAL_THROW ( ( css::uno::RuntimeException ) );
sal_Int32 setupAnyStorage(
const css::uno::Reference< css::ucb::XSimpleFileAccess> & xSFA,
const ::rtl::OUString & storageStr,
const ::rtl::OUString & origStringURI )
SAL_THROW ( ( css::uno::RuntimeException ) );
};
} // scripting_impl
#endif //_COM_SUN_STAR_SCRIPTING_STORAGE_SCRIPTSTORAGEMANAGER_HXX_