Files
libreoffice/autodoc/source/parser/cpp/pe_base.cxx
Sebastian Spaeth e9a59da46a Add vim/emacs modelines to all source files
Fixes #fdo30794
Based on bin/add-modelines script (originally posted in mail
1286706307.1871.1399280959@webmail.messagingengine.com)

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
2010-10-13 10:58:04 +02:00

227 lines
5.7 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* 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.
*
* 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).
*
* 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.
*
************************************************************************/
#include <precomp.h>
#include "pe_base.hxx"
// NOT FULLY DECLARED SERVICES
#include <cosv/tpl/tpltools.hxx>
#include <ary/cpp/c_gate.hxx>
#include <ary/cpp/c_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;
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 };
static INT16 stateT_startOfNext[] = { Tid_Identifier,
Tid_public,
Tid_protected,
Tid_private,
Tid_virtual,
Tid_DoubleColon };
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 };
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() );
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
PE_Base::On_startOfNext_Identifier(const char * )
{
pSpuBaseName->Push(not_done);
}
void
PE_Base::On_startOfNext_DoubleColon(const char *)
{
pSpuBaseName->Push(not_done);
}
void
PE_Base::On_inName_Identifier(const char * )
{
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
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */