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

Unified Diff: third_party/zlib/google/zip_reader.h

Issue 92873003: Adds asynchronous unzip functions to ZipReader (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup Created 7 years 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: third_party/zlib/google/zip_reader.h
diff --git a/third_party/zlib/google/zip_reader.h b/third_party/zlib/google/zip_reader.h
index a1f470421525197a68b04bc3bd10a2d8257f467c..9cc5e38202c5da117af78446afe671728d6c154a 100644
--- a/third_party/zlib/google/zip_reader.h
+++ b/third_party/zlib/google/zip_reader.h
@@ -10,7 +10,10 @@
#include "base/basictypes.h"
#include "base/file_util.h"
#include "base/files/file_path.h"
+#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
+#include "base/memory/weak_ptr.h"
+#include "base/message_loop/message_loop_proxy.h"
#include "base/platform_file.h"
#include "base/time/time.h"
@@ -76,6 +79,24 @@ class ZipReader {
DISALLOW_COPY_AND_ASSIGN(EntryInfo);
};
+ class Listener : public base::RefCountedThreadSafe<Listener> {
satorux1 2013/12/05 04:39:37 ref counted should usually be avoided, as it makes
Drew Haven 2013/12/09 23:33:12 I really wasn't sure how to handle this one. Expl
+ public:
+ // Reports progress information back to the caller. It may or may not be
+ // called, but should be called approximately once per write-chunk or once
+ // per percent, whichever is less. The progress is posted as an integer
+ // percentage.
+ virtual void OnUnzipProgress(int progress) = 0;
+
+ // Called when the operation completes.
+ virtual void OnUnzipSuccess() = 0;
+
+ // Called if there is an error.
+ virtual void OnUnzipFailed() = 0;
+ protected:
+ virtual ~Listener() {};
+ friend class base::RefCountedThreadSafe<Listener>;
+ };
+
ZipReader();
~ZipReader();
@@ -130,6 +151,13 @@ class ZipReader {
// This function does not preserve the timestamp of the original entry.
bool ExtractCurrentEntryToFilePath(const base::FilePath& output_file_path);
+ // Asynchronously extracts the current entry to the given output file path.
+ // See ExtractCurrentEntryToFilePath for more information.
+ void ExtractCurrentEntryToFilePathAsync(
+ const base::FilePath& output_file_path,
+ scoped_refptr<base::MessageLoopProxy> message_loop_proxy,
+ scoped_refptr<Listener> listener);
+
// Extracts the current entry to the given output directory path using
// ExtractCurrentEntryToFilePath(). Sub directories are created as needed
// based on the file path of the current entry. For example, if the file
@@ -141,10 +169,33 @@ class ZipReader {
bool ExtractCurrentEntryIntoDirectory(
const base::FilePath& output_directory_path);
+ // Asynchronously extracts the current entry to the given output directory.
+ // See ExtractCurrentEntryIntoDirectory for more information.
+ void ExtractCurrentEntryIntoDirectoryAsync(
+ const base::FilePath& output_directory_path,
+ scoped_refptr<base::MessageLoopProxy> message_loop_proxy,
+ scoped_refptr<Listener> listener);
+
+ // Asynchronously extracts the current entry to the given PlatformFile. If
+ // the current entry is a directory this function will fail. Does not close
+ // the PlatformFile.
+ void ExtractCurrentEntryToPlatformFileAsync(
+ base::PlatformFile output_file,
+ scoped_refptr<base::MessageLoopProxy> message_loop_proxy,
+ scoped_refptr<Listener> listener);
+
#if defined(OS_POSIX)
// Extracts the current entry by writing directly to a file descriptor.
// Does not close the file descriptor. Returns true on success.
bool ExtractCurrentEntryToFd(int fd);
+
+ // Asynchronously extracts the current entry by writing directly to a file
+ // descriptor.
+ // See ExtractCurrentEntryToFd for more information.
+ void ExtractCurrentEntryToFdAsync(
+ int fd,
+ scoped_refptr<base::MessageLoopProxy> message_loop_proxy,
satorux1 2013/12/05 04:39:37 Three functions were added: ExtractCurrentEntryTo
Drew Haven 2013/12/09 23:33:12 A lot of them were basically "free" so I put them
+ scoped_refptr<Listener> listener);
#endif
// Returns the current entry info. Returns NULL if the current entry is
@@ -164,11 +215,20 @@ class ZipReader {
// Resets the internal state.
void Reset();
+ // Unzip loop for asynchronous code.
+ void ExtractChunk(base::PlatformFile target_file,
+ scoped_refptr<base::MessageLoopProxy> message_loop_proxy,
+ scoped_refptr<Listener> listener,
+ int offset,
+ int size);
+
unzFile zip_file_;
int num_entries_;
bool reached_end_;
scoped_ptr<EntryInfo> current_entry_info_;
+ base::WeakPtrFactory<ZipReader> weak_factory_;
+
DISALLOW_COPY_AND_ASSIGN(ZipReader);
};

Powered by Google App Engine
This is Rietveld 408576698