blob: a82265dfa5438a1af7add350787f41c421fea70f (
plain)
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
|
// Copyright (c) 2006-2008 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 "chrome/browser/automation/automation_resource_tracker.h"
#include "chrome/common/notification_service.h"
#include "chrome/test/automation/automation_messages.h"
AutomationResourceTrackerImpl::AutomationResourceTrackerImpl(
IPC::Message::Sender* sender)
: sender_(sender) {
}
AutomationResourceTrackerImpl::~AutomationResourceTrackerImpl() {
}
int AutomationResourceTrackerImpl::AddImpl(const void* resource) {
if (ContainsResourceImpl(resource))
return resource_to_handle_[resource];
int handle = GenerateHandle();
DCHECK(!ContainsHandleImpl(handle));
resource_to_handle_[resource] = handle;
handle_to_resource_[handle] = resource;
AddObserverTypeProxy(resource);
return handle;
}
void AutomationResourceTrackerImpl::RemoveImpl(const void* resource) {
if (!ContainsResourceImpl(resource))
return;
int handle = resource_to_handle_[resource];
DCHECK(handle_to_resource_[handle] == resource);
RemoveObserverTypeProxy(resource);
resource_to_handle_.erase(resource);
handle_to_resource_.erase(handle);
}
int AutomationResourceTrackerImpl::GenerateHandle() {
static int handle = 0;
return ++handle;
}
bool AutomationResourceTrackerImpl::ContainsResourceImpl(const void* resource) {
return resource_to_handle_.find(resource) != resource_to_handle_.end();
}
bool AutomationResourceTrackerImpl::ContainsHandleImpl(int handle) {
return handle_to_resource_.find(handle) != handle_to_resource_.end();
}
const void* AutomationResourceTrackerImpl::GetResourceImpl(int handle) {
HandleToResourceMap::const_iterator iter = handle_to_resource_.find(handle);
if (iter == handle_to_resource_.end())
return NULL;
return iter->second;
}
int AutomationResourceTrackerImpl::GetHandleImpl(const void* resource) {
ResourceToHandleMap::const_iterator iter =
resource_to_handle_.find(resource);
if (iter == resource_to_handle_.end())
return 0;
return iter->second;
}
void AutomationResourceTrackerImpl::HandleCloseNotification(
const void* resource) {
if (!ContainsResourceImpl(resource))
return;
sender_->Send(
new AutomationMsg_InvalidateHandle(0, resource_to_handle_[resource]));
RemoveImpl(resource);
}
|