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 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605
|
/*
* columns.c
* $Id: columns.c,v 1.13 2001/06/24 00:47:56 bkorb Exp $
*/
/*
* Columns copyright 1992-1999 Bruce Korb
*
* Columns is free software.
* You may redistribute it and/or modify it under the terms of the
* GNU General Public License, as published by the Free Software
* Foundation; either version 2, or (at your option) any later version.
*
* Columns is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Columns. See the file "COPYING". If not,
* write to: The Free Software Foundation, Inc.,
* 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "opts.h"
#ifndef HAVE_SNPRINTF
# include "snprintfv/snprintfv.h"
#endif
struct print_list {
char** papz;
int index;
};
typedef struct print_list tPrintList, *tpPrintList;
typedef int (tCompProc)(const void*, const void*);
tCompProc compProc;
int maxEntryWidth = 0;
int fillColumnCt = 0;
char zLine[ 133 ];
char zFmtLine[ 133 ];
char** papzLines = (char**)NULL;
char* pzLinePfx = (char*)NULL;
char* pzFirstPfx = (char*)NULL;
size_t allocCt = 0;
size_t usedCt = 0;
size_t lineWidth = 79;
size_t columnCt = 0;
size_t columnSz = 0;
void readLines( void );
void writeRows( void );
void writeColumns( void );
int handleIndent( char* pzIndentArg );
int
main( int argc,
char** argv )
{
if (optionProcess( &columnsOptions, argc, argv ) != argc) {
fputs( "Error: this program takes no arguments\n", stderr );
USAGE( EXIT_FAILURE );
}
if (HAVE_OPT( WIDTH ))
lineWidth = OPT_VALUE_WIDTH;
if (HAVE_OPT( INDENT )) {
size_t indentSize = handleIndent( OPT_ARG( INDENT ));
lineWidth -= indentSize;
if (! HAVE_OPT( FIRST_INDENT ))
pzFirstPfx = pzLinePfx;
else {
/*
* The first line has a special indentation/prefix.
* Compute it, but do not let it be larger than
* the indentation value.
*/
char* pzSave = pzLinePfx;
size_t firstSize = handleIndent( OPT_ARG( FIRST_INDENT ));
pzFirstPfx = pzLinePfx;
pzLinePfx = pzSave;
/*
* Now force the first line prefix to have the same size
* as the indentSize
*/
if (firstSize > indentSize) {
fprintf( stderr, "Warning: prefix `%s' has been truncated to ",
pzFirstPfx );
pzFirstPfx[ indentSize ] = '\0';
fprintf( stderr, "`%s'\n", pzFirstPfx );
} else if (firstSize < indentSize) {
char* tmp = (char*)malloc( indentSize + 1 );
char z[10];
snprintf( z, sizeof(z), "%%-%ds", indentSize );
snprintf( tmp, indentSize + 1, z, pzFirstPfx );
pzFirstPfx = tmp;
}
}
}
if (HAVE_OPT( LINE_SEPARATION ))
lineWidth -= strlen( OPT_ARG( LINE_SEPARATION ));
if (HAVE_OPT( COL_WIDTH ))
columnSz = OPT_VALUE_COL_WIDTH;
if (HAVE_OPT( COLUMNS ))
columnCt = OPT_VALUE_COLUMNS;
if (lineWidth <= 16)
lineWidth = 16;
readLines();
if (HAVE_OPT( SORT ))
qsort( (void*)papzLines, usedCt, sizeof( char* ), &compProc );
if (HAVE_OPT( BY_COLUMNS ))
writeColumns();
else writeRows();
return EXIT_SUCCESS;
}
int
handleIndent( char* pzIndentArg )
{
char* pz;
long colCt = strtol( pzIndentArg, &pz, 0 );
/*
* IF the indent argument is a number
*/
if (*pz == '\0') {
/*
* AND that number is reasonable, ...
*/
if (colCt <= 0)
return 0;
/*
* Allocate a string to hold the line prefix
*/
pzLinePfx = (char*)malloc( colCt + 1 );
if (pzLinePfx == (char*)NULL) {
fprintf( stderr, "Cannot malloc %d bytes\n", colCt + 1 );
exit( EXIT_FAILURE );
}
/*
* Set it to a NUL terminated string of spaces
*/
memset( (void*)pzLinePfx, ' ', colCt );
pzLinePfx[ colCt ] = '\0';
} else {
/*
* Otherwise, set the line prefix to whatever the string is.
* It will not be the empty string because that is handled
* as an indent count of zero and is ignored.
*/
pz = pzLinePfx = pzIndentArg;
colCt = 0;
for (;;) {
/*
* Figure out how much of the line is taken up by
* the prefix. We might consider restricted format
* strings some time in the future, but not now.
*/
switch (*pz++) {
case '\0':
goto colsCounted;
case '\t':
colCt += OPT_VALUE_TAB_WIDTH
- (colCt % OPT_VALUE_TAB_WIDTH);
break;
case '\n':
case '\f':
case '\r':
colCt = 0;
break;
default:
colCt++;
break;
case '\a':
break;
}
} colsCounted:;
}
return colCt;
}
void
readLines( void )
{
int sepLen;
char* pzText;
if (HAVE_OPT( SEPARATION ))
sepLen = strlen( OPT_ARG( SEPARATION ));
else sepLen = 0;
/*
* Read the input text, stripping trailing white space
*/
for (;;) {
char* pzL;
char* pzText = fgets( zLine, sizeof( zLine ), stdin );
int len;
if (pzText == (char*)NULL)
break;
/*
* Trim off trailing white space.
*/
len = strlen( pzText );
pzText += len;
while (isspace( pzText[-1] )) {
if (--pzText == zLine)
goto next_line;
len--;
}
*pzText = '\0';
/*
* IF the input lines are to be reformatted,
* THEN the length is the result of the sprintf
* Else, compute the length.
*/
if (HAVE_OPT( FORMAT )) {
pzText = zFmtLine;
len = snprintf( zFmtLine, sizeof(zFmtLine), OPT_ARG( FORMAT ),
zLine );
} else {
pzText = zLine;
}
/*
* Allocate a string and space in the pointer array.
*/
len += sepLen + 1;
pzL = (char*)malloc( len );
if (++usedCt > allocCt) {
allocCt += 128;
papzLines = (char**)realloc( (void*)papzLines,
sizeof( char* ) * allocCt );
}
papzLines[ usedCt-1 ] = pzL;
/*
* Copy the text and append the separation character
*/
strcpy( pzL, pzText );
/*
* Initially, all strings have the separator,
* the entries may get reordered.
*/
if (sepLen > 0)
strcat( pzL, OPT_ARG( SEPARATION ));
if (len > maxEntryWidth)
maxEntryWidth = len;
next_line:;
}
if (maxEntryWidth == 0) {
fputs( "Warning: no input text was read\n", stderr );
exit( EXIT_SUCCESS );
}
/*
* Set the line width to the amount of space we have to play with.
*/
if (lineWidth < maxEntryWidth)
lineWidth = maxEntryWidth;
/*
* If we do not have a column size set,
* then figure out what it must be.
*/
if (columnSz == 0) {
/*
* IF the column count has not been set,
* THEN compute it.
*/
if (columnCt == 0)
columnCt = lineWidth / maxEntryWidth;
/*
* IF there are to be multiple columns, ...
*/
if (columnCt > 1) {
int spreadwidth = lineWidth - maxEntryWidth;
int sz = spreadwidth / (columnCt-1);
/*
* Either there is room for added space,
* or we must (possibly) reduce the number of columns
*/
if (sz >= maxEntryWidth)
columnSz = sz;
else {
columnCt = (spreadwidth / maxEntryWidth) + 1;
if (columnCt > 1)
columnSz = spreadwidth / (columnCt - 1);
else columnSz = lineWidth;
}
}
}
/*
* Otherwise, the column size has been set. Ensure it is sane.
*/
else {
/*
* Increase the column size to the width of the widest entry
*/
if (maxEntryWidth > columnSz)
columnSz = maxEntryWidth;
/*
* IF we have not been provided a column count
* *OR* we are set to overfill the output line,
* THEN compute the number of columns.
*/
if ( (columnCt == 0)
|| ( ((columnSz * (columnCt-1)) + maxEntryWidth) > lineWidth ))
columnCt = ((lineWidth - maxEntryWidth) / columnSz) + 1;
}
/*
* Ensure that any "spread" we added to the column size
* does not exceed the parameterized limit.
*/
if ( HAVE_OPT( SPREAD )
&& ((maxEntryWidth + OPT_VALUE_SPREAD - 1) < columnSz))
columnSz = maxEntryWidth + OPT_VALUE_SPREAD - 1;
}
void
writeColumns( void )
{
char zFmt[ 12 ];
int colCt, rowCt, col, row;
tpPrintList pPL;
colCt = columnCt;
snprintf( zFmt, sizeof(zFmt), "%%-%ds", columnSz );
if (colCt == 1) {
writeRows();
return;
}
pPL = (tpPrintList)malloc( colCt * sizeof( tPrintList ));
/*
* This "loop" is normally executed half way through and exited.
* IF, however, we would produce an empty final column,
* we will reduce our column count and line width and then
* try the top-of-column pointer computation again.
*
* The problem solved here is that sometimes, when the
* number of entries in a row is greater than the number of rows,
* it is possible that all the entries that would have been
* in the last column are, instead, essentially put on the
* last row. That will leave the final column empty.
* We could regroup at that point and spread the columns some more,
* but, if done, is an exercise for later.
*/
for (;;) {
int rem;
int fsz;
rowCt = (usedCt/colCt) + ((usedCt % colCt) ? 1 : 0);
/*
* FOR each column, compute the address of the pointer to
* the string at the top of the column, and the index of
* that entry.
*/
for (col = 0; col < colCt ; col++) {
pPL[col].papz = papzLines + (col * rowCt);
pPL[col].index = col * rowCt;
}
/*
* IF the final column is not empty,
* THEN break out and start printing.
*/
if (pPL[colCt-1].index < usedCt)
break;
/*
* The last column is blank, so we reduce our column count,
* even if the user specified a count!!
*/
colCt--;
rem = lineWidth - (colCt * maxEntryWidth);
if ((rem == 0) || (colCt < 2) || (columnSz > 0))
fsz = maxEntryWidth;
else
fsz = maxEntryWidth + (rem / (colCt-1));
snprintf( zFmt, sizeof(zFmt), "%%-%ds", fsz );
}
/*
* Now, actually print each row...
*/
for ( row = 0 ;; ) {
char* pzL;
char* pzE;
if (pzLinePfx != (char*)NULL)
fputs( pzLinePfx, stdout );
/*
* Increment the index of the current entry in the last column.
* IF it goes beyond the end of the entries in use,
* THEN reduce our column count.
*/
if ((pPL[colCt-1].index)++ >= usedCt)
colCt--;
/*
* Get the address of the string in the last column.
*/
pzE = *(pPL[colCt-1].papz++);
col = 0;
/*
* FOR every column except the last,
* print the entry with the width format
*
* No need to worry about referring to a non-existent
* entry. Only the last column might have that problem,
* and we addressed it above where the column count got
* decremented.
*/
while (++col < colCt) {
pzL = *(pPL[col-1].papz++);
fprintf( stdout, zFmt, pzL );
free( (void*)pzL );
}
/*
* See if we are on the last row. If so, then
* this is the last entry. Strip any separation
* characters, emit the entry and break out.
*/
if (++row == rowCt) {
/*
* IF we have a separator,
* THEN remove it from the last entry.
*/
if (HAVE_OPT( SEPARATION )) {
char* pz = pzE + strlen( pzE )
- strlen( OPT_ARG( SEPARATION ));
*pz = '\0';
}
fputs( pzE, stdout );
fputc( '\n', stdout );
break;
}
/*
* Print the last entry on the line, without the width format.
* If we have line separation (which does not apply to the last
* line), then emit those characters, too.
*/
fputs( pzE, stdout );
if (HAVE_OPT( LINE_SEPARATION ))
fputs( OPT_ARG( LINE_SEPARATION ), stdout );
fputc( '\n', stdout );
free( (void*)pzE );
}
}
void
writeRows( void )
{
char zFmt[ 12 ];
int colCt;
colCt = columnCt;
snprintf( zFmt, sizeof(zFmt), "%%-%ds", columnSz );
/*
* IF we have a separator,
* THEN remove it from the last entry.
*/
if (HAVE_OPT( SEPARATION )) {
char* pz = papzLines[ usedCt-1 ];
pz += strlen( pz ) - strlen( OPT_ARG( SEPARATION ));
*pz = '\0';
}
if (pzFirstPfx != (char*)NULL) {
fputs( pzFirstPfx, stdout );
pzFirstPfx = pzLinePfx;
}
{
char** ppzLL = papzLines;
size_t left = usedCt;
int lnNo = 0;
/*
* FOR every entry we are to emit, ...
*/
for (;;) {
char* pzL = *ppzLL++;
/*
* IF this is the last entry,
* THEN emit it and a new line and break out
*/
if (--left <= 0) {
fputs( pzL, stdout );
fputc( '\n', stdout );
free( (void*)pzL );
break;
}
/*
* IF the count of entries on this line is still less
* than the number of columns,
* THEN emit the padded entry
* ELSE ...
*/
if (++lnNo < colCt)
fprintf( stdout, zFmt, pzL );
else {
lnNo = 0;
/*
* Last entry on the line. Emit the string without padding.
* IF we have a line separation string, emit that too.
*/
fputs( pzL, stdout );
if (HAVE_OPT( LINE_SEPARATION ))
fputs( OPT_ARG( LINE_SEPARATION ), stdout );
fputc( '\n', stdout );
/*
* Start the next line with any required indentation
*/
if (pzFirstPfx != (char*)NULL) {
fputs( pzFirstPfx, stdout );
pzFirstPfx = pzLinePfx;
}
}
free( (void*)pzL );
} while (left > 0);
}
}
/*
* Line comparison procedure
*/
int
compProc( const void* p1, const void* p2 )
{
char* pz1 = *(char**)p1;
char* pz2 = *(char**)p2;
return strcmp( pz1, pz2 );
}
|