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
109
110
111
112
113
114
115
116
117
118
|
// Copyright (c) 2006-2008 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 "chrome/installer/util/logging_installer.h"
#include "chrome/installer/util/work_item_list.h"
WorkItemList::~WorkItemList() {
for (WorkItemIterator itr = list_.begin(); itr != list_.end(); ++itr) {
delete (*itr);
}
for (WorkItemIterator itr = executed_list_.begin();
itr != executed_list_.end(); ++itr) {
delete (*itr);
}
}
WorkItemList::WorkItemList()
: status_(ADD_ITEM) {
}
bool WorkItemList::Do() {
if (status_ != ADD_ITEM)
return false;
bool result = true;
while (!list_.empty()) {
WorkItem* work_item = list_.front();
list_.pop_front();
executed_list_.push_front(work_item);
if (!work_item->Do()) {
LOG(ERROR) << "list execution failed";
result = false;
break;
}
}
if (result)
LOG(INFO) << "list execution succeeded";
status_ = LIST_EXECUTED;
return result;
}
void WorkItemList::Rollback() {
if (status_ != LIST_EXECUTED)
return;
for (WorkItemIterator itr = executed_list_.begin();
itr != executed_list_.end(); ++itr) {
(*itr)->Rollback();
}
status_ = LIST_ROLLED_BACK;
return;
}
bool WorkItemList::AddWorkItem(WorkItem* work_item) {
if (status_ != ADD_ITEM)
return false;
list_.push_back(work_item);
return true;
}
bool WorkItemList::AddCopyTreeWorkItem(std::wstring source_path,
std::wstring dest_path,
std::wstring temp_dir,
CopyOverWriteOption overwrite_option,
std::wstring alternative_path) {
WorkItem* item = reinterpret_cast<WorkItem*>(
WorkItem::CreateCopyTreeWorkItem(source_path, dest_path, temp_dir,
overwrite_option, alternative_path));
return AddWorkItem(item);
}
bool WorkItemList::AddCreateDirWorkItem(std::wstring path) {
WorkItem* item = reinterpret_cast<WorkItem*>(
WorkItem::CreateCreateDirWorkItem(path));
return AddWorkItem(item);
}
bool WorkItemList::AddCreateRegKeyWorkItem(HKEY predefined_root,
std::wstring path) {
WorkItem* item = reinterpret_cast<WorkItem*>(
WorkItem::CreateCreateRegKeyWorkItem(predefined_root, path));
return AddWorkItem(item);
}
bool WorkItemList::AddDeleteTreeWorkItem(std::wstring root_path,
std::wstring key_path) {
WorkItem* item = reinterpret_cast<WorkItem*>(
WorkItem::CreateDeleteTreeWorkItem(root_path, key_path));
return AddWorkItem(item);
}
bool WorkItemList::AddSetRegValueWorkItem(HKEY predefined_root,
std::wstring key_path,
std::wstring value_name,
std::wstring value_data,
bool overwrite) {
WorkItem* item = reinterpret_cast<WorkItem*>(
WorkItem::CreateSetRegValueWorkItem(predefined_root, key_path, value_name,
value_data, overwrite));
return AddWorkItem(item);
}
bool WorkItemList::AddSetRegValueWorkItem(HKEY predefined_root,
std::wstring key_path,
std::wstring value_name,
DWORD value_data,
bool overwrite) {
WorkItem* item = reinterpret_cast<WorkItem*>(
WorkItem::CreateSetRegValueWorkItem(predefined_root, key_path, value_name,
value_data, overwrite));
return AddWorkItem(item);
}
|