Download raw body.
diff_output_lines() performance fix
On Wed, Jul 07, 2021 at 09:41:31AM -0400, ori@eigenstate.org wrote:
> Quoth Stefan Sperling <stsp@stsp.name>:
> > Embedded NUL bytes are incompatible
> > with the call fprintf(dest, "%s\n", buf);
>
> Is there any reason to avoid fwrite() that
> I'm missing?
Oh, yes. Using fwrite() simplifies things. Thanks!
diff c2cf8015b6da213404a3d87a14ff228d1ca99c50 c7c136ae4b43fc040bd55978735fb5e81a7c400e
blob - daf8b8cb069e52f434eb062cf50fbf0d99b33ecd
blob + 46a9e0ca73dd9461540f0acb0aa537e3775489de
--- lib/diff_output.c
+++ lib/diff_output.c
@@ -55,6 +55,8 @@ get_atom_byte(int *ch, struct diff_atom *atom, off_t o
return 0;
}
+#define DIFF_OUTPUT_BUF_SIZE 512
+
int
diff_output_lines(struct diff_output_info *outinfo, FILE *dest,
const char *prefix, struct diff_atom *start_atom,
@@ -71,12 +73,16 @@ diff_output_lines(struct diff_output_info *outinfo, FI
foreach_diff_atom(atom, start_atom, count) {
off_t outlen = 0;
- int i, ch;
+ int i, ch, nbuf = 0;
unsigned int len = atom->len;
- rc = fprintf(dest, "%s", prefix);
- if (rc < 0)
- return errno;
- outlen += rc;
+ unsigned char buf[DIFF_OUTPUT_BUF_SIZE + 1 /* '\n' */];
+ size_t n;
+
+ n = strlcpy(buf, prefix, sizeof(buf));
+ if (n >= sizeof(buf))
+ return ENOBUFS;
+ nbuf += n;
+
if (len) {
rc = get_atom_byte(&ch, atom, len - 1);
if (rc)
@@ -96,13 +102,18 @@ diff_output_lines(struct diff_output_info *outinfo, FI
rc = get_atom_byte(&ch, atom, i);
if (rc)
return rc;
- rc = fprintf(dest, "%c", (unsigned char)ch);
- if (rc < 0)
- return errno;
- outlen += rc;
+ if (nbuf >= DIFF_OUTPUT_BUF_SIZE) {
+ rc = fwrite(buf, 1, nbuf, dest);
+ if (rc != nbuf)
+ return errno;
+ outlen += rc;
+ nbuf = 0;
+ }
+ buf[nbuf++] = ch;
}
- rc = fprintf(dest, "\n");
- if (rc < 0)
+ buf[nbuf++] = '\n';
+ rc = fwrite(buf, 1, nbuf, dest);
+ if (rc != nbuf)
return errno;
outlen += rc;
if (outinfo) {
diff_output_lines() performance fix