Chromium Code Reviews| Index: chrome/utility/image_writer/image_writer.h |
| diff --git a/chrome/utility/image_writer/image_writer.h b/chrome/utility/image_writer/image_writer.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6eb7450dfbd71c06fdd0440ead6b7a568d7686e5 |
| --- /dev/null |
| +++ b/chrome/utility/image_writer/image_writer.h |
| @@ -0,0 +1,65 @@ |
| +// Copyright 2013 The Chromium Authors. All rights reserved. |
| +// Use of this image code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_UTILITY_IMAGE_WRITER_IMAGE_WRITER_H_ |
| +#define CHROME_UTILITY_IMAGE_WRITER_IMAGE_WRITER_H_ |
| + |
| +#include "base/bind.h" |
| +#include "base/callback.h" |
| +#include "base/files/file_path.h" |
| +#include "base/memory/weak_ptr.h" |
| + |
| +namespace chrome { |
| +namespace image_writer { |
| + |
| +class ImageWriterHandler; |
| + |
| +// Manages a write within the utility thread. This class holds all the state |
| +// around the writing and communicates with the ImageWriterHandler to dispatch |
| +// messages. |
| +class ImageWriter : public base::SupportsWeakPtr<ImageWriter> { |
| + public: |
| + explicit ImageWriter(ImageWriterHandler* handler); |
| + virtual ~ImageWriter(); |
| + |
| + // Starts a write from image_path to device_path. |
|
Lei Zhang
2014/02/15 00:49:16
nit: foo_path -> |foo_path|, same below.
Drew Haven
2014/02/15 01:23:58
Done.
|
| + void Write(const base::FilePath& image_path, |
| + const base::FilePath& device_path); |
| + // Starts verifying that image_path and device_path have the same size and |
| + // contents. |
| + void Verify(const base::FilePath& image_path, |
| + const base::FilePath& device_path); |
| + // Cancels any pending writes or verifications. |
| + void Cancel(); |
| + |
| + // Returns whether an operation is in progress. |
| + bool IsRunning(); |
| + |
| + private: |
| + // Convenience wrappers. |
| + void PostTask(const base::Closure& task); |
| + void PostProgress(int64 progress); |
| + void Error(const std::string& message); |
| + |
| + // Work loops. |
| + void WriteChunk(); |
| + void VerifyChunk(); |
| + |
| + // Cleans up file handles. |
| + void CleanUp(); |
| + |
| + base::FilePath image_path_; |
| + base::FilePath device_path_; |
| + |
| + base::PlatformFile image_file_; |
| + base::PlatformFile device_file_; |
| + int64 bytes_processed_; |
| + |
| + ImageWriterHandler* handler_; |
| +}; |
| + |
| +} // namespace image_writer |
| +} // namespace chrome |
| + |
| +#endif // CHROME_UTILITY_IMAGE_WRITER_IMAGE_WRITER_H_ |