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
119
120
121
122
123
124
125
126
127
128
129
130
131
|
// Copyright (c) 2011 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/work_item.h"
#include "chrome/installer/util/conditional_work_item_list.h"
#include "chrome/installer/util/copy_reg_key_work_item.h"
#include "chrome/installer/util/copy_tree_work_item.h"
#include "chrome/installer/util/create_dir_work_item.h"
#include "chrome/installer/util/create_reg_key_work_item.h"
#include "chrome/installer/util/delete_tree_work_item.h"
#include "chrome/installer/util/delete_reg_key_work_item.h"
#include "chrome/installer/util/delete_reg_value_work_item.h"
#include "chrome/installer/util/move_tree_work_item.h"
#include "chrome/installer/util/self_reg_work_item.h"
#include "chrome/installer/util/set_reg_value_work_item.h"
#include "chrome/installer/util/work_item_list.h"
WorkItem::WorkItem() : ignore_failure_(false) {
}
WorkItem::~WorkItem() {
}
CopyRegKeyWorkItem* WorkItem::CreateCopyRegKeyWorkItem(
HKEY predefined_root,
const std::wstring& source_key_path,
const std::wstring& dest_key_path,
CopyOverWriteOption overwrite_option) {
return new CopyRegKeyWorkItem(predefined_root, source_key_path,
dest_key_path, overwrite_option);
}
CopyTreeWorkItem* WorkItem::CreateCopyTreeWorkItem(
const FilePath& source_path,
const FilePath& dest_path,
const FilePath& temp_dir,
CopyOverWriteOption overwrite_option,
const FilePath& alternative_path) {
return new CopyTreeWorkItem(source_path, dest_path, temp_dir,
overwrite_option, alternative_path);
}
CreateDirWorkItem* WorkItem::CreateCreateDirWorkItem(const FilePath& path) {
return new CreateDirWorkItem(path);
}
CreateRegKeyWorkItem* WorkItem::CreateCreateRegKeyWorkItem(
HKEY predefined_root, const std::wstring& path) {
return new CreateRegKeyWorkItem(predefined_root, path);
}
DeleteRegKeyWorkItem* WorkItem::CreateDeleteRegKeyWorkItem(
HKEY predefined_root, const std::wstring& path) {
return new DeleteRegKeyWorkItem(predefined_root, path);
}
DeleteRegValueWorkItem* WorkItem::CreateDeleteRegValueWorkItem(
HKEY predefined_root,
const std::wstring& key_path,
const std::wstring& value_name) {
return new DeleteRegValueWorkItem(predefined_root, key_path, value_name);
}
DeleteTreeWorkItem* WorkItem::CreateDeleteTreeWorkItem(
const FilePath& root_path,
const FilePath& temp_path,
const std::vector<FilePath>& key_paths) {
return new DeleteTreeWorkItem(root_path, temp_path, key_paths);
}
MoveTreeWorkItem* WorkItem::CreateMoveTreeWorkItem(
const FilePath& source_path,
const FilePath& dest_path,
const FilePath& temp_dir,
MoveTreeOption duplicate_option) {
return new MoveTreeWorkItem(source_path,
dest_path,
temp_dir,
duplicate_option);
}
SetRegValueWorkItem* WorkItem::CreateSetRegValueWorkItem(
HKEY predefined_root,
const std::wstring& key_path,
const std::wstring& value_name,
const std::wstring& value_data,
bool overwrite) {
return new SetRegValueWorkItem(predefined_root, key_path,
value_name, value_data, overwrite);
}
SetRegValueWorkItem* WorkItem::CreateSetRegValueWorkItem(
HKEY predefined_root,
const std::wstring& key_path,
const std::wstring& value_name,
DWORD value_data,
bool overwrite) {
return new SetRegValueWorkItem(predefined_root, key_path,
value_name, value_data, overwrite);
}
SetRegValueWorkItem* WorkItem::CreateSetRegValueWorkItem(
HKEY predefined_root,
const std::wstring& key_path,
const std::wstring& value_name,
int64 value_data,
bool overwrite) {
return new SetRegValueWorkItem(predefined_root, key_path,
value_name, value_data, overwrite);
}
SelfRegWorkItem* WorkItem::CreateSelfRegWorkItem(const std::wstring& dll_path,
bool do_register,
bool user_level_registration) {
return new SelfRegWorkItem(dll_path, do_register, user_level_registration);
}
WorkItemList* WorkItem::CreateWorkItemList() {
return new WorkItemList();
}
// static
WorkItemList* WorkItem::CreateNoRollbackWorkItemList() {
return new NoRollbackWorkItemList();
}
WorkItemList* WorkItem::CreateConditionalWorkItemList(Condition* condition) {
return new ConditionalWorkItemList(condition);
}
|