2002-03-08 07:45:36 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-07 12:22:08 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2002-03-08 07:45:36 -06:00
|
|
|
*
|
2005-09-07 12:22:08 -05:00
|
|
|
* $RCSfile: pe_base.cxx,v $
|
2002-03-08 07:45:36 -06:00
|
|
|
*
|
2007-09-18 08:14:16 -05:00
|
|
|
* $Revision: 1.6 $
|
2002-03-08 07:45:36 -06:00
|
|
|
*
|
2007-09-18 08:14:16 -05:00
|
|
|
* last change: $Author: vg $ $Date: 2007-09-18 14:11:22 $
|
2002-03-08 07:45:36 -06:00
|
|
|
*
|
2005-09-07 12:22:08 -05:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2002-03-08 07:45:36 -06:00
|
|
|
*
|
|
|
|
*
|
2005-09-07 12:22:08 -05:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2002-03-08 07:45:36 -06:00
|
|
|
*
|
2005-09-07 12:22:08 -05: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.
|
2002-03-08 07:45:36 -06:00
|
|
|
*
|
2005-09-07 12:22:08 -05: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.
|
2002-03-08 07:45:36 -06:00
|
|
|
*
|
2005-09-07 12:22:08 -05: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
|
2002-03-08 07:45:36 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include <precomp.h>
|
|
|
|
#include "pe_base.hxx"
|
|
|
|
|
|
|
|
|
|
|
|
// NOT FULLY DECLARED SERVICES
|
|
|
|
#include <cosv/template/tpltools.hxx>
|
|
|
|
#include <ary/cpp/c_rwgate.hxx>
|
|
|
|
#include <ary/cpp/ca_type.hxx>
|
|
|
|
#include "pe_type.hxx"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace cpp {
|
|
|
|
|
|
|
|
static const PE_Base::Base aNullBase_;
|
|
|
|
|
|
|
|
|
|
|
|
PE_Base::PE_Base( Cpp_PE * i_pParent )
|
|
|
|
: Cpp_PE(i_pParent),
|
|
|
|
pStati(new PeStatusArray<PE_Base>)
|
|
|
|
// aBaseIds,
|
|
|
|
// pSpType,
|
|
|
|
// pSpuBaseName
|
|
|
|
{
|
|
|
|
Setup_StatusFunctions();
|
|
|
|
aBaseIds.reserve(4);
|
|
|
|
|
|
|
|
pSpType = new SP_Type(*this);
|
|
|
|
pSpuBaseName = new SPU_BaseName(*pSpType, 0, &PE_Base::SpReturn_BaseName);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PE_Base::~PE_Base()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Base::Call_Handler( const cpp::Token & i_rTok )
|
|
|
|
{
|
|
|
|
pStati->Cur().Call_Handler(i_rTok.TypeId(), i_rTok.Text());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Base::Setup_StatusFunctions()
|
|
|
|
{
|
|
|
|
typedef CallFunction<PE_Base>::F_Tok F_Tok;
|
2002-05-07 12:32:25 -05:00
|
|
|
static F_Tok stateF_startOfNext[] = { &PE_Base::On_startOfNext_Identifier,
|
|
|
|
&PE_Base::On_startOfNext_public,
|
|
|
|
&PE_Base::On_startOfNext_protected,
|
|
|
|
&PE_Base::On_startOfNext_private,
|
|
|
|
&PE_Base::On_startOfNext_virtual,
|
|
|
|
&PE_Base::On_startOfNext_DoubleColon };
|
2002-03-08 07:45:36 -06:00
|
|
|
static INT16 stateT_startOfNext[] = { Tid_Identifier,
|
|
|
|
Tid_public,
|
|
|
|
Tid_protected,
|
|
|
|
Tid_private,
|
|
|
|
Tid_virtual,
|
|
|
|
Tid_DoubleColon };
|
2002-05-07 12:32:25 -05:00
|
|
|
static F_Tok stateF_inName[] = { &PE_Base::On_inName_Identifier,
|
|
|
|
&PE_Base::On_inName_virtual,
|
|
|
|
&PE_Base::On_inName_SwBracket_Left,
|
|
|
|
&PE_Base::On_inName_DoubleColon,
|
|
|
|
&PE_Base::On_inName_Comma };
|
2002-03-08 07:45:36 -06:00
|
|
|
static INT16 stateT_inName[] = { Tid_Identifier,
|
|
|
|
Tid_virtual,
|
|
|
|
Tid_SwBracket_Left,
|
|
|
|
Tid_DoubleColon,
|
|
|
|
Tid_Comma };
|
|
|
|
|
|
|
|
SEMPARSE_CREATE_STATUS(PE_Base, startOfNext, Hdl_SyntaxError);
|
|
|
|
SEMPARSE_CREATE_STATUS(PE_Base, inName, Hdl_SyntaxError);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Base::Hdl_SyntaxError( const char * i_sText)
|
|
|
|
{
|
|
|
|
StdHandlingOfSyntaxError(i_sText);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Base::InitData()
|
|
|
|
{
|
|
|
|
pStati->SetCur(startOfNext);
|
|
|
|
csv::erase_container(aBaseIds);
|
|
|
|
aBaseIds.push_back(aNullBase_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Base::TransferData()
|
|
|
|
{
|
|
|
|
// Does nothing.
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Base::SpReturn_BaseName()
|
|
|
|
{
|
|
|
|
CurObject().nId = pSpuBaseName->Child().Result_Type().Id();
|
|
|
|
|
|
|
|
static StreamStr aBaseName(100);
|
|
|
|
aBaseName.seekp(0);
|
|
|
|
pSpuBaseName->Child().Result_Type().Get_Text( aBaseName, Env().AryGate().RoGate() );
|
|
|
|
|
|
|
|
Env().Event_Class_FinishedBase(aBaseName.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Base::On_startOfNext_public(const char *)
|
|
|
|
{
|
|
|
|
SetTokenResult(done, stay);
|
|
|
|
pStati->SetCur(inName);
|
|
|
|
|
|
|
|
CurObject().eProtection = ary::cpp::PROTECT_public;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Base::On_startOfNext_protected(const char *)
|
|
|
|
{
|
|
|
|
SetTokenResult(done, stay);
|
|
|
|
pStati->SetCur(inName);
|
|
|
|
|
|
|
|
CurObject().eProtection = ary::cpp::PROTECT_protected;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Base::On_startOfNext_private(const char *)
|
|
|
|
{
|
|
|
|
SetTokenResult(done, stay);
|
|
|
|
pStati->SetCur(inName);
|
|
|
|
|
|
|
|
CurObject().eProtection = ary::cpp::PROTECT_private;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Base::On_startOfNext_virtual(const char *)
|
|
|
|
{
|
|
|
|
SetTokenResult(done, stay);
|
|
|
|
|
|
|
|
CurObject().eVirtuality = ary::cpp::VIRTUAL_virtual;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-06-19 06:03:38 -05:00
|
|
|
PE_Base::On_startOfNext_Identifier(const char * )
|
2002-03-08 07:45:36 -06:00
|
|
|
{
|
|
|
|
pSpuBaseName->Push(not_done);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Base::On_startOfNext_DoubleColon(const char *)
|
|
|
|
{
|
|
|
|
pSpuBaseName->Push(not_done);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-06-19 06:03:38 -05:00
|
|
|
PE_Base::On_inName_Identifier(const char * )
|
2002-03-08 07:45:36 -06:00
|
|
|
{
|
|
|
|
pSpuBaseName->Push(not_done);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Base::On_inName_virtual(const char *)
|
|
|
|
{
|
|
|
|
SetTokenResult(done, stay);
|
|
|
|
|
|
|
|
CurObject().eVirtuality = ary::cpp::VIRTUAL_virtual;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Base::On_inName_DoubleColon(const char *)
|
|
|
|
{
|
|
|
|
pSpuBaseName->Push(not_done);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Base::On_inName_Comma(const char *)
|
|
|
|
{
|
|
|
|
SetTokenResult(done, stay);
|
|
|
|
pStati->SetCur(startOfNext);
|
|
|
|
|
|
|
|
aBaseIds.push_back( aNullBase_ );
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Base::On_inName_SwBracket_Left(const char *)
|
|
|
|
{
|
|
|
|
SetTokenResult(not_done, pop_success);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace cpp
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|