about summary refs log tree commit diff
path: root/analyzer/pamtable.c
blob: 333eff6955e34893362bd617704f668a8ac66466 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
/*=============================================================================
                               pamtable
===============================================================================
  Print the raster as a table of numbers.

  By Bryan Henderson, San Jose CA 2017.04.15.

  Contributed to the public domain

=============================================================================*/
#include <math.h>
#include "pm_c_util.h"
#include "pam.h"
#include "shhopt.h"
#include "mallocvar.h"
#include "nstring.h"

enum Style {STYLE_BASIC, STYLE_TUPLE};

struct CmdlineInfo {
    /* All the information the user supplied in the command line,
       in a form easy for the program to use.
    */
    const char * inputFileName;  /* Name of input file */
    enum Style   outputStyle;
    unsigned int hex;
    unsigned int verbose;
};


static void
parseCommandLine(int argc, const char ** const argv,
                 struct CmdlineInfo * const cmdlineP) {

    optEntry * option_def;
        /* Instructions to OptParseOptions4 on how to parse our options.
         */
    optStruct3 opt;

    unsigned int option_def_index;
    unsigned int tuple;

    MALLOCARRAY(option_def, 100);

    option_def_index = 0;   /* incremented by OPTENT3 */

    OPTENT3(0,   "tuple",     OPT_FLAG,  NULL, &tuple,               0);
    OPTENT3(0,   "hex",       OPT_FLAG,  NULL, &cmdlineP->hex,       0);
    OPTENT3(0,   "verbose",   OPT_FLAG,  NULL, &cmdlineP->verbose,   0);
        /* For future expansion */

    opt.opt_table = option_def;
    opt.short_allowed = FALSE;  /* We have no short (old-fashioned) options */
    opt.allowNegNum = FALSE;  /* We have no parms that are negative numbers */

    pm_optParseOptions4(&argc, argv, opt, sizeof(opt), 0);
        /* Uses and sets argc, argv, and some of *cmdlineP and others. */

    if (tuple && cmdlineP->hex)
        pm_error("-hex is invalid with -tuple");

    if (tuple)
        cmdlineP->outputStyle = STYLE_TUPLE;
    else
        cmdlineP->outputStyle = STYLE_BASIC;

    if (argc-1 > 1)
        pm_error("Too many arguments (%d).  File name is the only argument.",
                 argc-1);

    if (argc-1 < 1)
        cmdlineP->inputFileName = "-";
    else
        cmdlineP->inputFileName = argv[1];

    free(option_def);
}



typedef struct {

    const char * sampleFmt;
       /* Printf format of a sample, e.g. %3u */

    const char * interSampleGutter;
       /* What we print between samples within a tuple */

    const char * interTupleGutter;
       /* What we print between tuples within a row */

    const char * rowStartString;
       /* What we print at the beginning of each row */

    const char * rowEndString;
       /* What we print at the end of each row */

} Format;



static double const
log16(double const arg) {

    return log(arg)/log(16);
}



static const char *
basicSampleFormat(const struct pam * const pamP,
                  bool               const wantHex) {
/*----------------------------------------------------------------------------
   The printf format string for a single sample in the output table.

   E.g "%03u".

   This format does not include any spacing between samples.
-----------------------------------------------------------------------------*/
    unsigned int cipherWidth;
    char         formatSpecifier;
    const char * flag;
    const char * retval;

    if (wantHex) {
        formatSpecifier = 'x';
        cipherWidth     = ROUNDU(ceil(log16(pamP->maxval + 1)));
        flag            = "0";
    } else {
        formatSpecifier = 'u';
        cipherWidth     = ROUNDU(ceil(log10(pamP->maxval + 1)));
        flag            = "";
    }
    pm_asprintf(&retval, "%%%s%u%c", flag, cipherWidth, formatSpecifier);

    return retval;
}



static void
makeFormat(const struct pam * const pamP,
           enum Style         const outputStyle,
           bool               const wantHex,
           Format *           const formatP) {

    switch (outputStyle) {
      case STYLE_BASIC:
          formatP->sampleFmt         = basicSampleFormat(pamP, wantHex);
          formatP->interSampleGutter = " ";
          formatP->interTupleGutter  = pamP->depth > 1 ? "|" : " ";
          formatP->rowStartString    = "";
          formatP->rowEndString      = "\n";
          break;
      case STYLE_TUPLE:
          formatP->sampleFmt         = pm_strdup("%u");
          formatP->interSampleGutter = ",";
          formatP->interTupleGutter  = ") (";
          formatP->rowStartString    = "(";
          formatP->rowEndString      = ")\n";
          break;
    }
}



static void
unmakeFormat(Format * const formatP) {

    pm_strfree(formatP->sampleFmt);
}



static void
printRow(const struct pam * const pamP,
         tuple *            const tupleRow,
         Format             const format,
         FILE *             const ofP) {

    unsigned int col;

    fputs (format.rowStartString, ofP);

    for (col = 0; col < pamP->width; ++col) {
        unsigned int plane;

        if (col > 0)
            fputs(format.interTupleGutter, ofP);

        for (plane = 0; plane < pamP->depth; ++plane) {

            if (plane > 0)
                fputs(format.interSampleGutter, ofP);

            fprintf(ofP, format.sampleFmt, tupleRow[col][plane]);
        }
    }

    fputs (format.rowEndString, ofP);
}



static void
printRaster(FILE *             const ifP,
            const struct pam * const pamP,
            FILE *             const ofP,
            enum Style         const outputStyle,
            bool               const wantHex) {

    Format format;

    tuple * inputRow;   /* Row from input image */
    unsigned int row;

    makeFormat(pamP, outputStyle, wantHex, &format);

    inputRow = pnm_allocpamrow(pamP);

    for (row = 0; row < pamP->height; ++row) {
        pnm_readpamrow(pamP, inputRow);

        printRow(pamP, inputRow, format, ofP);
    }

    pnm_freepamrow(inputRow);

    unmakeFormat(&format);
}



int
main(int argc, const char *argv[]) {

    FILE * ifP;
    struct CmdlineInfo cmdline;
    struct pam inpam;   /* Input PAM image */

    pm_proginit(&argc, argv);

    parseCommandLine(argc, argv, &cmdline);

    ifP = pm_openr(cmdline.inputFileName);

    pnm_readpaminit(ifP, &inpam, PAM_STRUCT_SIZE(tuple_type));

    printRaster(ifP, &inpam, stdout, cmdline.outputStyle, cmdline.hex);

    pm_close(inpam.file);

    return 0;
}