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
104
105
106
107
108
|
// Copyright 2013 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 CHROME_BROWSER_NACL_HOST_PNACL_TRANSLATION_CACHE_H_
#define CHROME_BROWSER_NACL_HOST_PNACL_TRANSLATION_CACHE_H_
#include <map>
#include "base/callback.h"
#include "base/files/file_path.h"
#include "base/memory/weak_ptr.h"
#include "base/time/time.h"
#include "net/base/cache_type.h"
namespace base {
class MessageLoopProxy;
}
namespace disk_cache {
class Backend;
}
namespace nacl {
struct PnaclCacheInfo;
}
namespace net {
class DrainableIOBuffer;
}
namespace pnacl {
typedef base::Callback<void(int)> CompletionCallback;
typedef base::Callback<void(int, scoped_refptr<net::DrainableIOBuffer>)>
GetNexeCallback;
class PnaclTranslationCacheEntry;
extern const int kMaxMemCacheSize;
class PnaclTranslationCache
: public base::SupportsWeakPtr<PnaclTranslationCache> {
public:
PnaclTranslationCache();
virtual ~PnaclTranslationCache();
// Initialize the translation cache in |cache_dir|.
// Call |callback| with a 0 argument on sucess and <0 otherwise.
int InitOnDisk(const base::FilePath& cache_dir,
const CompletionCallback& callback);
// Initialize the translation cache in memory.
// Call |callback| with a 0 argument on sucess and <0 otherwise.
int InitInMemory(const CompletionCallback& callback);
// Store the nexe in the translation cache. A reference to |nexe_data| is
// held until completion or cancellation.
void StoreNexe(const std::string& key, net::DrainableIOBuffer* nexe_data);
// Store the nexe in the translation cache, and call |callback| with
// the result. The result passed to the callback is 0 on success and
// <0 otherwise. A reference to |nexe_data| is held until completion
// or cancellation.
void StoreNexe(const std::string& key,
net::DrainableIOBuffer* nexe_data,
const CompletionCallback& callback);
// Retrieve the nexe from the translation cache. Write the data into |nexe|
// and call |callback|, passing a result code (0 on success and <0 otherwise),
// and a DrainableIOBuffer with the data.
void GetNexe(const std::string& key, const GetNexeCallback& callback);
// Return the number of entries in the cache backend.
int Size();
// Return the cache key for |info|
static std::string GetKey(const nacl::PnaclCacheInfo& info);
// Doom all entries between |initial| and |end|. If the return value is
// net::ERR_IO_PENDING, |callback| will be invoked when the operation
// completes.
int DoomEntriesBetween(base::Time initial, base::Time end,
const CompletionCallback& callback);
private:
friend class PnaclTranslationCacheEntry;
friend class PnaclTranslationCacheTest;
// PnaclTranslationCacheEntry should only use the
// OpComplete and backend methods on PnaclTranslationCache.
void OpComplete(PnaclTranslationCacheEntry* entry);
disk_cache::Backend* backend() { return disk_cache_.get(); }
int Init(net::CacheType,
const base::FilePath& directory,
int cache_size,
const CompletionCallback& callback);
void OnCreateBackendComplete(int rv);
scoped_ptr<disk_cache::Backend> disk_cache_;
CompletionCallback init_callback_;
bool in_memory_;
std::map<void*, scoped_refptr<PnaclTranslationCacheEntry> > open_entries_;
DISALLOW_COPY_AND_ASSIGN(PnaclTranslationCache);
};
} // namespace pnacl
#endif // CHROME_BROWSER_NACL_HOST_PNACL_TRANSLATION_CACHE_H_
|