2010-10-27 13:11:31 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-07-11 19:49:09 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
|
|
#ifndef _BASOBJ_HXX
|
|
|
|
#define _BASOBJ_HXX
|
|
|
|
|
|
|
|
#include <tools/ref.hxx>
|
|
|
|
#include <bastype.hxx>
|
|
|
|
#include <tools/pstm.hxx>
|
|
|
|
|
|
|
|
class SvTokenStream;
|
|
|
|
class SvMetaObject;
|
|
|
|
class SvIdlDataBase;
|
|
|
|
|
|
|
|
typedef SvMetaObject * (*CreateMetaObjectType)();
|
|
|
|
#define IDL_WRITE_COMPILER 0x8000
|
|
|
|
#define IDL_WRITE_BROWSER 0x4000
|
|
|
|
#define IDL_WRITE_CALLING 0x2000
|
|
|
|
#define IDL_WRITE_MASK 0xE000
|
|
|
|
|
|
|
|
#define C_PREF "C_"
|
|
|
|
|
|
|
|
enum WriteType
|
|
|
|
{
|
|
|
|
WRITE_IDL, WRITE_ODL, WRITE_SLOTMAP, WRITE_C_HEADER, WRITE_C_SOURCE,
|
|
|
|
WRITE_CXX_HEADER, WRITE_CXX_SOURCE, WRITE_DOCU
|
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
WA_METHOD = 0x1, WA_VARIABLE = 0x2, WA_ARGUMENT = 0x4,
|
|
|
|
WA_STRUCT = 0x8, WA_READONLY = 0x10
|
|
|
|
};
|
|
|
|
typedef int WriteAttribute;
|
|
|
|
|
|
|
|
#define SV_DECL_META_FACTORY1( Class, Super1, CLASS_ID ) \
|
2010-12-28 07:16:01 -08:00
|
|
|
SV_DECL_PERSIST1( Class, Super1, CLASS_ID )
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
|
|
#define SV_IMPL_META_FACTORY1( Class, Super1 ) \
|
2008-05-20 18:00:29 +00:00
|
|
|
SV_IMPL_PERSIST1( Class, Super1 )
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
|
|
class SvMetaObject : public SvPersistBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SV_DECL_META_FACTORY1( SvMetaObject, SvPersistBase, 14 )
|
|
|
|
SvMetaObject();
|
|
|
|
|
2010-11-03 15:49:08 +01:00
|
|
|
static void WriteTab( SvStream & rOutStm, sal_uInt16 nTab );
|
2011-01-13 09:32:03 +01:00
|
|
|
static sal_Bool TestAndSeekSpaceOnly( SvStream &, sal_uLong nBegPos );
|
2000-09-18 15:33:13 +00:00
|
|
|
static void Back2Delemitter( SvStream & );
|
|
|
|
static void WriteStars( SvStream & );
|
|
|
|
|
2010-11-03 15:49:08 +01:00
|
|
|
virtual sal_Bool ReadSvIdl( SvIdlDataBase &, SvTokenStream & rInStm );
|
|
|
|
virtual void WriteSvIdl( SvIdlDataBase & rBase, SvStream & rOutStm, sal_uInt16 nTab );
|
2000-09-18 15:33:13 +00:00
|
|
|
|
2010-11-03 15:49:08 +01:00
|
|
|
virtual void Write( SvIdlDataBase & rBase, SvStream & rOutStm, sal_uInt16 nTab,
|
2000-09-18 15:33:13 +00:00
|
|
|
WriteType, WriteAttribute = 0 );
|
|
|
|
};
|
|
|
|
SV_DECL_IMPL_REF(SvMetaObject)
|
|
|
|
SV_DECL_PERSIST_LIST(SvMetaObject,SvMetaObject *)
|
|
|
|
SV_IMPL_PERSIST_LIST(SvMetaObject,SvMetaObject *)
|
|
|
|
|
|
|
|
|
|
|
|
class SvMetaObjectMemberStack
|
|
|
|
{
|
|
|
|
SvMetaObjectMemberList aList;
|
|
|
|
public:
|
|
|
|
SvMetaObjectMemberStack() {;}
|
|
|
|
|
|
|
|
void Push( SvMetaObject * pObj )
|
|
|
|
{ aList.Insert( pObj, LIST_APPEND ); }
|
|
|
|
SvMetaObject * Pop() { return aList.Remove( aList.Count() -1 ); }
|
|
|
|
SvMetaObject * Top() const { return aList.GetObject( aList.Count() -1 ); }
|
|
|
|
void Clear() { aList.Clear(); }
|
2011-01-13 09:32:03 +01:00
|
|
|
sal_uLong Count() const { return aList.Count(); }
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
|
|
SvMetaObject * Get( TypeId nType )
|
|
|
|
{
|
|
|
|
SvMetaObject * pObj = aList.Last();
|
|
|
|
while( pObj )
|
|
|
|
{
|
|
|
|
if( pObj->IsA( nType ) )
|
|
|
|
return pObj;
|
|
|
|
pObj = aList.Prev();
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class SvMetaName : public SvMetaObject
|
|
|
|
{
|
|
|
|
SvString aName;
|
|
|
|
SvHelpContext aHelpContext;
|
|
|
|
SvHelpText aHelpText;
|
|
|
|
SvString aConfigName;
|
|
|
|
SvString aDescription;
|
|
|
|
|
|
|
|
protected:
|
2010-11-03 15:49:08 +01:00
|
|
|
virtual sal_Bool ReadNameSvIdl( SvIdlDataBase &, SvTokenStream & rInStm );
|
2000-09-18 15:33:13 +00:00
|
|
|
void DoReadContextSvIdl( SvIdlDataBase &, SvTokenStream & rInStm,
|
|
|
|
char c = '\0' );
|
|
|
|
virtual void ReadContextSvIdl( SvIdlDataBase &, SvTokenStream & rInStm );
|
|
|
|
virtual void WriteContextSvIdl( SvIdlDataBase & rBase,
|
2010-11-03 15:49:08 +01:00
|
|
|
SvStream & rOutStm, sal_uInt16 nTab );
|
2000-09-18 15:33:13 +00:00
|
|
|
virtual void ReadAttributesSvIdl( SvIdlDataBase & rBase,
|
|
|
|
SvTokenStream & rInStm );
|
|
|
|
virtual void WriteAttributesSvIdl( SvIdlDataBase & rBase,
|
2010-11-03 15:49:08 +01:00
|
|
|
SvStream & rOutStm, sal_uInt16 nTab );
|
|
|
|
virtual void WriteAttributes( SvIdlDataBase & rBase, SvStream & rOutStm, sal_uInt16 nTab,
|
2000-09-18 15:33:13 +00:00
|
|
|
WriteType, WriteAttribute = 0);
|
2010-11-03 15:49:08 +01:00
|
|
|
virtual void WriteContext( SvIdlDataBase & rBase, SvStream & rOutStm, sal_uInt16 nTab,
|
2000-09-18 15:33:13 +00:00
|
|
|
WriteType, WriteAttribute = 0);
|
|
|
|
public:
|
|
|
|
SV_DECL_META_FACTORY1( SvMetaName, SvMetaObject, 15 )
|
|
|
|
SvMetaName();
|
|
|
|
|
2012-01-27 07:52:36 +00:00
|
|
|
virtual sal_Bool SetName( const rtl::OString& rName, SvIdlDataBase * = NULL );
|
|
|
|
void SetDescription( const rtl::OString& rText )
|
2011-12-29 10:37:09 +00:00
|
|
|
{ aDescription.setString(rText); }
|
2000-09-18 15:33:13 +00:00
|
|
|
const SvHelpContext& GetHelpContext() const { return aHelpContext; }
|
|
|
|
virtual const SvString & GetName() const { return aName; }
|
|
|
|
virtual const SvString & GetHelpText() const { return aHelpText; }
|
|
|
|
virtual const SvString & GetConfigName() const{ return aConfigName; }
|
|
|
|
virtual const SvString& GetDescription() const{ return aDescription; }
|
|
|
|
|
2010-11-03 15:49:08 +01:00
|
|
|
virtual sal_Bool Test( SvIdlDataBase &, SvTokenStream & rInStm );
|
|
|
|
virtual sal_Bool ReadSvIdl( SvIdlDataBase &, SvTokenStream & rInStm );
|
|
|
|
virtual void WriteSvIdl( SvIdlDataBase & rBase, SvStream & rOutStm, sal_uInt16 nTab );
|
|
|
|
virtual void Write( SvIdlDataBase & rBase, SvStream & rOutStm, sal_uInt16 nTab,
|
2000-09-18 15:33:13 +00:00
|
|
|
WriteType, WriteAttribute = 0);
|
2006-06-19 09:39:54 +00:00
|
|
|
void WriteDescription( SvStream& rOutStm );
|
2000-09-18 15:33:13 +00:00
|
|
|
};
|
|
|
|
SV_DECL_IMPL_REF(SvMetaName)
|
|
|
|
SV_DECL_IMPL_PERSIST_LIST(SvMetaName,SvMetaName *)
|
|
|
|
|
|
|
|
|
|
|
|
SV_DECL_REF(SvMetaReference)
|
|
|
|
class SvMetaReference : public SvMetaName
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
SvMetaReferenceRef aRef;
|
|
|
|
public:
|
|
|
|
SV_DECL_META_FACTORY1( SvMetaReference, SvMetaName, 17 )
|
|
|
|
SvMetaReference();
|
|
|
|
|
|
|
|
const SvString & GetName() const
|
|
|
|
{
|
|
|
|
return ( !aRef.Is()
|
2012-01-26 09:46:41 +00:00
|
|
|
|| !SvMetaName::GetName().getString().isEmpty() )
|
2000-09-18 15:33:13 +00:00
|
|
|
? SvMetaName::GetName()
|
|
|
|
: aRef->GetName();
|
|
|
|
}
|
|
|
|
|
|
|
|
const SvString & GetHelpText() const
|
|
|
|
{
|
|
|
|
return ( !aRef.Is()
|
2012-01-26 09:46:41 +00:00
|
|
|
|| !SvMetaName::GetHelpText().getString().isEmpty() )
|
2000-09-18 15:33:13 +00:00
|
|
|
? SvMetaName::GetHelpText()
|
|
|
|
: aRef->GetHelpText();
|
|
|
|
}
|
|
|
|
|
|
|
|
const SvString & GetConfigName() const
|
|
|
|
{
|
|
|
|
return ( !aRef.Is()
|
2012-01-26 09:46:41 +00:00
|
|
|
|| !SvMetaName::GetConfigName().getString().isEmpty() )
|
2000-09-18 15:33:13 +00:00
|
|
|
? SvMetaName::GetConfigName()
|
|
|
|
: aRef->GetConfigName();
|
|
|
|
}
|
|
|
|
|
|
|
|
const SvString & GetDescription() const
|
|
|
|
{
|
|
|
|
return ( !aRef.Is()
|
2012-01-26 09:46:41 +00:00
|
|
|
|| !SvMetaName::GetDescription().getString().isEmpty() )
|
2000-09-18 15:33:13 +00:00
|
|
|
? SvMetaName::GetDescription()
|
|
|
|
: aRef->GetDescription();
|
|
|
|
}
|
|
|
|
SvMetaReference * GetRef() const { return aRef; }
|
|
|
|
void SetRef( SvMetaReference * pRef )
|
|
|
|
{ aRef = pRef; }
|
|
|
|
};
|
|
|
|
SV_IMPL_REF(SvMetaReference)
|
|
|
|
SV_DECL_IMPL_PERSIST_LIST(SvMetaReference,SvMetaReference *)
|
|
|
|
|
|
|
|
|
|
|
|
class SvMetaModule;
|
|
|
|
class SvMetaExtern : public SvMetaReference
|
|
|
|
{
|
2011-02-13 18:06:10 +01:00
|
|
|
SvMetaModule * pModule; // included in which module
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
|
|
SvUUId aUUId;
|
|
|
|
SvVersion aVersion;
|
2010-11-03 15:49:08 +01:00
|
|
|
sal_Bool bReadUUId;
|
|
|
|
sal_Bool bReadVersion;
|
2000-09-18 15:33:13 +00:00
|
|
|
public:
|
|
|
|
SV_DECL_META_FACTORY1( SvMetaExtern, SvMetaName, 16 )
|
|
|
|
SvMetaExtern();
|
|
|
|
|
|
|
|
SvMetaModule * GetModule() const;
|
|
|
|
|
|
|
|
const SvGlobalName &GetUUId() const;
|
|
|
|
const SvVersion & GetVersion() const { return aVersion; }
|
|
|
|
void SetModule( SvIdlDataBase & rBase );
|
2010-11-03 15:49:08 +01:00
|
|
|
virtual sal_Bool ReadSvIdl( SvIdlDataBase &, SvTokenStream & rInStm );
|
|
|
|
virtual void WriteSvIdl( SvIdlDataBase & rBase, SvStream & rOutStm, sal_uInt16 nTab );
|
2000-09-18 15:33:13 +00:00
|
|
|
|
2010-11-03 15:49:08 +01:00
|
|
|
virtual void Write( SvIdlDataBase & rBase, SvStream & rOutStm, sal_uInt16 nTab,
|
2000-09-18 15:33:13 +00:00
|
|
|
WriteType, WriteAttribute = 0);
|
|
|
|
protected:
|
|
|
|
virtual void ReadAttributesSvIdl( SvIdlDataBase &, SvTokenStream & rInStm );
|
|
|
|
virtual void WriteAttributesSvIdl( SvIdlDataBase & rBase,
|
2010-11-03 15:49:08 +01:00
|
|
|
SvStream & rOutStm, sal_uInt16 nTab );
|
|
|
|
virtual void WriteAttributes( SvIdlDataBase & rBase, SvStream & rOutStm, sal_uInt16 nTab,
|
2000-09-18 15:33:13 +00:00
|
|
|
WriteType, WriteAttribute = 0);
|
|
|
|
};
|
|
|
|
SV_DECL_IMPL_REF(SvMetaExtern)
|
|
|
|
SV_DECL_IMPL_PERSIST_LIST(SvMetaExtern,SvMetaExtern *)
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _BASOBJ_HXX
|
|
|
|
|
|
|
|
|
2010-10-27 13:11:31 +01:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|