OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "net/http/http_cache_transaction.h" | 5 #include "net/http/http_cache_transaction.h" |
6 | 6 |
7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
8 | 8 |
9 #if defined(OS_POSIX) | 9 #if defined(OS_POSIX) |
10 #include <unistd.h> | 10 #include <unistd.h> |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 | 307 |
308 const HttpResponseInfo* HttpCache::Transaction::GetResponseInfo() const { | 308 const HttpResponseInfo* HttpCache::Transaction::GetResponseInfo() const { |
309 // Null headers means we encountered an error or haven't a response yet | 309 // Null headers means we encountered an error or haven't a response yet |
310 if (auth_response_.headers) | 310 if (auth_response_.headers) |
311 return &auth_response_; | 311 return &auth_response_; |
312 return (response_.headers || response_.ssl_info.cert || | 312 return (response_.headers || response_.ssl_info.cert || |
313 response_.cert_request_info) ? &response_ : NULL; | 313 response_.cert_request_info) ? &response_ : NULL; |
314 } | 314 } |
315 | 315 |
316 LoadState HttpCache::Transaction::GetLoadState() const { | 316 LoadState HttpCache::Transaction::GetLoadState() const { |
317 if (network_trans_.get()) | 317 LoadState state = GetWriterLoadState(); |
318 return network_trans_->GetLoadState(); | 318 if (state != LOAD_STATE_WAITING_FOR_CACHE) |
319 if (entry_ || !request_) | 319 return state; |
320 return LOAD_STATE_IDLE; | 320 |
321 return LOAD_STATE_WAITING_FOR_CACHE; | 321 if (cache_) |
| 322 return cache_->GetLoadStateForPendingTransaction(this); |
| 323 |
| 324 return LOAD_STATE_IDLE; |
322 } | 325 } |
323 | 326 |
324 uint64 HttpCache::Transaction::GetUploadProgress() const { | 327 uint64 HttpCache::Transaction::GetUploadProgress() const { |
325 if (network_trans_.get()) | 328 if (network_trans_.get()) |
326 return network_trans_->GetUploadProgress(); | 329 return network_trans_->GetUploadProgress(); |
327 return final_upload_progress_; | 330 return final_upload_progress_; |
328 } | 331 } |
329 | 332 |
330 int HttpCache::Transaction::WriteMetadata(IOBuffer* buf, int buf_len, | 333 int HttpCache::Transaction::WriteMetadata(IOBuffer* buf, int buf_len, |
331 CompletionCallback* callback) { | 334 CompletionCallback* callback) { |
(...skipping 27 matching lines...) Expand all Loading... |
359 !response_.headers->HasStrongValidators()) | 362 !response_.headers->HasStrongValidators()) |
360 return false; | 363 return false; |
361 | 364 |
362 truncated_ = true; | 365 truncated_ = true; |
363 target_state_ = STATE_NONE; | 366 target_state_ = STATE_NONE; |
364 next_state_ = STATE_CACHE_WRITE_TRUNCATED_RESPONSE; | 367 next_state_ = STATE_CACHE_WRITE_TRUNCATED_RESPONSE; |
365 DoLoop(OK); | 368 DoLoop(OK); |
366 return true; | 369 return true; |
367 } | 370 } |
368 | 371 |
| 372 LoadState HttpCache::Transaction::GetWriterLoadState() const { |
| 373 if (network_trans_.get()) |
| 374 return network_trans_->GetLoadState(); |
| 375 if (entry_ || !request_) |
| 376 return LOAD_STATE_IDLE; |
| 377 return LOAD_STATE_WAITING_FOR_CACHE; |
| 378 } |
| 379 |
369 //----------------------------------------------------------------------------- | 380 //----------------------------------------------------------------------------- |
370 | 381 |
371 void HttpCache::Transaction::DoCallback(int rv) { | 382 void HttpCache::Transaction::DoCallback(int rv) { |
372 DCHECK(rv != ERR_IO_PENDING); | 383 DCHECK(rv != ERR_IO_PENDING); |
373 DCHECK(callback_); | 384 DCHECK(callback_); |
374 | 385 |
375 // Since Run may result in Read being called, clear callback_ up front. | 386 // Since Run may result in Read being called, clear callback_ up front. |
376 CompletionCallback* c = callback_; | 387 CompletionCallback* c = callback_; |
377 callback_ = NULL; | 388 callback_ = NULL; |
378 c->Run(rv); | 389 c->Run(rv); |
(...skipping 1480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1859 // |value| goes from 0 to 63. Actually, the max value should be 47 (0x2f) | 1870 // |value| goes from 0 to 63. Actually, the max value should be 47 (0x2f) |
1860 // but we'll see. | 1871 // but we'll see. |
1861 UMA_HISTOGRAM_ENUMERATION("HttpCache.ResponseHeaders", value, 65); | 1872 UMA_HISTOGRAM_ENUMERATION("HttpCache.ResponseHeaders", value, 65); |
1862 } | 1873 } |
1863 | 1874 |
1864 void HttpCache::Transaction::OnIOComplete(int result) { | 1875 void HttpCache::Transaction::OnIOComplete(int result) { |
1865 DoLoop(result); | 1876 DoLoop(result); |
1866 } | 1877 } |
1867 | 1878 |
1868 } // namespace net | 1879 } // namespace net |
OLD | NEW |