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

Unified Diff: chrome/browser/component_updater/component_patcher_operation.h

Issue 25909005: Use UtilityProcessHost to patch files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@nonblocking
Patch Set: Fix ASAN failure, rebase to LKGR/259825 Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/component_updater/component_patcher_operation.h
diff --git a/chrome/browser/component_updater/component_patcher_operation.h b/chrome/browser/component_updater/component_patcher_operation.h
index c9bc0b1690c3d62ccfb76499b3ddde8cf43ecf11..91c3a16e6b0d55bb771c639b1871a7ce70177f63 100644
--- a/chrome/browser/component_updater/component_patcher_operation.h
+++ b/chrome/browser/component_updater/component_patcher_operation.h
@@ -6,10 +6,15 @@
#define CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_PATCHER_OPERATION_H_
#include <string>
+
#include "base/basictypes.h"
+#include "base/callback.h"
#include "base/compiler_specific.h"
#include "base/files/file_path.h"
+#include "base/memory/ref_counted.h"
+#include "chrome/browser/component_updater/component_patcher.h"
#include "chrome/browser/component_updater/component_unpacker.h"
+#include "content/public/browser/utility_process_host_client.h"
namespace base {
class DictionaryValue;
@@ -18,44 +23,56 @@ class DictionaryValue;
namespace component_updater {
class ComponentInstaller;
-class ComponentPatcher;
-class DeltaUpdateOp {
+class DeltaUpdateOp : public base::RefCountedThreadSafe<DeltaUpdateOp> {
public:
-
DeltaUpdateOp();
- virtual ~DeltaUpdateOp();
- // Parses, runs, and verifies the operation, returning an error code if an
- // error is encountered, and DELTA_OK otherwise. In case of errors,
- // extended error information can be returned in the |error| parameter.
- ComponentUnpacker::Error Run(base::DictionaryValue* command_args,
- const base::FilePath& input_dir,
- const base::FilePath& unpack_dir,
- ComponentPatcher* patcher,
- ComponentInstaller* installer,
- int* error);
+ // Parses, runs, and verifies the operation. Calls |callback| with the
+ // result of the operation. The callback is called using |task_runner|.
+ void Run(const base::DictionaryValue* command_args,
+ const base::FilePath& input_dir,
+ const base::FilePath& unpack_dir,
+ ComponentInstaller* installer,
+ bool in_process,
+ const ComponentUnpacker::Callback& callback,
+ scoped_refptr<base::SequencedTaskRunner> task_runner);
protected:
+ virtual ~DeltaUpdateOp();
+
+ bool InProcess();
+
std::string output_sha256_;
base::FilePath output_abs_path_;
private:
+ friend class base::RefCountedThreadSafe<DeltaUpdateOp>;
+
+
ComponentUnpacker::Error CheckHash();
// Subclasses must override DoParseArguments to parse operation-specific
// arguments. DoParseArguments returns DELTA_OK on success; any other code
// represents failure.
virtual ComponentUnpacker::Error DoParseArguments(
- base::DictionaryValue* command_args,
+ const base::DictionaryValue* command_args,
const base::FilePath& input_dir,
ComponentInstaller* installer) = 0;
// Subclasses must override DoRun to actually perform the patching operation.
- // DoRun returns DELTA_OK on success; any other code represents failure.
- // Additional error information can be returned in the |error| parameter.
- virtual ComponentUnpacker::Error DoRun(ComponentPatcher* patcher,
- int* error) = 0;
+ // They must call the provided callback when they have completed their
+ // operations. In practice, the provided callback is always for "DoneRunning".
+ virtual void DoRun(const ComponentUnpacker::Callback& callback) = 0;
+
+ // Callback given to subclasses for when they complete their operation.
+ // Validates the output, and posts a task to the patching operation's
+ // callback.
+ void DoneRunning(ComponentUnpacker::Error error, int extended_error);
+
+ bool in_process_;
+ ComponentUnpacker::Callback callback_;
+ scoped_refptr<base::SequencedTaskRunner> task_runner_;
DISALLOW_COPY_AND_ASSIGN(DeltaUpdateOp);
};
@@ -68,14 +85,15 @@ class DeltaUpdateOpCopy : public DeltaUpdateOp {
DeltaUpdateOpCopy();
private:
+ virtual ~DeltaUpdateOpCopy();
+
// Overrides of DeltaUpdateOp.
virtual ComponentUnpacker::Error DoParseArguments(
- base::DictionaryValue* command_args,
+ const base::DictionaryValue* command_args,
const base::FilePath& input_dir,
ComponentInstaller* installer) OVERRIDE;
- virtual ComponentUnpacker::Error DoRun(ComponentPatcher* patcher,
- int* error) OVERRIDE;
+ virtual void DoRun(const ComponentUnpacker::Callback& callback) OVERRIDE;
base::FilePath input_abs_path_;
@@ -91,68 +109,101 @@ class DeltaUpdateOpCreate : public DeltaUpdateOp {
DeltaUpdateOpCreate();
private:
+ virtual ~DeltaUpdateOpCreate();
+
// Overrides of DeltaUpdateOp.
virtual ComponentUnpacker::Error DoParseArguments(
- base::DictionaryValue* command_args,
+ const base::DictionaryValue* command_args,
const base::FilePath& input_dir,
ComponentInstaller* installer) OVERRIDE;
- virtual ComponentUnpacker::Error DoRun(ComponentPatcher* patcher,
- int* error) OVERRIDE;
+ virtual void DoRun(const ComponentUnpacker::Callback& callback) OVERRIDE;
base::FilePath patch_abs_path_;
DISALLOW_COPY_AND_ASSIGN(DeltaUpdateOpCreate);
};
-// A 'bsdiff' operation takes an existing file on disk, and a bsdiff-
-// format patch file provided in the delta update package, and runs bsdiff
-// to construct an output file in the unpacking directory.
-class DeltaUpdateOpPatchBsdiff : public DeltaUpdateOp {
+class DeltaUpdateOpPatchStrategy {
+ public:
+ virtual ~DeltaUpdateOpPatchStrategy();
+
+ // Returns an integer to add to error codes to disambiguate their source.
+ virtual int GetErrorOffset() const = 0;
+
+ // Returns the "error code" that is expected in the successful install case.
+ virtual int GetSuccessCode() const = 0;
+
+ // Returns an IPC message that will start patching if it is sent to a
+ // UtilityProcessClient.
+ virtual scoped_ptr<IPC::Message> GetPatchMessage(
+ base::FilePath input_abs_path,
+ base::FilePath patch_abs_path,
+ base::FilePath output_abs_path) = 0;
+
+ // Does the actual patching operation, and returns an error code.
+ virtual int Patch(base::FilePath input_abs_path,
+ base::FilePath patch_abs_path,
+ base::FilePath output_abs_path) = 0;
+};
+
+class DeltaUpdateOpPatch;
+
+class DeltaUpdateOpPatchHost : public content::UtilityProcessHostClient {
public:
- DeltaUpdateOpPatchBsdiff();
+ explicit DeltaUpdateOpPatchHost(scoped_refptr<DeltaUpdateOpPatch> patcher);
+
+ void StartProcess(scoped_ptr<IPC::Message> message);
private:
- // Overrides of DeltaUpdateOp.
- virtual ComponentUnpacker::Error DoParseArguments(
- base::DictionaryValue* command_args,
- const base::FilePath& input_dir,
- ComponentInstaller* installer) OVERRIDE;
+ virtual ~DeltaUpdateOpPatchHost();
- virtual ComponentUnpacker::Error DoRun(ComponentPatcher* patcher,
- int* error) OVERRIDE;
+ void OnPatchSucceeded();
- base::FilePath patch_abs_path_;
- base::FilePath input_abs_path_;
+ void OnPatchFailed(int error_code);
+
+ // Overrides of content::UtilityProcessHostClient.
+ virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
- DISALLOW_COPY_AND_ASSIGN(DeltaUpdateOpPatchBsdiff);
+ virtual void OnProcessCrashed(int exit_code) OVERRIDE;
+
+ scoped_refptr<DeltaUpdateOpPatch> patcher_;
};
-// A 'courgette' operation takes an existing file on disk, and a Courgette-
-// format patch file provided in the delta update package, and runs Courgette
-// to construct an output file in the unpacking directory.
-class DeltaUpdateOpPatchCourgette : public DeltaUpdateOp {
+// Both 'bsdiff' and 'courgette' operations take an existing file on disk,
+// and a bsdiff- or Courgette-format patch file provided in the delta update
+// package, and run bsdiff or Courgette to construct an output file in the
+// unpacking directory.
+class DeltaUpdateOpPatch : public DeltaUpdateOp {
public:
- DeltaUpdateOpPatchCourgette();
+ explicit DeltaUpdateOpPatch(scoped_ptr<DeltaUpdateOpPatchStrategy> strategy);
+
+ void DonePatching(ComponentUnpacker::Error error, int error_code);
private:
+ virtual ~DeltaUpdateOpPatch();
+
// Overrides of DeltaUpdateOp.
virtual ComponentUnpacker::Error DoParseArguments(
- base::DictionaryValue* command_args,
+ const base::DictionaryValue* command_args,
const base::FilePath& input_dir,
ComponentInstaller* installer) OVERRIDE;
- virtual ComponentUnpacker::Error DoRun(ComponentPatcher* patcher,
- int* error) OVERRIDE;
+ virtual void DoRun(const ComponentUnpacker::Callback& callback) OVERRIDE;
+ ComponentUnpacker::Callback callback_;
base::FilePath patch_abs_path_;
base::FilePath input_abs_path_;
+ scoped_ptr<DeltaUpdateOpPatchStrategy> strategy_;
+ scoped_refptr<DeltaUpdateOpPatchHost> host_;
- DISALLOW_COPY_AND_ASSIGN(DeltaUpdateOpPatchCourgette);
+ DISALLOW_COPY_AND_ASSIGN(DeltaUpdateOpPatch);
};
-// Factory function to create DeltaUpdateOp instances.
-DeltaUpdateOp* CreateDeltaUpdateOp(base::DictionaryValue* command);
+// Factory functions to create DeltaUpdateOp instances.
+DeltaUpdateOp* CreateDeltaUpdateOp(const base::DictionaryValue& command);
+
+DeltaUpdateOp* CreateDeltaUpdateOp(const std::string& operation);
} // namespace component_updater
« no previous file with comments | « chrome/browser/component_updater/component_patcher.cc ('k') | chrome/browser/component_updater/component_patcher_operation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698