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

Side by Side Diff: multi_range_http_fetcher.cc

Issue 5835004: AU: MultiHttpFetcher cleanup/rewrite (Closed) Base URL: http://git.chromium.org/git/update_engine.git@master
Patch Set: fixes for review/merge latest trunk Created 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « multi_range_http_fetcher.h ('k') | update_attempter.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 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/multi_range_http_fetcher.h"
6
7 #include "update_engine/utils.h"
8
9 namespace chromeos_update_engine {
10
11 // Begins the transfer to the specified URL.
12 // State change: Stopped -> Downloading
13 // (corner case: Stopped -> Stopped for an empty request)
14 void MultiRangeHTTPFetcher::BeginTransfer(const std::string& url) {
15 CHECK(!base_fetcher_active_) << "BeginTransfer but already active.";
16 CHECK(!pending_transfer_ended_) << "BeginTransfer but pending.";
17 CHECK(!terminating_) << "BeginTransfer but terminating.";
18
19 if (ranges_.empty()) {
20 // Note that after the callback returns this object may be destroyed.
21 if (delegate_)
22 delegate_->TransferComplete(this, true);
23 return;
24 }
25 url_ = url;
26 current_index_ = 0;
27 bytes_received_this_range_ = 0;
28 LOG(INFO) << "starting first transfer";
29 base_fetcher_->set_delegate(this);
30 StartTransfer();
31 }
32
33 // State change: Downloading -> Pending transfer ended
34 void MultiRangeHTTPFetcher::TerminateTransfer() {
35 if (!base_fetcher_active_) {
36 LOG(INFO) << "Called TerminateTransfer but not active.";
37 // Note that after the callback returns this object may be destroyed.
38 if (delegate_)
39 delegate_->TransferTerminated(this);
40 return;
41 }
42 terminating_ = true;
43
44 if (!pending_transfer_ended_) {
45 base_fetcher_->TerminateTransfer();
46 }
47 }
48
49 // State change: Stopped or Downloading -> Downloading
50 void MultiRangeHTTPFetcher::StartTransfer() {
51 if (current_index_ >= ranges_.size()) {
52 return;
53 }
54 LOG(INFO) << "Starting a transfer @" << ranges_[current_index_].first << "("
55 << ranges_[current_index_].second << ")";
56 bytes_received_this_range_ = 0;
57 base_fetcher_->SetOffset(ranges_[current_index_].first);
58 if (delegate_)
59 delegate_->SeekToOffset(ranges_[current_index_].first);
60 base_fetcher_active_ = true;
61 base_fetcher_->BeginTransfer(url_);
62 }
63
64 // State change: Downloading -> Downloading or Pending transfer ended
65 void MultiRangeHTTPFetcher::ReceivedBytes(HttpFetcher* fetcher,
66 const char* bytes,
67 int length) {
68 CHECK_LT(current_index_, ranges_.size());
69 CHECK_EQ(fetcher, base_fetcher_.get());
70 CHECK(!pending_transfer_ended_);
71 off_t next_size = length;
72 if (ranges_[current_index_].second >= 0) {
73 next_size = std::min(next_size,
74 ranges_[current_index_].second -
75 bytes_received_this_range_);
76 }
77 LOG_IF(WARNING, next_size <= 0) << "Asked to write length <= 0";
78 if (delegate_) {
79 delegate_->ReceivedBytes(this, bytes, next_size);
80 }
81 bytes_received_this_range_ += length;
82 if (ranges_[current_index_].second >= 0 &&
83 bytes_received_this_range_ >= ranges_[current_index_].second) {
84 // Terminates the current fetcher. Waits for its TransferTerminated
85 // callback before starting the next range so that we don't end up
86 // signalling the delegate that the whole multi-transfer is complete
87 // before all fetchers are really done and cleaned up.
88 pending_transfer_ended_ = true;
89 LOG(INFO) << "terminating transfer";
90 fetcher->TerminateTransfer();
91 }
92 }
93
94 // State change: Downloading or Pending transfer ended -> Stopped
95 void MultiRangeHTTPFetcher::TransferEnded(HttpFetcher* fetcher,
96 bool successful) {
97 CHECK(base_fetcher_active_) << "Transfer ended unexpectedly.";
98 CHECK_EQ(fetcher, base_fetcher_.get());
99 pending_transfer_ended_ = false;
100 http_response_code_ = fetcher->http_response_code();
101 LOG(INFO) << "TransferEnded w/ code " << http_response_code_;
102 if (terminating_) {
103 LOG(INFO) << "Terminating.";
104 Reset();
105 // Note that after the callback returns this object may be destroyed.
106 if (delegate_)
107 delegate_->TransferTerminated(this);
108 return;
109 }
110
111 // If we didn't get enough bytes, it's failure
112 if (ranges_[current_index_].second >= 0) {
113 if (bytes_received_this_range_ < ranges_[current_index_].second) {
114 // Failure
115 LOG(INFO) << "Didn't get enough bytes. Ending w/ failure.";
116 Reset();
117 // Note that after the callback returns this object may be destroyed.
118 if (delegate_)
119 delegate_->TransferComplete(this, false);
120 return;
121 }
122 // We got enough bytes and there were bytes specified, so this is success.
123 successful = true;
124 }
125
126 // If we have another fetcher, use that.
127 if (current_index_ + 1 < ranges_.size()) {
128 current_index_++;
129 LOG(INFO) << "Starting next transfer (" << current_index_ << ").";
130 StartTransfer();
131 return;
132 }
133
134 LOG(INFO) << "Done w/ all transfers";
135 Reset();
136 // Note that after the callback returns this object may be destroyed.
137 if (delegate_)
138 delegate_->TransferComplete(this, successful);
139 }
140
141 void MultiRangeHTTPFetcher::TransferComplete(HttpFetcher* fetcher,
142 bool successful) {
143 LOG(INFO) << "Received transfer complete.";
144 TransferEnded(fetcher, successful);
145 }
146
147 void MultiRangeHTTPFetcher::TransferTerminated(HttpFetcher* fetcher) {
148 LOG(INFO) << "Received transfer terminated.";
149 TransferEnded(fetcher, false);
150 }
151
152 void MultiRangeHTTPFetcher::Reset() {
153 base_fetcher_active_ = pending_transfer_ended_ = terminating_ = false;
154 current_index_ = 0;
155 bytes_received_this_range_ = 0;
156 }
157
158 } // namespace chromeos_update_engine
OLDNEW
« no previous file with comments | « multi_range_http_fetcher.h ('k') | update_attempter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698