OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "webkit/blob/scoped_file.h" | |
6 | |
7 #include "base/bind.h" | |
8 #include "base/callback.h" | |
9 #include "base/files/file_util_proxy.h" | |
10 #include "base/location.h" | |
11 #include "base/message_loop/message_loop_proxy.h" | |
12 #include "base/task_runner.h" | |
13 | |
14 namespace webkit_blob { | |
15 | |
16 ScopedFile::ScopedFile() { | |
17 } | |
18 | |
19 ScopedFile::ScopedFile( | |
20 const base::FilePath& path, ScopeOutPolicy policy, | |
21 base::TaskRunner* file_task_runner) | |
22 : path_(path), | |
23 scope_out_policy_(policy), | |
24 file_task_runner_(file_task_runner) { | |
25 } | |
26 | |
27 ScopedFile::ScopedFile(RValue other) { | |
28 Swap(*other.object); | |
29 } | |
30 | |
31 ScopedFile::~ScopedFile() { | |
32 ScopeOut(); | |
33 } | |
34 | |
35 void ScopedFile::AddScopeOutCallback( | |
36 const ScopeOutCallback& callback, | |
37 base::TaskRunner* callback_runner) { | |
38 if (!callback_runner) | |
39 callback_runner = base::MessageLoopProxy::current(); | |
40 scope_out_callbacks_.push_back(std::make_pair(callback, callback_runner)); | |
41 } | |
42 | |
43 base::FilePath ScopedFile::Release() { | |
44 base::FilePath path = path_; | |
45 path_.clear(); | |
46 return path; | |
47 } | |
48 | |
49 void ScopedFile::Swap(ScopedFile& other) { | |
50 path_ = other.Release(); | |
51 scope_out_policy_ = other.scope_out_policy_; | |
52 scope_out_callbacks_.swap(other.scope_out_callbacks_); | |
53 file_task_runner_ = other.file_task_runner_; | |
54 } | |
55 | |
56 void ScopedFile::ScopeOut() { | |
57 if (path_.empty()) | |
58 return; | |
59 | |
60 for (ScopeOutCallbackList::iterator iter = scope_out_callbacks_.begin(); | |
61 iter != scope_out_callbacks_.end(); ++iter) { | |
62 iter->second->PostTask(FROM_HERE, base::Bind(iter->first, path_)); | |
michaeln
2013/04/22 21:07:03
There's a subtle behavior change here (not sure it
kinuko
2013/04/23 06:31:29
Right... hope this has no regression (otherwise we
| |
63 } | |
64 | |
65 if (scope_out_policy_ == DELETE_ON_SCOPE_OUT) { | |
66 base::FileUtilProxy::Delete( | |
67 file_task_runner_, path_, false /* recursive */, | |
68 base::FileUtilProxy::StatusCallback()); | |
69 } | |
70 } | |
71 | |
72 } // namespace webkit_blob | |
OLD | NEW |