aboutsummaryrefslogtreecommitdiffstats
path: root/libgeome.h
blob: 48e40e3c8e2afe93445207d908a1361d86c41cd8 (plain) (blame)
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
/* See LICENSE file for copyright and license details. */
#ifndef LIBGEOME_H
#define LIBGEOME_H

#include <stddef.h>
#include <stdint.h>


#define LIBGEOME_DATUM_LATITUDE   UINT64_C(0x0000000000000001)
#define LIBGEOME_DATUM_LONGITUDE  UINT64_C(0x0000000000000002)
#define LIBGEOME_DATUM_ALTITUDE   UINT64_C(0x0000000000000004)


/**
 * Geolocation data
 */
struct libgeome_data {
	/**
	 * Requested data, data that was not retrieved will be cleared
	 */
	uint64_t requested_data;

	/**
	 * GPS latitude (geodetic) in degrees north
	 * 
	 * Bit in `.requested_data`: LIBGEOME_DATUM_LATITUDE
	 */
	double latitude;

	/**
	 * GPS longitude (geodetic) in degrees east
	 * 
	 * Bit in `.requested_data`: LIBGEOME_DATUM_LONGITUDE
	 */
	double longitude;

	/**
	 * Ellipsoidal altitude in meters
	 * 
	 * Bit in `.requested_data`: LIBGEOME_DATUM_ALTITUDE
	 */
	double altitude;
};


/**
 * Library context
 */
struct libgeome_context {
	/**
	 * The application is free to used this field as sees fit
	 */
	union {
		const void *cptr;
		void *ptr;
		int i;
		unsigned int u;
		size_t n;
	} user_data;

	/**
	 * Print error message
	 * 
	 * @param  ctx  Function pointer container
	 * @param  fmt  Format string
	 * @param  ...  Format argument
	 */
	void (*print_error)(struct libgeome_context *ctx, const char *fmt, ...);

	/**
	 * Print error message for an error that the library
	 * cannot recover from. The library will abort the
	 * process after calling this function.
	 * 
	 * @param  ctx  Function pointer container
	 * @param  fmt  Format string
	 * @param  ...  Format argument
	 */
	void (*print_abort)(struct libgeome_context *ctx, const char *fmt, ...);

	/**
	 * Print debug message
	 * 
	 * @param  ctx  Function pointer container
	 * @param  fmt  Format string
	 * @param  ...  Format argument
	 */
	void (*print_debug)(struct libgeome_context *ctx, const char *fmt, ...);
};


/**
 * Geolocation network service description
 */
struct libgeome_netservice {
	/**
	 * Geolocation data that may be provided by the service
	 *
	 * 0 if unknown (always known (non-zero) when retreived
	 * from libgeome_netservices)
	 * 
	 * See `struct libgeome_data.requested_data`
	 */
	uint64_t can_fetch;

	/**
	 * A unique number assigned to each unique service,
	 * so that alternatives that user the same service
	 * can be recognised
	 * 
	 * Only set when stated so in the source
	 * 
	 * This is used because a service may have multiple
	 * ways to fetch the data, as all supported ones
	 * are added in case one is removed in the future;
	 * this could be multiple APIs or even multiple
	 * URLs
	 * 
	 * These number are sorted and start from 0,
	 * and increment by one for each new service that's
	 * not just another way to use the service in the
	 * previous entry
	 */
	size_t service_id;

	/**
	 * Expected maximum output size
	 */
	size_t limit;

	/**
	 * Expected maximum invokation duration
	 */
	unsigned int alarm_seconds;

	/**
	 * Path command to run to get the location
	 * (this would be "curl")
	 */
	const char *path;

	/**
	 * Command to run to get the location
	 * (this would be curl with some parameters
	 * and an URL)
	 */
	const char *const *args;
};


/**
 * Built in list of geolocation network service
 * 
 * `.service_id` is set
 * 
 * Be aware these services may have terms of use that
 * restrict how you are allowed to use them.
 */
extern struct libgeome_netservice libgeome_netservices[];

/**
 * The number of elements in `libgeome_netservices`
 */
