]> git.street.me.uk Git - andy/viking.git/blob - src/jpg.c
Remove unnecessary subdomain in some OSM tileserver hostnames.
[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 #include "geotag_exif.h"
28
29 #ifdef HAVE_MAGIC_H
30 #include <magic.h>
31 #endif
32
33 /**
34  * a_jpg_magic_check:
35  * @filename: The file
36  *
37  * Returns: Whether the file is a JPG.
38  *  Uses Magic library if available to determine the jpgness.
39  *  Otherwise uses a rudimentary extension name check.
40  */
41 gboolean a_jpg_magic_check ( const gchar *filename )
42 {
43         gboolean is_jpg = FALSE;
44 #ifdef HAVE_MAGIC_H
45         magic_t myt = magic_open ( MAGIC_CONTINUE|MAGIC_ERROR|MAGIC_MIME );
46         if ( myt ) {
47 #ifdef WINDOWS
48                 // We have to 'package' the magic database ourselves :(
49                 //  --> %PROGRAM FILES%\Viking\magic.mgc
50                 magic_load ( myt, "magic.mgc" );
51 #else
52                 // Use system default
53                 magic_load ( myt, NULL );
54 #endif
55                 const char* magic = magic_file (myt, filename);
56                 if ( g_strcmp0 (magic, "image/jpeg; charset=binary") == 0 )
57                         is_jpg = TRUE;
58
59                 magic_close ( myt );
60         }
61         else
62 #endif
63                 is_jpg = a_file_check_ext ( filename, ".jpg" );
64
65         return is_jpg;
66 }
67
68 /**
69  * Load a single JPG into a Trackwaypoint Layer as a waypoint
70  *
71  * @top:      The Aggregate layer that a new TRW layer may be created in
72  * @filename: The JPG filename
73  * @vvp:      The viewport
74  *
75  * Returns: Whether the loading was a success or not
76  *
77  * If the JPG has geotag information then the waypoint will be created with the appropriate position.
78  *  Otherwise the waypoint will be positioned at the current screen center.
79  * If a TRW layer is already selected the waypoint will be created in that layer.
80  */
81 gboolean a_jpg_load_file ( VikAggregateLayer *top, const gchar *filename, VikViewport *vvp )
82 {
83         gboolean auto_zoom = TRUE;
84         VikWindow *vw = (VikWindow *)(VIK_GTK_WINDOW_FROM_LAYER(VIK_LAYER(top)));
85         VikLayersPanel *vlp = vik_window_layers_panel ( vw );
86         // Auto load into TrackWaypoint layer if one is selected
87         VikLayer *vtl = vik_layers_panel_get_selected ( vlp );
88
89         gboolean create_layer = FALSE;
90         if ( vtl == NULL || vtl->type != VIK_LAYER_TRW ) {
91                 // Create layer if necessary
92                 vtl = vik_layer_create ( VIK_LAYER_TRW, vvp, FALSE );
93                 vik_layer_rename ( vtl, a_file_basename ( filename ) );
94                 create_layer = TRUE;
95         }
96
97         gchar *name;
98         VikWaypoint *wp = a_geotag_create_waypoint_from_file ( filename, vik_viewport_get_coord_mode (vvp), &name );
99         if ( wp ) {
100                 // Create name if geotag method didn't return one
101                 if ( !name )
102                         name = g_strdup ( a_file_basename ( filename ) );
103                 vik_trw_layer_filein_add_waypoint ( VIK_TRW_LAYER(vtl), name, wp );
104                 g_free ( name );
105         }
106         else {
107                 wp = vik_waypoint_new ();
108                 wp->visible = TRUE;
109                 vik_trw_layer_filein_add_waypoint ( VIK_TRW_LAYER(vtl), (gchar*) a_file_basename(filename), wp );
110                 vik_waypoint_set_image ( wp, filename );
111                 // Simply set position to the current center
112                 wp->coord = *( vik_viewport_get_center ( vvp ) );
113                 auto_zoom = FALSE;
114         }
115
116         // Complete the setup
117         vik_layer_post_read ( vtl, vvp, TRUE );
118         if ( create_layer )
119                 vik_aggregate_layer_add_layer ( top, vtl, FALSE );
120         if ( auto_zoom )
121                 vik_trw_layer_auto_set_view ( VIK_TRW_LAYER(vtl), vvp );
122
123         // ATM This routine can't fail
124         return TRUE;
125 }