aboutsummaryrefslogtreecommitdiff
path: root/src/formatter.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2010-05-11 13:27:30 +0000
committerMike Buland <eichlan@xagasoft.com>2010-05-11 13:27:30 +0000
commit1300301a52bba102fed8b08bdcb668d246973af5 (patch)
treebd64c93b000b5637cb185d704714ac6a634603a2 /src/formatter.cpp
parent70be76029b39d9d909ce9c069c1564d5d476fc22 (diff)
downloadlibbu++-1300301a52bba102fed8b08bdcb668d246973af5.tar.gz
libbu++-1300301a52bba102fed8b08bdcb668d246973af5.tar.bz2
libbu++-1300301a52bba102fed8b08bdcb668d246973af5.tar.xz
libbu++-1300301a52bba102fed8b08bdcb668d246973af5.zip
Fixed an issue in the reader, it was tokenizing.
Diffstat (limited to 'src/formatter.cpp')
-rw-r--r--src/formatter.cpp59
1 files changed, 40 insertions, 19 deletions
diff --git a/src/formatter.cpp b/src/formatter.cpp
index ce92caa..7eaa1e2 100644
--- a/src/formatter.cpp
+++ b/src/formatter.cpp
@@ -120,30 +120,45 @@ void Bu::Formatter::read( void *sStr, int iLen )
120Bu::FString Bu::Formatter::readToken() 120Bu::FString Bu::Formatter::readToken()
121{ 121{
122 Bu::FString sRet; 122 Bu::FString sRet;
123 for(;;) 123 if( fLast.bTokenize )
124 { 124 {
125 char buf; 125 for(;;)
126 int iRead = rStream.read( &buf, 1 );
127 if( iRead == 0 )
128 return sRet;
129 if( buf == ' ' || buf == '\t' || buf == '\n' || buf == '\r' )
130 continue;
131 else
132 { 126 {
133 sRet += buf; 127 char buf;
134 break; 128 int iRead = rStream.read( &buf, 1 );
129 if( iRead == 0 )
130 return sRet;
131 if( buf == ' ' || buf == '\t' || buf == '\n' || buf == '\r' )
132 continue;
133 else
134 {
135 sRet += buf;
136 break;
137 }
138 }
139 for(;;)
140 {
141 char buf;
142 int iRead = rStream.read( &buf, 1 );
143 if( iRead == 0 )
144 return sRet;
145 if( buf == ' ' || buf == '\t' || buf == '\n' || buf == '\r' )
146 return sRet;
147 else
148 sRet += buf;
135 } 149 }
136 } 150 }
137 for(;;) 151 else
138 { 152 {
139 char buf; 153 for(;;)
140 int iRead = rStream.read( &buf, 1 ); 154 {
141 if( iRead == 0 ) 155 char buf;
142 return sRet; 156 int iRead = rStream.read( &buf, 1 );
143 if( buf == ' ' || buf == '\t' || buf == '\n' || buf == '\r' ) 157 if( iRead == 0 )
144 return sRet; 158 return sRet;
145 else 159 else
146 sRet += buf; 160 sRet += buf;
161 }
147 } 162 }
148} 163}
149 164
@@ -228,6 +243,12 @@ Bu::Formatter::Fmt &Bu::Formatter::Fmt::caps( bool bCaps )
228 return *this; 243 return *this;
229} 244}
230 245
246Bu::Formatter::Fmt &Bu::Formatter::Fmt::tokenize( bool bTokenize )
247{
248 this->bTokenize = bTokenize;
249 return *this;
250}
251
231Bu::Formatter &Bu::operator<<( Bu::Formatter &f, const Bu::Formatter::Fmt &fmt ) 252Bu::Formatter &Bu::operator<<( Bu::Formatter &f, const Bu::Formatter::Fmt &fmt )
232{ 253{
233 f.setTempFormat( fmt ); 254 f.setTempFormat( fmt );