TokenList.cpp
上传用户:xqtpzdz
上传日期:2022-05-21
资源大小:1764k
文件大小:2k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. /****************License************************************************
  2.  * Vocalocity OpenVXI
  3.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *  
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  18.  * registered trademarks of Vocalocity, Inc. 
  19.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  20.  * by Vocalocity.
  21.  ***********************************************************************/
  22. #include "TokenList.hpp"
  23. #include <sstream>
  24. #include <algorithm>
  25. TokenList::TokenList(const vxistring &tokens) : std::deque<vxistring>()
  26. {
  27.   addTokens(tokens);
  28. }
  29. void TokenList::addTokens(const vxistring &tokens)
  30. {
  31.   if (!tokens.empty()) {
  32.     // The namelist is a series of whitespace delimited strings.  Read each in
  33.     // and insert it into the deque.
  34.     std::basic_stringstream<VXIchar> namestream(tokens);
  35. #if ((defined(STLPORT) && defined(_STLPORT_VERSION)) || defined(__GNUC__) || defined(_decunix_))
  36.     // G++ 2.95 and 3.0.2 do not fully support istream_iterator.
  37.     while (namestream.good()) {
  38.       vxistring temp;
  39.       namestream >> temp;
  40.       if (!temp.empty()) push_back(temp);
  41.     }
  42. #else
  43.     std::copy(std::istream_iterator<vxistring, VXIchar>(namestream),
  44.               std::istream_iterator<vxistring, VXIchar>(),
  45.               std::back_inserter(*this));
  46. #endif
  47.     // Now sort the deque and return the unique set of names.
  48.     if (!empty()){
  49.       std::sort(begin(), end());
  50.       TokenList::iterator i = std::unique(begin(), end());
  51.       if (i != end()) erase(i, end());
  52.     }
  53.   }
  54. }