office-gobmx/idlc/source/astenum.cxx

133 lines
4.1 KiB
C++
Raw Normal View History

2001-03-15 05:30:43 -06:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2001-03-15 05:30:43 -06:00
*
* $RCSfile: astenum.cxx,v $
2001-03-15 05:30:43 -06:00
*
* $Revision: 1.8 $
2001-03-15 05:30:43 -06:00
*
* last change: $Author: hr $ $Date: 2006-06-20 03:47:03 $
2001-03-15 05:30:43 -06:00
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
2001-03-15 05:30:43 -06:00
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
2001-03-15 05:30:43 -06: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.
2001-03-15 05:30:43 -06: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.
2001-03-15 05:30:43 -06: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
2001-03-15 05:30:43 -06:00
*
************************************************************************/
#ifndef _IDLC_ASTENUM_HXX_
#include <idlc/astenum.hxx>
#endif
#include "registry/version.h"
#include "registry/writer.hxx"
2001-03-15 05:30:43 -06:00
using namespace ::rtl;
AstEnum::AstEnum(const ::rtl::OString& name, AstScope* pScope)
: AstType(NT_enum, name, pScope)
, AstScope(NT_enum)
, m_enumValueCount(0)
{
}
AstEnum::~AstEnum()
{
}
AstConstant* AstEnum::checkValue(AstExpression* pExpr)
{
DeclList::const_iterator iter = getIteratorBegin();
DeclList::const_iterator end = getIteratorEnd();
2001-03-15 05:30:43 -06:00
AstConstant* pConst = NULL;
AstDeclaration* pDecl = NULL;
while ( iter != end)
{
pDecl = *iter;
pConst = (AstConstant*)pDecl;
if (pConst->getConstValue()->compare(pExpr))
return pConst;
++iter;
2001-03-15 05:30:43 -06:00
}
if ( pExpr->getExprValue()->u.lval > m_enumValueCount )
m_enumValueCount = pExpr->getExprValue()->u.lval + 1;
return NULL;
}
sal_Bool AstEnum::dump(RegistryKey& rKey)
2001-03-15 05:30:43 -06:00
{
RegistryKey localKey;
if (rKey.createKey( OStringToOUString(getFullName(), RTL_TEXTENCODING_UTF8 ), localKey))
{
fprintf(stderr, "%s: warning, could not create key '%s' in '%s'\n",
idlc()->getOptions()->getProgramName().getStr(),
2001-08-30 01:22:03 -05:00
getFullName().getStr(), OUStringToOString(rKey.getRegistryName(), RTL_TEXTENCODING_UTF8).getStr());
2001-03-15 05:30:43 -06:00
return sal_False;
}
OUString emptyStr;
2001-03-15 05:30:43 -06:00
sal_uInt16 nConst = getNodeCount(NT_enum_val);
if ( nConst > 0 )
{
typereg::Writer aBlob(
m_bPublished ? TYPEREG_VERSION_1 : TYPEREG_VERSION_0,
getDocumentation(), emptyStr, RT_TYPE_ENUM, m_bPublished,
OStringToOUString(getRelativName(), RTL_TEXTENCODING_UTF8), 0,
nConst, 0, 0);
DeclList::const_iterator iter = getIteratorBegin();
DeclList::const_iterator end = getIteratorEnd();
2001-03-15 05:30:43 -06:00
AstDeclaration* pDecl = NULL;
sal_uInt16 index = 0;
while ( iter != end )
{
pDecl = *iter;
if ( pDecl->getNodeType() == NT_enum_val )
((AstConstant*)pDecl)->dumpBlob(aBlob, index++, false);
2001-03-15 05:30:43 -06:00
++iter;
2001-03-15 05:30:43 -06:00
}
sal_uInt32 aBlobSize;
void const * pBlob = aBlob.getBlob(&aBlobSize);
2001-03-15 05:30:43 -06:00
if (localKey.setValue(emptyStr, RG_VALUETYPE_BINARY,
2001-03-15 05:30:43 -06:00
(RegValue)pBlob, aBlobSize))
{
fprintf(stderr, "%s: warning, could not set value of key \"%s\" in %s\n",
idlc()->getOptions()->getProgramName().getStr(),
2001-08-30 01:22:03 -05:00
getFullName().getStr(), OUStringToOString(localKey.getRegistryName(), RTL_TEXTENCODING_UTF8).getStr());
2001-03-15 05:30:43 -06:00
return sal_False;
}
}
return sal_True;
}
AstDeclaration* AstEnum::addDeclaration(AstDeclaration* pDecl)
{
return AstScope::addDeclaration(pDecl);
}