Files
libreoffice/autodoc/source/parser_i/idl/pe_singl.cxx

281 lines
7.7 KiB
C++
Raw Normal View History

2002-11-01 16:15:51 +00:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2002-11-01 16:15:51 +00:00
*
* $RCSfile: pe_singl.cxx,v $
2002-11-01 16:15:51 +00:00
*
* $Revision: 1.7 $
2002-11-01 16:15:51 +00:00
*
* last change: $Author: hr $ $Date: 2007-11-02 17:08:51 $
2002-11-01 16:15:51 +00:00
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
2002-11-01 16:15:51 +00: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-11-01 16:15:51 +00: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-11-01 16:15:51 +00: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-11-01 16:15:51 +00: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-11-01 16:15:51 +00:00
*
************************************************************************/
#include <precomp.h>
#include <s2_luidl/pe_singl.hxx>
// NOT FULLY DEFINED SERVICES
#include <ary/idl/i_gate.hxx>
#include <ary/idl/i_singleton.hxx>
#include <ary/idl/i_sisingleton.hxx>
2002-11-01 16:15:51 +00:00
#include <ary/idl/ip_ce.hxx>
#include <ary/doc/d_oldidldocu.hxx>
2002-11-01 16:15:51 +00:00
#include <s2_luidl/pe_type2.hxx>
#include <s2_luidl/tk_keyw.hxx>
#include <s2_luidl/tk_ident.hxx>
#include <s2_luidl/tk_punct.hxx>
namespace csi
{
namespace uidl
{
#if 0
#ifdef DF
#undef DF
#endif
#define DF &PE_Singleton::On_Default
PE_Singleton::F_TOK
PE_Singleton::aDispatcher[PE_Singleton::e_STATES_MAX][PE_Singleton::tt_MAX] =
{ { DF, DF, DF }, // e_none
{ DF, &PE_Singleton::On_need_name_Identifer,
DF }, // need_name
{ DF, DF, &PE_Singleton::On_need_curlbr_open_Punctuation,
}, // need_curlbr_open
{ &PE_Singleton::On_std_GotoService,
DF, &PE_Singleton::On_std_Punctuation,
}, // e_std
{ DF, DF, DF }, // in_service
{ DF, DF, &PE_Interface::On_need_finish_Punctuation,
} // need_finish
};
#endif // 0
PE_Singleton::PE_Singleton()
: eState(e_none),
sData_Name(),
bIsPreDeclaration(false),
pCurSingleton(0),
pCurSiSingleton(0),
2002-11-01 16:15:51 +00:00
pPE_Type(0),
nCurParsed_Type(0)
2002-11-01 16:15:51 +00:00
{
pPE_Type = new PE_Type(nCurParsed_Type);
2002-11-01 16:15:51 +00:00
}
void
PE_Singleton::EstablishContacts( UnoIDL_PE * io_pParentPE,
ary::Repository & io_rRepository,
2002-11-01 16:15:51 +00:00
TokenProcessing_Result & o_rResult )
{
UnoIDL_PE::EstablishContacts(io_pParentPE,io_rRepository,o_rResult);
pPE_Type->EstablishContacts(this,io_rRepository,o_rResult);
}
PE_Singleton::~PE_Singleton()
{
}
void
PE_Singleton::ProcessToken( const Token & i_rToken )
{
i_rToken.Trigger(*this);
}
void
PE_Singleton::Process_MetaType( const TokMetaType & i_rToken )
{
switch ( i_rToken.Id() )
{
case TokMetaType::mt_service:
if (eState == e_std)
{
SetResult(done, push_sure, pPE_Type.Ptr());
eState = in_service;
}
else
On_Default();
break;
case TokMetaType::mt_singleton:
if (eState == need_name)
SetResult(done, stay);
else
On_Default();
break;
default:
// KORR_FUTURE
// Should throw syntax error warning
;
2002-11-01 16:15:51 +00:00
} // end switch
}
void
PE_Singleton::Process_Identifier( const TokIdentifier & i_rToken )
{
if (eState == need_name)
{
sData_Name = i_rToken.Text();
SetResult(done, stay);
eState = need_curlbr_open;
}
else
On_Default();
}
void
PE_Singleton::Process_Punctuation( const TokPunctuation & i_rToken )
{
switch (i_rToken.Id())
{
case TokPunctuation::CurledBracketOpen:
if (eState == need_curlbr_open)
{
pCurSingleton = &Gate().Ces().Store_Singleton(
CurNamespace().CeId(),
sData_Name );
PassDocuAt(*pCurSingleton);
SetResult(done, stay);
eState = e_std;
}
else
On_Default();
break;
case TokPunctuation::CurledBracketClose:
if (eState == e_std)
{
SetResult(done, stay);
eState = need_finish;
}
else
On_Default();
break;
case TokPunctuation::Semicolon:
switch (eState)
{
case e_std: SetResult(done, stay);
break;
case need_finish:
SetResult(done, pop_success);
eState = e_none;
break;
default:
On_Default();
} // end switch
break;
case TokPunctuation::Colon:
switch (eState)
{
case need_curlbr_open:
SetResult(done, push_sure, pPE_Type.Ptr());
eState = in_base_interface;
break;
default:
On_Default();
} // end switch
break;
2002-11-01 16:15:51 +00:00
default:
On_Default();
} // end switch
}
void
PE_Singleton::Process_Default()
{
On_Default();
}
void
PE_Singleton::On_Default()
{
SetResult(not_done, pop_failure);
}
void
PE_Singleton::InitData()
{
eState = need_name;
sData_Name.clear();
bIsPreDeclaration = false;
pCurSingleton = 0;
pCurSiSingleton = 0;
nCurParsed_Type = 0;
2002-11-01 16:15:51 +00:00
}
void
PE_Singleton::TransferData()
{
if (NOT bIsPreDeclaration)
{
csv_assert(sData_Name.size() > 0);
csv_assert( (pCurSingleton != 0) != (pCurSiSingleton != 0) );
2002-11-01 16:15:51 +00:00
}
eState = e_none;
}
void
PE_Singleton::ReceiveData()
{
switch (eState)
{
case in_service:
pCurSingleton->Set_Service(nCurParsed_Type);
nCurParsed_Type = 0;
eState = e_std;
break;
case in_base_interface:
pCurSiSingleton = &Gate().Ces().Store_SglIfcSingleton(
CurNamespace().CeId(),
sData_Name,
nCurParsed_Type );
PassDocuAt(*pCurSiSingleton);
nCurParsed_Type = 0;
eState = need_finish;
break;
default:
csv_assert(false);
} // end switch
2002-11-01 16:15:51 +00:00
}
UnoIDL_PE &
PE_Singleton::MyPE()
{
return *this;
}
} // namespace uidl
} // namespace csi