00001 // 00002 // StringTokenizer.h 00003 // 00004 // $Id: //poco/1.3/Foundation/include/Poco/StringTokenizer.h#2 $ 00005 // 00006 // Library: Foundation 00007 // Package: Core 00008 // Module: StringTokenizer 00009 // 00010 // Definition of the StringTokenizer class. 00011 // 00012 // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. 00013 // and Contributors. 00014 // 00015 // Permission is hereby granted, free of charge, to any person or organization 00016 // obtaining a copy of the software and accompanying documentation covered by 00017 // this license (the "Software") to use, reproduce, display, distribute, 00018 // execute, and transmit the Software, and to prepare derivative works of the 00019 // Software, and to permit third-parties to whom the Software is furnished to 00020 // do so, all subject to the following: 00021 // 00022 // The copyright notices in the Software and this entire statement, including 00023 // the above license grant, this restriction and the following disclaimer, 00024 // must be included in all copies of the Software, in whole or in part, and 00025 // all derivative works of the Software, unless such copies or derivative 00026 // works are solely in the form of machine-executable object code generated by 00027 // a source language processor. 00028 // 00029 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 00030 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 00031 // FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT 00032 // SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE 00033 // FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, 00034 // ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 00035 // DEALINGS IN THE SOFTWARE. 00036 // 00037 00038 00039 #ifndef Foundation_StringTokenizer_INCLUDED 00040 #define Foundation_StringTokenizer_INCLUDED 00041 00042 00043 #include "Poco/Foundation.h" 00044 #include "Poco/Exception.h" 00045 #include <vector> 00046 #include <cstddef> 00047 00048 00049 namespace Poco { 00050 00051 00052 class Foundation_API StringTokenizer 00056 { 00057 public: 00058 enum Options 00059 { 00060 TOK_IGNORE_EMPTY = 1, 00061 TOK_TRIM = 2 00062 }; 00063 00064 typedef std::vector<std::string>::const_iterator Iterator; 00065 00066 StringTokenizer(const std::string& str, const std::string& separators, int options = 0); 00076 00077 ~StringTokenizer(); 00079 00080 Iterator begin() const; 00081 Iterator end() const; 00082 00083 const std::string& operator [] (std::size_t index) const; 00086 00087 std::size_t count() const; 00089 00090 private: 00091 StringTokenizer(const StringTokenizer&); 00092 StringTokenizer& operator = (const StringTokenizer&); 00093 00094 std::vector<std::string> _tokens; 00095 }; 00096 00097 00098 // 00099 // inlines 00100 // 00101 00102 00103 inline StringTokenizer::Iterator StringTokenizer::begin() const 00104 { 00105 return _tokens.begin(); 00106 } 00107 00108 00109 inline StringTokenizer::Iterator StringTokenizer::end() const 00110 { 00111 return _tokens.end(); 00112 } 00113 00114 00115 inline const std::string& StringTokenizer::operator [] (std::size_t index) const 00116 { 00117 if (index >= _tokens.size()) throw RangeException(); 00118 return _tokens[index]; 00119 } 00120 00121 00122 inline std::size_t StringTokenizer::count() const 00123 { 00124 return _tokens.size(); 00125 } 00126 00127 00128 } // namespace Poco 00129 00130 00131 #endif // Foundation_StringTokenizer_INCLUDED