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
|
/*
* Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All Rights Reserved.
* Copyright 2010, The Android Open Source Project
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_GEOLOCATION_GEOLOCATION_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_GEOLOCATION_GEOLOCATION_H_
#include "base/dcheck_is_on.h"
#include "services/device/public/mojom/geolocation.mojom-blink.h"
#include "third_party/blink/public/mojom/geolocation/geolocation_service.mojom-blink.h"
#include "third_party/blink/renderer/bindings/core/v8/active_script_wrappable.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_position_callback.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_position_error_callback.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_position_options.h"
#include "third_party/blink/renderer/core/execution_context/execution_context_lifecycle_observer.h"
#include "third_party/blink/renderer/core/page/page_visibility_observer.h"
#include "third_party/blink/renderer/modules/geolocation/geo_notifier.h"
#include "third_party/blink/renderer/modules/geolocation/geolocation_position_error.h"
#include "third_party/blink/renderer/modules/geolocation/geolocation_watchers.h"
#include "third_party/blink/renderer/modules/geolocation/geoposition.h"
#include "third_party/blink/renderer/modules/modules_export.h"
#include "third_party/blink/renderer/platform/bindings/script_wrappable.h"
#include "third_party/blink/renderer/platform/heap/collection_support/heap_hash_set.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/mojo/heap_mojo_remote.h"
#include "third_party/blink/renderer/platform/supplementable.h"
#include "third_party/blink/renderer/platform/timer.h"
namespace blink {
namespace mojom {
enum class PermissionStatus;
} // namespace mojom
class LocalFrame;
class Navigator;
class MODULES_EXPORT Geolocation final
: public ScriptWrappable,
public ActiveScriptWrappable<Geolocation>,
public Supplement<Navigator>,
public ExecutionContextLifecycleObserver,
public PageVisibilityObserver {
DEFINE_WRAPPERTYPEINFO();
public:
static const char kSupplementName[];
static Geolocation* geolocation(Navigator&);
explicit Geolocation(Navigator&);
~Geolocation() override;
void Trace(Visitor*) const override;
// Inherited from ExecutionContextLifecycleObserver and
// PageVisibilityObserver.
void ContextDestroyed() override;
LocalFrame* GetFrame() const;
// Creates a oneshot and attempts to obtain a position that meets the
// constraints of the options.
void getCurrentPosition(V8PositionCallback*,
V8PositionErrorCallback* = nullptr,
const PositionOptions* = PositionOptions::Create());
// Creates a watcher that will be notified whenever a new position is
// available that meets the constraints of the options.
int watchPosition(V8PositionCallback*,
V8PositionErrorCallback* = nullptr,
const PositionOptions* = PositionOptions::Create());
// Removes all references to the watcher, it will not be updated again.
void clearWatch(int watch_id);
// Notifies this that a new position is available. Must never be called
// before permission is granted by the user.
void PositionChanged();
// Discards the notifier because a fatal error occurred for it.
void FatalErrorOccurred(GeoNotifier*);
// Adds the notifier to the set awaiting a cached position. Runs the success
// callbacks for them if permission has been granted. Requests permission if
// it is unknown.
void RequestUsesCachedPosition(GeoNotifier*);
// Discards the notifier if it is a oneshot because it timed it.
void RequestTimedOut(GeoNotifier*);
// Returns true if this geolocation still owns the given notifier.
bool DoesOwnNotifier(GeoNotifier*) const;
// Inherited from PageVisibilityObserver.
void PageVisibilityChanged() override;
// TODO(yukishiino): This is a short-term speculative fix for
// crbug.com/792604. Remove this once the bug is fixed.
bool HasPendingActivity() const final;
private:
// Customized HeapHashSet class that checks notifiers' timers. Notifier's
// timer may be active only when the notifier is owned by the Geolocation.
class GeoNotifierSet final : public GarbageCollected<GeoNotifierSet> {
public:
void Trace(Visitor* visitor) const { visitor->Trace(set_); }
auto begin() const { return set_.begin(); }
auto end() const { return set_.end(); }
auto size() const { return set_.size(); }
auto insert(GeoNotifier* value) {
DCHECK(!value->IsTimerActive());
return set_.insert(value);
}
void erase(GeoNotifier* value) {
DCHECK(!value->IsTimerActive());
return set_.erase(value);
}
void clear() {
#if DCHECK_IS_ON()
for (const auto& notifier : set_) {
DCHECK(!notifier->IsTimerActive());
}
#endif
set_.clear();
}
auto Contains(GeoNotifier* value) const { return set_.Contains(value); }
auto IsEmpty() const { return set_.empty(); }
auto InsertWithoutTimerCheck(GeoNotifier* value) {
return set_.insert(value);
}
void ClearWithoutTimerCheck() { set_.clear(); }
private:
HeapHashSet<Member<GeoNotifier>> set_;
};
bool HasListeners() const {
return !one_shots_->IsEmpty() || !watchers_->IsEmpty();
}
void StopTimers();
// Runs the success callbacks on all notifiers. A position must be available
// and the user must have given permission.
void MakeSuccessCallbacks();
// Sends the given error to all notifiers, unless the error is not fatal and
// the notifier is due to receive a cached position. Clears the oneshots,
// and also clears the watchers if the error is fatal.
void HandleError(GeolocationPositionError*);
// Connects to the Geolocation mojo service and starts polling for updates.
void StartUpdating(GeoNotifier*);
void StopUpdating();
void UpdateGeolocationConnection(GeoNotifier*);
void QueryNextPosition();
// Attempts to obtain a position for the given notifier, either by using
// the cached position or by requesting one from the Geolocation service.
// Sets a fatal error if permission is denied or no position can be
// obtained.
void StartRequest(GeoNotifier*);
bool HaveSuitableCachedPosition(const PositionOptions*);
// Record whether the origin trying to access Geolocation would be
// allowed to access a feature that can only be accessed by secure origins.
// See https://goo.gl/Y0ZkNV
void RecordOriginTypeAccess() const;
void OnPositionUpdated(device::mojom::blink::GeopositionResultPtr);
void OnGeolocationConnectionError();
void OnGeolocationPermissionStatusUpdated(GeoNotifier*,
mojom::PermissionStatus);
Member<GeoNotifierSet> one_shots_;
Member<GeolocationWatchers> watchers_;
// GeoNotifiers that are in the middle of invocation.
//
// |HandleError(error)| and |MakeSuccessCallbacks| need to clear |one_shots_|
// (and optionally |watchers_|) before invoking the callbacks, in order to
// avoid clearing notifiers added by calls to Geolocation methods
// from the callbacks. Thus, something else needs to make the notifiers being
// invoked alive with wrapper-tracing because V8 GC may run during the
// callbacks. |one_shots_being_invoked_| and |watchers_being_invoked_| perform
// wrapper-tracing.
// TODO(https://crbug.com/796145): Remove this hack once on-stack objects
// get supported by either of wrapper-tracing or unified GC.
Member<GeoNotifierSet> one_shots_being_invoked_;
HeapVector<Member<GeoNotifier>> watchers_being_invoked_;
Member<Geoposition> last_position_;
HeapMojoRemote<device::mojom::blink::Geolocation> geolocation_;
HeapMojoRemote<mojom::blink::GeolocationService> geolocation_service_;
bool enable_high_accuracy_ = false;
// Whether a GeoNotifier is waiting for a position update.
bool updating_ = false;
// Set to true when |geolocation_| is disconnected. This is used to
// detect when |geolocation_| is disconnected and reconnected while
// running callbacks in response to a call to OnPositionUpdated().
bool disconnected_geolocation_ = false;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_GEOLOCATION_GEOLOCATION_H_
|