]> git.street.me.uk Git - andy/viking.git/blob - src/jpg.c
Restore opening of JPG files.
[andy/viking.git] / src / jpg.c
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3  * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
4  *
5  * Copyright (C) 2014, Rob Norris <rw_norris@hotmail.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  *
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26 #include "jpg.h"
27 #ifdef VIK_CONFIG_GEOTAG
28 #include "geotag_exif.h"
29 #endif
30 #ifdef HAVE_MAGIC_H
31 #include <magic.h>
32 #endif
33
34 /**
35  * a_jpg_magic_check:
36  * @filename: The file
37  *
38  * Returns: Whether the file is a JPG.
39  *  Uses Magic library if available to determine the jpgness.
40  *  Otherwise uses a rudimentary extension name check.
41  */
42 gboolean a_jpg_magic_check ( const gchar *filename )
43 {
44         gboolean is_jpg = FALSE;
45 #ifdef HAVE_MAGIC_H
46         magic_t myt = magic_open ( MAGIC_CONTINUE|MAGIC_ERROR|MAGIC_MIME );
47         if ( myt ) {
48 #ifdef WINDOWS
49                 // We have to 'package' the magic database ourselves :(
50                 //  --> %PROGRAM FILES%\Viking\magic.mgc
51                 magic_load ( myt, "magic.mgc" );
52 #else
53                 // Use system default
54                 magic_load ( myt, NULL );
55 #endif
56                 const char* magic = magic_file (myt, filename);
57                 g_debug ( "%s:%s", __FUNCTION__, magic );
58                 if ( g_ascii_strncasecmp (magic, "image/jpeg", 10) == 0 )
59                         is_jpg = TRUE;
60
61                 magic_close ( myt );
62         }
63         else
64 #endif
65                 is_jpg = a_file_check_ext ( filename, ".jpg" );
66
67         return is_jpg;
68 }
69
70 /**
71  * Load a single JPG into a Trackwaypoint Layer as a waypoint
72  *
73  * @top:      The Aggregate layer that a new TRW layer may be created in
74  * @filename: The JPG filename
75  * @vvp:      The viewport
76  *
77  * Returns: Whether the loading was a success or not
78  *
79  * If the JPG has geotag information then the waypoint will be created with the appropriate position.
80  *  Otherwise the waypoint will be positioned at the current screen center.
81  * If a TRW layer is already selected the waypoint will be created in that layer.
82  */
83 gboolean a_jpg_load_file ( VikAggregateLayer *top, const gchar *filename, VikViewport *vvp )
84 {
85         gboolean auto_zoom = TRUE;
86         VikWindow *vw = (VikWindow *)(VIK_GTK_WINDOW_FROM_LAYER(VIK_LAYER(top)));
87         VikLayersPanel *vlp = vik_window_layers_panel ( vw );
88         // Auto load into TrackWaypoint layer if one is selected
89         VikLayer *vtl = vik_layers_panel_get_selected ( vlp );
90
91         gboolean create_layer = FALSE;
92         if ( vtl == NULL || vtl->type != VIK_LAYER_TRW ) {
93                 // Create layer if necessary
94                 vtl = vik_layer_create ( VIK_LAYER_TRW, vvp, FALSE );
95                 vik_layer_rename ( vtl, a_file_basename ( filename ) );
96                 create_layer = TRUE;
97         }
98
99         gchar *name = NULL;
100         VikWaypoint *wp = NULL;
101 #ifdef VIK_CONFIG_GEOTAG
102         wp = a_geotag_create_waypoint_from_file ( filename, vik_viewport_get_coord_mode (vvp), &name );
103 #endif
104         if ( wp ) {
105                 // Create name if geotag method didn't return one
106                 if ( !name )
107                         name = g_strdup ( a_file_basename ( filename ) );
108                 vik_trw_layer_filein_add_waypoint ( VIK_TRW_LAYER(vtl), name, wp );
109                 g_free ( name );
110         }
111         else {
112                 wp = vik_waypoint_new ();
113                 wp->visible = TRUE;
114                 vik_trw_layer_filein_add_waypoint ( VIK_TRW_LAYER(vtl), (gchar*) a_file_basename(filename), wp );
115                 vik_waypoint_set_image ( wp, filename );
116                 // Simply set position to the current center
117                 wp->coord = *( vik_viewport_get_center ( vvp ) );
118                 auto_zoom = FALSE;
119         }
120
121         // Complete the setup
122         vik_layer_post_read ( vtl, vvp, TRUE );
123         if ( create_layer )
124                 vik_aggregate_layer_add_layer ( top, vtl, FALSE );
125         if ( auto_zoom )
126                 vik_trw_layer_auto_set_view ( VIK_TRW_LAYER(vtl), vvp );
127
128         // ATM This routine can't fail
129         return TRUE;
130 }