Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5715)

Unified Diff: chrome/installer/util/delete_tree_work_item.cc

Issue 8299008: Errors while deleting old version dirs no longer cause them to grow in odd ways. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/installer/util/delete_tree_work_item.cc
diff --git a/chrome/installer/util/delete_tree_work_item.cc b/chrome/installer/util/delete_tree_work_item.cc
index a5bc7f92404fecc84d0cae9f5438dab6513699c2..b0bf0976964e1c0f95bb2cf5e9cef0c3bbf896f8 100644
--- a/chrome/installer/util/delete_tree_work_item.cc
+++ b/chrome/installer/util/delete_tree_work_item.cc
@@ -32,7 +32,8 @@ DeleteTreeWorkItem::DeleteTreeWorkItem(
const FilePath& temp_path,
const std::vector<FilePath>& key_paths)
: root_path_(root_path),
- temp_path_(temp_path) {
+ temp_path_(temp_path),
+ copied_to_backup_(false) {
if (!SafeCast(key_paths.size(), &num_key_files_)) {
NOTREACHED() << "Impossibly large key_paths collection";
} else if (num_key_files_ != 0) {
@@ -57,15 +58,19 @@ bool DeleteTreeWorkItem::Do() {
for (ptrdiff_t i = 0; !abort && i != num_key_files_; ++i) {
FilePath& key_file = key_paths_[i];
ScopedTempDir& backup = key_backup_paths_[i];
- if (!backup.CreateUniqueTempDirUnderPath(temp_path_)) {
- PLOG(ERROR) << "Could not create temp dir in " << temp_path_.value();
- abort = true;
- } else if (!file_util::CopyFile(key_file,
- backup.path().Append(key_file.BaseName()))) {
- PLOG(ERROR) << "Could not back up " << key_file.value()
- << " to directory " << backup.path().value();
- abort = true;
- } else {
+ if (!ignore_failure_) {
+ if (!backup.CreateUniqueTempDirUnderPath(temp_path_)) {
+ PLOG(ERROR) << "Could not create temp dir in " << temp_path_.value();
+ abort = true;
+ } else if (!file_util::CopyFile(key_file,
+ backup.path().Append(key_file.BaseName()))) {
+ PLOG(ERROR) << "Could not back up " << key_file.value()
+ << " to directory " << backup.path().value();
+ abort = true;
+ backup.Delete();
+ }
+ }
+ if (!abort) {
HANDLE file = ::CreateFile(key_file.value().c_str(), FILE_ALL_ACCESS,
FILE_SHARE_DELETE, NULL, OPEN_EXISTING, 0,
NULL);
@@ -115,6 +120,8 @@ bool DeleteTreeWorkItem::Do() {
LOG(ERROR) << "can not copy " << root_path_.value()
<< " to backup path " << backup.value();
return false;
+ } else {
+ copied_to_backup_ = true;
}
}
}
@@ -132,7 +139,8 @@ void DeleteTreeWorkItem::Rollback() {
if (ignore_failure_)
return;
- if (!backup_path_.path().empty()) {
+ if (copied_to_backup_) {
+ DCHECK(!backup_path_.path().empty());
FilePath backup = backup_path_.path().Append(root_path_.BaseName());
if (file_util::PathExists(backup))
file_util::Move(backup, root_path_);

Powered by Google App Engine
This is Rietveld 408576698