-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathreword.cpp
504 lines (466 loc) · 9.62 KB
/
reword.cpp
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
# include <cstdlib>
# include <iostream>
# include <iomanip>
# include <fstream>
# include <ctime>
# include <cstring>
using namespace std;
int main ( int argc, char *argv[] );
int handle ( string input_filename, string output_filename, int word_max );
int s_len_trim ( string s );
int s_to_i4 ( string s, int *last, bool *error );
void timestamp ( );
//****************************************************************************80
int main ( int argc, char *argv[] )
//****************************************************************************80
//
// Purpose:
//
// MAIN is the main program for REWORD.
//
// Discussion:
//
// REWORD rewrites a file to have a given number of "words" per line.
//
// This program reads a file, and writes a copy for which each line
// has a fixed number of "words", that is, blank-delimited strings.
//
// Usage:
//
// reword file1 file2 word_max
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 23 April 2010
//
// Author:
//
// John Burkardt
//
{
bool error;
string input_filename;
string output_filename;
int last;
int result;
string s;
bool VERBOSE = false;
int word_max = 10;
if ( VERBOSE )
{
timestamp ( );
cout << "\n";
cout << "REWORD:\n";
cout << " C++ version\n";
cout << " Insert new lines where necessary into a copy of the input\n";
cout << " file, so that the lines of the output file are no longer\n";
cout << " than a given number of characters.\n";
cout << "\n";
cout << " Compiled on " << __DATE__ << " at " << __TIME__ << ".\n";
}
//
// If the input file was not on the command line, get it now.
//
if ( argc < 2 )
{
cout << "\n";
cout << "REWORD:\n";
cout << " Please enter the INPUT file name:\n";
cin >> input_filename;
}
else
{
input_filename = argv[1];
}
//
// If the output file was not on the command line, get it now.
//
if ( argc < 3 )
{
cout << "\n";
cout << "REWORD:\n";
cout << " Please enter the OUTPUT file name:\n";
cin >> output_filename;
}
else
{
output_filename = argv[2];
}
//
// If the number of words per line was not on the command line, get it now.
//
if ( argc < 4 )
{
cout << "\n";
cout << "REWORD:\n";
cout << " Please enter the number of words per line:\n";
cin >> word_max;
}
else
{
s = argv[3];
word_max = s_to_i4 ( s, &last, &error );
}
//
// Now we know the input and output file names, so go to it.
//
result = handle ( input_filename, output_filename, word_max );
if ( VERBOSE )
{
cout << "\n";
cout << "REWORD:\n";
cout << " Normal end of execution.\n";
cout << "\n";
timestamp ( );
}
return result;
}
//****************************************************************************80
int handle ( string input_filename, string output_filename, int word_max )
//****************************************************************************80
//
// Purpose:
//
// HANDLE makes a copy of a file with a given number of words per line.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 23 April 2010
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, string INPUT_FILE, the name of the input file.
//
// Input, string OUTPUT_FILE, the name of the output file.
//
// Input, int WORD_MAX, the number of words per line.
//
// Output, int HANDLE, is 0 for success, or 1 if there was an error.
//
{
char c;
char c_old;
ifstream input;
ofstream output;
int input_char_num;
int input_line_num;
int output_char_num;
int output_line_num;
bool VERBOSE = true;
int word_num;
int word_num_current;
//
// Open the input and output files.
//
input.open ( input_filename.c_str ( ) );
if ( !input )
{
cout << "\n";
cout << "REWORD::HANDLE - Fatal error!\n";
cout << " Cannot open the input file " << input_filename << ".\n";
return 1;
}
output.open ( output_filename.c_str ( ) );
if ( !output )
{
cout << "\n";
cout << "REWORD::HANDLE - Fatal error!\n";
cout << " Cannot open the output file " << output_filename << ".\n";
return 1;
}
//
// Transfer characters from the input file to the output file.
//
input_char_num = 0;
input_line_num = 0;
output_char_num = 0;
output_line_num = 0;
word_num = 0;
word_num_current = 0;
c = ' ';
while ( 1 )
{
//
// Get a new character.
//
c_old = c;
input.get ( c );
if ( input.eof ( ) )
{
output.put ( '\n' );
output_char_num = output_char_num + 1;
output_line_num = output_line_num + 1;
break;
}
input_char_num = input_char_num + 1;
//
// Carriage returns become spaces.
//
if ( c == '\n' )
{
c = ' ';
input_line_num = input_line_num + 1;
}
//
// If a new word began, do we need to begin a new line?
//
if ( c_old == ' ' && c != ' ' )
{
word_num = word_num + 1;
word_num_current = word_num_current + 1;
}
if ( word_max < word_num_current )
{
output.put ( '\n' );
output_char_num = output_char_num + 1;
output_line_num = output_line_num + 1;
word_num_current = word_num_current - word_max;
}
//
// Emit the new character.
//
output.put ( c );
output_char_num = output_char_num + 1;
}
//
// Close the files.
//
input.close ( );
output.close ( );
//
// Report.
//
if ( VERBOSE )
{
cout << "\n";
cout << " The input file \"" << input_filename << "\" contains:\n";
cout << " " << input_char_num << " characters.\n";
cout << " " << word_num << " words.\n";
cout << " " << input_line_num << " lines.\n";
cout << "\n";
cout << " The output file \"" << output_filename << "\" contains:\n";
cout << " " << output_char_num << " characters.\n";
cout << " " << word_num << " words.\n";
cout << " " << output_line_num << " lines.\n";
}
return 0;
}
//****************************************************************************80
int s_len_trim ( string s )
//****************************************************************************80
//
// Purpose:
//
// S_LEN_TRIM returns the length of a string to the last nonblank.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 05 July 2009
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, string S, a string.
//
// Output, int S_LEN_TRIM, the length of the string to the last nonblank.
// If S_LEN_TRIM is 0, then the string is entirely blank.
//
{
int n;
n = s.length ( );
while ( 0 < n )
{
if ( s[n-1] != ' ' )
{
return n;
}
n = n - 1;
}
return n;
}
//****************************************************************************80
int s_to_i4 ( string s, int *last, bool *error )
//****************************************************************************80
//
// Purpose:
//
// S_TO_I4 reads an I4 from a string.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 05 July 2009
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, string S, a string to be examined.
//
// Output, int *LAST, the last character of S used to make IVAL.
//
// Output, bool *ERROR is TRUE if an error occurred.
//
// Output, int *S_TO_I4, the integer value read from the string.
// If the string is blank, then IVAL will be returned 0.
//
{
char c;
int i;
int isgn;
int istate;
int ival;
*error = false;
istate = 0;
isgn = 1;
i = 0;
ival = 0;
for ( ; ; )
{
c = s[i];
i = i + 1;
//
// Haven't read anything.
//
if ( istate == 0 )
{
if ( c == ' ' )
{
}
else if ( c == '-' )
{
istate = 1;
isgn = -1;
}
else if ( c == '+' )
{
istate = 1;
isgn = + 1;
}
else if ( '0' <= c && c <= '9' )
{
istate = 2;
ival = c - '0';
}
else
{
*error = true;
return ival;
}
}
//
// Have read the sign, expecting digits.
//
else if ( istate == 1 )
{
if ( c == ' ' )
{
}
else if ( '0' <= c && c <= '9' )
{
istate = 2;
ival = c - '0';
}
else
{
*error = true;
return ival;
}
}
//
// Have read at least one digit, expecting more.
//
else if ( istate == 2 )
{
if ( '0' <= c && c <= '9' )
{
ival = 10 * (ival) + c - '0';
}
else
{
ival = isgn * ival;
*last = i - 1;
return ival;
}
}
}
//
// If we read all the characters in the string, see if we're OK.
//
if ( istate == 2 )
{
ival = isgn * ival;
*last = s_len_trim ( s );
}
else
{
*error = true;
*last = 0;
}
return ival;
}
//****************************************************************************80
void timestamp ( )
//****************************************************************************80
//
// Purpose:
//
// TIMESTAMP prints the current YMDHMS date as a time stamp.
//
// Example:
//
// May 31 2001 09:45:54 AM
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 04 October 2003
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// None
//
{
# define TIME_SIZE 40
static char time_buffer[TIME_SIZE];
const struct tm *tm;
size_t len;
time_t now;
now = time ( NULL );
tm = localtime ( &now );
len = strftime ( time_buffer, TIME_SIZE, "%d %B %Y %I:%M:%S %p", tm );
cout << time_buffer << "\n";
return;
# undef TIME_SIZE
}