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/spdy/spdy_stream.h" | 5 #include "net/spdy/spdy_stream.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 #include "net/http/http_request_info.h" | 9 #include "net/http/http_request_info.h" |
10 #include "net/http/http_response_info.h" | 10 #include "net/http/http_response_info.h" |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
482 return response_->headers ? OK : ERR_IO_PENDING; | 482 return response_->headers ? OK : ERR_IO_PENDING; |
483 } | 483 } |
484 | 484 |
485 int SpdyStream::DoReadHeadersComplete(int result) { | 485 int SpdyStream::DoReadHeadersComplete(int result) { |
486 return result; | 486 return result; |
487 } | 487 } |
488 | 488 |
489 int SpdyStream::DoReadBody() { | 489 int SpdyStream::DoReadBody() { |
490 // TODO(mbelshe): merge SpdyStreamParser with SpdyStream and then this | 490 // TODO(mbelshe): merge SpdyStreamParser with SpdyStream and then this |
491 // makes sense. | 491 // makes sense. |
| 492 if (response_complete_) { |
| 493 io_state_ = STATE_READ_BODY_COMPLETE; |
| 494 return OK; |
| 495 } |
492 return ERR_IO_PENDING; | 496 return ERR_IO_PENDING; |
493 } | 497 } |
494 | 498 |
495 int SpdyStream::DoReadBodyComplete(int result) { | 499 int SpdyStream::DoReadBodyComplete(int result) { |
496 // TODO(mbelshe): merge SpdyStreamParser with SpdyStream and then this | 500 // TODO(mbelshe): merge SpdyStreamParser with SpdyStream and then this |
497 // makes sense. | 501 // makes sense. |
498 return ERR_IO_PENDING; | 502 return result; |
499 } | 503 } |
500 | 504 |
501 void SpdyStream::UpdateHistograms() { | 505 void SpdyStream::UpdateHistograms() { |
502 if (histograms_recorded_) | 506 if (histograms_recorded_) |
503 return; | 507 return; |
504 | 508 |
505 histograms_recorded_ = true; | 509 histograms_recorded_ = true; |
506 | 510 |
507 // We need all timers to be filled in, otherwise metrics can be bogus. | 511 // We need all timers to be filled in, otherwise metrics can be bogus. |
508 if (send_time_.is_null() || recv_first_byte_time_.is_null() || | 512 if (send_time_.is_null() || recv_first_byte_time_.is_null() || |
509 recv_last_byte_time_.is_null()) | 513 recv_last_byte_time_.is_null()) |
510 return; | 514 return; |
511 | 515 |
512 UMA_HISTOGRAM_TIMES("Net.SpdyStreamTimeToFirstByte", | 516 UMA_HISTOGRAM_TIMES("Net.SpdyStreamTimeToFirstByte", |
513 recv_first_byte_time_ - send_time_); | 517 recv_first_byte_time_ - send_time_); |
514 UMA_HISTOGRAM_TIMES("Net.SpdyStreamDownloadTime", | 518 UMA_HISTOGRAM_TIMES("Net.SpdyStreamDownloadTime", |
515 recv_last_byte_time_ - recv_first_byte_time_); | 519 recv_last_byte_time_ - recv_first_byte_time_); |
516 UMA_HISTOGRAM_TIMES("Net.SpdyStreamTime", | 520 UMA_HISTOGRAM_TIMES("Net.SpdyStreamTime", |
517 recv_last_byte_time_ - send_time_); | 521 recv_last_byte_time_ - send_time_); |
518 | 522 |
519 UMA_HISTOGRAM_COUNTS("Net.SpdySendBytes", send_bytes_); | 523 UMA_HISTOGRAM_COUNTS("Net.SpdySendBytes", send_bytes_); |
520 UMA_HISTOGRAM_COUNTS("Net.SpdyRecvBytes", recv_bytes_); | 524 UMA_HISTOGRAM_COUNTS("Net.SpdyRecvBytes", recv_bytes_); |
521 } | 525 } |
522 | 526 |
523 } // namespace net | 527 } // namespace net |
OLD | NEW |