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
|
/* redshift-ng - Automatically adjust display colour temperature according the Sun
*
* Copyright (c) 2009-2018 Jon Lund Steffensen <jonlst@gmail.com>
* Copyright (c) 2014-2016, 2025 Mattias Andrée <m@maandree.se>
*
* redshift-ng 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 3 of the License, or
* (at your option) any later version.
*
* redshift-ng 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 redshift-ng. If not, see <http://www.gnu.org/licenses/>.
*/
#include "common.h"
const struct location_provider *location_providers[] = {
#ifdef ENABLE_GEOCLUE2
&geoclue2_location_provider,
#endif
#ifdef ENABLE_CORELOCATION
&corelocation_location_provider,
#endif
&manual_location_provider,
NULL
};
static int
try_start(const struct location_provider *provider, LOCATION_STATE **state, struct config_ini_state *config, char *args)
{
const char *manual_keys[] = {"lat", "lon"};
struct config_ini_section *section;
struct config_ini_setting *setting;
char *next_arg, *value;
const char *key;
int i;
if (provider->init(state) < 0) {
weprintf(_("Initialization of %s failed."), provider->name);
return -1;
}
/* Set provider options from config file. */
if ((section = config_ini_get_section(config, provider->name)))
for (setting = section->settings; setting; setting = setting->next)
if (provider->set_option(*state, setting->name, setting->value) < 0)
goto set_option_fail;
/* Set provider options from command line. */
for (i = 0; args; i++) {
next_arg = strchr(args, ':');
if (next_arg)
*next_arg++ = '\0';
key = args;
value = strchr(args, '=');
if (!value) {
/* The options for the "manual" method can be set
without keys on the command line for convencience
and for backwards compatability. We add the proper
keys here before calling set_option(). */
if (!strcmp(provider->name, "manual") && i < ELEMSOF(manual_keys)) {
key = manual_keys[i];
value = args;
} else {
weprintf(_("Failed to parse option `%s'."), args);
return -1;
}
} else {
*value++ = '\0';
}
if (provider->set_option(*state, key, value) < 0)
goto set_option_fail;
args = next_arg;
}
/* Start provider. */
if (provider->start(*state) < 0) {
provider->free(*state);
weprintf(_("Failed to start provider %s."), provider->name);
return -1;
}
return 0;
set_option_fail:
provider->free(*state);
weprintf(_("Failed to set %s option."), provider->name);
/* TRANSLATORS: `help' must not be translated. */
weprintf(_("Try `-l %s:help' for more information."), provider->name);
return -1;
}
static long long int
get_monotonic_millis(void)
{
#if defined(WINDOWS)
return (long long int)GetTickCount64();
#else
struct timespec now;
if (clock_gettime(CLOCK_MONOTONIC, &now))
eprintf("clock_gettime CLOCK_MONOTONIC:");
return (long long int)now.tv_sec * 1000LL + (long long int)now.tv_nsec / 1000000LL;
#endif
}
/* Wait for location to become available from provider.
Waits until timeout (milliseconds) has elapsed or forever if timeout
is -1. Writes location to loc. Returns -1 on error,
0 if timeout was reached, 1 if location became available. */
int
get_location(const struct location_provider *provider, LOCATION_STATE *state, int timeout, struct location *loc)
{
int r, available;
struct pollfd pollfds[1];
long long int now = get_monotonic_millis();
long long int end = now + (long long int)timeout;
do {
pollfds[0].fd = provider->get_fd(state);
if (pollfds[0].fd >= 0) {
/* Poll on file descriptor until ready. */
pollfds[0].events = POLLIN;
timeout = (int)MAX(end - now, 0);
r = poll(pollfds, 1, timeout);
if (r > 0) {
now = get_monotonic_millis();
} else if (r < 0) {
#ifndef WINDOWS
if (errno == EINTR)
continue;
#endif
weprintf("poll {{.fd=<location provider>, .events=EPOLLIN}} 1 %i:", timeout);
return -1;
} else {
return 0;
}
}
if (provider->handle(state, loc, &available) < 0)
return -1;
} while (!available);
return 1;
}
void
acquire_location_provider(struct settings *settings, LOCATION_STATE **location_state_out)
{
size_t i;
if (settings->provider) {
/* Use provider specified on command line. */
if (try_start(settings->provider, location_state_out, &settings->config, settings->provider_args) < 0)
exit(1);
} else {
/* Try all providers, use the first that works. */
for (i = 0; location_providers[i]; i++) {
weprintf(_("Trying location provider `%s'..."), location_providers[i]->name);
if (try_start(location_providers[i], location_state_out, &settings->config, NULL) < 0) {
weprintf(_("Trying next provider..."));
continue;
}
/* Found provider that works. */
printf(_("Using provider `%s'.\n"), location_providers[i]->name);
settings->provider = location_providers[i];
break;
}
/* Failure if no providers were successful at this point. */
if (!settings->provider)
eprintf(_("No more location providers to try."));
}
}
|