File size: 4,316 Bytes
4a85060 |
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 |
/* test-gps.c
*
* Creates ExifEntries for the GPS ifd and initializes them.
* Checks for formats and component counts.
*
* Copyright 2020 Heiko Lewin <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*/
#include <libexif/exif-utils.h>
#include <libexif/exif-data.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
/*
* List of tags to test,
*/
const uint16_t test_tags [] = {
EXIF_TAG_GPS_VERSION_ID,
EXIF_TAG_GPS_LATITUDE_REF,
EXIF_TAG_GPS_LATITUDE,
EXIF_TAG_GPS_LONGITUDE_REF,
EXIF_TAG_GPS_LONGITUDE,
EXIF_TAG_GPS_ALTITUDE_REF,
EXIF_TAG_GPS_ALTITUDE,
EXIF_TAG_GPS_TIME_STAMP,
EXIF_TAG_GPS_SATELLITES,
EXIF_TAG_GPS_STATUS,
EXIF_TAG_GPS_MEASURE_MODE,
EXIF_TAG_GPS_DOP,
EXIF_TAG_GPS_SPEED_REF,
EXIF_TAG_GPS_SPEED,
EXIF_TAG_GPS_TRACK_REF,
EXIF_TAG_GPS_TRACK,
EXIF_TAG_GPS_IMG_DIRECTION_REF,
EXIF_TAG_GPS_IMG_DIRECTION,
EXIF_TAG_GPS_MAP_DATUM,
EXIF_TAG_GPS_DEST_LATITUDE_REF,
EXIF_TAG_GPS_DEST_LATITUDE,
EXIF_TAG_GPS_DEST_LONGITUDE_REF,
EXIF_TAG_GPS_DEST_LONGITUDE,
EXIF_TAG_GPS_DEST_BEARING_REF,
EXIF_TAG_GPS_DEST_BEARING,
EXIF_TAG_GPS_DEST_DISTANCE_REF,
EXIF_TAG_GPS_DEST_DISTANCE,
EXIF_TAG_GPS_PROCESSING_METHOD,
EXIF_TAG_GPS_AREA_INFORMATION,
EXIF_TAG_GPS_DATE_STAMP,
EXIF_TAG_GPS_DIFFERENTIAL,
EXIF_TAG_GPS_H_POSITIONING_ERROR,
0xFFFFu
};
/*
* Verify that the entry is properly initialized.
*/
static int check_entry_format(ExifEntry *e)
{
if(e->tag > EXIF_TAG_GPS_H_POSITIONING_ERROR) {
/* unknown tags should get EXIF_FORMAT_UNDEFINED, no size and no data */
if(e->format != EXIF_FORMAT_UNDEFINED || e->size || e->components || e->data) {
fprintf(stderr, "check_entry_format: Unknown tag not handled correctly (tag=%x)\n", e->tag);
return 1;
}
return 0;
}
switch(e->format) {
case EXIF_FORMAT_UNDEFINED:
case EXIF_FORMAT_ASCII:
/* entries with ASCII or UNDEFINED format do not necessarily need to have the component count set.
only check here is, if component count is set, the size should match the count */
if(e->size != e->components) {
fprintf (stderr, "check_entry_format: Entry has bad component count or size (tag=%x)\n", e->tag);
return 1;
}
break;
default:
/* All other formats should have a nonzero component count. */
if(!e->components) {
fprintf (stderr, "check_entry_format: Entry should have component count set (tag=%x)\n", e->tag);
return 1;
}
return 0;
}
/* If a value is present the size should be set to the right value */
if(e->data && e->size != e->components * exif_format_get_size(e->format)) {
fprintf (stderr, "check_entry_format: Entry has bad size (tag=%x)\n", e->tag);
return 1;
}
return 0;
}
int
main ()
{
int i;
ExifData *data = NULL;
ExifEntry *e = NULL;
data = exif_data_new ();
if (!data) {
fprintf (stderr, "Error running exif_data_new()\n");
goto ERROR_EXIT;
}
/* Run tests */
for (i=0; i < sizeof(test_tags)/sizeof(test_tags[0]); ++i) {
e = exif_entry_new ();
if (!e) {
fprintf (stderr, "Error running exif_entry_new()\n");
goto ERROR_EXIT;
}
exif_content_add_entry(data->ifd[EXIF_IFD_GPS], e);
exif_entry_initialize (e, (ExifTag)test_tags[i]);
if(check_entry_format(e)) goto ERROR_EXIT;
exif_content_remove_entry (data->ifd[EXIF_IFD_GPS], e);
exif_entry_unref (e);
}
exif_data_unref(data);
return 0;
ERROR_EXIT:
exif_entry_unref (e);
exif_data_unref (data);
exit(EXIT_FAILURE);
}
|