diff options
author | Robert C. Helling <helling@atdotde.de> | 2015-02-26 14:39:42 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-02-27 06:29:44 +0100 |
commit | b02bf002a677e45dbaa4d28edadbaafc89a7badc (patch) | |
tree | 86f26c0dc8edbf66999e602277a15bb6a09dc38e /parse-xml.c | |
parent | ea00fdb36ab727b2f403a9feed5e8d96fb6659fc (diff) | |
download | subsurface-b02bf002a677e45dbaa4d28edadbaafc89a7badc.tar.gz |
Add hashes to images
Upon successfull reading an image file, this computes a SHA1 hash of the
image and saves it with the picture tag in the log file. When a file is
not successfully loaded (for example because the log was created on a
different computer) we look up the hash in a dictionary that maps hashes
to local file names.
That dictionary (actually two for both directions), is loaded on startup
and saved upon destruction of the main window.
Signed-off-by: Robert C. Helling <helling@atdotde.de>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'parse-xml.c')
-rw-r--r-- | parse-xml.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/parse-xml.c b/parse-xml.c index 90559d6c4..a42f8c854 100644 --- a/parse-xml.c +++ b/parse-xml.c @@ -1296,6 +1296,8 @@ static void try_to_fill_dive(struct dive *dive, const char *name, char *buf) return; if (MATCH("gps.picture", gps_picture_location, cur_picture)) return; + if (MATCH("hash.picture", utf8_string, &cur_picture->hash)) + return; if (MATCH("cylinderstartpressure", pressure, &dive->cylinder[0].start)) return; if (MATCH("cylinderendpressure", pressure, &dive->cylinder[0].end)) |