mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-26 18:42:41 +01:00
new trunk (base for 1.5)
windows build only
This commit is contained in:
167
CppParser/src/Parameter.cpp
Normal file
167
CppParser/src/Parameter.cpp
Normal file
@@ -0,0 +1,167 @@
|
||||
//
|
||||
// Parameter.cpp
|
||||
//
|
||||
// $Id: //poco/1.3/CppParser/src/Parameter.cpp#3 $
|
||||
//
|
||||
// Library: CppParser
|
||||
// Package: SymbolTable
|
||||
// Module: Parameter
|
||||
//
|
||||
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
||||
// and Contributors.
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person or organization
|
||||
// obtaining a copy of the software and accompanying documentation covered by
|
||||
// this license (the "Software") to use, reproduce, display, distribute,
|
||||
// execute, and transmit the Software, and to prepare derivative works of the
|
||||
// Software, and to permit third-parties to whom the Software is furnished to
|
||||
// do so, all subject to the following:
|
||||
//
|
||||
// The copyright notices in the Software and this entire statement, including
|
||||
// the above license grant, this restriction and the following disclaimer,
|
||||
// must be included in all copies of the Software, in whole or in part, and
|
||||
// all derivative works of the Software, unless such copies or derivative
|
||||
// works are solely in the form of machine-executable object code generated by
|
||||
// a source language processor.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
|
||||
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
||||
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
||||
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
|
||||
#include "Poco/CppParser/Parameter.h"
|
||||
#include "Poco/CppParser/NameSpace.h"
|
||||
#include "Poco/CppParser/TypeDef.h"
|
||||
#include "Poco/CppParser/Utility.h"
|
||||
#include "Poco/String.h"
|
||||
#include "Poco/NumberFormatter.h"
|
||||
#include <cstddef>
|
||||
|
||||
|
||||
namespace Poco {
|
||||
namespace CppParser {
|
||||
|
||||
|
||||
int Parameter::_count(0);
|
||||
|
||||
|
||||
Parameter::Parameter(const std::string& decl, Function* pFunction):
|
||||
Decl(handleDecl (decl), 0), // handle init values
|
||||
_type(),
|
||||
_isRef(false),
|
||||
_isPointer(false),
|
||||
_isConst(false)
|
||||
{
|
||||
|
||||
std::size_t pos = declaration().rfind(name());
|
||||
|
||||
std::string tmp = declaration().substr(0, pos);
|
||||
_type = Poco::trim(tmp);
|
||||
std::size_t rightCut = _type.size();
|
||||
while (rightCut > 0 && (_type[rightCut-1] == '&' || _type[rightCut-1] == '*' || _type[rightCut-1] == '\t' || _type[rightCut-1] == ' '))
|
||||
{
|
||||
if (_type[rightCut-1] == '&')
|
||||
_isRef = true;
|
||||
if (_type[rightCut-1] == '*')
|
||||
_isPointer = true;
|
||||
--rightCut;
|
||||
}
|
||||
_type = Poco::trim(_type.substr(0, rightCut));
|
||||
if (_type.find("const ") == 0)
|
||||
{
|
||||
_isConst = true;
|
||||
_type = _type.substr(6);
|
||||
}
|
||||
if (_type.find("const\t") == 0)
|
||||
{
|
||||
_type = _type.substr(6);
|
||||
_isConst = true;
|
||||
}
|
||||
|
||||
|
||||
Poco::trimInPlace(_type);
|
||||
pos = decl.find("=");
|
||||
_hasDefaultValue = (pos != std::string::npos);
|
||||
if (_hasDefaultValue)
|
||||
{
|
||||
_defaultDecl = decl.substr(pos + 1);
|
||||
Poco::trimInPlace(_defaultDecl);
|
||||
std::size_t posStart = _defaultDecl.find("(");
|
||||
std::size_t posEnd = _defaultDecl.rfind(")");
|
||||
if (posStart != std::string::npos && posEnd != std::string::npos)
|
||||
{
|
||||
_defaultValue = _defaultDecl.substr(posStart + 1, posEnd-posStart - 1);
|
||||
}
|
||||
else
|
||||
{
|
||||
poco_assert (posStart == std::string::npos && posEnd == std::string::npos);
|
||||
_defaultValue = _defaultDecl;
|
||||
}
|
||||
Poco::trimInPlace(_defaultValue);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Parameter::~Parameter()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Symbol::Kind Parameter::kind() const
|
||||
{
|
||||
return Symbol::SYM_PARAMETER;
|
||||
}
|
||||
|
||||
|
||||
bool Parameter::vectorType(const std::string& type, NameSpace* pNS)
|
||||
{
|
||||
bool ret = type.find("vector") != std::string::npos;
|
||||
if (!ret)
|
||||
{
|
||||
Symbol* pSym = pNS->lookup(type);
|
||||
if (pSym)
|
||||
{
|
||||
if (pSym->kind() == Symbol::SYM_TYPEDEF)
|
||||
{
|
||||
TypeDef* pType = static_cast<TypeDef*>(pSym);
|
||||
ret = pType->declaration().find("vector") != std::string::npos;
|
||||
}
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
std::string Parameter::handleDecl(const std::string& decl)
|
||||
{
|
||||
std::size_t pos = decl.find('=');
|
||||
std::string result(decl.substr(0, pos));
|
||||
// now check if we have to add a paramName
|
||||
Poco::trimInPlace(result);
|
||||
std::size_t posSpace = result.rfind(' ');
|
||||
bool mustAdd = false;
|
||||
if (posSpace>0)
|
||||
{
|
||||
std::string tmp(result.substr(posSpace+1));
|
||||
mustAdd = (tmp.find('<') != -1 || tmp.find('>') != -1 || tmp.find('*') != -1 || tmp.find('&') != -1);
|
||||
}
|
||||
else
|
||||
mustAdd = true;
|
||||
if (mustAdd)
|
||||
{
|
||||
|
||||
result.append(" ");
|
||||
result.append("param");
|
||||
result.append(Poco::NumberFormatter::format(++_count));
|
||||
//never add the default val it breaks the upper class parser
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
} } // namespace Poco::CppParser
|
||||
Reference in New Issue
Block a user