ECC-233: Stray comma character in BUFR json dump

This commit is contained in:
Shahram Najm 2016-06-09 13:50:10 +01:00
parent ec7b55b08e
commit fa07d641c5
2 changed files with 28 additions and 18 deletions

View File

@ -24,29 +24,36 @@ cd ${data_dir}/bufr
bufr_files=`cat bufr_data_files.txt`
for file in ${bufr_files}
do
rm -f ${file}.json | true
${tools_dir}bufr_dump -js $file 2> $REDIRECT > ${file}.json
if test "x$JSON_CHECK" != "x"; then
json_xs < ${file}.json >$REDIRECT 2> $REDIRECT
fi
rm -f ${file}.json | true
${tools_dir}bufr_dump -ja $file 2> $REDIRECT > ${file}.json
if test "x$JSON_CHECK" != "x"; then
json_xs < ${file}.json >$REDIRECT 2> $REDIRECT
fi
# JSON dump structure
rm -f ${file}.json
${tools_dir}bufr_dump -js $file 2> $REDIRECT > ${file}.json
if test "x$JSON_CHECK" != "x"; then
json_xs < ${file}.json >$REDIRECT 2> $REDIRECT
fi
# JSON dump all attributes
rm -f ${file}.json
${tools_dir}bufr_dump -ja $file 2> $REDIRECT > ${file}.json
if test "x$JSON_CHECK" != "x"; then
json_xs < ${file}.json >$REDIRECT 2> $REDIRECT
fi
# JSON dump flat
rm -f ${file}.json
${tools_dir}bufr_dump -jf $file 2> $REDIRECT > ${file}.json
if test "x$JSON_CHECK" != "x"; then
json_xs < ${file}.json >$REDIRECT 2> $REDIRECT
fi
rm -f ${file}.json
done
# ECC-233: Test JSON dump when selecting messages with '-w' switch
file=tropical_cyclone.bufr
for c in 1 3 1/3; do
${tools_dir}bufr_dump -w count=$c $file 2> $REDIRECT > ${file}.json
if test "x$JSON_CHECK" != "x"; then
json_xs < ${file}.json >$REDIRECT 2> $REDIRECT
fi
done

View File

@ -163,7 +163,10 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h)
grib_set_flag(h,options->print_keys[i].name,GRIB_ACCESSOR_FLAG_DUMP);
if (json) {
if (options->handle_count>1) fprintf(stdout,",\n");
/* ECC-233: print comma as separator between messages */
if (!first_handle && options->handle_count>1) {
fprintf(stdout,",\n");
}
if (json && first_handle) {
fprintf(stdout,"{ \"messages\" : [ \n");
first_handle=0;