⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tokeniser_functions.hpp

📁 新版本TR1的stl
💻 HPP
字号:
/* /////////////////////////////////////////////////////////////////////////
 * File:        stlsoft/string/tokeniser_functions.hpp
 *
 * Purpose:     Restartable tokenising functions.
 *
 * Created:     6th January 2001
 * Updated:     12th March 2007
 *
 * Home:        http://stlsoft.org/
 *
 * Copyright (c) 2001-2007, Matthew Wilson and Synesis Software
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * - Redistributions of source code must retain the above copyright notice, this
 *   list of conditions and the following disclaimer.
 * - Redistributions in binary form must reproduce the above copyright notice,
 *   this list of conditions and the following disclaimer in the documentation
 *   and/or other materials provided with the distribution.
 * - Neither the name(s) of Matthew Wilson and Synesis Software nor the names of
 *   any contributors may be used to endorse or promote products derived from
 *   this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 *
 * ////////////////////////////////////////////////////////////////////// */

/** \file stlsoft/string/tokeniser_functions.hpp
 *
 * \brief [C++ only] Definition of the stlsoft::find_next_token suite of
 *  restartable tokenising functions
 *   (\ref group__library__string "String" Library).
 */

#ifndef STLSOFT_INCL_STLSOFT_STRING_HPP_TOKENISER_FUNCTIONS
#define STLSOFT_INCL_STLSOFT_STRING_HPP_TOKENISER_FUNCTIONS

#ifndef STLSOFT_DOCUMENTATION_SKIP_SECTION
# define STLSOFT_VER_STLSOFT_STRING_HPP_TOKENISER_FUNCTIONS_MAJOR      2
# define STLSOFT_VER_STLSOFT_STRING_HPP_TOKENISER_FUNCTIONS_MINOR      0
# define STLSOFT_VER_STLSOFT_STRING_HPP_TOKENISER_FUNCTIONS_REVISION   1
# define STLSOFT_VER_STLSOFT_STRING_HPP_TOKENISER_FUNCTIONS_EDIT       19
#endif /* !STLSOFT_DOCUMENTATION_SKIP_SECTION */

/* /////////////////////////////////////////////////////////////////////////
 * Includes
 */

#ifndef STLSOFT_INCL_STLSOFT_H_STLSOFT
# include <stlsoft/stlsoft.h>
#endif /* !STLSOFT_INCL_STLSOFT_H_STLSOFT */

#ifdef STLSOFT_UNITTEST
# if !defined(STLSOFT_COMPILER_IS_WATCOM)
#  if defined(STLSOFT_COMPILER_IS_MWERKS) && \
      ((__MWERKS__ & 0xff00) < 0x3000)
#   ifndef STLSOFT_INCL_STLSOFT_STRING_HPP_SIMPLE_STRING
#    include <stlsoft/string/simple_string.hpp>
#   endif /* !STLSOFT_INCL_STLSOFT_STRING_HPP_SIMPLE_STRING */
#  else /* ? compiler */
#   ifndef STLSOFT_INCL_STLSOFT_STRING_HPP_STRING_VIEW
#    include <stlsoft/string/string_view.hpp>
#   endif /* STLSOFT_INCL_STLSOFT_STRING_HPP_STRING_VIEW */
#  endif /* compiler */
#  include <vector>
# endif /* compiler */
#endif /* STLSOFT_UNITTEST */

/* /////////////////////////////////////////////////////////////////////////
 * Namespace
 */

#ifndef _STLSOFT_NO_NAMESPACE
namespace stlsoft
{
#endif /* _STLSOFT_NO_NAMESPACE */

/* /////////////////////////////////////////////////////////////////////////
 * Functions
 */

/** \brief Adjusts the delimiters into a token string to find the next token, according
 * to the given delimiter. Processing stops when \c p1 is equal to \c end
 *
 * \ingroup group__library__string
 *
 * \param p0 Pointer to the current token in the string. Will be set to the next when the function returns
 * \param p1 Pointer to the current token in the string. Well be set to the end of the token when the function returns
 * \param end The end of the string
 * \param delim The delimiter
 */
template <ss_typename_param_k C>
#if defined(STLSOFT_COMPILER_IS_DMC)
inline C const* find_next_token(C const*& p0, C const*& p1, C const* end, C delim)
#else /* ? compiler */
inline C const* find_next_token(C const*& p0, C const*& p1, C const* const end, C delim)
#endif /* compiler */
{
    STLSOFT_ASSERT(NULL != p0);
    STLSOFT_ASSERT(NULL != p1);
    STLSOFT_ASSERT(NULL != end);

    if(p1 != end)
    {
        p0 = p1;

        if(delim == *p1)
        {
            ++p0;
            ++p1;
        }
        for(; p1 != end; ++p1)
        {
            if(delim == *p1)
            {
                break;
            }
        }
    }
    else
    {
        p0 = end;
    }

    return p0;
}

/** \brief Adjusts the delimiters into a token string to find the next token, according
 * to the given delimiter. Processing stops when \c p1 points to the nul-terminating character
 *
 * \ingroup group__library__string
 *
 * \param p0 Pointer to the current token in the string. Will be set to the next when the function returns
 * \param p1 Pointer to the current token in the string. Well be set to the end of the token when the function returns
 * \param delim The delimiter
 */
template <ss_typename_param_k C>
inline bool find_next_token(C const*& p0, C const*& p1, C delim)
{
    STLSOFT_ASSERT(NULL != p0);
    STLSOFT_ASSERT(NULL != p1);
    STLSOFT_ASSERT(p0 <= p1);

    p0 = p1;
    if('\0' == *p1)
    {
        return false;
    }

    if(delim == *p1)
    {
        ++p0;
        ++p1;
    }

    for(;; ++p1)
    {
        if('\0' == *p1)
        {
            return p0 != p1;
        }
        else if(delim == *p1)
        {
            break;
        }
    }

    return true;
}

/* /////////////////////////////////////////////////////////////////////////
 * Unit-testing
 */

#ifdef STLSOFT_UNITTEST
# include "./unittest/tokeniser_functions_unittest_.h"
#endif /* STLSOFT_UNITTEST */

/* ////////////////////////////////////////////////////////////////////// */

#ifndef _STLSOFT_NO_NAMESPACE
} // namespace stlsoft
#endif /* _STLSOFT_NO_NAMESPACE */

/* ////////////////////////////////////////////////////////////////////// */

#endif /* !STLSOFT_INCL_STLSOFT_STRING_HPP_TOKENISER_FUNCTIONS */

/* ////////////////////////////////////////////////////////////////////// */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -