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

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #ifndef __MSTRING_H__
  2. #define __MSTRING_H__
  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 $1,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 mstringHeaderVersion =
  53.     "$Id: mstring.hxx,v 1.8 2001/06/27 01:43:45 bko Exp $";
  54. #include <string>
  55. #include <vector>
  56. #include <stdlib.h>
  57. #ifdef WIN32
  58. #include "StdAfx.h"
  59. #endif
  60. namespace std
  61. {
  62. class mstring;
  63. ///mstr_vector definition typedef vector<mstring> mstr_vector
  64. typedef std::vector < mstring > mstr_vector;
  65. /**mstring class provides basic parser methods as geting tokens,
  66.  *splitting, brackets processing an so on. */
  67. class mstring : public string
  68. {
  69.     public:
  70.         /** Separator flag sep_single or sep_multiple.
  71.          *
  72.          *  sep_single - Single mode - each symbol is a single separator 
  73.          *                            (1,2,,,3,4 will be "1"  "2"  ""  ""  "3"  "4")
  74.          *  sep_multiple - Multiple mode - all symbols are one separator 
  75.          *                            (1,,2,,3,,4 will be "1"  "2"  "3"  "4") 
  76.          *  sep_whole_str - Whole string is a single separator
  77.          *                            (1,,2,3,,4 will be "1"  "2,3"  "4") 
  78.          */
  79.         enum sep_flag
  80.         {
  81.             sep_single,
  82.             sep_multiple,
  83.             sep_whole_str
  84.     };
  85.         ///Default Constructor
  86.         mstring() : string()
  87.         {}
  88.         ///Constructor from char*
  89.         mstring(const char *str) : string(str)
  90.         {}
  91.         ///Copy Constructor
  92.         mstring(const string &str) : string(str)
  93.         {}
  94.         ///Assignment from int
  95.         mstring & assigni(int val, const char *format);
  96.         ///Assignment from double
  97.         mstring & assignd(double val, const char *format);
  98.         ///Assignment from int
  99.         mstring & operator = (int val)
  100.         {
  101.             return assigni(val, "%d");
  102.         }
  103.         //        ///Assignment from double
  104.         //        mstring & operator = (double val) { return assignd(val, "%.1f"); }
  105.         ///Conversion to int
  106.         operator int() const
  107.         {
  108.             return atoi(c_str());
  109.         }
  110.         ///Conversion to double
  111.         operator double() const
  112.         {
  113.             return atof(c_str());
  114.         }
  115.         ///Trim left all the characters in s
  116.         mstring & ltrims(const string &s);
  117.         ///Trim right all the characters in s
  118.         mstring & rtrims(const string &s);
  119.         ///Trim left and right all the characters in s
  120.         mstring & atrims(const string &s)
  121.         {
  122.             ltrims(s);
  123.             return rtrims(s);
  124.         }
  125.         ///Trim left the character c
  126.         mstring & ltrimc(char c)
  127.         {
  128.             char s[2] = {c, 0};
  129.             return ltrims(s);
  130.         }
  131.         ///Trim right the character c
  132.         mstring & rtrimc(char c)
  133.         {
  134.             char s[2] = {c, 0};
  135.             return rtrims(s);
  136.         }
  137.         ///Trim left and right the character c
  138.         mstring & atrimc(char c)
  139.         {
  140.             char s[2] = {c, 0};
  141.             return atrims(s);
  142.         }
  143.         ///Trim left whitespaces
  144.         mstring & ltrim()
  145.         {
  146.             return ltrims("t ");
  147.         }
  148.         ///Trim right whitespaces
  149.         mstring & rtrim()
  150.         {
  151.             return rtrims("t ");
  152.         }
  153.         ///Trim left and right whitespaces
  154.         mstring & atrim()
  155.         {
  156.             return atrims("t ");
  157.         }
  158.         ///Left align to 'newlen' with filler 'fill'
  159.         mstring & toleft(unsigned newlen, char fill = ' ', bool cut = false);
  160.         ///Right align to 'newlen' with filler 'fill'
  161.         mstring & toright(unsigned newlen, char fill = ' ', bool cut = false);
  162.         ///Find and replace all the 'find_str' to 'repl_str'
  163.         unsigned replace_all(const string &find_str, const string &repl_str);
  164.         /// Convert all tabs to spaces
  165.         mstring & tab2sp(unsigned tab_size = 8);
  166.         ///Compare two strings. The function is provided just for convinience and uniformity
  167.         int compare(const string &str, size_type len = npos) const;
  168.         ///Compare two strings ignoring case. The function is provided just for convinience and uniformity
  169.         int comparei(const string &str, size_type len = npos) const;
  170.         ///Compare two strings. The function is provided just for convinience and uniformity
  171.         friend int compare(const mstring &str1, const mstring &str2, size_type len = npos)
  172.         {
  173.             return str1.compare(str2, len);
  174.         }
  175.         ///Compare two strings ignoring case. The function is provided just for convinience and uniformity
  176.         friend int comparei(const mstring &str1, const mstring &str2, size_type len = npos)
  177.         {
  178.             return str1.comparei(str2, len);
  179.         }
  180.         ///Insert pair-symb into the string
  181.         mstring & ins_pair(const string &chrset, char pair_symb);
  182.         ///Delete pair-symb from the string
  183.         mstring & del_pair(char pair_symb);
  184.         ///Insert escaped symbols into the string
  185.         mstring & ins_escaped(const string &chrset, char escaped_symb);
  186.         ///Delete escaped symbols from the string
  187.         mstring & del_escaped(char escaped_symb);
  188.         ///Add quote symbols into the string
  189.         mstring & quote(const string &q_start, const string &q_end);
  190.         //see mstring.cxx
  191.         size_type next_token(size_type start, const string &sep,
  192.                              const string &quote, char pair_chr = 0,
  193.                              sep_flag flag = sep_multiple) const;
  194.         //see mstring.cxx
  195.         size_type token(string *dst, size_type start, const string &sep,
  196.                         const string &quote, char pair_chr = 0,
  197.                         sep_flag flag = sep_multiple) const;
  198.         //see mstring.cxx
  199.         unsigned split(mstr_vector *vec, const string &sep, const string &quote,
  200.                        char pair_chr = 0, sep_flag flag = sep_multiple) const;
  201.         //see mstring.cxx
  202.         size_type brtok(string *dst, size_type *start, int *balance,
  203.                         char br_open, char br_close,
  204.                         const string &quote, char pair_chr = 0) const;
  205.         //see mstring.cxx
  206.         bool chkquote(const string &quote, char pair_chr = 0) const;
  207. };
  208. }
  209. #endif