2003-09-23 09:09:14 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-09 01:22:42 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2003-09-23 09:09:14 +00:00
|
|
|
*
|
2005-09-09 01:22:42 +00:00
|
|
|
* $RCSfile: baslibnode.cxx,v $
|
2003-09-23 09:09:14 +00:00
|
|
|
*
|
2005-09-09 01:22:42 +00:00
|
|
|
* $Revision: 1.8 $
|
2003-09-23 09:09:14 +00:00
|
|
|
*
|
2005-09-09 01:22:42 +00:00
|
|
|
* last change: $Author: rt $ $Date: 2005-09-09 02:22:00 $
|
2003-09-23 09:09:14 +00:00
|
|
|
*
|
2005-09-09 01:22:42 +00:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2003-09-23 09:09:14 +00:00
|
|
|
*
|
|
|
|
*
|
2005-09-09 01:22:42 +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
|
2003-09-23 09:09:14 +00:00
|
|
|
*
|
2005-09-09 01:22:42 +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.
|
2003-09-23 09:09:14 +00:00
|
|
|
*
|
2005-09-09 01:22:42 +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.
|
2003-09-23 09:09:14 +00:00
|
|
|
*
|
2005-09-09 01:22:42 +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
|
2003-09-23 09:09:14 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef SCRIPTING_BASLIBNODE_HXX
|
|
|
|
#include "baslibnode.hxx"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef SCRIPTING_BASMODNODE_HXX
|
|
|
|
#include "basmodnode.hxx"
|
|
|
|
#endif
|
|
|
|
|
2004-10-22 13:01:06 +00:00
|
|
|
#ifndef _COM_SUN_STAR_SCRIPT_BROWSE_BROWSENODETYPES_HPP_
|
|
|
|
#include <com/sun/star/script/browse/BrowseNodeTypes.hpp>
|
2003-09-23 09:09:14 +00:00
|
|
|
#endif
|
|
|
|
|
2005-01-13 16:42:17 +00:00
|
|
|
#ifndef _VOS_MUTEX_HXX_
|
|
|
|
#include <vos/mutex.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _SV_SVAPP_HXX
|
|
|
|
#include <vcl/svapp.hxx>
|
|
|
|
#endif
|
2003-09-23 09:09:14 +00:00
|
|
|
#ifndef _BASMGR_HXX
|
|
|
|
#include <basic/basmgr.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _SB_SBSTAR_HXX
|
|
|
|
#include <basic/sbstar.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
using namespace ::com::sun::star::uno;
|
2004-10-22 13:01:06 +00:00
|
|
|
using namespace ::com::sun::star::script;
|
2003-09-23 09:09:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
//.........................................................................
|
|
|
|
namespace basprov
|
|
|
|
{
|
|
|
|
//.........................................................................
|
|
|
|
|
|
|
|
// =============================================================================
|
|
|
|
// BasicLibraryNodeImpl
|
|
|
|
// =============================================================================
|
|
|
|
|
2003-11-07 12:51:16 +00:00
|
|
|
BasicLibraryNodeImpl::BasicLibraryNodeImpl( const Reference< XComponentContext >& rxContext,
|
2004-07-23 13:05:54 +00:00
|
|
|
const ::rtl::OUString& sScriptingContext, BasicManager* pBasicManager,
|
2003-10-15 07:35:32 +00:00
|
|
|
const Reference< script::XLibraryContainer >& xLibContainer, const ::rtl::OUString& sLibName, bool isAppScript )
|
2003-11-07 12:51:16 +00:00
|
|
|
:m_xContext( rxContext )
|
2004-07-23 13:05:54 +00:00
|
|
|
,m_sScriptingContext( sScriptingContext )
|
2003-11-07 12:51:16 +00:00
|
|
|
,m_pBasicManager( pBasicManager )
|
2003-09-23 09:09:14 +00:00
|
|
|
,m_xLibContainer( xLibContainer )
|
2003-11-07 12:51:16 +00:00
|
|
|
,m_sLibName( sLibName )
|
|
|
|
,m_bIsAppScript( isAppScript )
|
2003-09-23 09:09:14 +00:00
|
|
|
{
|
|
|
|
if ( m_xLibContainer.is() )
|
|
|
|
{
|
|
|
|
Any aElement = m_xLibContainer->getByName( m_sLibName );
|
|
|
|
aElement >>= m_xLibrary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
BasicLibraryNodeImpl::~BasicLibraryNodeImpl()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// XBrowseNode
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
::rtl::OUString BasicLibraryNodeImpl::getName( ) throw (RuntimeException)
|
|
|
|
{
|
2005-01-13 16:42:17 +00:00
|
|
|
::vos::OGuard aGuard( Application::GetSolarMutex() );
|
2003-09-23 09:09:14 +00:00
|
|
|
|
|
|
|
return m_sLibName;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
Sequence< Reference< browse::XBrowseNode > > BasicLibraryNodeImpl::getChildNodes( ) throw (RuntimeException)
|
|
|
|
{
|
2005-01-13 16:42:17 +00:00
|
|
|
::vos::OGuard aGuard( Application::GetSolarMutex() );
|
2003-09-23 09:09:14 +00:00
|
|
|
|
|
|
|
Sequence< Reference< browse::XBrowseNode > > aChildNodes;
|
|
|
|
|
|
|
|
if ( m_xLibContainer.is() && m_xLibContainer->hasByName( m_sLibName ) && !m_xLibContainer->isLibraryLoaded( m_sLibName ) )
|
|
|
|
m_xLibContainer->loadLibrary( m_sLibName );
|
|
|
|
|
|
|
|
if ( m_pBasicManager )
|
|
|
|
{
|
|
|
|
StarBASIC* pBasic = m_pBasicManager->GetLib( m_sLibName );
|
|
|
|
if ( pBasic && m_xLibrary.is() )
|
|
|
|
{
|
|
|
|
Sequence< ::rtl::OUString > aNames = m_xLibrary->getElementNames();
|
|
|
|
sal_Int32 nCount = aNames.getLength();
|
|
|
|
const ::rtl::OUString* pNames = aNames.getConstArray();
|
|
|
|
aChildNodes.realloc( nCount );
|
|
|
|
Reference< browse::XBrowseNode >* pChildNodes = aChildNodes.getArray();
|
|
|
|
|
|
|
|
for ( sal_Int32 i = 0 ; i < nCount ; ++i )
|
|
|
|
{
|
|
|
|
SbModule* pModule = pBasic->FindModule( pNames[i] );
|
|
|
|
if ( pModule )
|
2004-07-23 13:05:54 +00:00
|
|
|
pChildNodes[i] = static_cast< browse::XBrowseNode* >( new BasicModuleNodeImpl( m_xContext, m_sScriptingContext, pModule, m_bIsAppScript ) );
|
2003-09-23 09:09:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return aChildNodes;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
sal_Bool BasicLibraryNodeImpl::hasChildNodes( ) throw (RuntimeException)
|
|
|
|
{
|
2005-01-13 16:42:17 +00:00
|
|
|
::vos::OGuard aGuard( Application::GetSolarMutex() );
|
2003-09-23 09:09:14 +00:00
|
|
|
|
|
|
|
sal_Bool bReturn = sal_False;
|
|
|
|
if ( m_xLibrary.is() )
|
|
|
|
bReturn = m_xLibrary->hasElements();
|
|
|
|
|
|
|
|
return bReturn;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
sal_Int16 BasicLibraryNodeImpl::getType( ) throw (RuntimeException)
|
|
|
|
{
|
2005-01-13 16:42:17 +00:00
|
|
|
::vos::OGuard aGuard( Application::GetSolarMutex() );
|
2003-09-23 09:09:14 +00:00
|
|
|
|
|
|
|
return browse::BrowseNodeTypes::CONTAINER;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
//.........................................................................
|
|
|
|
} // namespace basprov
|
|
|
|
//.........................................................................
|