blob: 6a594b2a05ce56385f59543897a06bd23eb0a9ac (
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
|
// Copyright (c) 2011 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 WEBKIT_DATABASE_DATABASE_CONNECTIONS_H_
#define WEBKIT_DATABASE_DATABASE_CONNECTIONS_H_
#include <map>
#include <vector>
#include "base/memory/ref_counted.h"
#include "base/string16.h"
#include "base/synchronization/lock.h"
namespace base {
class MessageLoopProxy;
}
namespace webkit_database {
class DatabaseConnections {
public:
DatabaseConnections();
~DatabaseConnections();
bool IsEmpty() const;
bool IsDatabaseOpened(const string16& origin_identifier,
const string16& database_name) const;
bool IsOriginUsed(const string16& origin_identifier) const;
void AddConnection(const string16& origin_identifier,
const string16& database_name);
void RemoveConnection(const string16& origin_identifier,
const string16& database_name);
void RemoveAllConnections();
void RemoveConnections(
const DatabaseConnections& connections,
std::vector<std::pair<string16, string16> >* closed_dbs);
private:
typedef std::map<string16, int> DBConnections;
typedef std::map<string16, DBConnections> OriginConnections;
OriginConnections connections_;
void RemoveConnectionsHelper(const string16& origin_identifier,
const string16& database_name,
int num_connections);
};
// A wrapper class that provides thread-safety and the
// ability to wait until all connections have closed.
// Intended for use in renderer processes.
class DatabaseConnectionsWrapper
: public base::RefCountedThreadSafe<DatabaseConnectionsWrapper> {
public:
DatabaseConnectionsWrapper();
// The Wait and Has methods should only be called on the
// main thread (the thread on which the wrapper is constructed).
void WaitForAllDatabasesToClose();
bool HasOpenConnections();
// Add and Remove may be called on any thread.
void AddOpenConnection(const string16& origin_identifier,
const string16& database_name);
void RemoveOpenConnection(const string16& origin_identifier,
const string16& database_name);
private:
~DatabaseConnectionsWrapper();
friend class base::RefCountedThreadSafe<DatabaseConnectionsWrapper>;
bool waiting_for_dbs_to_close_;
base::Lock open_connections_lock_;
DatabaseConnections open_connections_;
scoped_refptr<base::MessageLoopProxy> main_thread_;
};
} // namespace webkit_database
#endif // WEBKIT_DATABASE_DATABASE_CONNECTIONS_H_
|