Fix:Android:Correct surface handling
[navit-package] / navit / mapset.c
1 /**
2  * Navit, a modular navigation system.
3  * Copyright (C) 2005-2008 Navit Team
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * version 2 as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA  02110-1301, USA.
18  */
19
20 /** @file
21  * 
22  * @brief Contains code used for loading more than one map
23  *
24  * The code in this file introduces "mapsets", which are collections of several maps.
25  * This enables navit to operate on more than one map at once. See map.c / map.h to learn
26  * how maps are handled.
27  */
28
29 #include <string.h>
30 #include <glib.h>
31 #include <glib/gprintf.h>
32 #include "debug.h"
33 #include "item.h"
34 #include "mapset.h"
35 #include "projection.h"
36 #include "map.h"
37
38 /**
39  * @brief A mapset
40  *
41  * This structure holds a complete mapset
42  */
43 struct mapset {
44         GList *maps; /**< Linked list of all the maps in the mapset */
45 };
46
47 struct attr_iter {
48         GList *last;
49 };
50
51 /**
52  * @brief Creates a new, empty mapset
53  *
54  * @return The new mapset 
55  */
56 struct mapset *mapset_new(struct attr *parent, struct attr **attrs)
57 {
58         struct mapset *ms;
59
60         ms=g_new0(struct mapset, 1);
61
62         return ms;
63 }
64
65
66 struct attr_iter *
67 mapset_attr_iter_new(void)
68 {
69         return g_new0(struct attr_iter, 1);
70 }
71
72 void
73 mapset_attr_iter_destroy(struct attr_iter *iter)
74 {
75         g_free(iter);
76 }
77
78 /**
79  * @brief Adds a map to a mapset
80  *
81  * @param ms The mapset to add the map to
82  * @param m The map to be added
83  */
84 int
85 mapset_add_attr(struct mapset *ms, struct attr *attr)
86 {
87         switch (attr->type) {
88         case attr_map:
89                 ms->maps=g_list_append(ms->maps, attr->u.map);
90                 return 1;
91         default:
92                 return 0;
93         }
94 }
95
96 int
97 mapset_get_attr(struct mapset *ms, enum attr_type type, struct attr *attr, struct attr_iter *iter)
98 {
99         GList *map;
100         map=ms->maps;
101         attr->type=type;
102         switch (type) {
103         case attr_map:
104                 while (map) {
105                         if (!iter || iter->last == g_list_previous(map)) {
106                                 attr->u.map=map->data;
107                                 if (iter)
108                                         iter->last=map;
109                                 return 1;
110                         }
111                         map=g_list_next(map);
112                 }
113                 break;
114         default:
115                 break;
116         }
117         return 0;
118 }
119
120
121 #if 0
122 static void mapset_maps_free(struct mapset *ms)
123 {
124         /* todo */
125 }
126 #endif
127
128 /**
129  * @brief Destroys a mapset. 
130  *
131  * This destroys a mapset. Please note that it does not touch the contained maps
132  * in any way.
133  *
134  * @param ms The mapset to be destroyed
135  */
136 void mapset_destroy(struct mapset *ms)
137 {
138         g_free(ms);
139 }
140
141 /**
142  * @brief Handle for a mapset in use
143  *
144  * This struct is used for a mapset that is in use. With this it is possible to iterate
145  * all maps in a mapset.
146  */
147 struct mapset_handle {
148         GList *l;       /**< Pointer to the current (next) map */
149 };
150
151 /**
152  * @brief Returns a new handle for a mapset
153  *
154  * This returns a new handle for an existing mapset. The new handle points to the first
155  * map in the set.
156  *
157  * @param ms The mapset to get a handle of
158  * @return The new mapset handle
159  */
160 struct mapset_handle *
161 mapset_open(struct mapset *ms)
162 {
163         struct mapset_handle *ret=NULL;
164         if(ms)
165         {
166                 ret=g_new(struct mapset_handle, 1);
167                 ret->l=ms->maps;
168         }
169
170         return ret;
171 }
172
173 /**
174  * @brief Gets the next map from a mapset handle
175  *
176  * If you set active to true, this function will not return any maps that
177  * have the attr_active attribute associated with them and set to false.
178  *
179  * @param msh The mapset handle to get the next map of
180  * @param active Set to true to only get active maps (See description)
181  * @return The next map
182  */
183 struct map * mapset_next(struct mapset_handle *msh, int active)
184 {
185         struct map *ret;
186         struct attr active_attr;
187
188         for (;;) {
189                 if (!msh || !msh->l)
190                         return NULL;
191                 ret=msh->l->data;
192                 msh->l=g_list_next(msh->l);
193                 if (!active)
194                         return ret;                     
195                 if (!map_get_attr(ret, attr_active, &active_attr, NULL))
196                         return ret;
197                 if (active_attr.u.num)
198                         return ret;
199         }
200 }
201
202 /**
203  * @brief Closes a mapset handle after it is no longer used
204  *
205  * @param msh Mapset handle to be closed
206  */
207 void 
208 mapset_close(struct mapset_handle *msh)
209 {
210         g_free(msh);
211 }
212
213 /**
214  * @brief Holds information about a search in a mapset
215  *
216  * This struct holds information about a search (e.g. for a street) in a mapset. 
217  *
218  * @sa For a more detailed description see the documentation of mapset_search_new().
219  */
220 struct mapset_search {
221         GList *map;                                     /**< The list of maps to be searched within */
222         struct map_search *ms;          /**< A map search struct for the map currently active */
223         struct item *item;                      /**< "Superior" item. */
224         struct attr *search_attr;       /**< Attribute to be searched for. */
225         int partial;                            /**< Indicates if one would like to have partial matches */
226 };
227
228 /**
229  * @brief Starts a search on a mapset
230  *
231  * This function starts a search on a mapset. What attributes one can search for depends on the
232  * map plugin. See the description of map_search_new() in map.c for details.
233  *
234  * If you enable partial matches bear in mind that the search matches only the begin of the
235  * strings - a search for a street named "street" would match to "streetfoo", but not to
236  * "somestreet". Search is case insensitive.
237  *
238  * The item passed to this function specifies a "superior item" to "search within" - e.g. a town 
239  * in which we want to search for a street, or a country in which to search for a town.
240  *
241  * @param ms The mapset that should be searched
242  * @param item Specifies a superior item to "search within" (see description)
243  * @param search_attr Attribute specifying what to search for. See description.
244  * @param partial Set this to true to also have partial matches. See description.
245  * @return A new mapset search struct for this search
246  */
247 struct mapset_search *
248 mapset_search_new(struct mapset *ms, struct item *item, struct attr *search_attr, int partial)
249 {
250         struct mapset_search *this;
251         dbg(1,"enter(%p,%p,%p,%d)\n", ms, item, search_attr, partial);
252         this=g_new0(struct mapset_search,1);
253         if(this != NULL && ms!=NULL )
254         {
255                 this->map=ms->maps;
256                 this->item=item;
257                 this->search_attr=search_attr;
258                 this->partial=partial;
259                 this->ms=map_search_new(this->map->data, item, search_attr, partial);
260                 return this;
261         }
262         else
263         {
264                 return NULL;
265         }
266 }
267
268 /**
269  * @brief Returns the next found item from a mapset search
270  *
271  * This function returns the next item from a mapset search or NULL if there are no more items found.
272  * It automatically iterates through all the maps in the mapset. Please note that maps which have the
273  * attr_active attribute associated with them and set to false are not searched.
274  *
275  * @param this The mapset search to return an item from
276  * @return The next found item or NULL if there are no more items found
277  */
278 struct item *
279 mapset_search_get_item(struct mapset_search *this)
280 {
281         struct item *ret=NULL;
282         struct attr active_attr;
283
284         while ((this) && (!this->ms || !(ret=map_search_get_item(this->ms)))) { /* The current map has no more items to be returned */
285                 if (this->search_attr->type >= attr_country_all && this->search_attr->type <= attr_country_name)
286                         break;
287                 for (;;) {
288                         this->map=g_list_next(this->map);
289                         if (! this->map)
290                                 break;
291                         if (!map_get_attr(this->map->data, attr_active, &active_attr, NULL))
292                                 break;
293                         if (active_attr.u.num)
294                                 break;
295                 }
296                 if (! this->map)
297                         break;
298                 map_search_destroy(this->ms);
299                 this->ms=map_search_new(this->map->data, this->item, this->search_attr, this->partial);
300         }
301         return ret;
302 }
303
304 /**
305  * @brief Destroys a mapset search
306  *
307  * @param this The mapset search to be destroyed
308  */
309 void
310 mapset_search_destroy(struct mapset_search *this)
311 {
312         if (this) {
313                 map_search_destroy(this->ms);
314                 g_free(this);
315         }
316 }