CharDataParser.hxx
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:5k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #ifndef CharDataParser_Hxx
  2. #define CharDataParser_Hxx
  3. /* ====================================================================
  4.  * The Vovida Software License, Version 1.0 
  5.  * 
  6.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  7.  * 
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions and the following disclaimer.
  14.  * 
  15.  * 2. Redistributions in binary form must reproduce the above copyright
  16.  *    notice, this list of conditions and the following disclaimer in
  17.  *    the documentation and/or other materials provided with the
  18.  *    distribution.
  19.  * 
  20.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  21.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  22.  *    not be used to endorse or promote products derived from this
  23.  *    software without prior written permission. For written
  24.  *    permission, please contact vocal@vovida.org.
  25.  *
  26.  * 4. Products derived from this software may not be called "VOCAL", nor
  27.  *    may "VOCAL" appear in their name, without prior written
  28.  *    permission of Vovida Networks, Inc.
  29.  * 
  30.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  31.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  32.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  33.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  34.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  35.  * IN EXCESS OF 281421,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  36.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  37.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  38.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  39.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  40.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  41.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  42.  * DAMAGE.
  43.  * 
  44.  * ====================================================================
  45.  * 
  46.  * This software consists of voluntary contributions made by Vovida
  47.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  48.  * Inc.  For more information on Vovida Networks, Inc., please see
  49.  * <http://www.vovida.org/>.
  50.  *
  51.  */
  52. static const char* const CharDataParser_hxx_Version =
  53.     "$Id: CharDataParser.hxx,v 1.7 2001/05/15 20:26:12 bko Exp $";
  54. #include "CharData.hxx"
  55. /** */
  56. class CharDataParser
  57. {
  58.     public:
  59.         /** */
  60.         CharDataParser(CharData *dataBuf)
  61.             : myCurPtr(dataBuf == NULL ? NULL : dataBuf->getPtr()),
  62.               myEndPtr(dataBuf == NULL ? NULL : 
  63.                       dataBuf->getPtr() + dataBuf->getLen())
  64.             {}
  65.         /** */
  66.         ~CharDataParser() {}
  67.         /* All following methods will return 1 if it finds the stopchar or
  68.            the char meets the mask, and put the chars before stop condition
  69.            in outbuf; return 0 if it cannot find the stop chars 
  70.          */
  71.         /** Get all chars, and stop before the stopChar */
  72.         int parseUntil(CharData* outBuf, char stopChar);
  73.         /** Get all chars and stop before the char that mask[char]=1 */
  74.         int parseUntil(CharData* outBuf, u_int8_t* stopMask);
  75.         /** Get all chars and stop after the stopChar */
  76.         int parseThru(CharData* outBuf, char stopChar);
  77.         /** Get all chars if mask[char]=1, and stop otherwise */
  78.         int parseThru(CharData* outBuf, u_int8_t* stopMask);
  79.         /** Get all the chars before r or n or rn, inclusive */
  80.         int getNextLine(CharData* outBuf);
  81.         /** Get all the chars before a non-letter */
  82.         int getNextWord(CharData* outBuf) 
  83.             { return parseUntil(outBuf, myMaskNonWord); }
  84.         /** Get the interger value of the digit chars, only support unsigned */
  85.         int getNextInteger(u_int32_t& num);
  86.         /** Get the double value of the digit and '.' chars */
  87.         int getNextDouble(double& doubleNum);
  88.         /** Get all the chars before a non space char */
  89.         int getThruSpaces(CharData* outBuf) 
  90.             { return parseUntil(outBuf, myMaskNonSpace); }
  91.         /** Get thru length of chars */
  92.         int getThruLength(CharData* outBuf, int length);
  93.         /** Get the current char but not advance curPtr */
  94.         char getCurChar() { return *myCurPtr; }
  95. static u_int8_t myMaskNonWord[];
  96. static u_int8_t myMaskDigit[]; 
  97. static u_int8_t myMaskNonSpace[];
  98. static u_int8_t myMaskEol[];
  99. static u_int8_t myMaskEolSpace[]; 
  100. private:
  101. const char* myCurPtr;
  102. const char* myEndPtr;
  103. };
  104. /* Local Variables: */
  105. /* c-file-style: "stroustrup" */
  106. /* indent-tabs-mode: nil */
  107. /* c-file-offsets: ((access-label . -) (inclass . ++)) */
  108. /* c-basic-offset: 4 */
  109. /* End: */
  110. #endif