summaryrefslogtreecommitdiffstats
path: root/components/component_updater/default_component_installer.cc
diff options
context:
space:
mode:
authorxhwang <xhwang@chromium.org>2014-10-03 14:29:59 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-03 21:30:12 +0000
commit88377c09f02a451ffeae3d2e961def3371a3aab0 (patch)
tree2af96a136456d8333ec15994907c7269e646cea4 /components/component_updater/default_component_installer.cc
parentc7042077293a906b8a706c1ca7179038f979b5c6 (diff)
downloadchromium_src-88377c09f02a451ffeae3d2e961def3371a3aab0.zip
chromium_src-88377c09f02a451ffeae3d2e961def3371a3aab0.tar.gz
chromium_src-88377c09f02a451ffeae3d2e961def3371a3aab0.tar.bz2
Clean up DefaultComponentInstaller::StartRegistration().
This is a minor cleanup to remove duplicate code. Also if the |version| is older we don't need to read manifest and VerifyInstallantion(). Review URL: https://codereview.chromium.org/624753002 Cr-Commit-Position: refs/heads/master@{#298098}
Diffstat (limited to 'components/component_updater/default_component_installer.cc')
-rw-r--r--components/component_updater/default_component_installer.cc62
1 files changed, 30 insertions, 32 deletions
diff --git a/components/component_updater/default_component_installer.cc b/components/component_updater/default_component_installer.cc
index 0e416d1..526b864 100644
--- a/components/component_updater/default_component_installer.cc
+++ b/components/component_updater/default_component_installer.cc
@@ -131,12 +131,11 @@ void DefaultComponentInstaller::StartRegistration(ComponentUpdateService* cus) {
return;
}
- base::FilePath latest_dir;
+ base::FilePath latest_path;
base::Version latest_version(kNullVersion);
scoped_ptr<base::DictionaryValue> latest_manifest;
- std::vector<base::FilePath> older_dirs;
- bool found = false;
+ std::vector<base::FilePath> older_paths;
base::FileEnumerator file_enumerator(
base_dir, false, base::FileEnumerator::DIRECTORIES);
for (base::FilePath path = file_enumerator.Next();
@@ -149,49 +148,47 @@ void DefaultComponentInstaller::StartRegistration(ComponentUpdateService* cus) {
if (!version.IsValid())
continue;
+ // |version| not newer than the latest found version (kNullVersion if no
+ // version has been found yet) is marked for removal.
+ if (version.CompareTo(latest_version) <= 0) {
+ older_paths.push_back(path);
+ continue;
+ }
+
scoped_ptr<base::DictionaryValue> manifest = ReadManifest(path);
if (!manifest || !installer_traits_->VerifyInstallation(*manifest, path)) {
DLOG(ERROR) << "Failed to read manifest or verify installation for "
<< installer_traits_->GetName() << " ("
<< path.MaybeAsASCII() << ").";
- older_dirs.push_back(path);
+ older_paths.push_back(path);
continue;
}
- if (found) {
- if (version.CompareTo(latest_version) > 0) {
- older_dirs.push_back(latest_dir);
-
- latest_dir = path;
- latest_version = version;
- latest_manifest = manifest.Pass();
- } else {
- older_dirs.push_back(path);
- }
- } else {
- latest_dir = path;
- latest_version = version;
- latest_manifest = manifest.Pass();
- found = true;
+ // New valid |version| folder found!
+
+ if (latest_manifest) {
+ DCHECK(!latest_path.empty());
+ older_paths.push_back(latest_path);
}
+
+ latest_path = path;
+ latest_version = version;
+ latest_manifest = manifest.Pass();
}
- if (found) {
+ if (latest_manifest) {
current_version_ = latest_version;
current_manifest_ = latest_manifest.Pass();
// TODO(ddorwin): Remove these members and pass them directly to
// FinishRegistration().
- base::ReadFileToString(latest_dir.AppendASCII("manifest.fingerprint"),
+ base::ReadFileToString(latest_path.AppendASCII("manifest.fingerprint"),
&current_fingerprint_);
}
// Remove older versions of the component. None should be in use during
// browser startup.
- for (std::vector<base::FilePath>::iterator iter = older_dirs.begin();
- iter != older_dirs.end();
- ++iter) {
- base::DeleteFile(*iter, true);
- }
+ for (const auto& older_path : older_paths)
+ base::DeleteFile(older_path, true);
main_task_runner_->PostTask(
FROM_HERE,
@@ -224,12 +221,13 @@ void DefaultComponentInstaller::FinishRegistration(
}
}
- if (current_version_.CompareTo(base::Version(kNullVersion)) > 0) {
- scoped_ptr<base::DictionaryValue> manifest_copy(
- current_manifest_->DeepCopy());
- installer_traits_->ComponentReady(
- current_version_, GetInstallDirectory(), manifest_copy.Pass());
- }
+ if (!current_manifest_)
+ return;
+
+ scoped_ptr<base::DictionaryValue> manifest_copy(
+ current_manifest_->DeepCopy());
+ installer_traits_->ComponentReady(
+ current_version_, GetInstallDirectory(), manifest_copy.Pass());
}
} // namespace component_updater