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

Side by Side Diff: chrome/installer/util/move_tree_work_item.h

Issue 1976443005: Revert of Add best-effort/allow rollback flags on WorkItem. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@simple_list_tests
Patch Set: Created 4 years, 7 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 unified diff | Download patch
« no previous file with comments | « chrome/installer/util/installer_state.cc ('k') | chrome/installer/util/move_tree_work_item.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_INSTALLER_UTIL_MOVE_TREE_WORK_ITEM_H_ 5 #ifndef CHROME_INSTALLER_UTIL_MOVE_TREE_WORK_ITEM_H_
6 #define CHROME_INSTALLER_UTIL_MOVE_TREE_WORK_ITEM_H_ 6 #define CHROME_INSTALLER_UTIL_MOVE_TREE_WORK_ITEM_H_
7 7
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "base/files/scoped_temp_dir.h" 9 #include "base/files/scoped_temp_dir.h"
10 #include "base/gtest_prod_util.h" 10 #include "base/gtest_prod_util.h"
11 #include "chrome/installer/util/work_item.h" 11 #include "chrome/installer/util/work_item.h"
12 12
13 // A WorkItem subclass that recursively move a file system hierarchy from 13 // A WorkItem subclass that recursively move a file system hierarchy from
14 // source path to destination path. The file system hierarchy could be a 14 // source path to destination path. The file system hierarchy could be a
15 // single file, or a directory. 15 // single file, or a directory.
16 // 16 //
17 // Under the cover MoveTreeWorkItem moves the destination path, if existing, 17 // Under the cover MoveTreeWorkItem moves the destination path, if existing,
18 // to the temporary directory passed in, and then moves the source hierarchy 18 // to the temporary directory passed in, and then moves the source hierarchy
19 // to the destination location. During rollback the original destination 19 // to the destination location. During rollback the original destination
20 // hierarchy is moved back. 20 // hierarchy is moved back.
21 class MoveTreeWorkItem : public WorkItem { 21 class MoveTreeWorkItem : public WorkItem {
22 public: 22 public:
23 ~MoveTreeWorkItem() override; 23 ~MoveTreeWorkItem() override;
24 24
25 bool Do() override;
26
27 void Rollback() override;
28
25 private: 29 private:
26 friend class WorkItem; 30 friend class WorkItem;
27 FRIEND_TEST_ALL_PREFIXES(MoveTreeWorkItemTest, 31 FRIEND_TEST_ALL_PREFIXES(MoveTreeWorkItemTest,
28 MoveDirectoryDestExistsCheckForDuplicatesFull); 32 MoveDirectoryDestExistsCheckForDuplicatesFull);
29 FRIEND_TEST_ALL_PREFIXES(MoveTreeWorkItemTest, 33 FRIEND_TEST_ALL_PREFIXES(MoveTreeWorkItemTest,
30 MoveDirectoryDestExistsCheckForDuplicatesPartial); 34 MoveDirectoryDestExistsCheckForDuplicatesPartial);
31 35
32 // |source_path| specifies file or directory that will be moved to location 36 // |source_path| specifies file or directory that will be moved to location
33 // specified by |dest_path|. To facilitate rollback, the caller needs to 37 // specified by |dest_path|. To facilitate rollback, the caller needs to
34 // supply a temporary directory, |temp_dir| to save the original files if 38 // supply a temporary directory, |temp_dir| to save the original files if
35 // they exist under dest_path. 39 // they exist under dest_path.
36 // If |check_duplicates| is CHECK_DUPLICATES, then Do() will first check 40 // If |check_duplicates| is CHECK_DUPLICATES, then Do() will first check
37 // whether the directory tree in source_path is entirely contained in 41 // whether the directory tree in source_path is entirely contained in
38 // dest_path and all files in source_path are present and of the same length 42 // dest_path and all files in source_path are present and of the same length
39 // in dest_path. If so, it will do nothing and return true, otherwise it will 43 // in dest_path. If so, it will do nothing and return true, otherwise it will
40 // attempt to move source_path to dest_path as stated above. 44 // attempt to move source_path to dest_path as stated above.
41 MoveTreeWorkItem(const base::FilePath& source_path, 45 MoveTreeWorkItem(const base::FilePath& source_path,
42 const base::FilePath& dest_path, 46 const base::FilePath& dest_path,
43 const base::FilePath& temp_dir, 47 const base::FilePath& temp_dir,
44 MoveTreeOption duplicate_option); 48 MoveTreeOption duplicate_option);
45 49
46 // WorkItem:
47 bool DoImpl() override;
48 void RollbackImpl() override;
49
50 // Source path to move files from. 50 // Source path to move files from.
51 base::FilePath source_path_; 51 base::FilePath source_path_;
52 52
53 // Destination path to move files to. 53 // Destination path to move files to.
54 base::FilePath dest_path_; 54 base::FilePath dest_path_;
55 55
56 // Temporary directory to backup dest_path_ (if it already exists). 56 // Temporary directory to backup dest_path_ (if it already exists).
57 base::FilePath temp_dir_; 57 base::FilePath temp_dir_;
58 58
59 // The temporary directory into which the original dest_path_ has been moved. 59 // The temporary directory into which the original dest_path_ has been moved.
60 base::ScopedTempDir backup_path_; 60 base::ScopedTempDir backup_path_;
61 61
62 // Whether the source was moved to dest_path_ 62 // Whether the source was moved to dest_path_
63 bool moved_to_dest_path_; 63 bool moved_to_dest_path_;
64 64
65 // Whether the original files have been moved to backup path under 65 // Whether the original files have been moved to backup path under
66 // temporary directory. If true, moving back is needed during rollback. 66 // temporary directory. If true, moving back is needed during rollback.
67 bool moved_to_backup_; 67 bool moved_to_backup_;
68 68
69 // Whether we moved the source files to the backup path instead just to 69 // Whether we moved the source files to the backup path instead just to
70 // preserve the behaviour of a Move. This can only become true if 70 // preserve the behaviour of a Move. This can only become true if
71 // duplicate_option_ is CHECK_DUPLICATES. 71 // duplicate_option_ is CHECK_DUPLICATES.
72 bool source_moved_to_backup_; 72 bool source_moved_to_backup_;
73 73
74 // Whether to check for duplicates before moving. 74 // Whether to check for duplicates before moving.
75 MoveTreeOption duplicate_option_; 75 MoveTreeOption duplicate_option_;
76 }; 76 };
77 77
78 #endif // CHROME_INSTALLER_UTIL_MOVE_TREE_WORK_ITEM_H_ 78 #endif // CHROME_INSTALLER_UTIL_MOVE_TREE_WORK_ITEM_H_
OLDNEW
« no previous file with comments | « chrome/installer/util/installer_state.cc ('k') | chrome/installer/util/move_tree_work_item.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698