blob: e0e382d0cdc11360c437fd202bce806983adc599 [file] [log] [blame]
Thomas G. Lanebc79e061995-08-02 00:00:00 +00001/*
2 * cdjpeg.c
3 *
DRC5033f3e2014-05-18 18:33:44 +00004 * This file was part of the Independent JPEG Group's software:
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00005 * Copyright (C) 1991-1997, Thomas G. Lane.
DRC5033f3e2014-05-18 18:33:44 +00006 * It was modified by The libjpeg-turbo Project to include only code relevant
7 * to libjpeg-turbo.
Alex Naidis6eb7d372016-10-16 23:10:08 +02008 * For conditions of distribution and use, see the accompanying README.ijg
9 * file.
Thomas G. Lanebc79e061995-08-02 00:00:00 +000010 *
11 * This file contains common support routines used by the IJG application
12 * programs (cjpeg, djpeg, jpegtran).
13 */
14
DRCe5eaf372014-05-09 18:00:32 +000015#include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
16#include <ctype.h> /* to declare isupper(), tolower() */
Thomas G. Lanebc79e061995-08-02 00:00:00 +000017#ifdef USE_SETMODE
DRCe5eaf372014-05-09 18:00:32 +000018#include <fcntl.h> /* to declare setmode()'s parameter macros */
Thomas G. Lanebc79e061995-08-02 00:00:00 +000019/* If you have setmode() but not <io.h>, just delete this line: */
DRCe5eaf372014-05-09 18:00:32 +000020#include <io.h> /* to declare setmode() */
Thomas G. Lanebc79e061995-08-02 00:00:00 +000021#endif
22
23
24/*
Thomas G. Lanebc79e061995-08-02 00:00:00 +000025 * Optional progress monitor: display a percent-done figure on stderr.
26 */
27
28#ifdef PROGRESS_REPORT
29
Thomas G. Lane489583f1996-02-07 00:00:00 +000030METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -040031progress_monitor(j_common_ptr cinfo)
Thomas G. Lanebc79e061995-08-02 00:00:00 +000032{
Leon Scroggins III3993b372018-07-16 10:43:45 -040033 cd_progress_ptr prog = (cd_progress_ptr)cinfo->progress;
Thomas G. Lanebc79e061995-08-02 00:00:00 +000034 int total_passes = prog->pub.total_passes + prog->total_extra_passes;
Leon Scroggins III3993b372018-07-16 10:43:45 -040035 int percent_done =
36 (int)(prog->pub.pass_counter * 100L / prog->pub.pass_limit);
Thomas G. Lanebc79e061995-08-02 00:00:00 +000037
38 if (percent_done != prog->percent_done) {
39 prog->percent_done = percent_done;
40 if (total_passes > 1) {
41 fprintf(stderr, "\rPass %d/%d: %3d%% ",
DRCe5eaf372014-05-09 18:00:32 +000042 prog->pub.completed_passes + prog->completed_extra_passes + 1,
43 total_passes, percent_done);
Thomas G. Lanebc79e061995-08-02 00:00:00 +000044 } else {
45 fprintf(stderr, "\r %3d%% ", percent_done);
46 }
47 fflush(stderr);
48 }
49}
50
51
Thomas G. Lane489583f1996-02-07 00:00:00 +000052GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -040053start_progress_monitor(j_common_ptr cinfo, cd_progress_ptr progress)
Thomas G. Lanebc79e061995-08-02 00:00:00 +000054{
55 /* Enable progress display, unless trace output is on */
56 if (cinfo->err->trace_level == 0) {
57 progress->pub.progress_monitor = progress_monitor;
58 progress->completed_extra_passes = 0;
59 progress->total_extra_passes = 0;
60 progress->percent_done = -1;
61 cinfo->progress = &progress->pub;
62 }
63}
64
65
Thomas G. Lane489583f1996-02-07 00:00:00 +000066GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -040067end_progress_monitor(j_common_ptr cinfo)
Thomas G. Lanebc79e061995-08-02 00:00:00 +000068{
69 /* Clear away progress display */
70 if (cinfo->err->trace_level == 0) {
71 fprintf(stderr, "\r \r");
72 fflush(stderr);
73 }
74}
75
76#endif
77
78
79/*
80 * Case-insensitive matching of possibly-abbreviated keyword switches.
81 * keyword is the constant keyword (must be lower case already),
82 * minchars is length of minimum legal abbreviation.
83 */
84
Thomas G. Lane489583f1996-02-07 00:00:00 +000085GLOBAL(boolean)
Leon Scroggins III3993b372018-07-16 10:43:45 -040086keymatch(char *arg, const char *keyword, int minchars)
Thomas G. Lanebc79e061995-08-02 00:00:00 +000087{
88 register int ca, ck;
89 register int nmatched = 0;
90
91 while ((ca = *arg++) != '\0') {
92 if ((ck = *keyword++) == '\0')
DRCe5eaf372014-05-09 18:00:32 +000093 return FALSE; /* arg longer than keyword, no good */
94 if (isupper(ca)) /* force arg to lcase (assume ck is already) */
Thomas G. Lanebc79e061995-08-02 00:00:00 +000095 ca = tolower(ca);
96 if (ca != ck)
DRCe5eaf372014-05-09 18:00:32 +000097 return FALSE; /* no good */
98 nmatched++; /* count matched characters */
Thomas G. Lanebc79e061995-08-02 00:00:00 +000099 }
100 /* reached end of argument; fail if it's too short for unique abbrev */
101 if (nmatched < minchars)
102 return FALSE;
DRCe5eaf372014-05-09 18:00:32 +0000103 return TRUE; /* A-OK */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000104}
105
106
107/*
108 * Routines to establish binary I/O mode for stdin and stdout.
109 * Non-Unix systems often require some hacking to get out of text mode.
110 */
111
Thomas G. Lane489583f1996-02-07 00:00:00 +0000112GLOBAL(FILE *)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400113read_stdin(void)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000114{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400115 FILE *input_file = stdin;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000116
DRCe5eaf372014-05-09 18:00:32 +0000117#ifdef USE_SETMODE /* need to hack file mode? */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000118 setmode(fileno(stdin), O_BINARY);
119#endif
DRCe5eaf372014-05-09 18:00:32 +0000120#ifdef USE_FDOPEN /* need to re-open in binary mode? */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000121 if ((input_file = fdopen(fileno(stdin), READ_BINARY)) == NULL) {
122 fprintf(stderr, "Cannot reopen stdin\n");
123 exit(EXIT_FAILURE);
124 }
125#endif
126 return input_file;
127}
128
129
Thomas G. Lane489583f1996-02-07 00:00:00 +0000130GLOBAL(FILE *)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400131write_stdout(void)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000132{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400133 FILE *output_file = stdout;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000134
DRCe5eaf372014-05-09 18:00:32 +0000135#ifdef USE_SETMODE /* need to hack file mode? */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000136 setmode(fileno(stdout), O_BINARY);
137#endif
DRCe5eaf372014-05-09 18:00:32 +0000138#ifdef USE_FDOPEN /* need to re-open in binary mode? */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000139 if ((output_file = fdopen(fileno(stdout), WRITE_BINARY)) == NULL) {
140 fprintf(stderr, "Cannot reopen stdout\n");
141 exit(EXIT_FAILURE);
142 }
143#endif
144 return output_file;
145}