Merge branch 'rs/apply-reject-long-name' into next
[alt-git.git] / write-or-die.c
blob01a9a51fa2fcd758b32ffc8f3e75811710804754
1 #include "git-compat-util.h"
2 #include "parse.h"
3 #include "run-command.h"
4 #include "write-or-die.h"
6 /*
7 * Some cases use stdio, but want to flush after the write
8 * to get error handling (and to get better interactive
9 * behaviour - not buffering excessively).
11 * Of course, if the flush happened within the write itself,
12 * we've already lost the error code, and cannot report it any
13 * more. So we just ignore that case instead (and hope we get
14 * the right error code on the flush).
16 * If the file handle is stdout, and stdout is a file, then skip the
17 * flush entirely since it's not needed.
19 void maybe_flush_or_die(FILE *f, const char *desc)
21 if (f == stdout) {
22 static int force_flush_stdout = -1;
24 if (force_flush_stdout < 0) {
25 force_flush_stdout = git_env_bool("GIT_FLUSH", -1);
26 if (force_flush_stdout < 0) {
27 struct stat st;
28 if (fstat(fileno(stdout), &st))
29 force_flush_stdout = 1;
30 else
31 force_flush_stdout = !S_ISREG(st.st_mode);
34 if (!force_flush_stdout && !ferror(f))
35 return;
37 if (fflush(f)) {
38 check_pipe(errno);
39 die_errno("write failure on '%s'", desc);
43 void fprintf_or_die(FILE *f, const char *fmt, ...)
45 va_list ap;
46 int ret;
48 va_start(ap, fmt);
49 ret = vfprintf(f, fmt, ap);
50 va_end(ap);
52 if (ret < 0) {
53 check_pipe(errno);
54 die_errno("write error");
58 static int maybe_fsync(int fd)
60 if (use_fsync < 0)
61 use_fsync = git_env_bool("GIT_TEST_FSYNC", 1);
62 if (!use_fsync)
63 return 0;
65 if (fsync_method == FSYNC_METHOD_WRITEOUT_ONLY &&
66 git_fsync(fd, FSYNC_WRITEOUT_ONLY) >= 0)
67 return 0;
69 return git_fsync(fd, FSYNC_HARDWARE_FLUSH);
72 void fsync_or_die(int fd, const char *msg)
74 if (maybe_fsync(fd) < 0)
75 die_errno("fsync error on '%s'", msg);
78 int fsync_component(enum fsync_component component, int fd)
80 if (fsync_components & component)
81 return maybe_fsync(fd);
82 return 0;
85 void fsync_component_or_die(enum fsync_component component, int fd, const char *msg)
87 if (fsync_components & component)
88 fsync_or_die(fd, msg);
91 void write_or_die(int fd, const void *buf, size_t count)
93 if (write_in_full(fd, buf, count) < 0) {
94 check_pipe(errno);
95 die_errno("write error");
99 void fwrite_or_die(FILE *f, const void *buf, size_t count)
101 if (fwrite(buf, 1, count, f) != count)
102 die_errno("fwrite error");
105 void fflush_or_die(FILE *f)
107 if (fflush(f))
108 die_errno("fflush error");