2010-10-12 15:46:24 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2002-03-08 13:45:36 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 14:50:44 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2002-03-08 13:45:36 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2002-03-08 13:45:36 +00:00
|
|
|
*
|
2008-04-10 14:50:44 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2002-03-08 13:45:36 +00:00
|
|
|
*
|
2008-04-10 14:50:44 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2002-03-08 13:45:36 +00:00
|
|
|
*
|
2008-04-10 14:50:44 +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.
|
2002-03-08 13:45:36 +00:00
|
|
|
*
|
2008-04-10 14:50:44 +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).
|
2002-03-08 13:45:36 +00:00
|
|
|
*
|
2008-04-10 14:50:44 +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.
|
2002-03-08 13:45:36 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include <precomp.h>
|
|
|
|
#include <s2_luidl/pe_vari2.hxx>
|
|
|
|
|
|
|
|
|
|
|
|
// NOT FULLY DECLARED SERVICES
|
2002-11-01 16:15:51 +00:00
|
|
|
#include <ary/idl/i_gate.hxx>
|
|
|
|
#include <ary/idl/i_property.hxx>
|
|
|
|
#include <ary/idl/ip_ce.hxx>
|
2007-11-02 16:10:00 +00:00
|
|
|
#include <ary/doc/d_oldidldocu.hxx>
|
2002-03-08 13:45:36 +00:00
|
|
|
#include <s2_luidl/pe_type2.hxx>
|
2004-07-12 14:42:18 +00:00
|
|
|
#include <s2_luidl/tk_keyw.hxx>
|
2002-03-08 13:45:36 +00:00
|
|
|
#include <s2_luidl/tk_ident.hxx>
|
|
|
|
#include <s2_luidl/tk_punct.hxx>
|
|
|
|
|
|
|
|
|
|
|
|
namespace csi
|
|
|
|
{
|
|
|
|
namespace uidl
|
|
|
|
{
|
|
|
|
|
|
|
|
|
2002-11-01 16:15:51 +00:00
|
|
|
PE_Variable::PE_Variable( ary::idl::Type_id & i_rResult_Type,
|
|
|
|
String & i_rResult_Name )
|
2003-06-30 14:28:08 +00:00
|
|
|
: eState(e_none),
|
2002-03-08 13:45:36 +00:00
|
|
|
pResult_Type(&i_rResult_Type),
|
|
|
|
pResult_Name(&i_rResult_Name),
|
|
|
|
pPE_Type(0)
|
|
|
|
{
|
|
|
|
pPE_Type = new PE_Type(i_rResult_Type);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Variable::EstablishContacts( UnoIDL_PE * io_pParentPE,
|
2007-11-02 16:10:00 +00:00
|
|
|
ary::Repository & io_rRepository,
|
2002-03-08 13:45:36 +00:00
|
|
|
TokenProcessing_Result & o_rResult )
|
|
|
|
{
|
|
|
|
UnoIDL_PE::EstablishContacts(io_pParentPE,io_rRepository,o_rResult);
|
|
|
|
pPE_Type->EstablishContacts(this,io_rRepository,o_rResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
PE_Variable::~PE_Variable()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Variable::ProcessToken( const Token & i_rToken )
|
|
|
|
{
|
|
|
|
i_rToken.Trigger(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Variable::Process_Default()
|
|
|
|
{
|
|
|
|
if (eState == expect_type)
|
|
|
|
{
|
|
|
|
SetResult( not_done, push_sure, pPE_Type.Ptr() );
|
|
|
|
}
|
2008-04-22 13:49:22 +00:00
|
|
|
else{
|
2002-03-08 13:45:36 +00:00
|
|
|
csv_assert(false);
|
2008-04-22 13:49:22 +00:00
|
|
|
}
|
2002-03-08 13:45:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Variable::Process_Identifier( const TokIdentifier & i_rToken )
|
|
|
|
{
|
|
|
|
if (eState == expect_type)
|
|
|
|
{
|
|
|
|
SetResult( not_done, push_sure, pPE_Type.Ptr() );
|
|
|
|
}
|
|
|
|
else if (eState == expect_name)
|
|
|
|
{
|
|
|
|
*pResult_Name = i_rToken.Text();
|
|
|
|
SetResult( done, stay );
|
|
|
|
eState = expect_finish;
|
|
|
|
}
|
2008-04-22 13:49:22 +00:00
|
|
|
else {
|
2002-03-08 13:45:36 +00:00
|
|
|
csv_assert(false);
|
2008-04-22 13:49:22 +00:00
|
|
|
}
|
2002-03-08 13:45:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-06-19 11:08:26 +00:00
|
|
|
PE_Variable::Process_Punctuation( const TokPunctuation & )
|
2002-03-08 13:45:36 +00:00
|
|
|
{
|
|
|
|
if (eState == expect_finish)
|
|
|
|
{
|
|
|
|
SetResult( not_done, pop_success );
|
|
|
|
eState = e_none;
|
|
|
|
}
|
2004-07-12 14:42:18 +00:00
|
|
|
else if (eState == expect_name)
|
|
|
|
{
|
|
|
|
SetResult( not_done, pop_success );
|
|
|
|
eState = e_none;
|
|
|
|
}
|
2008-04-22 13:49:22 +00:00
|
|
|
else {
|
2004-07-12 14:42:18 +00:00
|
|
|
csv_assert(false);
|
2008-04-22 13:49:22 +00:00
|
|
|
}
|
2004-07-12 14:42:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Variable::Process_BuiltInType( const TokBuiltInType & i_rToken )
|
|
|
|
{
|
|
|
|
if (eState == expect_type)
|
|
|
|
{
|
|
|
|
SetResult( not_done, push_sure, pPE_Type.Ptr() );
|
|
|
|
}
|
|
|
|
else if (eState == expect_name AND i_rToken.Id() == TokBuiltInType::bty_ellipse)
|
|
|
|
{
|
|
|
|
SetResult( not_done, pop_success );
|
|
|
|
eState = e_none;
|
|
|
|
}
|
2008-04-22 13:49:22 +00:00
|
|
|
else {
|
2002-03-08 13:45:36 +00:00
|
|
|
csv_assert(false);
|
2008-04-22 13:49:22 +00:00
|
|
|
}
|
2002-03-08 13:45:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Variable::InitData()
|
|
|
|
{
|
|
|
|
eState = expect_type;
|
|
|
|
|
|
|
|
*pResult_Type = 0;
|
|
|
|
*pResult_Name = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Variable::ReceiveData()
|
|
|
|
{
|
|
|
|
eState = expect_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PE_Variable::TransferData()
|
|
|
|
{
|
|
|
|
eState = e_none;
|
|
|
|
}
|
|
|
|
|
|
|
|
UnoIDL_PE &
|
|
|
|
PE_Variable::MyPE()
|
|
|
|
{
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace uidl
|
|
|
|
} // namespace csi
|
|
|
|
|
2010-10-12 15:46:24 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|