2000-09-18 15:33:13 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 08:38:53 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 15:33:13 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 15:33:13 +00:00
|
|
|
*
|
2008-04-11 08:38:53 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 15:33:13 +00:00
|
|
|
*
|
2008-04-11 08:38:53 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 15:33:13 +00:00
|
|
|
*
|
2008-04-11 08:38:53 +00: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.
|
2000-09-18 15:33:13 +00:00
|
|
|
*
|
2008-04-11 08:38:53 +00: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).
|
2000-09-18 15:33:13 +00:00
|
|
|
*
|
2008-04-11 08:38:53 +00: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.
|
2000-09-18 15:33:13 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 11:47:14 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_idl.hxx"
|
|
|
|
|
2000-09-18 15:33:13 +00:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <tools/debug.hxx>
|
|
|
|
|
|
|
|
#include <attrib.hxx>
|
|
|
|
#include <basobj.hxx>
|
|
|
|
#include <module.hxx>
|
|
|
|
#include <globals.hxx>
|
|
|
|
#include <database.hxx>
|
|
|
|
|
|
|
|
/****************** SvMetaObject *****************************************/
|
|
|
|
SV_IMPL_META_FACTORY1( SvMetaObject, SvRttiBase )
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaObject::SvMetaObject()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
SvMetaObject::SvMetaObject()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvMetaObject::Load( SvPersistStream & )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvMetaObject::Save( SvPersistStream & )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaObject::WriteTab()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
#ifdef IDL_COMPILER
|
|
|
|
void SvMetaObject::WriteTab( SvStream & rOutStm, USHORT nTab )
|
|
|
|
{
|
|
|
|
while( nTab-- )
|
|
|
|
rOutStm << " ";
|
|
|
|
// rOutStm << '\t';
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaObject::WriteStart()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
void SvMetaObject::WriteStars( SvStream & rOutStm )
|
|
|
|
{
|
|
|
|
rOutStm << '/';
|
|
|
|
for( int i = 6; i > 0; i-- )
|
|
|
|
rOutStm << "**********";
|
|
|
|
rOutStm << '/' << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaObject::TestAndSeekSpaceOnly()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
BOOL SvMetaObject::TestAndSeekSpaceOnly( SvStream & rOutStm, ULONG nBegPos )
|
|
|
|
{
|
|
|
|
// keine leeren Klammern schreiben
|
|
|
|
ULONG nPos = rOutStm.Tell();
|
|
|
|
rOutStm.Seek( nBegPos );
|
|
|
|
BOOL bOnlySpace = TRUE;
|
|
|
|
while( bOnlySpace && rOutStm.Tell() < nPos )
|
|
|
|
{
|
|
|
|
char c;
|
|
|
|
rOutStm >> c;
|
|
|
|
if( !isspace( c ) )
|
|
|
|
bOnlySpace = FALSE;
|
|
|
|
}
|
|
|
|
if( bOnlySpace )
|
|
|
|
// nichts geschrieben
|
|
|
|
rOutStm.Seek( nBegPos );
|
|
|
|
else
|
|
|
|
rOutStm.Seek( nPos );
|
|
|
|
return bOnlySpace;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaObject::Back2Delemitter()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
void SvMetaObject::Back2Delemitter( SvStream & rOutStm )
|
|
|
|
{
|
|
|
|
// keine leeren Klammern schreiben
|
|
|
|
ULONG nPos = rOutStm.Tell();
|
|
|
|
rOutStm.SeekRel( -1 );
|
|
|
|
char c = 0;
|
|
|
|
rOutStm >> c;
|
|
|
|
|
|
|
|
while( isspace( c ) && rOutStm.Tell() != 1 )
|
|
|
|
{
|
|
|
|
rOutStm.SeekRel( -2 );
|
|
|
|
rOutStm >> c;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( c == ';' || c == ',' )
|
|
|
|
rOutStm.SeekRel( -1 );
|
|
|
|
else
|
|
|
|
rOutStm.Seek( nPos );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaObject::ReadSvIdl()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
2006-06-19 09:41:48 +00:00
|
|
|
BOOL SvMetaObject::ReadSvIdl( SvIdlDataBase &, SvTokenStream & )
|
2000-09-18 15:33:13 +00:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaObject::WriteSvIdl()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
void SvMetaObject::WriteSvIdl( SvIdlDataBase &, SvStream &, USHORT /*nTab */ )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaObject::Write()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
void SvMetaObject::Write( SvIdlDataBase &, SvStream &, USHORT /*nTab */,
|
|
|
|
WriteType, WriteAttribute )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaObject::WriteCxx()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
void SvMetaObject::WriteCxx( SvIdlDataBase &, SvStream &, USHORT /*nTab */ )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaObject::WriteHxx()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
void SvMetaObject::WriteHxx( SvIdlDataBase &, SvStream &, USHORT /*nTab */ )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************** SvMetaName *****************************************/
|
|
|
|
SV_IMPL_META_FACTORY1( SvMetaName, SvMetaObject );
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaName::SvMetaName()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
SvMetaName::SvMetaName()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvMetaName::Load( SvPersistStream & rStm )
|
|
|
|
{
|
|
|
|
SvMetaObject::Load( rStm );
|
|
|
|
BYTE nMask;
|
|
|
|
rStm >> nMask;
|
|
|
|
|
|
|
|
if( nMask >= 0x20 )
|
|
|
|
{
|
|
|
|
rStm.SetError( SVSTREAM_FILEFORMAT_ERROR );
|
2008-11-10 15:06:12 +00:00
|
|
|
DBG_ERROR( "wrong format" );
|
2000-09-18 15:33:13 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if( nMask & 0x01 ) rStm >> aName;
|
|
|
|
if( nMask & 0x02 ) rStm >> aHelpContext;
|
|
|
|
if( nMask & 0x04 ) rStm >> aHelpText;
|
|
|
|
if( nMask & 0x08 ) rStm >> aConfigName;
|
|
|
|
if( nMask & 0x10 ) rStm >> aDescription;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvMetaName::Save( SvPersistStream & rStm )
|
|
|
|
{
|
|
|
|
SvMetaObject::Save( rStm );
|
|
|
|
BYTE nMask = 0;
|
|
|
|
if( aName.IsSet() ) nMask |= 0x01;
|
|
|
|
if( aHelpContext.IsSet() ) nMask |= 0x02;
|
|
|
|
if( aHelpText.IsSet() ) nMask |= 0x04;
|
|
|
|
if( aConfigName.IsSet() ) nMask |= 0x08;
|
|
|
|
if( aDescription.IsSet() ) nMask |= 0x10;
|
|
|
|
|
|
|
|
rStm << nMask;
|
|
|
|
if( nMask & 0x01 ) rStm << aName;
|
|
|
|
if( nMask & 0x02 ) rStm << aHelpContext;
|
|
|
|
if( nMask & 0x04 ) rStm << aHelpText;
|
|
|
|
if( nMask & 0x08 ) rStm << aConfigName;
|
|
|
|
if( nMask & 0x10 ) rStm << aDescription;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
BOOL SvMetaName::SetName( const ByteString & rName, SvIdlDataBase * )
|
|
|
|
{
|
|
|
|
aName = rName;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef IDL_COMPILER
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaName::ReadNameSvIdl()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
BOOL SvMetaName::ReadNameSvIdl( SvIdlDataBase & rBase,
|
|
|
|
SvTokenStream & rInStm )
|
|
|
|
{
|
|
|
|
UINT32 nTokPos = rInStm.Tell();
|
|
|
|
SvToken * pTok = rInStm.GetToken_Next();
|
|
|
|
|
|
|
|
// Modulnamen lesen
|
|
|
|
if( pTok->IsIdentifier() )
|
|
|
|
if( SetName( pTok->GetString(), &rBase ) )
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
rInStm.Seek( nTokPos );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaName::ReadSvIdl()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
void SvMetaName::ReadAttributesSvIdl( SvIdlDataBase & rBase,
|
|
|
|
SvTokenStream & rInStm )
|
|
|
|
{
|
|
|
|
UINT32 nTokPos = rInStm.Tell();
|
|
|
|
if( aName.ReadSvIdl( SvHash_Name(), rInStm ) )
|
|
|
|
{
|
|
|
|
if( !SetName( aName, &rBase ) )
|
|
|
|
rInStm.Seek( nTokPos );
|
|
|
|
}
|
|
|
|
aHelpContext.ReadSvIdl( rBase, SvHash_HelpContext(), rInStm );
|
|
|
|
aHelpText.ReadSvIdl( rBase, rInStm );
|
|
|
|
aConfigName.ReadSvIdl( SvHash_ConfigName(), rInStm );
|
|
|
|
aDescription.ReadSvIdl( SvHash_Description(), rInStm );
|
|
|
|
/*
|
|
|
|
aHelpContext.ReadSvIdl( GetModule()->GetInfo()->GetHelpContextContainer(),
|
|
|
|
rInStm );
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaName::DoReadContextSvIdl()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
void SvMetaName::DoReadContextSvIdl( SvIdlDataBase & rBase,
|
|
|
|
SvTokenStream & rInStm, char cDel )
|
|
|
|
{
|
|
|
|
UINT32 nBeginPos = 0; // kann mit Tell nicht vorkommen
|
|
|
|
while( nBeginPos != rInStm.Tell() )
|
|
|
|
{
|
|
|
|
nBeginPos = rInStm.Tell();
|
|
|
|
ReadContextSvIdl( rBase, rInStm );
|
|
|
|
if( cDel == '\0' )
|
|
|
|
rInStm.ReadDelemiter();
|
|
|
|
else
|
|
|
|
rInStm.Read( cDel );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaName::ReadSvIdl()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
2006-06-19 09:41:48 +00:00
|
|
|
void SvMetaName::ReadContextSvIdl( SvIdlDataBase &, SvTokenStream & )
|
2000-09-18 15:33:13 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaName::Test()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
BOOL SvMetaName::Test( SvIdlDataBase &, SvTokenStream & )
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaName::WriteContextSvIdl()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
2006-06-19 09:41:48 +00:00
|
|
|
void SvMetaName::WriteContextSvIdl( SvIdlDataBase &, SvStream &, USHORT )
|
2000-09-18 15:33:13 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaName::WriteDescription()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
2006-06-19 09:41:48 +00:00
|
|
|
void SvMetaName::WriteDescription( SvStream & rOutStm )
|
2000-09-18 15:33:13 +00:00
|
|
|
{
|
|
|
|
rOutStm << "<DESCRIPTION>" << endl;
|
|
|
|
|
2006-06-19 09:41:48 +00:00
|
|
|
ByteString aDesc( GetDescription() );
|
|
|
|
USHORT nPos = aDesc.Search( '\n' );
|
2000-09-18 15:33:13 +00:00
|
|
|
while ( nPos != STRING_NOTFOUND )
|
|
|
|
{
|
2006-06-19 09:41:48 +00:00
|
|
|
rOutStm << aDesc.Copy( 0, nPos ).GetBuffer() << endl;
|
|
|
|
aDesc.Erase(0,nPos+1);
|
|
|
|
nPos = aDesc.Search( '\n' );
|
2000-09-18 15:33:13 +00:00
|
|
|
}
|
|
|
|
|
2006-06-19 09:41:48 +00:00
|
|
|
rOutStm << aDesc.GetBuffer() << endl << "</DESCRIPTION>" << endl;
|
2000-09-18 15:33:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaName::WriteAttributesIdl()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
void SvMetaName::WriteAttributesSvIdl( SvIdlDataBase & rBase,
|
|
|
|
SvStream & rOutStm,
|
|
|
|
USHORT nTab )
|
|
|
|
{
|
|
|
|
if( aHelpContext.IsSet() || aHelpText.IsSet() || aConfigName.IsSet() )
|
|
|
|
{
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
rOutStm << "// class SvMetaName" << endl;
|
|
|
|
}
|
|
|
|
if( aHelpContext.IsSet() )
|
|
|
|
{
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
aHelpContext.WriteSvIdl( SvHash_HelpContext(), rOutStm, nTab );
|
|
|
|
rOutStm << ';' << endl;
|
|
|
|
}
|
|
|
|
if( aHelpText.IsSet() )
|
|
|
|
{
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
aHelpText.WriteSvIdl( rBase, rOutStm, nTab );
|
|
|
|
rOutStm << ';' << endl;
|
|
|
|
}
|
|
|
|
if( aConfigName.IsSet() )
|
|
|
|
{
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
aConfigName.WriteSvIdl( SvHash_ConfigName(), rOutStm, nTab );
|
|
|
|
rOutStm << ';' << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaName::ReadSvIdl()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
BOOL SvMetaName::ReadSvIdl( SvIdlDataBase & rBase, SvTokenStream & rInStm )
|
|
|
|
{
|
|
|
|
UINT32 nTokPos = rInStm.Tell();
|
|
|
|
BOOL bOk = TRUE;
|
|
|
|
if( rInStm.Read( '[' ) )
|
|
|
|
{
|
|
|
|
UINT32 nBeginPos = 0; // kann mit Tell nicht vorkommen
|
|
|
|
while( nBeginPos != rInStm.Tell() )
|
|
|
|
{
|
|
|
|
nBeginPos = rInStm.Tell();
|
|
|
|
ReadAttributesSvIdl( rBase, rInStm );
|
|
|
|
rInStm.ReadDelemiter();
|
|
|
|
}
|
|
|
|
bOk = rInStm.Read( ']' );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( bOk )
|
|
|
|
{
|
|
|
|
if( rInStm.Read( '{' ) )
|
|
|
|
{
|
|
|
|
DoReadContextSvIdl( rBase, rInStm );
|
|
|
|
bOk = rInStm.Read( '}' );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !bOk )
|
|
|
|
rInStm.Seek( nTokPos );
|
|
|
|
return bOk;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaName::WriteSvIdl()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
void SvMetaName::WriteSvIdl( SvIdlDataBase & rBase, SvStream & rOutStm,
|
|
|
|
USHORT nTab )
|
|
|
|
{
|
|
|
|
ULONG nBeginPos = rOutStm.Tell();
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
rOutStm << '[' << endl;
|
|
|
|
ULONG nOldPos = rOutStm.Tell();
|
|
|
|
WriteAttributesSvIdl( rBase, rOutStm, nTab +1 );
|
|
|
|
|
|
|
|
// keine leeren Klammern schreiben
|
|
|
|
if( TestAndSeekSpaceOnly( rOutStm, nOldPos ) )
|
|
|
|
// nichts geschrieben
|
|
|
|
rOutStm.Seek( nBeginPos );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
rOutStm << ']';
|
|
|
|
nBeginPos = rOutStm.Tell();
|
|
|
|
rOutStm << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
rOutStm << '{' << endl;
|
|
|
|
nOldPos = rOutStm.Tell();
|
|
|
|
WriteContextSvIdl( rBase, rOutStm, nTab +1 );
|
|
|
|
|
|
|
|
// keine leeren Klammern schreiben
|
|
|
|
if( TestAndSeekSpaceOnly( rOutStm, nOldPos ) )
|
|
|
|
// nichts geschrieben
|
|
|
|
rOutStm.Seek( nBeginPos );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
rOutStm << '}';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaName::Write()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
void SvMetaName::Write( SvIdlDataBase & rBase, SvStream & rOutStm,
|
|
|
|
USHORT nTab,
|
|
|
|
WriteType nT, WriteAttribute nA )
|
|
|
|
{
|
|
|
|
ULONG nBeginPos = rOutStm.Tell();
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
rOutStm << '[' << endl;
|
|
|
|
ULONG nOldPos = rOutStm.Tell();
|
|
|
|
WriteAttributes( rBase, rOutStm, nTab +1, nT, nA );
|
|
|
|
|
|
|
|
// keine leeren Klammern schreiben
|
|
|
|
ULONG nPos = rOutStm.Tell();
|
|
|
|
rOutStm.Seek( nOldPos );
|
|
|
|
BOOL bOnlySpace = TRUE;
|
|
|
|
while( bOnlySpace && rOutStm.Tell() < nPos )
|
|
|
|
{
|
|
|
|
char c;
|
|
|
|
rOutStm >> c;
|
|
|
|
if( !isspace( c ) )
|
|
|
|
bOnlySpace = FALSE;
|
|
|
|
}
|
|
|
|
if( bOnlySpace )
|
|
|
|
// nichts geschrieben
|
|
|
|
rOutStm.Seek( nBeginPos );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rOutStm.Seek( nPos );
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
rOutStm << ']' << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaName::WriteAttributes()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
2006-06-19 09:41:48 +00:00
|
|
|
void SvMetaName::WriteAttributes( SvIdlDataBase &, SvStream & rOutStm,
|
2000-09-18 15:33:13 +00:00
|
|
|
USHORT nTab,
|
2006-06-19 09:41:48 +00:00
|
|
|
WriteType, WriteAttribute )
|
2000-09-18 15:33:13 +00:00
|
|
|
{
|
|
|
|
if( GetHelpText().IsSet() || GetHelpContext().IsSet() )
|
|
|
|
{
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
rOutStm << "// class SvMetaName" << endl;
|
|
|
|
}
|
|
|
|
if( GetHelpText().IsSet() )
|
|
|
|
{
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
rOutStm << "helpstring(\"" << GetHelpText().GetBuffer() << "\")," << endl;
|
|
|
|
}
|
|
|
|
if( GetHelpContext().IsSet() )
|
|
|
|
{
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
rOutStm << "helpcontext("
|
2004-02-26 12:47:39 +00:00
|
|
|
<< ByteString::CreateFromInt64(
|
|
|
|
GetHelpContext().GetValue() ).GetBuffer()
|
2000-09-18 15:33:13 +00:00
|
|
|
<< ")," << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaName::WriteContext()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
2006-06-19 09:41:48 +00:00
|
|
|
void SvMetaName::WriteContext( SvIdlDataBase &, SvStream &,
|
|
|
|
USHORT,
|
|
|
|
WriteType, WriteAttribute )
|
2000-09-18 15:33:13 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif // IDL_COMPILER
|
|
|
|
|
|
|
|
/****************** SvMetaReference *****************************************/
|
|
|
|
SV_IMPL_META_FACTORY1( SvMetaReference, SvMetaName );
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaReference::SvMetaReference()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
SvMetaReference::SvMetaReference()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvMetaReference::Load( SvPersistStream & rStm )
|
|
|
|
{
|
|
|
|
SvMetaName::Load( rStm );
|
|
|
|
|
|
|
|
BYTE nMask;
|
|
|
|
rStm >> nMask;
|
|
|
|
if( nMask >= 0x2 )
|
|
|
|
{
|
|
|
|
rStm.SetError( SVSTREAM_FILEFORMAT_ERROR );
|
2008-11-10 15:06:12 +00:00
|
|
|
DBG_ERROR( "wrong format" );
|
2000-09-18 15:33:13 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if( nMask & 0x01 )
|
|
|
|
{
|
|
|
|
SvMetaReference * pRef;
|
|
|
|
rStm >> pRef;
|
|
|
|
aRef = pRef;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvMetaReference::Save( SvPersistStream & rStm )
|
|
|
|
{
|
|
|
|
SvMetaName::Save( rStm );
|
|
|
|
|
|
|
|
// Maske erstellen
|
|
|
|
BYTE nMask = 0;
|
|
|
|
if( aRef.Is() )
|
|
|
|
nMask |= 0x01;
|
|
|
|
|
|
|
|
// Daten schreiben
|
|
|
|
rStm << nMask;
|
|
|
|
if( nMask & 0x01 ) rStm << aRef;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
/****************** SvMetaExtern ******************************************/
|
|
|
|
SV_IMPL_META_FACTORY1( SvMetaExtern, SvMetaReference );
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaExtern::SvMetaExtern()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
SvMetaExtern::SvMetaExtern()
|
|
|
|
: pModule( NULL )
|
|
|
|
, bReadUUId( FALSE )
|
|
|
|
, bReadVersion( FALSE )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvMetaExtern::Load( SvPersistStream & rStm )
|
|
|
|
{
|
|
|
|
SvMetaReference::Load( rStm );
|
|
|
|
|
|
|
|
BYTE nMask;
|
|
|
|
rStm >> nMask;
|
|
|
|
if( nMask >= 0x20 )
|
|
|
|
{
|
|
|
|
rStm.SetError( SVSTREAM_FILEFORMAT_ERROR );
|
2008-11-10 15:06:12 +00:00
|
|
|
DBG_ERROR( "wrong format" );
|
2000-09-18 15:33:13 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if( nMask & 0x01 ) rStm >> pModule;
|
|
|
|
if( nMask & 0x02 ) rStm >> aUUId;
|
|
|
|
if( nMask & 0x04 ) rStm >> aVersion;
|
|
|
|
if( nMask & 0x08 ) bReadUUId = TRUE;
|
|
|
|
if( nMask & 0x10 ) bReadVersion = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvMetaExtern::Save( SvPersistStream & rStm )
|
|
|
|
{
|
|
|
|
SvMetaReference::Save( rStm );
|
|
|
|
|
|
|
|
// Maske erstellen
|
|
|
|
BYTE nMask = 0;
|
|
|
|
if( pModule ) nMask |= 0x01;
|
|
|
|
if( aUUId != SvGlobalName() ) nMask |= 0x02;
|
|
|
|
if( aVersion != SvVersion() ) nMask |= 0x04;
|
|
|
|
if( bReadUUId ) nMask |= 0x08;
|
|
|
|
if( bReadVersion ) nMask |= 0x10;
|
|
|
|
|
|
|
|
// Daten schreiben
|
|
|
|
rStm << nMask;
|
|
|
|
if( nMask & 0x01 ) rStm << pModule;
|
|
|
|
if( nMask & 0x02 ) rStm << aUUId;
|
|
|
|
if( nMask & 0x04 ) rStm << aVersion;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaExtern::GetModule()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
SvMetaModule * SvMetaExtern::GetModule() const
|
|
|
|
{
|
2008-11-10 15:06:12 +00:00
|
|
|
DBG_ASSERT( pModule != NULL, "module not set" );
|
2000-09-18 15:33:13 +00:00
|
|
|
return pModule;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaExtern::GetUUId()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
const SvGlobalName & SvMetaExtern::GetUUId() const
|
|
|
|
{
|
|
|
|
#ifdef IDL_COMPILER
|
|
|
|
if( aUUId == SvGlobalName() )
|
|
|
|
GetModule()->FillNextName( &((SvMetaExtern *)this)->aUUId );
|
|
|
|
#endif
|
|
|
|
return aUUId;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef IDL_COMPILER
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaExtern::SetModule()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
void SvMetaExtern::SetModule( SvIdlDataBase & rBase )
|
|
|
|
{
|
|
|
|
pModule = (SvMetaModule *)rBase.GetStack().Get( TYPE( SvMetaModule ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaExtern::ReadAttributesSvIdl()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
void SvMetaExtern::ReadAttributesSvIdl( SvIdlDataBase & rBase,
|
|
|
|
SvTokenStream & rInStm )
|
|
|
|
{
|
|
|
|
SvMetaReference::ReadAttributesSvIdl( rBase, rInStm );
|
|
|
|
if( aUUId.ReadSvIdl( rBase, rInStm ) )
|
|
|
|
bReadUUId = TRUE;
|
|
|
|
if( aVersion.ReadSvIdl( rInStm ) )
|
|
|
|
bReadVersion = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaExtern::WriteAttributesSvIdl()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
void SvMetaExtern::WriteAttributesSvIdl( SvIdlDataBase & rBase,
|
|
|
|
SvStream & rOutStm, USHORT nTab )
|
|
|
|
{
|
|
|
|
SvMetaReference::WriteAttributesSvIdl( rBase, rOutStm, nTab );
|
|
|
|
if( bReadUUId || bReadVersion )
|
|
|
|
{
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
rOutStm << "// class SvMetaExtern" << endl;
|
|
|
|
|
|
|
|
if( bReadUUId )
|
|
|
|
{
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
aUUId.WriteSvIdl( rOutStm );
|
|
|
|
rOutStm << ';' << endl;
|
|
|
|
}
|
|
|
|
if( bReadVersion )
|
|
|
|
{
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
aVersion.WriteSvIdl( rOutStm );
|
|
|
|
rOutStm << ';' << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaExtern::ReadSvIdl()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
BOOL SvMetaExtern::ReadSvIdl( SvIdlDataBase & rBase, SvTokenStream & rInStm )
|
|
|
|
{
|
|
|
|
SetModule( rBase );
|
|
|
|
GetUUId(); // Id wird angelegt
|
|
|
|
return SvMetaReference::ReadSvIdl( rBase, rInStm );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaExtern::WriteSvIdl()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
void SvMetaExtern::WriteSvIdl( SvIdlDataBase & rBase, SvStream & rOutStm,
|
|
|
|
USHORT nTab )
|
|
|
|
{
|
|
|
|
SvMetaReference::WriteSvIdl( rBase, rOutStm, nTab );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaExtern::Write()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
void SvMetaExtern::Write( SvIdlDataBase & rBase, SvStream & rOutStm,
|
|
|
|
USHORT nTab,
|
|
|
|
WriteType nT, WriteAttribute nA )
|
|
|
|
{
|
|
|
|
SvMetaReference::Write( rBase, rOutStm, nTab, nT, nA );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* SvMetaExtern::WriteAttributes()
|
|
|
|
|*
|
|
|
|
|* Beschreibung
|
|
|
|
*************************************************************************/
|
|
|
|
void SvMetaExtern::WriteAttributes( SvIdlDataBase & rBase, SvStream & rOutStm,
|
|
|
|
USHORT nTab,
|
|
|
|
WriteType nT, WriteAttribute nA )
|
|
|
|
{
|
|
|
|
SvMetaReference::WriteAttributes( rBase, rOutStm, nTab, nT, nA );
|
|
|
|
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
rOutStm << "// class SvMetaExtern" << endl;
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
rOutStm << "uuid(" << ByteString( GetUUId().GetHexName(), RTL_TEXTENCODING_UTF8 ).GetBuffer() << ")," << endl;
|
|
|
|
WriteTab( rOutStm, nTab );
|
|
|
|
rOutStm << "version(" << ByteString::CreateFromInt32( aVersion.GetMajorVersion() ).GetBuffer() << '.'
|
|
|
|
<< ByteString::CreateFromInt32( aVersion.GetMinorVersion() ).GetBuffer() << ")," << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // IDL_COMPILER
|
|
|
|
|
|
|
|
|