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

Side by Side Diff: src/platform/update_engine/bzip_extent_writer.cc

Issue 551132: AU: Extent writer utility classes (Closed)
Patch Set: fixes for review Created 10 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "update_engine/bzip_extent_writer.h"
6
7 using std::vector;
8
9 namespace chromeos_update_engine {
10
11 namespace {
12 const vector<char>::size_type kOutputBufferLength = 1024 * 1024;
13 }
14
15 bool BzipExtentWriter::Init(int fd,
16 const vector<Extent>& extents,
17 uint32 block_size) {
18 // Init bzip2 stream
19 int rc = BZ2_bzDecompressInit(&stream_,
20 0, // verbosity. (0 == silent)
21 0 // 0 = faster algo, more memory
22 );
23 TEST_AND_RETURN_FALSE(rc == BZ_OK);
24
25 return next_->Init(fd, extents, block_size);
26 }
27
28 bool BzipExtentWriter::Write(const void* bytes, size_t count) {
29 vector<char> output_buffer(kOutputBufferLength);
30
31 const char* c_bytes = reinterpret_cast<const char*>(bytes);
32
33 input_buffer_.insert(input_buffer_.end(), c_bytes, c_bytes + count);
34
35 stream_.next_in = &input_buffer_[0];
36 stream_.avail_in = input_buffer_.size();
37
38 for (;;) {
39 stream_.next_out = &output_buffer[0];
40 stream_.avail_out = output_buffer.size();
41
42 int rc = BZ2_bzDecompress(&stream_);
43 TEST_AND_RETURN_FALSE(rc == BZ_OK || rc == BZ_STREAM_END);
44
45 if (stream_.avail_out == output_buffer.size())
46 break; // got no new bytes
47
48 TEST_AND_RETURN_FALSE(
49 next_->Write(&output_buffer[0],
50 output_buffer.size() - stream_.avail_out));
51
52 if (rc == BZ_STREAM_END)
53 CHECK_EQ(stream_.avail_in, 0);
54 if (stream_.avail_in == 0)
55 break; // no more input to process
56 }
57
58 // store unconsumed data in input_buffer_.
59
60 vector<char> new_input_buffer;
61 new_input_buffer.insert(new_input_buffer.end(),
Daniel Erat 2010/02/03 02:12:24 i think you can just pass the two iterators to the
adlr 2010/02/04 22:25:37 Done.
62 input_buffer_.end() - stream_.avail_in,
63 input_buffer_.end());
64 new_input_buffer.swap(input_buffer_);
65
66 return true;
67 }
68
69 bool BzipExtentWriter::EndImpl() {
70 TEST_AND_RETURN_FALSE(input_buffer_.empty());
71 TEST_AND_RETURN_FALSE(BZ2_bzDecompressEnd(&stream_) == BZ_OK);
72 return next_->End();
73 }
74
75 } // namespace chromeos_update_engine
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698