Files
reactos/reactos/tools/rbuild/stubbedcomponent.cpp

119 lines
2.8 KiB
C++

/*
* Copyright (C) 2005 Casper S. Hornstrup
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "pch.h"
#include <assert.h>
#include "rbuild.h"
using std::string;
using std::vector;
StubbedComponent::StubbedComponent ( const Module* module_,
const XMLElement& stubbedComponentNode )
: module(module_),
node(stubbedComponentNode)
{
const XMLAttribute* att = node.GetAttribute ( "name", true );
assert ( att );
name = att->value;
}
StubbedComponent::~StubbedComponent ()
{
for ( size_t i = 0; i < symbols.size(); i++ )
delete symbols[i];
}
void
StubbedComponent::ProcessXML ()
{
size_t i;
for ( i = 0; i < node.subElements.size (); i++ )
ProcessXMLSubElement ( *node.subElements[i] );
for ( i = 0; i < symbols.size (); i++ )
symbols[i]->ProcessXML ();
}
void
StubbedComponent::ProcessXMLSubElement ( const XMLElement& e )
{
bool subs_invalid = false;
if ( e.name == "symbol" )
{
symbols.push_back ( new StubbedSymbol ( e ) );
subs_invalid = false;
}
if ( subs_invalid && e.subElements.size () > 0 )
{
throw XMLInvalidBuildFileException (
e.location,
"<%s> cannot have sub-elements",
e.name.c_str() );
}
for ( size_t i = 0; i < e.subElements.size (); i++ )
ProcessXMLSubElement ( *e.subElements[i] );
}
StubbedSymbol::StubbedSymbol ( const XMLElement& stubbedSymbolNode )
: node(stubbedSymbolNode)
{
}
StubbedSymbol::~StubbedSymbol ()
{
}
void
StubbedSymbol::ProcessXML ()
{
if ( node.value.size () == 0 )
{
throw XMLInvalidBuildFileException (
node.location,
"<symbol> is empty." );
}
symbol = node.value;
strippedName = StripSymbol ( symbol );
const XMLAttribute* att = node.GetAttribute ( "newname", false );
if ( att != NULL )
newname = att->value;
else
newname = strippedName;
}
string
StubbedSymbol::StripSymbol ( string symbol )
{
size_t start = 0;
while ( start < symbol.length () && symbol[start] == '@')
start++;
size_t end = symbol.length () - 1;
while ( end > 0 && isdigit ( symbol[end] ) )
end--;
if ( end > 0 && symbol[end] == '@' )
end--;
if ( end > 0 )
return symbol.substr ( start, end - start + 1 );
else
return "";
}