| // Copyright 2014 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "modules/geolocation/GeolocationWatchers.h" |
| |
| #include "modules/geolocation/GeoNotifier.h" |
| #include "platform/wtf/Assertions.h" |
| |
| namespace blink { |
| |
| void GeolocationWatchers::Trace(blink::Visitor* visitor) { |
| visitor->Trace(id_to_notifier_map_); |
| visitor->Trace(notifier_to_id_map_); |
| } |
| |
| void GeolocationWatchers::TraceWrappers( |
| const ScriptWrappableVisitor* visitor) const { |
| for (const auto& notifier : id_to_notifier_map_.Values()) |
| visitor->TraceWrappers(notifier); |
| // |notifier_to_id_map_| is a HeapHashMap that is the inverse mapping of |
| // |id_to_notifier_map_|. As the contents are the same, we don't need to |
| // trace |id_to_notifier_map_|. |
| } |
| |
| bool GeolocationWatchers::Add(int id, GeoNotifier* notifier) { |
| DCHECK_GT(id, 0); |
| if (!id_to_notifier_map_.insert(id, notifier).is_new_entry) |
| return false; |
| notifier_to_id_map_.Set(notifier, id); |
| return true; |
| } |
| |
| GeoNotifier* GeolocationWatchers::Find(int id) { |
| DCHECK_GT(id, 0); |
| IdToNotifierMap::iterator iter = id_to_notifier_map_.find(id); |
| if (iter == id_to_notifier_map_.end()) |
| return nullptr; |
| return iter->value; |
| } |
| |
| void GeolocationWatchers::Remove(int id) { |
| DCHECK_GT(id, 0); |
| IdToNotifierMap::iterator iter = id_to_notifier_map_.find(id); |
| if (iter == id_to_notifier_map_.end()) |
| return; |
| notifier_to_id_map_.erase(iter->value); |
| id_to_notifier_map_.erase(iter); |
| } |
| |
| void GeolocationWatchers::Remove(GeoNotifier* notifier) { |
| NotifierToIdMap::iterator iter = notifier_to_id_map_.find(notifier); |
| if (iter == notifier_to_id_map_.end()) |
| return; |
| id_to_notifier_map_.erase(iter->value); |
| notifier_to_id_map_.erase(iter); |
| } |
| |
| bool GeolocationWatchers::Contains(GeoNotifier* notifier) const { |
| return notifier_to_id_map_.Contains(notifier); |
| } |
| |
| void GeolocationWatchers::Clear() { |
| id_to_notifier_map_.clear(); |
| notifier_to_id_map_.clear(); |
| } |
| |
| bool GeolocationWatchers::IsEmpty() const { |
| return id_to_notifier_map_.IsEmpty(); |
| } |
| |
| void GeolocationWatchers::Swap(GeolocationWatchers& other) { |
| swap(id_to_notifier_map_, other.id_to_notifier_map_); |
| swap(notifier_to_id_map_, other.notifier_to_id_map_); |
| } |
| |
| void GeolocationWatchers::GetNotifiersVector( |
| HeapVector<Member<GeoNotifier>>& copy) const { |
| CopyValuesToVector(id_to_notifier_map_, copy); |
| } |
| |
| } // namespace blink |