2004/03/05 10:33:43 npower 1.5.14.1: #i22570# Changes to support new URL parsing service. A side affect of using the new service is that the format of the URI has changed a little. The URI is now nt hierarchical. Changes to the files below involve removing methods to parse data from the URI instread new service UriReferenceFactory, adding the new types to build project xml files.
400 lines
16 KiB
C++
400 lines
16 KiB
C++
/*************************************************************************
|
|
*
|
|
* $RCSfile: basmethnode.cxx,v $
|
|
*
|
|
* $Revision: 1.6 $
|
|
*
|
|
* last change: $Author: svesik $ $Date: 2004-04-19 23:13:31 $
|
|
*
|
|
* 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 SCRIPTING_BASMETHNODE_HXX
|
|
#include "basmethnode.hxx"
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_BEANS_PROPERTYATTRIBUTE_HPP_
|
|
#include <com/sun/star/beans/PropertyAttribute.hpp>
|
|
#endif
|
|
#ifndef _COM_SUN_STAR_FRAME_XDESKTOP_HPP_
|
|
#include <com/sun/star/frame/XDesktop.hpp>
|
|
#endif
|
|
#ifndef _COM_SUN_STAR_FRAME_XDISPATCHHELPER_HPP_
|
|
#include <com/sun/star/frame/XDispatchHelper.hpp>
|
|
#endif
|
|
#ifndef _COM_SUN_STAR_FRAME_XDISPATCHPROVIDER_HPP_
|
|
#include <com/sun/star/frame/XDispatchProvider.hpp>
|
|
#endif
|
|
#ifndef _COM_SUN_STAR_LANG_XMULTICOMPONENTFACTORY_HPP_
|
|
#include <com/sun/star/lang/XMultiComponentFactory.hpp>
|
|
#endif
|
|
#ifndef _DRAFTS_COM_SUN_STAR_SCRIPT_BROWSE_BROWSENODETYPES_HPP_
|
|
#include <drafts/com/sun/star/script/browse/BrowseNodeTypes.hpp>
|
|
#endif
|
|
|
|
#ifndef _SB_SBSTAR_HXX
|
|
#include <basic/sbstar.hxx>
|
|
#endif
|
|
#ifndef _SB_SBMETH_HXX
|
|
#include <basic/sbmeth.hxx>
|
|
#endif
|
|
#ifndef _SB_SBMOD_HXX
|
|
#include <basic/sbmod.hxx>
|
|
#endif
|
|
|
|
using namespace ::com::sun::star;
|
|
using namespace ::com::sun::star::lang;
|
|
using namespace ::com::sun::star::uno;
|
|
using namespace ::com::sun::star::beans;
|
|
using namespace ::comphelper;
|
|
using namespace ::drafts::com::sun::star::script;
|
|
|
|
|
|
#define BASPROV_PROPERTY_ID_URI 1
|
|
#define BASPROV_PROPERTY_ID_EDITABLE 2
|
|
|
|
#define BASPROV_PROPERTY_URI ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "URI" ) )
|
|
#define BASPROV_PROPERTY_EDITABLE ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Editable" ) )
|
|
|
|
#define BASPROV_DEFAULT_ATTRIBS() PropertyAttribute::BOUND | PropertyAttribute::TRANSIENT | PropertyAttribute::READONLY
|
|
|
|
|
|
//.........................................................................
|
|
namespace basprov
|
|
{
|
|
//.........................................................................
|
|
|
|
// =============================================================================
|
|
// BasicMethodNodeImpl
|
|
// =============================================================================
|
|
|
|
BasicMethodNodeImpl::BasicMethodNodeImpl( const Reference< XComponentContext >& rxContext,
|
|
const Reference< XPropertySet >& rxScriptingContext, SbMethod* pMethod, bool isAppScript )
|
|
: ::scripting_helper::OBroadcastHelperHolder( StarBASIC::GetGlobalMutex() )
|
|
,OPropertyContainer( GetBroadcastHelper() )
|
|
,m_xContext( rxContext )
|
|
,m_xScriptingContext( rxScriptingContext )
|
|
,m_pMethod( pMethod )
|
|
,m_bIsAppScript( isAppScript )
|
|
,m_bEditable( sal_True )
|
|
{
|
|
if ( m_pMethod )
|
|
{
|
|
SbModule* pModule = m_pMethod->GetModule();
|
|
if ( pModule )
|
|
{
|
|
StarBASIC* pBasic = static_cast< StarBASIC* >( pModule->GetParent() );
|
|
if ( pBasic )
|
|
{
|
|
m_sURI = ::rtl::OUString::createFromAscii( "vnd.sun.star.script:" );
|
|
m_sURI += pBasic->GetName();
|
|
m_sURI += ::rtl::OUString::createFromAscii( "." );
|
|
m_sURI += pModule->GetName();
|
|
m_sURI += ::rtl::OUString::createFromAscii( "." );
|
|
m_sURI += m_pMethod->GetName();
|
|
m_sURI += ::rtl::OUString::createFromAscii( "?language=Basic&location=" );
|
|
if ( m_bIsAppScript )
|
|
m_sURI += ::rtl::OUString::createFromAscii( "application" );
|
|
else
|
|
m_sURI += ::rtl::OUString::createFromAscii( "document" );
|
|
}
|
|
}
|
|
}
|
|
|
|
registerProperty( BASPROV_PROPERTY_URI, BASPROV_PROPERTY_ID_URI, BASPROV_DEFAULT_ATTRIBS(), &m_sURI, ::getCppuType( &m_sURI ) );
|
|
registerProperty( BASPROV_PROPERTY_EDITABLE, BASPROV_PROPERTY_ID_EDITABLE, BASPROV_DEFAULT_ATTRIBS(), &m_bEditable, ::getCppuType( &m_bEditable ) );
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
BasicMethodNodeImpl::~BasicMethodNodeImpl()
|
|
{
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// XInterface
|
|
// -----------------------------------------------------------------------------
|
|
|
|
IMPLEMENT_FORWARD_XINTERFACE2( BasicMethodNodeImpl, BasicMethodNodeImpl_BASE, OPropertyContainer )
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// XTypeProvider
|
|
// -----------------------------------------------------------------------------
|
|
|
|
IMPLEMENT_FORWARD_XTYPEPROVIDER2( BasicMethodNodeImpl, BasicMethodNodeImpl_BASE, OPropertyContainer )
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// XBrowseNode
|
|
// -----------------------------------------------------------------------------
|
|
|
|
::rtl::OUString BasicMethodNodeImpl::getName( ) throw (RuntimeException)
|
|
{
|
|
::osl::MutexGuard aGuard( StarBASIC::GetGlobalMutex() );
|
|
|
|
::rtl::OUString sMethodName;
|
|
if ( m_pMethod )
|
|
sMethodName = m_pMethod->GetName();
|
|
|
|
return sMethodName;
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
Sequence< Reference< browse::XBrowseNode > > BasicMethodNodeImpl::getChildNodes( ) throw (RuntimeException)
|
|
{
|
|
::osl::MutexGuard aGuard( StarBASIC::GetGlobalMutex() );
|
|
|
|
return Sequence< Reference< browse::XBrowseNode > >();
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
sal_Bool BasicMethodNodeImpl::hasChildNodes( ) throw (RuntimeException)
|
|
{
|
|
::osl::MutexGuard aGuard( StarBASIC::GetGlobalMutex() );
|
|
|
|
return sal_False;
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
sal_Int16 BasicMethodNodeImpl::getType( ) throw (RuntimeException)
|
|
{
|
|
::osl::MutexGuard aGuard( StarBASIC::GetGlobalMutex() );
|
|
|
|
return browse::BrowseNodeTypes::SCRIPT;
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// OPropertySetHelper
|
|
// -----------------------------------------------------------------------------
|
|
|
|
::cppu::IPropertyArrayHelper& BasicMethodNodeImpl::getInfoHelper( )
|
|
{
|
|
return *getArrayHelper();
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// OPropertyArrayUsageHelper
|
|
// -----------------------------------------------------------------------------
|
|
|
|
::cppu::IPropertyArrayHelper* BasicMethodNodeImpl::createArrayHelper( ) const
|
|
{
|
|
Sequence< Property > aProps;
|
|
describeProperties( aProps );
|
|
return new ::cppu::OPropertyArrayHelper( aProps );
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// XPropertySet
|
|
// -----------------------------------------------------------------------------
|
|
|
|
Reference< XPropertySetInfo > BasicMethodNodeImpl::getPropertySetInfo( ) throw (RuntimeException)
|
|
{
|
|
Reference< XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
|
|
return xInfo;
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// XInvocation
|
|
// -----------------------------------------------------------------------------
|
|
|
|
Reference< XIntrospectionAccess > BasicMethodNodeImpl::getIntrospection( ) throw (RuntimeException)
|
|
{
|
|
return Reference< XIntrospectionAccess >();
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
Any BasicMethodNodeImpl::invoke( const ::rtl::OUString& aFunctionName, const Sequence< Any >& aParams,
|
|
Sequence< sal_Int16 >& aOutParamIndex, Sequence< Any >& aOutParam )
|
|
throw (IllegalArgumentException, script::CannotConvertException,
|
|
reflection::InvocationTargetException, RuntimeException)
|
|
{
|
|
if ( aFunctionName == BASPROV_PROPERTY_EDITABLE )
|
|
{
|
|
::rtl::OUString sDocURL, sLibName, sModName;
|
|
USHORT nLine1, nLine2;
|
|
|
|
if ( !m_bIsAppScript && m_xScriptingContext.is() )
|
|
{
|
|
Reference< frame::XModel > xModel;
|
|
// TODO: use ScriptingContantsPool for SCRIPTING_DOC_REF
|
|
m_xScriptingContext->getPropertyValue( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "SCRIPTING_DOC_REF" ) ) ) >>= xModel;
|
|
|
|
if ( xModel.is() )
|
|
{
|
|
sDocURL = xModel->getURL();
|
|
if ( sDocURL.getLength() == 0 )
|
|
{
|
|
Sequence < PropertyValue > aProps = xModel->getArgs();
|
|
sal_Int32 nProps = aProps.getLength();
|
|
const PropertyValue* pProps = aProps.getConstArray();
|
|
for ( sal_Int32 i = 0; i < nProps; ++i )
|
|
{
|
|
// TODO: according to MBA the property 'Title' may change in future
|
|
if ( pProps[i].Name == ::rtl::OUString::createFromAscii( "Title" ) )
|
|
{
|
|
pProps[i].Value >>= sDocURL;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if ( m_pMethod )
|
|
{
|
|
m_pMethod->GetLineRange( nLine1, nLine2 );
|
|
SbModule* pModule = m_pMethod->GetModule();
|
|
if ( pModule )
|
|
{
|
|
sModName = pModule->GetName();
|
|
StarBASIC* pBasic = static_cast< StarBASIC* >( pModule->GetParent() );
|
|
if ( pBasic )
|
|
sLibName = pBasic->GetName();
|
|
}
|
|
}
|
|
|
|
if ( m_xContext.is() )
|
|
{
|
|
Reference< XMultiComponentFactory > xSMgr( m_xContext->getServiceManager() );
|
|
|
|
if ( xSMgr.is() )
|
|
{
|
|
Reference< frame::XDesktop > xDesktop( xSMgr->createInstanceWithContext(
|
|
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.frame.Desktop" ) ), m_xContext ), UNO_QUERY );
|
|
|
|
if ( xDesktop.is() )
|
|
{
|
|
Reference < frame::XDispatchProvider > xProv( xDesktop->getCurrentFrame(), UNO_QUERY );
|
|
|
|
if ( xProv.is() )
|
|
{
|
|
Reference< frame::XDispatchHelper > xHelper( xSMgr->createInstanceWithContext(
|
|
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.frame.DispatchHelper" ) ), m_xContext ), UNO_QUERY );
|
|
|
|
if ( xHelper.is() )
|
|
{
|
|
Sequence < PropertyValue > aArgs(7);
|
|
aArgs[0].Name = ::rtl::OUString::createFromAscii( "Document" );
|
|
aArgs[0].Value <<= sDocURL;
|
|
aArgs[1].Name = ::rtl::OUString::createFromAscii( "LibName" );
|
|
aArgs[1].Value <<= sLibName;
|
|
aArgs[2].Name = ::rtl::OUString::createFromAscii( "Name" );
|
|
aArgs[2].Value <<= sModName;
|
|
aArgs[3].Name = ::rtl::OUString::createFromAscii( "Type" );
|
|
aArgs[3].Value <<= ::rtl::OUString::createFromAscii( "Module" );
|
|
aArgs[4].Name = ::rtl::OUString::createFromAscii( "Line" );
|
|
aArgs[4].Value <<= static_cast< sal_uInt32 >( nLine1 );
|
|
xHelper->executeDispatch( xProv, ::rtl::OUString::createFromAscii( ".uno:BasicIDEAppear" ), ::rtl::OUString(), 0, aArgs );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
throw IllegalArgumentException(
|
|
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "BasicMethodNodeImpl::invoke: function name not supported!" ) ),
|
|
Reference< XInterface >(), 1 );
|
|
}
|
|
|
|
return Any();
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void BasicMethodNodeImpl::setValue( const ::rtl::OUString& aPropertyName, const Any& aValue )
|
|
throw (UnknownPropertyException, script::CannotConvertException,
|
|
reflection::InvocationTargetException, RuntimeException)
|
|
{
|
|
throw UnknownPropertyException(
|
|
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "BasicMethodNodeImpl::setValue: property name is unknown!" ) ),
|
|
Reference< XInterface >() );
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
Any BasicMethodNodeImpl::getValue( const ::rtl::OUString& aPropertyName ) throw (UnknownPropertyException, RuntimeException)
|
|
{
|
|
throw UnknownPropertyException(
|
|
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "BasicMethodNodeImpl::getValue: property name is unknown!" ) ),
|
|
Reference< XInterface >() );
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
sal_Bool BasicMethodNodeImpl::hasMethod( const ::rtl::OUString& aName ) throw (RuntimeException)
|
|
{
|
|
sal_Bool bReturn = sal_False;
|
|
if ( aName == BASPROV_PROPERTY_EDITABLE )
|
|
bReturn = sal_True;
|
|
|
|
return bReturn;
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
sal_Bool BasicMethodNodeImpl::hasProperty( const ::rtl::OUString& aName ) throw (RuntimeException)
|
|
{
|
|
return sal_False;
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
//.........................................................................
|
|
} // namespace basprov
|
|
//.........................................................................
|