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 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
|
/*
* Copyright (C) 2019 Igalia S.L.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "WebKitGeolocationManager.h"
#include "APIGeolocationProvider.h"
#include "GeoclueGeolocationProvider.h"
#include "WebGeolocationPosition.h"
#include "WebKitGeolocationManagerPrivate.h"
#include <glib/gi18n-lib.h>
#include <wtf/WallTime.h>
#include <wtf/glib/WTFGType.h>
using namespace WebKit;
using namespace WebCore;
/**
* WebKitGeolocationManager:
* @see_also: #WebKitGeolocationPermissionRequest, #WebKitWebContext
*
* Geolocation manager.
*
* WebKitGeolocationManager provides API to get the geographical position of the user.
* Once a #WebKitGeolocationPermissionRequest is allowed, when WebKit needs to know the
* user location #WebKitGeolocationManager::start signal is emitted. If the signal is handled
* and returns %TRUE, the application is responsible for providing the position every time it's
* updated by calling webkit_geolocation_manager_update_position(). The signal #WebKitGeolocationManager::stop
* will be emitted when location updates are no longer needed.
*
* Since: 2.26
*/
enum {
PROP_0,
PROP_ENABLE_HIGH_ACCURACY,
N_PROPERTIES,
};
static GParamSpec* sObjProperties[N_PROPERTIES] = { nullptr, };
enum {
START,
STOP,
LAST_SIGNAL
};
struct _WebKitGeolocationPosition {
_WebKitGeolocationPosition() = default;
_WebKitGeolocationPosition(double latitude, double longitude, double accuracy)
{
position.timestamp = WallTime::now().secondsSinceEpoch().value();
position.latitude = latitude;
position.longitude = longitude;
position.accuracy = accuracy;
}
explicit _WebKitGeolocationPosition(GeolocationPositionData&& corePosition)
: position(WTFMove(corePosition))
{
}
explicit _WebKitGeolocationPosition(const GeolocationPositionData& other)
{
position = other;
}
GeolocationPositionData position;
};
/**
* WebKitGeolocationPosition:
*
* An opaque struct to provide position updates to a #WebKitGeolocationManager.
*
* WebKitGeolocationPosition is an opaque struct used to provide position updates to a
* #WebKitGeolocationManager using webkit_geolocation_manager_update_position().
*
* Since: 2.26
*/
G_DEFINE_BOXED_TYPE(WebKitGeolocationPosition, webkit_geolocation_position, webkit_geolocation_position_copy, webkit_geolocation_position_free)
/**
* webkit_geolocation_position_new:
* @latitude: a valid latitude in degrees
* @longitude: a valid longitude in degrees
* @accuracy: accuracy of location in meters
*
* Create a new #WebKitGeolocationPosition.
*
* Returns: (transfer full): a newly created #WebKitGeolocationPosition
*
* Since: 2.26
*/
WebKitGeolocationPosition* webkit_geolocation_position_new(double latitude, double longitude, double accuracy)
{
auto* position = static_cast<WebKitGeolocationPosition*>(fastMalloc(sizeof(WebKitGeolocationPosition)));
new (position) WebKitGeolocationPosition(latitude, longitude, accuracy);
return position;
}
/**
* webkit_geolocation_position_copy:
* @position: a #WebKitGeolocationPosition
*
* Make a copy of the #WebKitGeolocationPosition.
*
* Returns: (transfer full): a copy of @position
*
* Since: 2.26
*/
WebKitGeolocationPosition* webkit_geolocation_position_copy(WebKitGeolocationPosition* position)
{
g_return_val_if_fail(position, nullptr);
auto* copy = static_cast<WebKitGeolocationPosition*>(fastMalloc(sizeof(WebKitGeolocationPosition)));
new (copy) WebKitGeolocationPosition(position->position);
return copy;
}
/**
* webkit_geolocation_position_free:
* @position: a #WebKitGeolocationPosition
*
* Free the #WebKitGeolocationPosition
*
* Since: 2.26
*/
void webkit_geolocation_position_free(WebKitGeolocationPosition* position)
{
g_return_if_fail(position);
position->~WebKitGeolocationPosition();
fastFree(position);
}
/**
* webkit_geolocation_position_set_timestamp:
* @position: a #WebKitGeolocationPosition
* @timestamp: timestamp in seconds since the epoch, or 0 to use current time
*
* Set the @position timestamp.
*
* By default it's the time when the @position was created.
*
* Since: 2.26
*/
void webkit_geolocation_position_set_timestamp(WebKitGeolocationPosition* position, guint64 timestamp)
{
g_return_if_fail(position);
position->position.timestamp = timestamp ? static_cast<double>(timestamp) : WallTime::now().secondsSinceEpoch().value();
}
/**
* webkit_geolocation_position_set_altitude:
* @position: a #WebKitGeolocationPosition
* @altitude: altitude in meters
*
* Set the @position altitude.
*
* Since: 2.26
*/
void webkit_geolocation_position_set_altitude(WebKitGeolocationPosition* position, double altitude)
{
g_return_if_fail(position);
position->position.altitude = altitude;
}
/**
* webkit_geolocation_position_set_altitude_accuracy:
* @position: a #WebKitGeolocationPosition
* @altitude_accuracy: accuracy of position altitude in meters
*
* Set the accuracy of @position altitude.
*
* Since: 2.26
*/
void webkit_geolocation_position_set_altitude_accuracy(WebKitGeolocationPosition* position, double altitudeAccuracy)
{
g_return_if_fail(position);
position->position.altitudeAccuracy = altitudeAccuracy;
}
/**
* webkit_geolocation_position_set_heading:
* @position: a #WebKitGeolocationPosition
* @heading: heading in degrees
*
* Set the @position heading.
*
* Set the @position heading, as a positive angle between the direction of movement and the North
* direction, in clockwise direction.
*
* Since: 2.26
*/
void webkit_geolocation_position_set_heading(WebKitGeolocationPosition* position, double heading)
{
g_return_if_fail(position);
position->position.heading = heading;
}
/**
* webkit_geolocation_position_set_speed:
* @position: a #WebKitGeolocationPosition
* @speed: speed in meters per second
*
* Set the @position speed.
*
* Since: 2.26
*/
void webkit_geolocation_position_set_speed(WebKitGeolocationPosition* position, double speed)
{
g_return_if_fail(position);
position->position.speed = speed;
}
struct _WebKitGeolocationManagerPrivate {
RefPtr<WebGeolocationManagerProxy> manager;
bool highAccuracyEnabled;
std::unique_ptr<GeoclueGeolocationProvider> geoclueProvider;
};
static guint signals[LAST_SIGNAL] = { 0, };
WEBKIT_DEFINE_FINAL_TYPE(WebKitGeolocationManager, webkit_geolocation_manager, G_TYPE_OBJECT, GObject)
static void webkitGeolocationManagerStart(WebKitGeolocationManager* manager)
{
gboolean returnValue;
g_signal_emit(manager, signals[START], 0, &returnValue);
if (returnValue) {
manager->priv->geoclueProvider = nullptr;
return;
}
if (!manager->priv->geoclueProvider) {
manager->priv->geoclueProvider = makeUnique<GeoclueGeolocationProvider>();
manager->priv->geoclueProvider->setEnableHighAccuracy(manager->priv->highAccuracyEnabled);
}
manager->priv->geoclueProvider->start([manager](GeolocationPositionData&& corePosition, std::optional<CString> error) {
if (error) {
webkit_geolocation_manager_failed(manager, error->data());
return;
}
WebKitGeolocationPosition position(WTFMove(corePosition));
webkit_geolocation_manager_update_position(manager, &position);
});
}
static void webkitGeolocationManagerStop(WebKitGeolocationManager* manager)
{
g_signal_emit(manager, signals[STOP], 0, nullptr);
if (manager->priv->geoclueProvider)
manager->priv->geoclueProvider->stop();
}
static void webkitGeolocationManagerSetEnableHighAccuracy(WebKitGeolocationManager* manager, bool enabled)
{
if (manager->priv->highAccuracyEnabled == enabled)
return;
manager->priv->highAccuracyEnabled = enabled;
g_object_notify_by_pspec(G_OBJECT(manager), sObjProperties[PROP_ENABLE_HIGH_ACCURACY]);
if (manager->priv->geoclueProvider)
manager->priv->geoclueProvider->setEnableHighAccuracy(enabled);
}
class GeolocationProvider final : public API::GeolocationProvider {
public:
explicit GeolocationProvider(WebKitGeolocationManager* manager)
: m_manager(manager)
{
}
private:
void startUpdating(WebGeolocationManagerProxy&) override
{
webkitGeolocationManagerStart(m_manager);
}
void stopUpdating(WebGeolocationManagerProxy&) override
{
webkitGeolocationManagerStop(m_manager);
}
void setEnableHighAccuracy(WebGeolocationManagerProxy&, bool enabled) override
{
webkitGeolocationManagerSetEnableHighAccuracy(m_manager, enabled);
}
WebKitGeolocationManager* m_manager;
};
WebKitGeolocationManager* webkitGeolocationManagerCreate(WebGeolocationManagerProxy* proxy)
{
auto* manager = WEBKIT_GEOLOCATION_MANAGER(g_object_new(WEBKIT_TYPE_GEOLOCATION_MANAGER, nullptr));
manager->priv->manager = proxy;
proxy->setProvider(makeUnique<GeolocationProvider>(manager));
return manager;
}
static void webkitGeolocationManagerGetProperty(GObject* object, guint propId, GValue* value, GParamSpec* paramSpec)
{
WebKitGeolocationManager* manager = WEBKIT_GEOLOCATION_MANAGER(object);
switch (propId) {
case PROP_ENABLE_HIGH_ACCURACY:
g_value_set_boolean(value, webkit_geolocation_manager_get_enable_high_accuracy(manager));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, paramSpec);
}
}
static void webkitGeolocationManagerDispose(GObject *object)
{
WebKitGeolocationManager* manager = WEBKIT_GEOLOCATION_MANAGER(object);
manager->priv->manager->setProvider(nullptr);
G_OBJECT_CLASS(webkit_geolocation_manager_parent_class)->dispose(object);
}
static void webkit_geolocation_manager_class_init(WebKitGeolocationManagerClass* geolocationManagerClass)
{
GObjectClass* gObjectClass = G_OBJECT_CLASS(geolocationManagerClass);
gObjectClass->get_property = webkitGeolocationManagerGetProperty;
gObjectClass->dispose = webkitGeolocationManagerDispose;
/**
* WebKitGeolocationManager:enable-high-accuracy:
*
* Whether high accuracy is enabled. This is a read-only property that will be
* set to %TRUE when a #WebKitGeolocationManager needs to get accurate position updates.
* You can connect to notify::enable-high-accuracy signal to monitor it.
*
* Since: 2.26
*/
sObjProperties[PROP_ENABLE_HIGH_ACCURACY] =
g_param_spec_boolean(
"enable-high-accuracy",
nullptr, nullptr,
FALSE,
WEBKIT_PARAM_READABLE);
g_object_class_install_properties(gObjectClass, N_PROPERTIES, sObjProperties);
/**
* WebKitGeolocationManager::start:
* @manager: the #WebKitGeolocationManager on which the signal is emitted
*
* The signal is emitted to notify that @manager needs to start receiving
* position updates. After this signal is emitted the user should provide
* the updates using webkit_geolocation_manager_update_position() every time
* the position changes, or use webkit_geolocation_manager_failed() in case
* it isn't possible to determine the current position.
*
* If the signal is not handled, WebKit will try to determine the position
* using GeoClue if available.
*
* Returns: %TRUE to stop other handlers from being invoked for the event.
* %FALSE to propagate the event further.
*
* Since: 2.26
*/
signals[START] = g_signal_new(
"start",
G_TYPE_FROM_CLASS(geolocationManagerClass),
G_SIGNAL_RUN_LAST,
0,
g_signal_accumulator_true_handled, nullptr,
g_cclosure_marshal_generic,
G_TYPE_BOOLEAN, 0);
/**
* WebKitGeolocationManager::stop:
* @manager: the #WebKitGeolocationManager on which the signal is emitted
*
* The signal is emitted to notify that @manager doesn't need to receive
* position updates anymore.
*
* Since: 2.26
*/
signals[STOP] = g_signal_new(
"stop",
G_TYPE_FROM_CLASS(geolocationManagerClass),
G_SIGNAL_RUN_LAST,
0,
nullptr, nullptr,
g_cclosure_marshal_generic,
G_TYPE_NONE, 0);
}
/**
* webkit_geolocation_manager_update_position:
* @manager: a #WebKitGeolocationManager
* @position: a #WebKitGeolocationPosition
*
* Notify @manager that position has been updated to @position.
*
* Since: 2.26
*/
void webkit_geolocation_manager_update_position(WebKitGeolocationManager* manager, WebKitGeolocationPosition* position)
{
g_return_if_fail(WEBKIT_IS_GEOLOCATION_MANAGER(manager));
g_return_if_fail(position);
auto corePosition = position->position;
auto wkPosition = WebGeolocationPosition::create(WTFMove(corePosition));
manager->priv->manager->providerDidChangePosition(wkPosition.ptr());
}
/**
* webkit_geolocation_manager_failed:
* @manager: a #WebKitGeolocationManager
* @error_message: the error message
*
* Notify @manager that determining the position failed.
*
* Since: 2.26
*/
void webkit_geolocation_manager_failed(WebKitGeolocationManager* manager, const char* errorMessage)
{
g_return_if_fail(WEBKIT_IS_GEOLOCATION_MANAGER(manager));
manager->priv->manager->providerDidFailToDeterminePosition(String::fromUTF8(errorMessage));
}
/**
* webkit_geolocation_manager_get_enable_high_accuracy:
* @manager: a #WebKitGeolocationManager
*
* Get whether high accuracy is enabled.
*
* Returns: Whether the setting is enabled.
*
* Since: 2.26
*/
gboolean webkit_geolocation_manager_get_enable_high_accuracy(WebKitGeolocationManager* manager)
{
g_return_val_if_fail(WEBKIT_IS_GEOLOCATION_MANAGER(manager), FALSE);
return manager->priv->highAccuracyEnabled;
}
|