extern const size_t libgeome_netservices_count;


/**
 * Create a basic initialisation for `struct libgeome_context`
 * 
 * Note that the implementation will use `ctx_out->user_data` to store `procname`
 * there. It will not make a copy of `procname`, so `procname` must be valid while
 * the context is in use
 * 
 * `*ctx_out->print_error` and `*ctx_out->print_abort` will print plain
 * error messages, but `*ctx_out->print_debug` will not do anything.
 * If you want debug outputs, you can assign `ctx_out->print_error` or
 * `ctx_out->print_abort` to `ctx_out->print_debug`.
 * 
 * @param  ctx_out   Structure to initialise
 * @param  procname  The name of the process, will be prefixed to all outputs
 *                   using the format `"%s: ", procname`. It may be a good idea
 *                   to add prepend ": libgeome: " to make it clear that the
 *                   output comes from libgeome
 */
void libgeome_basic_context(struct libgeome_context *ctx_out, const char *procname);

/**
 * Get a very rough location guess based on
 * the current timezone's offset from UTC
 * 
 * This can always be used to get the longitude,
 * but only the longitude
 * 
 * @param   ctx  Library context
 * @param   out  Output parameter, `out->requested_data` must be set
 * @return       0 if data could be retrieved, even if none of the requested data
 *               could be retrieved, -1 otherwise
 */
int libgeome_get_from_time(struct libgeome_context *ctx, struct libgeome_data *out);

/**
 * Get a rather rough location guess based on
 * timezone data: the nominally the timezone's
 * most populous city
 * 
 * It is not guaranteed that the needed information
 * is installed on the machine, and even if it is,
 * does not necessarily contain needed data for the
 * user's timezone
 * 
 * This function will get both the latitude and
 * the longitude but nothing more, provided it found
 * data for the timezone
 * 
 * @param   ctx  Library context
 * @param   out  Output parameter, `out->requested_data` must be set
 * @return       0 if data could be retrieved, even if none of the requested data
 *               could be retrieved, -1 otherwise
 */
int libgeome_get_from_timezone(struct libgeome_context *ctx, struct libgeome_data *out);

/**
 * Get the user's location from a file where it has
 * been manually stored
 * 
 * This function will get both the latitude and
 * the longitude but nothing more
 * 
 * The default file is /etc/geolocation unless changed at compile time
 * 
 * @param   ctx   Library context
 * @param   out   Output parameter, `out->requested_data` must be set
 * @param   path  The file to read, `NULL` to use the default
 * @return        0 if data could be retrieved, even if none of the requested data
 *                could be retrieved, -1 otherwise
 */
int libgeome_get_from_file(struct libgeome_context *ctx, struct libgeome_data *out, const char *path);

/**
 * Spawn a program and read it's standard output
 * to get the user's location data
 * 
 * @param   ctx        Library context
 * @param   out        Output parameter, `out->requested_data` must be set
 * @param   limit      Number of bytes to stop reading output after, zero for default
 * @param   alarm_sec  If non-zero, the number of seconds to let the subprocess live
 * @param   path       Path to command to spawn
 * @param   argv       Command line arguments for the process, including the name of the command
 * @return             0 if data could be retrieved, even if none of the requested data
 *                     could be retrieved, -1 otherwise
 */
int libgeome_get_from_command(struct libgeome_context *ctx, struct libgeome_data *out, size_t limit,
                              unsigned int alarm_sec, const char *path, const char *const *argv);

/**
 * Spawn a program and read it's standard output
 * to get the user's location data
 * 
 * @param   ctx  Library context
 * @param   out  Output parameter, `out->requested_data` must be set
 * @param   svc  Parameters for the command to run
 * @return       0 if data could be retrieved, even if none of the requested data
 *               could be retrieved, -1 otherwise
 */
inline int
libgeome_get_from_netservice(struct libgeome_context *ctx, struct libgeome_data *out,
                             const struct libgeome_netservice *svc)
{
	return libgeome_get_from_command(ctx, out, svc->limit, svc->alarm_seconds, svc->path, svc->args);
}


#endif