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

📄 strtok.cxx

📁 eCos1.31版
💻 CXX
字号:
//===========================================================================////      strtok.cxx////      ISO standard strtok() routine ////===========================================================================//####COPYRIGHTBEGIN####//                                                                          // -------------------------------------------                              // The contents of this file are subject to the Red Hat eCos Public License // Version 1.1 (the "License"); you may not use this file except in         // compliance with the License.  You may obtain a copy of the License at    // http://www.redhat.com/                                                   //                                                                          // Software distributed under the License is distributed on an "AS IS"      // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.  See the // License for the specific language governing rights and limitations under // the License.                                                             //                                                                          // The Original Code is eCos - Embedded Configurable Operating System,      // released September 30, 1998.                                             //                                                                          // The Initial Developer of the Original Code is Red Hat.                   // Portions created by Red Hat are                                          // Copyright (C) 1998, 1999, 2000 Red Hat, Inc.                             // All Rights Reserved.                                                     // -------------------------------------------                              //                                                                          //####COPYRIGHTEND####//===========================================================================//#####DESCRIPTIONBEGIN####//// Author(s):     jlarmour// Contributors:  jlarmour// Date:          1999-01-19// Purpose:       Provide ISO C strtok() and POSIX strtok_r() routines// Description: // Usage:       ////####DESCRIPTIONEND####////===========================================================================//// This code is based on original code with the following copyright:///* * Copyright (c) 1988 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. 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. * 3. Neither the name of the University nor the names of its contributors *    may be used to endorse or promote products derived from this software *    without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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. */// CONFIGURATION#include <pkgconf/libc.h>   // Configuration header// INCLUDES#include <cyg/infra/cyg_type.h>    // Common type definitions#include <cyg/infra/cyg_trac.h>    // Tracing support#include <cyg/infra/cyg_ass.h>     // Assertion support#include <string.h>                // Header for this file#include <stddef.h>         // Compiler definitions such as size_t, NULL etc.#include "clibincl/stringsupp.hxx" // Useful string function support and                                   // prototypes#ifdef CYGSEM_LIBC_PER_THREAD_STRTOK# include <pkgconf/kernel.h>       // kernel configuration# include <cyg/kernel/thread.hxx>  // per-thread data# include <cyg/kernel/thread.inl>  // per-thread data# include <cyg/kernel/mutex.hxx>   // mutexes#endif// EXPORTED SYMBOLSexternC char *strtok( char *s1, const char *s2 ) CYGBLD_ATTRIB_WEAK_ALIAS(_strtok);externC char *strtok_r( char *s1, const char *s2, char **lasts ) \     CYGBLD_ATTRIB_WEAK_ALIAS(_strtok_r);// TRACE#if defined(CYGDBG_USE_TRACING) && defined(CYGNUM_LIBC_STRTOK_TRACE_LEVEL)static int strtok_trace = CYGNUM_LIBC_STRTOK_TRACE_LEVEL;# define TL1 (0 < strtok_trace)#else# define TL1 (0)#endif// STATICS#ifdef CYGSEM_LIBC_PER_THREAD_STRTOKstatic cyg_ucount32 strtok_data_index=CYGNUM_KERNEL_THREADS_DATA_MAX;static Cyg_Mutex strtok_data_mutex CYG_INIT_PRIORITY(LIBC);#elsestatic char *cyg_libc_strtok_last;#endif// FUNCTIONSchar *_strtok( char *s1, const char *s2 ){    char **lasts;    char *retval;    CYG_REPORT_FUNCNAMETYPE( "_strtok", "returning %08x" );    CYG_REPORT_FUNCARG2( "s1=%08x, s2=%08x", s1, s2 );        if (s1 != NULL)        CYG_CHECK_DATA_PTR( s1, "s1 is not a valid pointer!" );    CYG_CHECK_DATA_PTR( s2, "s2 is not a valid pointer!" );#ifdef CYGSEM_LIBC_PER_THREAD_STRTOK    Cyg_Thread *self = Cyg_Thread::self();    // Get a per-thread data slot if we haven't got one already    // Do a simple test before locking and retrying test, as this is a    // rare situation    if (CYGNUM_KERNEL_THREADS_DATA_MAX==strtok_data_index) {        strtok_data_mutex.lock();        if (CYGNUM_KERNEL_THREADS_DATA_MAX==strtok_data_index) {            // the kernel just throws an assert if this doesn't work            // FIXME: Should use real CDL to pre-allocate a slot at compile            // time to ensure there are enough slots            strtok_data_index = self->new_data_index();        }        strtok_data_mutex.unlock();    } // if    // we have a valid index now    lasts = (char **)self->get_data_ptr(strtok_data_index);#else    lasts = &cyg_libc_strtok_last;#endif    CYG_TRACE2( TL1, "Retrieved strtok_last address %08x containing %s",                lasts, *lasts );    retval = _strtok_r( s1, s2, lasts );        CYG_REPORT_RETVAL( retval );    return retval;} // _strtok()char *_strtok_r( char *s1, const char *s2, char **lasts ){    char *spanp;    int c, sc;    char *tok;        CYG_REPORT_FUNCNAMETYPE( "_strtok_r", "returning %08x" );    CYG_REPORT_FUNCARG3( "s1=%08x, s2=%08x, lasts=%08x", s1, s2, lasts );        if (s1 != NULL)        CYG_CHECK_DATA_PTR( s1, "s1 is not a valid pointer!" );    CYG_CHECK_DATA_PTR( s2, "s2 is not a valid pointer!" );    CYG_CHECK_DATA_PTR( lasts, "lasts is not a valid pointer!" );    if (s1 == NULL && (s1 = *lasts) == NULL)    {        CYG_REPORT_RETVAL( NULL );        return NULL;    } // if        //    // Skip (span) leading delimiters (s += strspn(s, delim), sort of).    //cont:    c = *s1++;    for (spanp = (char *)s2; (sc = *spanp++) != 0;) {        if (c == sc)            goto cont;    } // for        if (c == 0) {               // no non-delimiter characters        *lasts = NULL;        CYG_REPORT_RETVAL( NULL );        return NULL;    } // if    tok = s1 - 1;        //    // Scan token (scan for delimiters: s += strcspn(s, delim), sort of).    // Note that delim must have one NUL; we stop if we see that, too.    //    for (;;) {        c = *s1++;        spanp = (char *)s2;        do {            if ((sc = *spanp++) == c) {                if (c == 0)                    s1 = NULL;                else                    s1[-1] = 0;                *lasts = s1;                CYG_REPORT_RETVAL( tok );                return (tok);            } // if        } while (sc != 0);    } // for    // NOTREACHED} // _strtok_r()// EOF strtok.cxx

⌨️ 快捷键说明

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