blob: 44eacabfa4393d13d97b33ff582250f22206f6a1 (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
// 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.
// This file defines a mapping between Automation Proxy objects and
// their associated app-side handles.
#ifndef CHROME_TEST_AUTOMATION_AUTOMATION_HANDLE_TRACKER_H__
#define CHROME_TEST_AUTOMATION_AUTOMATION_HANDLE_TRACKER_H__
#include <map>
#include "base/basictypes.h"
// This represents a value that the app's AutomationProvider returns
// when asked for a resource (like a window or tab).
typedef int AutomationHandle;
class AutomationHandleTracker;
class AutomationMessageSender;
class AutomationResourceProxy {
public:
AutomationResourceProxy(AutomationHandleTracker* tracker,
AutomationMessageSender* sender,
AutomationHandle handle);
virtual ~AutomationResourceProxy();
// Marks this proxy object as no longer valid; this generally means
// that the corresponding resource on the app side is gone.
void Invalidate() { is_valid_ = false; }
bool is_valid() const { return is_valid_; }
// Returns the handle that the app has generated to refer to this resource.
AutomationHandle handle() { return handle_; }
protected:
friend class AutomationHandleTracker;
AutomationHandle handle_;
// Called by the tracker when it is being destroyed so we know not to call
// it back.
void TrackerGone() {
tracker_ = NULL;
}
// Not owned by us, owned by the AutomationProxy object. May be NULL if the
// tracker has been destroyed (and hence the object is invalid).
AutomationHandleTracker* tracker_;
// Not owned by us.
AutomationMessageSender* sender_;
private:
// True if the resource that this object is a proxy for on the app side
// still exists.
bool is_valid_;
DISALLOW_EVIL_CONSTRUCTORS(AutomationResourceProxy);
};
// This class keeps track of the mapping between AutomationHandles and
// AutomationResourceProxy objects. This is important because (1) multiple
// AutomationResourceProxy objects can be generated for the same handle
// (2) handles can be invalidated by the app, and all the associated
// proxy objects then need to be invalidated, and (3) when a handle is no
// longer being used on this end, we need to tell the app that it can
// discard the handle.
class AutomationHandleTracker {
public:
AutomationHandleTracker(AutomationMessageSender* sender)
: sender_(sender) {}
~AutomationHandleTracker();
// Adds the specified proxy object to the tracker.
void Add(AutomationResourceProxy* proxy);
// Removes a given proxy object from the mapping, and unregisters the
// handle on the app side if this was the last proxy object that was using
// that handle. This is a no-op if the proxy object is not currently
// in the tracker.
void Remove(AutomationResourceProxy* proxy);
// Marks all proxy objects related to a given handle invalid. This is
// used when a resource (like a window) on the app side is closed, meaning
// that no further operations can be completed using the handle that
// identified that resource.
void InvalidateHandle(AutomationHandle handle);
private:
typedef
std::multimap<AutomationHandle, AutomationResourceProxy*> HandleToObjectMap;
typedef std::pair<AutomationHandle, AutomationResourceProxy*> MapEntry;
HandleToObjectMap handle_to_object_;
AutomationMessageSender* sender_;
DISALLOW_EVIL_CONSTRUCTORS(AutomationHandleTracker);
};
#endif // CHROME_TEST_AUTOMATION_AUTOMATION_HANDLE_TRACKER_H__
|