2 * Copyright (C) 2010 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 #include "public/web/WebGeolocationPermissionRequestManager.h"
29 #include "modules/geolocation/Geolocation.h"
30 #include "platform/heap/Handle.h"
31 #include "public/web/WebGeolocationPermissionRequest.h"
32 #include "wtf/HashMap.h"
36 typedef HeapHashMap
<Member
<Geolocation
>, int> GeolocationIdMap
;
37 typedef HeapHashMap
<int, Member
<Geolocation
>> IdGeolocationMap
;
39 class WebGeolocationPermissionRequestManagerPrivate final
: public GarbageCollected
<WebGeolocationPermissionRequestManagerPrivate
> {
43 visitor
->trace(m_geolocationIdMap
);
44 visitor
->trace(m_idGeolocationMap
);
47 GeolocationIdMap m_geolocationIdMap
;
48 IdGeolocationMap m_idGeolocationMap
;
51 int WebGeolocationPermissionRequestManager::add(const WebGeolocationPermissionRequest
& permissionRequest
)
53 Geolocation
* geolocation
= permissionRequest
.geolocation();
54 WebGeolocationPermissionRequestManagerPrivate
* manager
= ensureManager();
55 ASSERT(!manager
->m_geolocationIdMap
.contains(geolocation
));
58 manager
->m_geolocationIdMap
.add(geolocation
, id
);
59 manager
->m_idGeolocationMap
.add(id
, geolocation
);
63 bool WebGeolocationPermissionRequestManager::remove(const WebGeolocationPermissionRequest
& permissionRequest
, int& id
)
65 Geolocation
* geolocation
= permissionRequest
.geolocation();
66 WebGeolocationPermissionRequestManagerPrivate
* manager
= ensureManager();
67 GeolocationIdMap::iterator it
= manager
->m_geolocationIdMap
.find(geolocation
);
68 if (it
== manager
->m_geolocationIdMap
.end())
71 manager
->m_geolocationIdMap
.remove(it
);
72 manager
->m_idGeolocationMap
.remove(id
);
76 bool WebGeolocationPermissionRequestManager::remove(int id
, WebGeolocationPermissionRequest
& permissionRequest
)
78 WebGeolocationPermissionRequestManagerPrivate
* manager
= ensureManager();
79 IdGeolocationMap::iterator it
= manager
->m_idGeolocationMap
.find(id
);
80 if (it
== manager
->m_idGeolocationMap
.end())
82 Geolocation
* geolocation
= it
->value
;
83 permissionRequest
= WebGeolocationPermissionRequest(geolocation
);
84 manager
->m_idGeolocationMap
.remove(it
);
85 manager
->m_geolocationIdMap
.remove(geolocation
);
89 WebGeolocationPermissionRequestManagerPrivate
* WebGeolocationPermissionRequestManager::ensureManager()
91 if (m_private
.isNull())
92 m_private
= new WebGeolocationPermissionRequestManagerPrivate
;
94 return m_private
.get();
97 void WebGeolocationPermissionRequestManager::reset()