diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-12-07 16:13:22 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-12-07 16:13:22 +0100 |
commit | b5a616f850b9fe5d9f631f1bc9592d1d85bb0f9f (patch) | |
tree | 49b70804e78a908cc6664bfd7c879a258273c731 | |
parent | style + minor bug fixes (diff) | |
download | scrotty-b5a616f850b9fe5d9f631f1bc9592d1d85bb0f9f.tar.gz scrotty-b5a616f850b9fe5d9f631f1bc9592d1d85bb0f9f.tar.bz2 scrotty-b5a616f850b9fe5d9f631f1bc9592d1d85bb0f9f.tar.xz |
inform the user which file cannot be opened on failure
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | src/scrotty.c | 40 |
1 files changed, 34 insertions, 6 deletions
diff --git a/src/scrotty.c b/src/scrotty.c index 8a45b24..48d9cab 100644 --- a/src/scrotty.c +++ b/src/scrotty.c @@ -50,6 +50,22 @@ +/** + * Stores a filename to `failure_file` and goes to the label `fail`. + * + * @param PATH:char * The file that could not be used. + * Must be accessible by `main`. + */ +#define FILE_FAILURE(PATH) \ + do \ + { \ + failure_file = PATH; \ + goto fail; \ + } \ + while (0) + + + #define LIST_0_9(P) P"0\n", P"1\n", P"2\n", P"3\n", P"4\n", P"5\n", P"6\n", P"7\n", P"8\n", P"9\n" /** @@ -85,6 +101,13 @@ static const char *execname; */ static char **convert_args = NULL; +/** + * If a function fails when it tries to + * open a file, it will set this variable + * point to the pathname of that file. + */ +static const char *failure_file = NULL; + /** * Create an PNM-file that is sent to `convert` for convertion @@ -254,7 +277,7 @@ save (const char *fbpath, const char *imgpath, long width, long height) /* Open output file. */ if (fd = open (imgpath, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH), fd == -1) - goto fail; + FILE_FAILURE (imgpath); /* Save image. */ if (save_pnm (fbpath, width, height, fd) < 0) @@ -287,7 +310,7 @@ save (const char *fbpath, const char *imgpath, long width, long height) static int measure (int fbno, long *width, long *height) { - char buf[PATH_MAX]; + static char buf[PATH_MAX]; char *delim; int sizefd = -1; ssize_t got; @@ -297,7 +320,7 @@ measure (int fbno, long *width, long *height) sprintf (buf, SYSDIR "/class/graphics/fb%i/virtual_size", fbno); sizefd = open (buf, O_RDONLY); if (sizefd == -1) - goto fail; + FILE_FAILURE (buf); /* Get the dimensions of the framebuffer. */ got = read (sizefd, buf, sizeof (buf) / sizeof (char) - 1); @@ -504,7 +527,7 @@ exec_image (char *flatten_args) /* Parent process: */ /* Wait for child to exit. */ - if (waitpid(pid, &status, 0) < 0) + if (waitpid (pid, &status, 0) < 0) return -1; /* Return successfully if and only if `the child` did. */ @@ -525,8 +548,8 @@ exec_image (char *flatten_args) static int save_fb (int fbno, int raw, const char *filepattern, const char *execpattern) { + static char imgpath[PATH_MAX]; char fbpath[PATH_MAX]; - char imgpath[PATH_MAX]; char *execargs = NULL; void *new; long width, height; @@ -756,7 +779,12 @@ int main return 0; fail: - return perror (execname), 1; + if (failure_file == NULL) + perror (execname); + else + fprintf (stderr, "%s: %s: %s\n", + execname, strerror (errno), failure_file); + return 1; #undef EXIT_USAGE } |