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
|
/* net_gnss_dispatch.c -- common interface to a number of Network GNSS services
*
* This file is Copyright (c) 2010-2018 by the GPSD project
* SPDX-License-Identifier: BSD-2-clause
*/
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/socket.h>
#include <unistd.h>
#include "gpsd.h"
#include "strfuncs.h"
#define NETGNSS_DGPSIP "dgpsip://"
#define NETGNSS_NTRIP "ntrip://"
bool netgnss_uri_check(char *name)
/* is given string a valid URI for GNSS/DGPS service? */
{
return
str_starts_with(name, NETGNSS_NTRIP)
|| str_starts_with(name, NETGNSS_DGPSIP);
}
int netgnss_uri_open(struct gps_device_t *dev, char *netgnss_service)
/* open a connection to a DGNSS service */
{
#ifdef NTRIP_ENABLE
if (str_starts_with(netgnss_service, NETGNSS_NTRIP)) {
dev->ntrip.conn_state = ntrip_conn_init;
return ntrip_open(dev, netgnss_service + strlen(NETGNSS_NTRIP));
}
#endif
if (str_starts_with(netgnss_service, NETGNSS_DGPSIP))
return dgpsip_open(dev, netgnss_service + strlen(NETGNSS_DGPSIP));
#ifndef REQUIRE_DGNSS_PROTO
return dgpsip_open(dev, netgnss_service);
#else
gpsd_log(&dev->context.errout, LOG_ERROR,
"Unknown or unspecified DGNSS protocol for service %s\n",
netgnss_service);
return -1;
#endif
}
void netgnss_report(struct gps_context_t *context,
struct gps_device_t *gps, struct gps_device_t *dgnss)
/* may be time to ship a usage report to the DGNSS service */
{
if (dgnss->servicetype == service_dgpsip)
dgpsip_report(context, gps, dgnss);
#ifdef NTRIP_ENABLE
else if (dgnss->servicetype == service_ntrip)
ntrip_report(context, gps, dgnss);
#endif
}
/* end */
|