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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
|
// Copyright (c) 2010 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/channel_info.h"
#include "base/logging.h"
#include "base/win/registry.h"
#include "chrome/installer/util/google_update_constants.h"
using base::win::RegKey;
namespace {
const wchar_t kChannelBeta[] = L"beta";
const wchar_t kChannelDev[] = L"dev";
const wchar_t kModCeee[] = L"-CEEE";
const wchar_t kModChrome[] = L"-chrome";
const wchar_t kModChromeFrame[] = L"-chromeframe";
const wchar_t kModMultiInstall[] = L"-multi";
const wchar_t kModReadyMode[] = L"-readymode";
const wchar_t kSfxFull[] = L"-full";
const wchar_t kSfxMultiFail[] = L"-multifail";
const wchar_t* const kChannels[] = {
kChannelBeta,
kChannelDev
};
const wchar_t* const kModifiers[] = {
kModMultiInstall,
kModChrome,
kModChromeFrame,
kModCeee,
kModReadyMode,
kSfxMultiFail,
kSfxFull
};
enum ModifierIndex {
MOD_MULTI_INSTALL,
MOD_CHROME,
MOD_CHROME_FRAME,
MOD_CEEE,
MOD_READY_MODE,
SFX_MULTI_FAIL,
SFX_FULL,
NUM_MODIFIERS
};
COMPILE_ASSERT(NUM_MODIFIERS == arraysize(kModifiers),
kModifiers_disagrees_with_ModifierIndex_comma_they_must_match_bang);
// Returns true if the modifier is found, in which case |position| holds the
// location at which the modifier was found.
bool FindModifier(ModifierIndex index,
const std::wstring& ap_value,
std::wstring::size_type* position) {
DCHECK(position != NULL);
std::wstring::size_type mod_length =
std::wstring::traits_type::length(kModifiers[index]);
for (std::wstring::size_type pos = 0; ; ) {
*position = ap_value.find(kModifiers[index], pos, mod_length);
if (*position == std::wstring::npos)
break;
// The modifier must be either at the end of the string or followed by -.
pos = *position + mod_length;
if (pos == ap_value.size() || ap_value[pos] == L'-')
return true;
}
return false;
}
bool HasModifier(ModifierIndex index, const std::wstring& ap_value) {
DCHECK(index >= 0 && index < NUM_MODIFIERS);
std::wstring::size_type position;
return FindModifier(index, ap_value, &position);
}
std::wstring::size_type FindInsertionPoint(ModifierIndex index,
const std::wstring& ap_value) {
// Return the location of the next modifier.
std::wstring::size_type result;
for (int scan = index + 1; scan < NUM_MODIFIERS; ++scan) {
if (FindModifier(static_cast<ModifierIndex>(scan), ap_value, &result))
return result;
}
return ap_value.size();
}
// Returns true if |ap_value| is modified.
bool SetModifier(ModifierIndex index, bool set, std::wstring* ap_value) {
DCHECK(index >= 0 && index < NUM_MODIFIERS);
DCHECK(ap_value);
std::wstring::size_type position;
bool have_modifier = FindModifier(index, *ap_value, &position);
if (set) {
if (!have_modifier) {
ap_value->insert(FindInsertionPoint(index, *ap_value), kModifiers[index]);
return true;
}
} else {
if (have_modifier) {
ap_value->erase(position,
std::wstring::traits_type::length(kModifiers[index]));
return true;
}
}
return false;
}
} // namespace
namespace installer {
bool ChannelInfo::Initialize(const RegKey& key) {
return (key.ReadValue(google_update::kRegApField, &value_) == ERROR_SUCCESS);
}
bool ChannelInfo::Write(RegKey* key) const {
return (key->WriteValue(google_update::kRegApField, value_.c_str()) ==
ERROR_SUCCESS);
}
bool ChannelInfo::GetChannelName(std::wstring* channel_name) const {
DCHECK(channel_name);
if (value_.empty()) {
channel_name->erase();
return true;
} else {
for (const wchar_t* const* scan = &kChannels[0],
*const* end = &kChannels[arraysize(kChannels)]; scan != end;
++scan) {
if (value_.find(*scan) != std::wstring::npos) {
channel_name->assign(*scan);
return true;
}
}
// There may be modifiers present. Strip them off and see if we're left
// with the empty string (stable channel).
std::wstring tmp_value = value_;
for (int i = 0; i != NUM_MODIFIERS; ++i) {
SetModifier(static_cast<ModifierIndex>(i), false, &tmp_value);
}
if (tmp_value.empty()) {
channel_name->erase();
return true;
}
}
return false;
}
bool ChannelInfo::IsCeee() const {
return HasModifier(MOD_CEEE, value_);
}
bool ChannelInfo::SetCeee(bool value) {
return SetModifier(MOD_CEEE, value, &value_);
}
bool ChannelInfo::IsChrome() const {
return HasModifier(MOD_CHROME, value_);
}
bool ChannelInfo::SetChrome(bool value) {
return SetModifier(MOD_CHROME, value, &value_);
}
bool ChannelInfo::IsChromeFrame() const {
return HasModifier(MOD_CHROME_FRAME, value_);
}
bool ChannelInfo::SetChromeFrame(bool value) {
return SetModifier(MOD_CHROME_FRAME, value, &value_);
}
bool ChannelInfo::IsMultiInstall() const {
return HasModifier(MOD_MULTI_INSTALL, value_);
}
bool ChannelInfo::SetMultiInstall(bool value) {
return SetModifier(MOD_MULTI_INSTALL, value, &value_);
}
bool ChannelInfo::IsReadyMode() const {
return HasModifier(MOD_READY_MODE, value_);
}
bool ChannelInfo::SetReadyMode(bool value) {
return SetModifier(MOD_READY_MODE, value, &value_);
}
bool ChannelInfo::HasFullSuffix() const {
return HasModifier(SFX_FULL, value_);
}
bool ChannelInfo::SetFullSuffix(bool value) {
return SetModifier(SFX_FULL, value, &value_);
}
bool ChannelInfo::HasMultiFailSuffix() const {
return HasModifier(SFX_MULTI_FAIL, value_);
}
bool ChannelInfo::SetMultiFailSuffix(bool value) {
return SetModifier(SFX_MULTI_FAIL, value, &value_);
}
} // namespace installer
|