ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/branches/new_design/OOPSE-3.0/src/utils/StringTokenizer.hpp
(Generate patch)

Comparing branches/new_design/OOPSE-3.0/src/utils/StringTokenizer.hpp (file contents):
Revision 1683, Thu Oct 28 22:34:02 2004 UTC vs.
Revision 1736 by tim, Fri Nov 12 22:28:35 2004 UTC

# Line 23 | Line 23
23   *
24   */
25  
26 < /**
27 <  * @file StringTokenizer.hpp
28 <  * @author tlin
29 <  * @date 09/20/2004
30 <  * @time 11:30am
31 <  * @version 1.0
32 <  */
33 <
26 > /**
27 > * @file StringTokenizer.hpp
28 > * @author tlin
29 > * @date 09/20/2004
30 > * @time 11:30am
31 > * @version 1.0
32 > */
33 >
34   #ifndef UTIL_STRINGTOKENIZER_HPP
35 +
36   #define UTIL_STRINGTOKENIZER_HPP
37  
38 < #include <vector>
38 > #include <string>
39  
40 < #include "util/NoSuchElementException.hpp"
40 > //#include "util/NoSuchElementException.hpp"
41  
42 < namespace oopse{
42 > namespace oopse {
43  
44 <    /**
45 <     * @class StringTokenizer.hpp "util/StringTokenizer.hpp"
46 <     *
47 <     * @brief The string tokenizer class allows an application to break a string into tokens
48 <     *
49 <     * The set of delimiters (the characters that separate tokens) may be specified either
50 <     * at creation time or on a per-token basis.
51 <     * An instance of StringTokenizer behaves in one of two ways, depending on whether it was
52 <     * created with the returnTokens flag having the value true or false.
53 <     */
54 <    class StringTokenizer{
55 <    
55 <        public:
56 <            
57 <            /**
58 <             * Constructs a string tokenizer for the specified string. The characters in the delim argument
59 <             * are the delimiters for separating tokens. characters are skipped and only serve as
60 <             * separators between tokens.
61 <             * @param str a string to be parsed.
62 <             * @param delim the delimiters, default value is "\t\n\r".
63 <             */
64 <            StringTokenizer(const std::string& str, const std::string& delim = "\t\n\r");
44 > /**
45 > * @class StringTokenizer.hpp "util/StringTokenizer.hpp"
46 > *
47 > * @brief The string tokenizer class allows an application to break a string into tokens
48 > *
49 > * The set of delimiters (the characters that separate tokens) may be specified either
50 > * at creation time or on a per-token basis.
51 > * An instance of StringTokenizer behaves in one of two ways, depending on whether it was
52 > * created with the returnTokens flag having the value true or false.
53 > */
54 > class StringTokenizer {
55 >    public:
56  
57 <            /**
58 <             * Constructs a string tokenizer for the specified string. The characters in the delim argument
59 <             * are the delimiters for separating tokens.
60 <             * If the returnTokens flag is true, then the delimiter characters are also returned as tokens.
61 <             * Each delimiter is returned as a string of length one. If the flag is false, the delimiter
62 <             * characters are skipped and only serve as separators between tokens.
63 <             * @param str a string to be parsed.
64 <             * @param delim the delimiters.
65 <             * @param returnTokens flag indicating whether to return the delimiters as tokens.
66 <             */
76 <            StringTokenizer(const std::string& str, const std::string& delim, bool returnTokens);
57 >        static const std::string defaultDelim;
58 >        /**
59 >         * Constructs a string tokenizer for the specified string. The characters in the delim argument
60 >         * are the delimiters for separating tokens. characters are skipped and only serve as
61 >         * separators between tokens.
62 >         * @param str a string to be parsed.
63 >         * @param delim the delimiters, default value is " \t\n\r".
64 >         */
65 >        StringTokenizer(const std::string & str,
66 >                        const std::string & delim = defaultDelim);
67  
68 <            /**
69 <             * Calculates the number of times that this tokenizer's nextToken method can be called
80 <             * before it generates an exception.
81 <             *
82 <             * @return the number of tokens remaining in the string using the current delimiter set.
83 <             */
84 <            int countTokens();
68 >        StringTokenizer(std::string::const_iterator& first, std::string::const_iterator& last,
69 >                        const std::string & delim = defaultDelim);
70  
71 <            /**
72 <             * Tests if there are more tokens available from this tokenizer's string.
73 <             *
74 <             * @return true if there are more tokens available from this tokenizer's string, false otherwise
75 <             */
76 <            bool hasMoreTokens();
71 >        /**
72 >         * Constructs a string tokenizer for the specified string. The characters in the delim argument
73 >         * are the delimiters for separating tokens.
74 >         * If the returnTokens flag is true, then the delimiter characters are also returned as tokens.
75 >         * Each delimiter is returned as a string of length one. If the flag is false, the delimiter
76 >         * characters are skipped and only serve as separators between tokens.
77 >         * @param str a string to be parsed.
78 >         * @param delim the delimiters.
79 >         * @param returnTokens flag indicating whether to return the delimiters as tokens.
80 >         */
81 >        StringTokenizer(const std::string&str, const std::string&delim,
82 >                        bool returnTokens);
83  
84 <            /**
85 <             * Returns the next token from this string tokenizer.
86 <             *
87 <             * @return the next token from this string tokenizer.
88 <             *
89 <             * @exception NoSuchElementException if there are no more tokens in this tokenizer's string
99 <             */
100 <            std::string nextToken();
84 >        /**
85 >         * Calculates the number of times that this tokenizer's nextToken method can be called
86 >         * before it generates an exception.
87 >         * @return the number of tokens remaining in the string using the current delimiter set.
88 >         */
89 >        int countTokens();
90  
91 <            /**
92 <             * Returns the next token in this string tokenizer's string. The new delimiter set remains the
93 <             * default after this call.
94 <             *
95 <             * @param newDelim the new delimiters.
107 <             *
108 <             * @return the next token, after switching to the new delimiter set.
109 <             *
110 <             * @exception NoSuchElementException if there are no more tokens in this tokenizer's string.
111 <             *
112 <             */
113 <            std::string nextToken(const std::string& newDelim);
91 >        /**
92 >         * Tests if there are more tokens available from this tokenizer's string.
93 >         * @return true if there are more tokens available from this tokenizer's string, false otherwise
94 >         */
95 >        bool hasMoreTokens();
96  
97 <            /**
98 <             * Returns the current delimiter set of this string tokenizer
99 <             *
100 <             * @return the current delimiter set
101 <             */
102 <            std::string getDelimiter();
97 >        /**
98 >         * Returns the next token from this string tokenizer.
99 >         * @return the next token from this string tokenizer.
100 >         * @exception NoSuchElementException if there are no more tokens in this tokenizer's string
101 >         */
102 >        std::string nextToken();
103  
104 <        private:
105 <            
106 <            /**
107 <             * Test if character is in current delimiter set.
108 <             *
127 <             * @param c character to be tested
128 <             *
129 <             * @return true if character is in current delimiter set, flase otherwise.
130 <             */
131 <            bool isDelimiter(char c);
132 <            
133 <            std::string delim_;  /**< current delimiter set of this string tokenizer */
104 >        /**
105 >         * Returns the next token from this string tokenizer as an integer.
106 >         * @return the next token from this string tokenizer  as an integer.
107 >         */
108 >        int nextTokenAsInt();
109  
110 <            bool returnTokens_; /**< flag indicating whether to return the delimiters as tokens */
111 <    };
110 >        /**
111 >         * Returns the next token from this string tokenizer as a float.
112 >         * @return the next token from this string tokenizer as a float.
113 >         */
114 >        float nextTokenAsFloat();
115  
116 +        /**
117 +         * Returns the next token without advancing the position of the StringTokenizer.
118 +         * @return the next token
119 +         */
120 +        std::string  peekNextToken();
121  
122 < } //namespace oopse
123 < #endif //UTIL_STRINGTOKENIZER_HPP
122 >        /**
123 >         * Returns the current delimiter set of this string tokenizer
124 >         * @return the current delimiter set
125 >         */
126 >        const std::string& getDelimiters() {
127 >            return delim_;
128 >        }
129 >
130 >        /**
131 >         * Returns the original string before tokenizing.
132 >         * @return the original string before tokenizing
133 >         */
134 >        const std::string& getOriginal() {
135 >            return tokenString_;
136 >        }
137 >
138 >    private:
139 >
140 >        /**
141 >         * Test if character is in current delimiter set.
142 >         * @param c character to be tested
143 >         * @return true if character is in current delimiter set, flase otherwise.
144 >         */
145 >        bool isDelimiter(char c);
146 >
147 >        std::string tokenString_;
148 >
149 >        std::string delim_;         /**< current delimiter set of this string tokenizer */
150 >
151 >        bool returnTokens_; /**< flag indicating whether to return the delimiters as tokens */
152 >
153 >        std::string::const_iterator currentPos_;
154 >        std::string::const_iterator end_;
155 > };
156 >
157 > }                               //namespace oopse
158 >
159 > #endif                          //UTIL_STRINGTOKENIZER_HPP

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines