aboutsummaryrefslogtreecommitdiff
path: root/src/formatter.cpp
blob: 8c06bde2cd7e5ddfb5634e3ee30562e523af2f80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
#include "formatter.h"

Bu::Formatter::Formatter( Stream &rOut ) :
	rOut( rOut ),
	uIndent( 0 ),
	cIndent( '\t' )
{
}

Bu::Formatter::~Formatter()
{
}

void Bu::Formatter::write( const Bu::FString &sStr )
{
	rOut.write( sStr );
}

void Bu::Formatter::write( const void *sStr, int iLen )
{
	rOut.write( sStr, iLen );
}

void Bu::Formatter::writeAligned( const Bu::FString &sStr )
{
	int iLen = sStr.getSize();
	if( iLen > fLast.uMinWidth )
	{
		write( sStr );
	}
	else
	{
		int iRem = fLast.uMinWidth - iLen;
		switch( fLast.uAlign )
		{
			case Fmt::Right:
				for( int k = 0; k < iRem; k++ )
					write( &fLast.cFillChar, 1 );
				write( sStr );
				break;
			
			case Fmt::Center:
				{
					int iHlf = iRem/2;
					for( int k = 0; k < iHlf; k++ )
						write( &fLast.cFillChar, 1 );
					write( sStr );
					iHlf = iRem-iHlf;;
					for( int k = 0; k < iHlf; k++ )
						write( &fLast.cFillChar, 1 );
				}
				break;
			
			case Fmt::Left:
				write( sStr );
				for( int k = 0; k < iRem; k++ )
					write( &fLast.cFillChar, 1 );
				break;
		}
	}

	usedFormat();
}

void Bu::Formatter::writeAligned( const char *sStr, int iLen )
{
	if( iLen > fLast.uMinWidth )
	{
		write( sStr, iLen );
	}
	else
	{
		int iRem = fLast.uMinWidth - iLen;
		switch( fLast.uAlign )
		{
			case Fmt::Right:
				for( int k = 0; k < iRem; k++ )
					write( &fLast.cFillChar, 1 );
				write( sStr, iLen );
				break;
			
			case Fmt::Center:
				{
					int iHlf = iRem/2;
					for( int k = 0; k < iHlf; k++ )
						write( &fLast.cFillChar, 1 );
					write( sStr, iLen );
					iHlf = iRem-iHlf;;
					for( int k = 0; k < iHlf; k++ )
						write( &fLast.cFillChar, 1 );
				}
				break;
			
			case Fmt::Left:
				write( sStr, iLen );
				for( int k = 0; k < iRem; k++ )
					write( &fLast.cFillChar, 1 );
				break;
		}
	}

	usedFormat();
}

void Bu::Formatter::incIndent()
{
	if( uIndent < 0xFFU )
		uIndent++;
}

void Bu::Formatter::decIndent()
{
	if( uIndent > 0 )
		uIndent--;
}

void Bu::Formatter::setIndent( uint8_t uLevel )
{
	uIndent = uLevel;
}

void Bu::Formatter::clearIndent()
{
	uIndent = 0;
}

void Bu::Formatter::setIndentChar( char cIndent )
{
	this->cIndent = cIndent;
}

Bu::Formatter::Fmt &Bu::Formatter::Fmt::width( unsigned int uWidth )
{
	this->uMinWidth = uWidth;
	return *this;
}

Bu::Formatter::Fmt &Bu::Formatter::Fmt::fill( char cFill )
{
	this->cFillChar = (unsigned char)cFill;
	return *this;
}

Bu::Formatter::Fmt &Bu::Formatter::Fmt::radix( unsigned int uRadix )
{
	this->uRadix = uRadix;
	return *this;
}

Bu::Formatter::Fmt &Bu::Formatter::Fmt::align( Alignment eAlign )
{
	this->uAlign = eAlign;
	return *this;
}

Bu::Formatter::Fmt &Bu::Formatter::Fmt::plus( bool bPlus )
{
	this->bPlus = bPlus;
	return *this;
}

Bu::Formatter::Fmt &Bu::Formatter::Fmt::caps( bool bCaps )
{
	this->bCaps = bCaps;
	return *this;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, const Bu::Formatter::Fmt &f )
{
	rOut.setTempFormat( f );
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, Bu::Formatter::Special s )
{
	switch( s )
	{
		case Formatter::nl:
			{
				rOut.write("\n", 1 );
				char ci = rOut.getIndentChar();
				for( int j = 0; j < rOut.getIndent(); j++ )
					rOut.write( &ci, 1 );
			}
			break;

		case Formatter::flush:
			rOut.doFlush();
			break;
	}
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, const char *sStr )
{
	rOut.writeAligned( sStr, strlen( sStr ) );
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, char *sStr )
{
	rOut.writeAligned( sStr, strlen( sStr ) );
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, const Bu::FString &sStr )
{
	rOut.writeAligned( sStr );
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, signed char c )
{
	rOut.write( (char *)&c, 1 );
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, char c )
{
	rOut.write( (char *)&c, 1 );
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, unsigned char c )
{
	rOut.write( (char *)&c, 1 );
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, signed short i )
{
	rOut.ifmt<signed short>( i );
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, unsigned short i )
{
	rOut.ufmt<unsigned short>( i );
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, signed int i )
{
	rOut.ifmt<signed int>( i );
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, unsigned int i )
{
	rOut.ufmt<unsigned int>( i );
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, signed long i )
{
	rOut.ifmt<signed long>( i );
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, unsigned long i )
{
	rOut.ufmt<unsigned long>( i );
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, signed long long i )
{
	rOut.ifmt<signed long long>( i );
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, unsigned long long i )
{
	rOut.ufmt<unsigned long long>( i );
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, float f )
{
	rOut.ffmt<float>( f );
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, double f )
{
	rOut.ffmt<double>( f );
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, long double f )
{
	rOut.ffmt<long double>( f );
	return rOut;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, bool b )
{
	rOut.writeAligned( b?("true"):("false") );
	return rOut;
}