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 2017 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.
#ifndef CONTENT_BROWSER_LOCKS_LOCK_MANAGER_H_
#define CONTENT_BROWSER_LOCKS_LOCK_MANAGER_H_
#include <cstdint>
#include <map>
#include <memory>
#include <string>
#include "base/callback.h"
#include "base/memory/weak_ptr.h"
#include "base/sequence_checker.h"
#include "mojo/public/cpp/bindings/receiver_set.h"
#include "third_party/blink/public/mojom/locks/lock_manager.mojom.h"
#include "url/origin.h"
namespace content {
// One instance of this exists per StoragePartition, and services multiple
// child processes/origins. An instance must only be used on the sequence
// it was created on.
class LockManager : public blink::mojom::LockManager {
public:
LockManager();
~LockManager() override;
LockManager(const LockManager&) = delete;
LockManager& operator=(const LockManager&) = delete;
// Binds |receiver| to this LockManager. |receiver| belongs to a frame or
// worker at |origin| hosted by |render_process_id|. If it belongs to a frame,
// |render_frame_id| identifies it, otherwise it is MSG_ROUTING_NONE.
void BindReceiver(int render_process_id,
int render_frame_id,
const url::Origin& origin,
mojo::PendingReceiver<blink::mojom::LockManager> receiver);
// Request a lock. When the lock is acquired, |callback| will be invoked with
// a LockHandle.
void RequestLock(const std::string& name,
blink::mojom::LockMode mode,
WaitMode wait,
mojo::PendingAssociatedRemote<blink::mojom::LockRequest>
request) override;
// Called by a LockHandle's implementation when destructed.
void ReleaseLock(const url::Origin& origin, int64_t lock_id);
// Called to request a snapshot of the current lock state for an origin.
void QueryState(QueryStateCallback callback) override;
private:
// Internal representation of a lock request or held lock.
class Lock;
// State for a particular origin.
class OriginState;
// State for each client held in |receivers_|.
struct ReceiverState {
std::string client_id;
// Origin of the frame or worker owning this receiver.
url::Origin origin;
};
// Mints a monotonically increasing identifier. Used both for lock requests
// and granted locks as keys in ordered maps.
int64_t NextLockId();
mojo::ReceiverSet<blink::mojom::LockManager, ReceiverState> receivers_;
int64_t next_lock_id_ = 0;
std::map<url::Origin, OriginState> origins_;
SEQUENCE_CHECKER(sequence_checker_);
base::WeakPtrFactory<LockManager> weak_ptr_factory_{this};
};
} // namespace content
#endif // CONTENT_BROWSER_LOCKS_LOCK_MANAGER_H
|