blob: 3f2daed926ce09efd590f7ddcdd7f4f020470e06 (
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
|
// Copyright (c) 2010 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 "webkit/blob/deletable_file_reference.h"
#include <map>
#include "base/file_util.h"
#include "base/file_util_proxy.h"
#include "base/lazy_instance.h"
#include "base/message_loop_proxy.h"
namespace webkit_blob {
namespace {
typedef std::map<FilePath, DeletableFileReference*> DeleteableFileMap;
static base::LazyInstance<DeleteableFileMap> g_deletable_file_map(
base::LINKER_INITIALIZED);
} // namespace
// static
scoped_refptr<DeletableFileReference> DeletableFileReference::Get(
const FilePath& path) {
DeleteableFileMap::iterator found = g_deletable_file_map.Get().find(path);
DeletableFileReference* reference =
(found == g_deletable_file_map.Get().end()) ? NULL : found->second;
return scoped_refptr<DeletableFileReference>(reference);
}
// static
scoped_refptr<DeletableFileReference> DeletableFileReference::GetOrCreate(
const FilePath& path, base::MessageLoopProxy* file_thread) {
DCHECK(file_thread);
typedef std::pair<DeleteableFileMap::iterator, bool> InsertResult;
// Visual Studio 2010 has problems converting NULL to the null pointer for
// std::pair. See http://connect.microsoft.com/VisualStudio/feedback/details/520043/error-converting-from-null-to-a-pointer-type-in-std-pair
// It will work if we pass nullptr.
#if defined(_MSC_VER) && _MSC_VER >= 1600
webkit_blob::DeletableFileReference* null_reference = nullptr;
#else
webkit_blob::DeletableFileReference* null_reference = NULL;
#endif
InsertResult result = g_deletable_file_map.Get().insert(
DeleteableFileMap::value_type(path, null_reference));
if (result.second == false)
return scoped_refptr<DeletableFileReference>(result.first->second);
// Wasn't in the map, create a new reference and store the pointer.
scoped_refptr<DeletableFileReference> reference(
new DeletableFileReference(path, file_thread));
result.first->second = reference.get();
return reference;
}
DeletableFileReference::DeletableFileReference(
const FilePath& path, base::MessageLoopProxy* file_thread)
: path_(path), file_thread_(file_thread) {
DCHECK(g_deletable_file_map.Get().find(path_)->second == NULL);
}
DeletableFileReference::~DeletableFileReference() {
DCHECK(g_deletable_file_map.Get().find(path_)->second == this);
g_deletable_file_map.Get().erase(path_);
base::FileUtilProxy::Delete(file_thread_, path_, false /* recursive */, NULL);
}
} // namespace webkit_blob
|