Files
openfoam/src/OpenFOAM/primitives/strings/string/stringI.H
Mark Olesen 2717aa5c7d new wordRe class - a word that holds a regExp
- a possible future replacement for keyType, but the immediate use is the
    wordReList for grepping through other lists.
  - note that the argList treatment of '(' ... ')' yields quoted strings,
    which we can use for building a wordReList

minor cleanup of regExp class

  - constructor from std::string, match std::string and
    operator=(std::string&)
    rely on automatic conversion to Foam::string
  - ditch partialMatch with sub-groups, it doesn't make much sense
2009-01-04 00:33:27 +01:00

230 lines
4.8 KiB
C++

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM 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.
OpenFOAM 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 OpenFOAM; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
\*---------------------------------------------------------------------------*/
#include <iostream>
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
inline Foam::string::string()
{}
inline Foam::string::string(const std::string& str)
:
std::string(str)
{}
// Copy character array
inline Foam::string::string(const char* str)
:
std::string(str)
{}
// Construct from a given number of characters in a character array
inline Foam::string::string(const char* str, const size_type len)
:
std::string(str, len)
{}
// Construct from a single character
inline Foam::string::string(const char c)
:
std::string(1, c)
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template<class String>
inline bool Foam::string::valid(const string& str)
{
for (const_iterator iter = str.begin(); iter != str.end(); iter++)
{
if (!String::valid(*iter))
{
return false;
}
}
return true;
}
template<class String>
inline bool Foam::string::stripInvalid(string& str)
{
if (!valid<String>(str))
{
register size_type nValid = 0;
iterator iter2 = str.begin();
for
(
const_iterator iter1 = iter2;
iter1 != const_cast<const string&>(str).end();
iter1++
)
{
register char c = *iter1;
if (String::valid(c))
{
*iter2 = c;
++iter2;
++nValid;
}
}
str.resize(nValid);
return true;
}
return false;
}
template<class String>
inline bool Foam::string::meta(const string& str, const char quote)
{
int escaped = 0;
for (const_iterator iter = str.begin(); iter != str.end(); iter++)
{
if (quote && *iter == quote)
{
escaped ^= 1; // toggle state
}
else if (escaped)
{
escaped = false;
}
else if (String::meta(*iter))
{
return true;
}
}
return false;
}
template<class String>
inline Foam::string
Foam::string::quotemeta(const string& str, const char quote)
{
if (!quote)
{
return str;
}
string sQuoted;
sQuoted.reserve(2*str.length());
int escaped = 0;
for (const_iterator iter = str.begin(); iter != str.end(); iter++)
{
if (*iter == quote)
{
escaped ^= 1; // toggle state
}
else if (escaped)
{
escaped = 0;
}
else if (String::meta(*iter))
{
sQuoted += quote;
}
sQuoted += *iter;
}
sQuoted.resize(sQuoted.length());
return sQuoted;
}
template<class String>
inline String Foam::string::validate(const string& str)
{
string ss = str;
stripInvalid<String>(ss);
return ss;
}
// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
inline Foam::string Foam::string::operator()
(
const size_type i,
const size_type n
) const
{
return substr(i, n);
}
inline Foam::string Foam::string::operator()(const size_type n) const
{
return substr(0, n);
}
inline Foam::string::hash::hash()
{}
inline Foam::string::size_type Foam::string::hash::operator()
(
const string& key
) const
{
register size_type hashVal = 0;
for (string::const_iterator iter=key.begin(); iter!=key.end(); ++iter)
{
hashVal = hashVal<<1 ^ *iter;
}
return hashVal;
}
inline Foam::string::size_type Foam::string::hash::operator()
(
const string& key,
const size_type tableSize
) const
{
return ::abs(operator()(key)) % tableSize;
}
// ************************************************************************* //