forked from GPSBabel/gpsbabel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
garmin_fs.h
242 lines (207 loc) · 6.56 KB
/
garmin_fs.h
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
/*
Implementation of special data used by Garmin products.
Copyright (C) 2006 Olaf Klein, [email protected]
Copyright (C) 2006-2014 Robert Lipe, [email protected]
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef GARMIN_FS_H
#define GARMIN_FS_H
#include <cstddef> // for size_t
#include <cstdint> // for int32_t, int16_t, uint16_t
#include <QString> // for QString
#include <QXmlStreamWriter> // for QXmlStreamWriter
#include "defs.h"
#include "formspec.h" // for FsChainFind, kFsGmsd, FormatSpecificData
#include "jeeps/gps.h"
/* this order is used by most devices */
/* enum garmin_display_t {
garmin_display_symbol_and_name = 0,
garmin_display_symbol_only = 1,
garmin_display_symbol_and_description = 2
};
*/
struct garmin_ilink_t {
int ref_count;
double lat, lon, alt;
garmin_ilink_t* next;
};
struct garmin_fs_flags_t {
public:
garmin_fs_flags_t() :
icon(0),
wpt_class(0),
display(0),
category(0),
city(0),
state(0),
facility(0),
cc(0),
cross_road(0),
addr(0),
country(0),
phone_nr(0),
phone_nr2(0),
fax_nr(0),
postal_code(0),
email(0),
duration(0)
#ifdef GMSD_EXPERIMENTAL
, subclass(0)
#endif
{}
unsigned int icon:1;
unsigned int wpt_class:1;
unsigned int display:1;
unsigned int category:1;
unsigned int city:1;
unsigned int state:1;
unsigned int facility:1;
unsigned int cc:1;
unsigned int cross_road:1;
unsigned int addr:1;
unsigned int country:1;
unsigned int phone_nr:1;
unsigned int phone_nr2:1;
unsigned int fax_nr:1;
unsigned int postal_code:1;
unsigned int email:1;
unsigned int duration:1;
#ifdef GMSD_EXPERIMENTAL
unsigned int subclass:1;
#endif
};
class garmin_fs_t : public FormatSpecificData {
public:
garmin_fs_flags_t flags;
int protocol{0}; /* ... used by device (-1 is MapSource) */
int32_t icon{0};
int wpt_class{0};
int32_t display{0};
int16_t category{0};
QString city; /* city name */
QString facility; /* facility name */
QString state; /* state */
QString cc; /* country code */
QString cross_road; /* Intersection road label */
QString addr; /* address + number */
QString country; /* country */
QString phone_nr; /* phone number */
QString phone_nr2; /* phone number (2) */
QString fax_nr; /* fax number */
QString postal_code; /* postal code */
QString email; /* email address */
unsigned int duration; /* expected travel time to next route point, in seconds, only when auto-routed */
garmin_ilink_t* ilinks{nullptr};
#ifdef GMSD_EXPERIMENTAL
char subclass[22]{};
#endif
public:
garmin_fs_t() : FormatSpecificData(kFsGmsd) {}
private:
garmin_fs_t(const garmin_fs_t& other) = default;
public:
garmin_fs_t& operator=(const garmin_fs_t& rhs) = delete; /* not implemented */
garmin_fs_t(garmin_fs_t&&) = delete; /* not implemented */
garmin_fs_t& operator=(garmin_fs_t&&) = delete; /* not implemented */
~garmin_fs_t() override;
garmin_fs_t* clone() const override;
static garmin_fs_t* find(const Waypoint* wpt) {
return reinterpret_cast<garmin_fs_t*>(wpt->fs.FsChainFind(kFsGmsd));
}
#define GEN_GMSD_METHODS(field) \
static bool has_##field(const garmin_fs_t* gmsd) \
{ \
return gmsd && gmsd->flags.field; \
} \
static decltype(field) get_##field(const garmin_fs_t* gmsd, decltype(field) p) \
{ \
return (gmsd && gmsd->flags.field)? gmsd->field : p; \
} \
static void set_##field(garmin_fs_t* gmsd, decltype(field) p) \
{ \
if (gmsd) { \
gmsd->field = p; \
gmsd->flags.field = 1; \
} \
} \
static void unset_##field(garmin_fs_t* gmsd) \
{ \
if (gmsd) { \
gmsd->flags.field = 0; \
} \
}
GEN_GMSD_METHODS(icon)
GEN_GMSD_METHODS(wpt_class)
GEN_GMSD_METHODS(display)
GEN_GMSD_METHODS(category)
GEN_GMSD_METHODS(duration)
#undef GEN_GMSD_METHODS
#define GEN_GMSD_STR_METHODS(field) \
static bool has_##field(const garmin_fs_t* gmsd) \
{ \
return gmsd && gmsd->flags.field; \
} \
static QString get_##field(const garmin_fs_t* gmsd, const QString& p) \
{ \
return (gmsd && gmsd->flags.field)? gmsd->field : p; \
} \
static void set_##field(garmin_fs_t* gmsd, const char* p) \
{ \
if (gmsd && p && *p) { \
gmsd->field = p; \
gmsd->flags.field = 1; \
} \
} \
static void set_##field(garmin_fs_t* gmsd, const QString& p) \
{ \
if (gmsd && !p.isEmpty()) { \
gmsd->field = p; \
gmsd->flags.field = 1; \
} \
} \
static void unset_##field(garmin_fs_t* gmsd) \
{ \
if (gmsd) { \
gmsd->flags.field = 0; \
} \
}
GEN_GMSD_STR_METHODS(city)
GEN_GMSD_STR_METHODS(facility)
GEN_GMSD_STR_METHODS(state)
GEN_GMSD_STR_METHODS(cc)
GEN_GMSD_STR_METHODS(cross_road)
GEN_GMSD_STR_METHODS(addr)
GEN_GMSD_STR_METHODS(country)
GEN_GMSD_STR_METHODS(phone_nr)
GEN_GMSD_STR_METHODS(phone_nr2)
GEN_GMSD_STR_METHODS(fax_nr)
GEN_GMSD_STR_METHODS(postal_code)
GEN_GMSD_STR_METHODS(email)
#undef GEN_GMSD_STR_METHODS
};
garmin_fs_t* garmin_fs_alloc(int protocol);
void garmin_fs_destroy(void* fs);
void garmin_fs_copy(void** dest, const void* src);
char* garmin_fs_xstrdup(const char* src, size_t size);
/* for GPX */
void garmin_fs_xml_convert(int base_tag, int tag, const QString& qstr, Waypoint* waypt);
void garmin_fs_xml_fprint(const Waypoint* waypt, QXmlStreamWriter*);
/* common garmin_fs utilities */
/* ..convert_category: returns 1=OK; 0=Unable to convert category */
unsigned char garmin_fs_convert_category(const char* category_name, uint16_t* category);
/* ..merge_category: returns 1=OK; 0=Unable to convert category */
unsigned char garmin_fs_merge_category(const char* category_name, Waypoint* waypt);
#define GMSD_SECTION_CATEGORIES "Garmin Categories"
void garmin_fs_garmin_after_read(GPS_PWay way, Waypoint* wpt, int protoid);
void garmin_fs_garmin_before_write(const Waypoint* wpt, GPS_PWay way, int protoid);
#endif