Skip to content
Snippets Groups Projects
stringI.H 4.97 KiB
Newer Older
  • Learn to ignore specific revisions
  • /*---------------------------------------------------------------------------*\
      =========                 |
      \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
       \\    /   O peration     |
    
    OpenFOAM bot's avatar
    OpenFOAM bot committed
        \\  /    A nd           | www.openfoam.com
    
         \\/     M anipulation  |
    -------------------------------------------------------------------------------
    
    OpenFOAM bot's avatar
    OpenFOAM bot committed
        Copyright (C) 2011-2015 OpenFOAM Foundation
    
        Copyright (C) 2017-2021 OpenCFD Ltd.
    
    -------------------------------------------------------------------------------
    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 3 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, see <http://www.gnu.org/licenses/>.
    
    
    \*---------------------------------------------------------------------------*/
    
    
    // * * * * * * * * * * * * Protected Member Functions  * * * * * * * * * * * //
    
    
    inline std::string::size_type Foam::string::find_ext(const std::string& str)
    
        const auto i = str.find_last_of("./");
    
        if (i == npos || i == 0 || str[i] == '/')
    
    
        return i;
    }
    
    
    inline std::string::size_type Foam::string::find_ext() const
    {
        return find_ext(*this);
    
    inline bool Foam::string::hasPath() const
    {
        return (npos != find('/'));
    }
    
    
    
    inline bool Foam::string::hasExt() const
    {
    
        return (npos != find_ext());
    }
    
    
    
    inline bool Foam::string::hasExt(const char* ending) const
    {
        return (ending && string::hasExt(std::string(ending)));
    }
    
    
    inline bool Foam::string::hasExt(const std::string& ending) const
    {
        const auto len = ending.size();
        auto i = find_ext();
        if (i == npos || !len)
        {
            return false;
        }
    
        ++i; // Compare *after* the dot
        return ((size() - i) == len) && !compare(i, npos, ending);
    }
    
    
    
    inline bool Foam::string::removePath()
    {
        const auto i = rfind('/');
    
        if (npos == i)
        {
            return false;
        }
    
    
        erase(0, i+1);
    
    }
    
    
    inline bool Foam::string::removeExt()
    {
    
        const auto i = find_ext();
    
        return true;
    
    // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
    
    
    inline Foam::string::string(const std::string& str)
    
        std::string(str)
    
    inline Foam::string::string(std::string&& str)
    
        std::string(std::move(str))
    
    {}
    
    
    inline Foam::string::string(const char* str)
    :
        std::string(str)
    {}
    
    
    inline Foam::string::string(const char* str, const size_type len)
    :
        std::string(str, len)
    {}
    
    
    inline Foam::string::string(const char c)
    :
        std::string(1, c)
    {}
    
    
    
    inline Foam::string::string(const size_type len, const char c)
    :
        std::string(len, c)
    {}
    
    
    
    // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
    
    
    template<class StringType>
    
    inline bool Foam::string::valid(const std::string& str)
    
        for (auto iter = str.cbegin(); iter != str.cend(); ++iter)
    
            if (!StringType::valid(*iter))
    
    Mark Olesen's avatar
    Mark Olesen committed
                return false;
    
    Mark Olesen's avatar
    Mark Olesen committed
        return true;
    
    template<class StringType>
    
    inline bool Foam::string::stripInvalid(std::string& str)
    
        if (!string::valid<StringType>(str))
    
            size_type nChar = 0;
            iterator outIter = str.begin();
    
            for (auto iter = str.cbegin(); iter != str.cend(); ++iter)
    
                const char c = *iter;
    
                if (StringType::valid(c))
    
                    *outIter = c;
                    ++outIter;
                    ++nChar;
    
            str.erase(nChar);
    
    template<class StringType>
    inline StringType Foam::string::validate(const std::string& str)
    
        out.resize(str.size());
    
    
        size_type len = 0;
    
        for (auto iter = str.cbegin(); iter != str.cend(); ++iter)
        {
            const char c = *iter;
    
            if (StringType::valid(c))
    
                out[len] = c;
                ++len;
    
        out.erase(len);
    
    inline bool Foam::string::match(const std::string& text) const
    
        return !compare(text);  // Always compare as literal string
    
    inline void Foam::string::swap(std::string& str)
    {
        if (this != &str)
        {
    
    // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
    
    
    inline bool Foam::string::operator()(const std::string& text) const
    {
        return !compare(text);  // Always compare as literal string
    }
    
    
    
    // ************************************************************************* //