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 258 259 260 261 262 263
|
/*
* (C) Copyright 2005- ECMWF.
*
* This software is licensed under the terms of the Apache Licence Version 2.0
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
*
* In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
* virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
*/
#include "grib_api_internal.h"
#if ECCODES_TIMER
void usage(char* prog)
{
printf("usage: %s [-a outfile | -w outfile ] grib_file repetitions bitsPerValue\n", prog);
exit(1);
}
size_t grib_handle_write(grib_handle* h, char* filename)
{
FILE* of = NULL;
const void* buffer;
size_t size;
of = fopen(filename, "wb");
if (!of) {
perror(filename);
exit(1);
}
GRIB_CHECK(grib_get_message(h, &buffer, &size), 0);
if (fwrite(buffer, 1, size, of) != size) {
perror(filename);
exit(1);
}
fclose(of);
return size;
}
static void print_timer(grib_timer* t, int repeat)
{
printf("%s : %g cpu\n", t->name_, t->timer_ / repeat);
}
int main(int argc, char* argv[])
{
grib_handle* h = NULL;
grib_context* c = NULL;
FILE* fin = NULL;
FILE* fout = NULL;
char* finname;
char* ofilename;
char defofilename[] = "jpeg_perf.out";
double* values = NULL;
int append = 0;
size_t nvalues = 0;
int count, e = 0;
int repeatjpeg = 1;
int repeatsimple = 1;
grib_timer *tes, *tds, *tej, *tdj;
char grid_jpeg[] = "grid_jpeg";
size_t grid_jpeg_l = strlen(grid_jpeg);
char grid_simple[] = "grid_simple";
size_t grid_simple_l = strlen(grid_simple);
char packingType[50] = {0,};
size_t len = 50;
char param[50] = {0,};
char gridType[50] = {0,};
char outfilename[255] = {0,};
size_t filesize_jpeg = 0;
size_t filesize_simple = 0;
double perc = 0;
long bitsPerValue = 0;
int iarg = 1;
char grid[32] = {0,};
char shortName[20] = {0,};
long level;
char levelType[20] = {0,};
tes = grib_get_timer(0, "encoding simple", 0, 0);
tds = grib_get_timer(0, "decoding simple", 0, 0);
tej = grib_get_timer(0, "encoding jpeg", 0, 0);
tdj = grib_get_timer(0, "decoding jpeg", 0, 0);
if (argc != 4 && argc != 6) usage(argv[0]);
if (!strcmp(argv[iarg], "-w")) {
append = 0;
iarg++;
ofilename = argv[iarg];
iarg++;
}
else if (!strcmp(argv[iarg], "-a")) {
append = 1;
iarg++;
ofilename = argv[iarg];
iarg++;
}
else {
append = 0;
ofilename = defofilename;
}
finname = argv[iarg++];
repeatsimple = atoi(argv[iarg++]);
bitsPerValue = atoi(argv[iarg++]);
fin = fopen(finname, "rb");
if (!fin) {
perror(finname);
exit(1);
}
if (append)
fout = fopen(ofilename, "ab");
else
fout = fopen(ofilename, "wb");
if (!fout) {
perror(ofilename);
exit(1);
}
c = grib_context_get_default();
e = 0;
h = grib_handle_new_from_file(c, fin, &e);
fclose(fin);
GRIB_CHECK(e, 0);
len = 50;
grib_get_string(h, "shortName", param, &len);
len = 20;
grib_get_string(h, "levelType", levelType, &len);
if (!strcmp(levelType, "pl")) {
GRIB_CHECK(grib_get_long(h, "level", &level), 0);
sprintf(shortName, "%s%ld", param, level);
}
else {
sprintf(shortName, "%s", param);
}
grib_set_long(h, "editionNumber", 2);
GRIB_CHECK(grib_get_size(h, "values", &nvalues), 0);
values = (double*)grib_context_malloc(c, sizeof(double) * nvalues);
if (!values) {
printf("%s: memory allocation error\n", argv[0]);
exit(1);
}
len = 50;
grib_get_string(h, "gridType", gridType, &len);
len = 50;
grib_get_string(h, "packingType", packingType, &len);
GRIB_CHECK(grib_get_double_array(h, "values", values, &nvalues), 0);
grib_set_long(h, "bitsPerValue", bitsPerValue);
GRIB_CHECK(grib_set_double_array(h, "values", values, nvalues), 0);
printf("--------------------------------\n");
printf("- %s - gridType=%s packingType=%s numberOfValues=%ld bitsPerValue=%ld\n",
param, gridType, packingType, (long)nvalues, bitsPerValue);
if (!strcmp(packingType, "spectral_complex") || !strcmp(packingType, "spectral_simple")) {
printf("unable to process spectral data\n");
exit(1);
}
if (!strcmp(gridType, "reduced_gg") || !strcmp(gridType, "regular_gg")) {
long N;
grib_get_long(h, "N", &N);
printf(" N=%ld\n", N);
sprintf(grid, "%ld", N);
}
if (!strcmp(gridType, "regular_ll")) {
double Di, Dj;
grib_get_double(h, "DiInDegrees", &Di);
grib_get_double(h, "DjInDegrees", &Dj);
printf(" Di=%g Dj=%g\n", Di, Dj);
sprintf(grid, "%g/%g", Di, Dj);
}
if (!append)
fprintf(fout,
"shortName gridType numberOfValues bitsPerValue grid sizeSimple sizeJpeg encodeJpeg encodeSimple decodeJpeg decodeSimple\n");
/* decode values grid_simple */
if (strcmp(packingType, grid_simple))
grib_set_string(h, "packingType", grid_simple, &grid_simple_l);
/* printf("decoding simple\n"); */
grib_timer_start(tds);
for (count = 0; count < repeatsimple; count++)
GRIB_CHECK(grib_get_double_array(h, "values", values, &nvalues), 0);
grib_timer_stop(tds, 0);
/* printf("%d messages decoded\n\n",count); */
*outfilename = '\0';
sprintf(outfilename, "%s_%s_%ld_simple.grib2", param, gridType, bitsPerValue);
filesize_simple = grib_handle_write(h, outfilename);
printf("file size simple = %ld\n", (long)filesize_simple);
/* encode values grid_simple*/
/* printf("encoding simple\n"); */
grib_timer_start(tes);
for (count = 0; count < repeatsimple; count++)
GRIB_CHECK(grib_set_double_array(h, "values", values, nvalues), 0);
grib_timer_stop(tes, 0);
/* printf("%d messages encoded \n\n",count); */
/* decode values grid_jpeg */
grib_set_string(h, "packingType", grid_jpeg, &grid_jpeg_l);
/* printf("decoding jpeg\n"); */
grib_timer_start(tdj);
for (count = 0; count < repeatjpeg; count++)
GRIB_CHECK(grib_get_double_array(h, "values", values, &nvalues), 0);
grib_timer_stop(tdj, 0);
/* printf("%d messages decoded\n\n",count); */
*outfilename = '\0';
sprintf(outfilename, "%s_%s_%ld_jpeg.grib2", param, gridType, bitsPerValue);
filesize_jpeg = grib_handle_write(h, outfilename);
printf("file size jpeg = %ld\n", (long)filesize_jpeg);
perc = (double)filesize_simple / (double)filesize_jpeg;
printf("compression ratio = %g \n", perc);
printf("space savings = %g \n", (1.0 - 1.0 / perc) * 100);
/* encode values grid_jpeg*/
/* printf("encoding jpeg\n"); */
grib_timer_start(tej);
for (count = 0; count < repeatjpeg; count++)
GRIB_CHECK(grib_set_double_array(h, "values", values, nvalues), 0);
grib_timer_stop(tej, 0);
/* printf("%d messages encoded \n\n",count); */
grib_handle_delete(h);
grib_context_free(c, values);
print_timer(tej, repeatjpeg);
print_timer(tdj, repeatjpeg);
print_timer(tes, repeatsimple);
print_timer(tds, repeatsimple);
printf("--------------------------------\n\n");
fprintf(fout, "%s %s %ld %ld %s %ld %ld %g %g %g %g\n",
shortName, gridType, (long)nvalues, bitsPerValue,
grid, (long)filesize_simple, (long)filesize_jpeg, tej->timer_ / repeatjpeg, tes->timer_ / repeatsimple, tdj->timer_ / repeatjpeg, tds->timer_ / repeatsimple);
return 0;
}
#else
int main(int argc, char* argv[])
{
return 0;
}
#endif
|