1 /* Word-wrapping and line-truncating streams
2 Copyright (C) 1997-2018 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Written by Miles Bader <miles@gnu.ai.mit.edu>.
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <https://www.gnu.org/licenses/>. */
19 /* This package emulates glibc 'line_wrap_stream' semantics for systems that
32 #include "argp-fmtstream.h"
33 #include "argp-namefrob.h"
35 #ifndef ARGP_FMTSTREAM_USE_LINEWRAP
38 #define isblank(ch) ((ch)==' ' || (ch)=='\t')
43 # include <libio/libioP.h>
44 # define __vsnprintf(s, l, f, a) _IO_vsnprintf (s, l, f, a)
47 #define INIT_BUF_SIZE 200
48 #define PRINTF_SIZE_GUESS 150
50 /* Return an argp_fmtstream that outputs to STREAM, and which prefixes lines
51 written on it with LMARGIN spaces and limits them to RMARGIN columns
52 total. If WMARGIN >= 0, words that extend past RMARGIN are wrapped by
53 replacing the whitespace before them with a newline and WMARGIN spaces.
54 Otherwise, chars beyond RMARGIN are simply dropped until a newline.
55 Returns NULL if there was an error. */
57 __argp_make_fmtstream (FILE *stream
,
58 size_t lmargin
, size_t rmargin
, ssize_t wmargin
)
62 fs
= (struct argp_fmtstream
*) malloc (sizeof (struct argp_fmtstream
));
67 fs
->lmargin
= lmargin
;
68 fs
->rmargin
= rmargin
;
69 fs
->wmargin
= wmargin
;
73 fs
->buf
= (char *) malloc (INIT_BUF_SIZE
);
82 fs
->end
= fs
->buf
+ INIT_BUF_SIZE
;
91 weak_alias (__argp_make_fmtstream
, argp_make_fmtstream
)
95 /* Flush FS to its stream, and free it (but don't close the stream). */
97 __argp_fmtstream_free (argp_fmtstream_t fs
)
99 __argp_fmtstream_update (fs
);
103 __fxprintf (fs
->stream
, "%.*s", (int) (fs
->p
- fs
->buf
), fs
->buf
);
105 fwrite_unlocked (fs
->buf
, 1, fs
->p
- fs
->buf
, fs
->stream
);
114 weak_alias (__argp_fmtstream_free
, argp_fmtstream_free
)
118 /* Process FS's buffer so that line wrapping is done from POINT_OFFS to the
119 end of its buffer. This code is mostly from glibc stdio/linewrap.c. */
121 __argp_fmtstream_update (argp_fmtstream_t fs
)
126 /* Scan the buffer for newlines. */
127 buf
= fs
->buf
+ fs
->point_offs
;
132 if (fs
->point_col
== 0 && fs
->lmargin
!= 0)
134 /* We are starting a new line. Print spaces to the left margin. */
135 const size_t pad
= fs
->lmargin
;
136 if (fs
->p
+ pad
< fs
->end
)
138 /* We can fit in them in the buffer by moving the
139 buffer text up and filling in the beginning. */
140 memmove (buf
+ pad
, buf
, fs
->p
- buf
);
141 fs
->p
+= pad
; /* Compensate for bigger buffer. */
142 memset (buf
, ' ', pad
); /* Fill in the spaces. */
143 buf
+= pad
; /* Don't bother searching them. */
147 /* No buffer space for spaces. Must flush. */
149 for (i
= 0; i
< pad
; i
++)
152 if (_IO_fwide (fs
->stream
, 0) > 0)
153 putwc_unlocked (L
' ', fs
->stream
);
156 putc_unlocked (' ', fs
->stream
);
163 nl
= memchr (buf
, '\n', len
);
165 if (fs
->point_col
< 0)
170 /* The buffer ends in a partial line. */
172 if (fs
->point_col
+ len
< fs
->rmargin
)
174 /* The remaining buffer text is a partial line and fits
175 within the maximum line width. Advance point for the
176 characters to be written and stop scanning. */
177 fs
->point_col
+= len
;
181 /* Set the end-of-line pointer for the code below to
182 the end of the buffer. */
185 else if (fs
->point_col
+ (nl
- buf
) < (ssize_t
) fs
->rmargin
)
187 /* The buffer contains a full line that fits within the maximum
188 line width. Reset point and scan the next line. */
194 /* This line is too long. */
199 /* Truncate the line by overwriting the excess with the
200 newline and anything after it in the buffer. */
203 memmove (buf
+ (r
- fs
->point_col
), nl
, fs
->p
- nl
);
204 fs
->p
-= buf
+ (r
- fs
->point_col
) - nl
;
205 /* Reset point for the next line and start scanning it. */
207 buf
+= r
+ 1; /* Skip full line plus \n. */
211 /* The buffer ends with a partial line that is beyond the
212 maximum line width. Advance point for the characters
213 written, and discard those past the max from the buffer. */
214 fs
->point_col
+= len
;
215 fs
->p
-= fs
->point_col
- r
;
221 /* Do word wrap. Go to the column just past the maximum line
222 width and scan back for the beginning of the word there.
223 Then insert a line break. */
228 p
= buf
+ (r
+ 1 - fs
->point_col
);
229 while (p
>= buf
&& !isblank ((unsigned char) *p
))
231 nextline
= p
+ 1; /* This will begin the next line. */
235 /* Swallow separating blanks. */
239 while (p
>= buf
&& isblank ((unsigned char) *p
));
240 nl
= p
+ 1; /* The newline will replace the first blank. */
244 /* A single word that is greater than the maximum line width.
245 Oh well. Put it on an overlong line by itself. */
246 p
= buf
+ (r
+ 1 - fs
->point_col
);
247 /* Find the end of the long word. */
251 while (p
< nl
&& !isblank ((unsigned char) *p
));
254 /* It already ends a line. No fussing required. */
259 /* We will move the newline to replace the first blank. */
261 /* Swallow separating blanks. */
264 while (isblank ((unsigned char) *p
));
265 /* The next line will start here. */
269 /* Note: There are a bunch of tests below for
270 NEXTLINE == BUF + LEN + 1; this case is where NL happens to fall
271 at the end of the buffer, and NEXTLINE is in fact empty (and so
272 we need not be careful to maintain its contents). */
274 if ((nextline
== buf
+ len
+ 1
275 ? fs
->end
- nl
< fs
->wmargin
+ 1
276 : nextline
- (nl
+ 1) < fs
->wmargin
)
279 /* The margin needs more blanks than we removed. */
280 if (fs
->end
- fs
->p
> fs
->wmargin
+ 1)
281 /* Make some space for them. */
283 size_t mv
= fs
->p
- nextline
;
284 memmove (nl
+ 1 + fs
->wmargin
, nextline
, mv
);
285 nextline
= nl
+ 1 + fs
->wmargin
;
286 len
= nextline
+ mv
- buf
;
290 /* Output the first line so we can use the space. */
293 __fxprintf (fs
->stream
, "%.*s\n",
294 (int) (nl
- fs
->buf
), fs
->buf
);
297 fwrite_unlocked (fs
->buf
, 1, nl
- fs
->buf
, fs
->stream
);
298 putc_unlocked ('\n', fs
->stream
);
301 len
+= buf
- fs
->buf
;
306 /* We can fit the newline and blanks in before
310 if (nextline
- nl
>= fs
->wmargin
311 || (nextline
== buf
+ len
+ 1 && fs
->end
- nextline
>= fs
->wmargin
))
312 /* Add blanks up to the wrap margin column. */
313 for (i
= 0; i
< fs
->wmargin
; ++i
)
316 for (i
= 0; i
< fs
->wmargin
; ++i
)
318 if (_IO_fwide (fs
->stream
, 0) > 0)
319 putwc_unlocked (L
' ', fs
->stream
);
322 putc_unlocked (' ', fs
->stream
);
324 /* Copy the tail of the original buffer into the current buffer
327 memmove (nl
, nextline
, buf
+ len
- nextline
);
328 len
-= nextline
- buf
;
330 /* Continue the scan on the remaining lines in the buffer. */
333 /* Restore bufp to include all the remaining text. */
336 /* Reset the counter of what has been output this line. If wmargin
337 is 0, we want to avoid the lmargin getting added, so we set
338 point_col to a magic value of -1 in that case. */
339 fs
->point_col
= fs
->wmargin
? fs
->wmargin
: -1;
343 /* Remember that we've scanned as far as the end of the buffer. */
344 fs
->point_offs
= fs
->p
- fs
->buf
;
347 /* Ensure that FS has space for AMOUNT more bytes in its buffer, either by
348 growing the buffer, or by flushing it. True is returned iff we succeed. */
350 __argp_fmtstream_ensure (struct argp_fmtstream
*fs
, size_t amount
)
352 if ((size_t) (fs
->end
- fs
->p
) < amount
)
356 /* Flush FS's buffer. */
357 __argp_fmtstream_update (fs
);
360 __fxprintf (fs
->stream
, "%.*s", (int) (fs
->p
- fs
->buf
), fs
->buf
);
361 wrote
= fs
->p
- fs
->buf
;
363 wrote
= fwrite_unlocked (fs
->buf
, 1, fs
->p
- fs
->buf
, fs
->stream
);
365 if (wrote
== fs
->p
- fs
->buf
)
373 fs
->point_offs
-= wrote
;
374 memmove (fs
->buf
, fs
->buf
+ wrote
, fs
->p
- fs
->buf
);
378 if ((size_t) (fs
->end
- fs
->buf
) < amount
)
379 /* Gotta grow the buffer. */
381 size_t old_size
= fs
->end
- fs
->buf
;
382 size_t new_size
= old_size
+ amount
;
385 if (new_size
< old_size
|| ! (new_buf
= realloc (fs
->buf
, new_size
)))
387 __set_errno (ENOMEM
);
392 fs
->end
= new_buf
+ new_size
;
401 __argp_fmtstream_printf (struct argp_fmtstream
*fs
, const char *fmt
, ...)
405 size_t size_guess
= PRINTF_SIZE_GUESS
; /* How much space to reserve. */
411 if (! __argp_fmtstream_ensure (fs
, size_guess
))
414 va_start (args
, fmt
);
415 avail
= fs
->end
- fs
->p
;
416 out
= __vsnprintf (fs
->p
, avail
, fmt
, args
);
418 if ((size_t) out
>= avail
)
419 size_guess
= out
+ 1;
421 while ((size_t) out
>= avail
);
430 weak_alias (__argp_fmtstream_printf
, argp_fmtstream_printf
)
434 #endif /* !ARGP_FMTSTREAM_USE_LINEWRAP */