2002-11-11 01:35:49 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 05:45:59 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2002-11-11 01:35:49 -06:00
|
|
|
*
|
2008-04-11 05:45:59 -05:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2002-11-11 01:35:49 -06:00
|
|
|
*
|
2008-04-11 05:45:59 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2002-11-11 01:35:49 -06:00
|
|
|
*
|
2008-04-11 05:45:59 -05:00
|
|
|
* $RCSfile: rdbtdp_tdenumeration.hxx,v $
|
|
|
|
* $Revision: 1.7 $
|
2002-11-11 01:35:49 -06:00
|
|
|
*
|
2008-04-11 05:45:59 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2002-11-11 01:35:49 -06:00
|
|
|
*
|
2008-04-11 05:45:59 -05:00
|
|
|
* 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.
|
2002-11-11 01:35:49 -06:00
|
|
|
*
|
2008-04-11 05:45:59 -05:00
|
|
|
* 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).
|
2002-11-11 01:35:49 -06:00
|
|
|
*
|
2008-04-11 05:45:59 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2002-11-11 01:35:49 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _STOC_RDBTDP_TDENUMERATION_HXX
|
|
|
|
#define _STOC_RDBTDP_TDENUMERATION_HXX
|
|
|
|
|
2002-11-13 09:01:21 -06:00
|
|
|
#include <list>
|
2002-11-11 01:35:49 -06:00
|
|
|
#include <osl/mutex.hxx>
|
|
|
|
#include <rtl/ref.hxx>
|
2003-10-09 04:24:08 -05:00
|
|
|
#include <registry/refltype.hxx>
|
2002-11-11 01:35:49 -06:00
|
|
|
#include <com/sun/star/container/XHierarchicalNameAccess.hpp>
|
|
|
|
#include <com/sun/star/reflection/InvalidTypeNameException.hpp>
|
|
|
|
#include <com/sun/star/reflection/NoSuchTypeNameException.hpp>
|
|
|
|
#include <com/sun/star/reflection/TypeDescriptionSearchDepth.hpp>
|
|
|
|
#include <com/sun/star/reflection/XTypeDescriptionEnumeration.hpp>
|
|
|
|
#include <com/sun/star/uno/Sequence.hxx>
|
|
|
|
#include <com/sun/star/uno/TypeClass.hpp>
|
|
|
|
#include <cppuhelper/implbase1.hxx>
|
|
|
|
#include "base.hxx"
|
|
|
|
|
|
|
|
namespace stoc_rdbtdp
|
|
|
|
{
|
2002-11-13 09:01:21 -06:00
|
|
|
|
|
|
|
typedef ::std::list< ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::reflection::XTypeDescription > > TypeDescriptionList;
|
|
|
|
|
2002-11-11 01:35:49 -06:00
|
|
|
class TypeDescriptionEnumerationImpl
|
|
|
|
: public cppu::WeakImplHelper1<
|
|
|
|
com::sun::star::reflection::XTypeDescriptionEnumeration >
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static rtl::Reference< TypeDescriptionEnumerationImpl > createInstance(
|
|
|
|
const ::com::sun::star::uno::Reference<
|
2004-08-12 06:18:04 -05:00
|
|
|
::com::sun::star::container::XHierarchicalNameAccess > & xTDMgr,
|
2002-11-11 01:35:49 -06:00
|
|
|
const rtl::OUString & rModuleName,
|
|
|
|
const ::com::sun::star::uno::Sequence<
|
|
|
|
::com::sun::star::uno::TypeClass > & rTypes,
|
|
|
|
::com::sun::star::reflection::TypeDescriptionSearchDepth eDepth,
|
|
|
|
const RegistryKeyList & rBaseKeys )
|
|
|
|
throw ( ::com::sun::star::reflection::NoSuchTypeNameException,
|
|
|
|
::com::sun::star::reflection::InvalidTypeNameException,
|
|
|
|
::com::sun::star::uno::RuntimeException );
|
|
|
|
|
|
|
|
virtual ~TypeDescriptionEnumerationImpl();
|
|
|
|
|
|
|
|
// XEnumeration (base of XTypeDescriptionEnumeration)
|
|
|
|
virtual sal_Bool SAL_CALL hasMoreElements()
|
|
|
|
throw ( ::com::sun::star::uno::RuntimeException );
|
|
|
|
virtual ::com::sun::star::uno::Any SAL_CALL nextElement()
|
|
|
|
throw ( ::com::sun::star::container::NoSuchElementException,
|
|
|
|
::com::sun::star::lang::WrappedTargetException,
|
|
|
|
::com::sun::star::uno::RuntimeException );
|
|
|
|
|
|
|
|
// XTypeDescriptionEnumeration
|
|
|
|
virtual ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::reflection::XTypeDescription > SAL_CALL
|
|
|
|
nextTypeDescription()
|
|
|
|
throw ( ::com::sun::star::container::NoSuchElementException,
|
|
|
|
::com::sun::star::uno::RuntimeException );
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Note: keys must be open (XRegistryKey->openKey(...)).
|
|
|
|
TypeDescriptionEnumerationImpl(
|
|
|
|
const ::com::sun::star::uno::Reference<
|
2004-08-12 06:18:04 -05:00
|
|
|
::com::sun::star::container::XHierarchicalNameAccess > & xTDMgr,
|
2002-11-11 01:35:49 -06:00
|
|
|
const RegistryKeyList & rModuleKeys,
|
|
|
|
const ::com::sun::star::uno::Sequence<
|
|
|
|
::com::sun::star::uno::TypeClass > & rTypes,
|
2004-03-30 09:15:39 -06:00
|
|
|
::com::sun::star::reflection::TypeDescriptionSearchDepth eDepth );
|
2002-11-11 01:35:49 -06:00
|
|
|
|
2003-10-09 04:24:08 -05:00
|
|
|
static bool match( ::RTTypeClass eType1,
|
|
|
|
::com::sun::star::uno::TypeClass eType2 );
|
2002-11-11 01:35:49 -06:00
|
|
|
bool queryMore();
|
|
|
|
::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::reflection::XTypeDescription > queryNext();
|
|
|
|
|
|
|
|
// members
|
|
|
|
osl::Mutex m_aMutex;
|
2002-11-13 09:01:21 -06:00
|
|
|
RegistryKeyList m_aModuleKeys;
|
|
|
|
RegistryKeyList m_aCurrentModuleSubKeys;
|
|
|
|
TypeDescriptionList m_aTypeDescs;
|
2002-11-11 01:35:49 -06:00
|
|
|
::com::sun::star::uno::Sequence<
|
|
|
|
::com::sun::star::uno::TypeClass > m_aTypes;
|
|
|
|
::com::sun::star::reflection::TypeDescriptionSearchDepth m_eDepth;
|
|
|
|
::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::container::XHierarchicalNameAccess > m_xTDMgr;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace stoc_rdbtdp
|
|
|
|
|
|
|
|
#endif /* _STOC_RDBTDP_TDENUMERATION_HXX */
|
|
|
|
|