| Index: net/http/http_stream_factory_impl_job.cc
|
| diff --git a/net/http/http_stream_factory_impl_job.cc b/net/http/http_stream_factory_impl_job.cc
|
| index 401e8a8d1c53b32a9f826056f8c81cee7a40f117..5d044add0c439bf9050514da80685bee290f6e01 100644
|
| --- a/net/http/http_stream_factory_impl_job.cc
|
| +++ b/net/http/http_stream_factory_impl_job.cc
|
| @@ -203,8 +203,6 @@ HttpStreamFactoryImpl::Job::Job(JobController* job_controller,
|
| alternative_service_(alternative_service),
|
| job_controller_(job_controller),
|
| job_type_(job_type),
|
| - blocking_job_(NULL),
|
| - waiting_job_(NULL),
|
| using_ssl_(false),
|
| using_spdy_(false),
|
| using_quic_(false),
|
| @@ -286,21 +284,8 @@ LoadState HttpStreamFactoryImpl::Job::GetLoadState() const {
|
| }
|
| }
|
|
|
| -void HttpStreamFactoryImpl::Job::WaitFor(Job* job) {
|
| - DCHECK_EQ(STATE_NONE, next_state_);
|
| - DCHECK_EQ(STATE_NONE, job->next_state_);
|
| - DCHECK(!blocking_job_);
|
| - DCHECK(!job->waiting_job_);
|
| -
|
| - // Never share connection with other jobs for FTP requests.
|
| - DCHECK(!request_info_.url.SchemeIs("ftp"));
|
| -
|
| - blocking_job_ = job;
|
| - job->waiting_job_ = this;
|
| -}
|
| -
|
| void HttpStreamFactoryImpl::Job::ResumeAfterDelay() {
|
| - DCHECK(!blocking_job_);
|
| + DCHECK((job_type_ == ALTERNATIVE || !job_controller_->blocking()));
|
| DCHECK_EQ(STATE_WAIT_FOR_JOB_COMPLETE, next_state_);
|
|
|
| net_log_.AddEvent(NetLog::TYPE_HTTP_STREAM_JOB_DELAYED,
|
| @@ -311,11 +296,7 @@ void HttpStreamFactoryImpl::Job::ResumeAfterDelay() {
|
| wait_time_);
|
| }
|
|
|
| -void HttpStreamFactoryImpl::Job::Resume(Job* job,
|
| - const base::TimeDelta& delay) {
|
| - DCHECK_EQ(blocking_job_, job);
|
| - blocking_job_ = NULL;
|
| -
|
| +void HttpStreamFactoryImpl::Job::Resume(const base::TimeDelta& delay) {
|
| // If |this| job is not past STATE_WAIT_FOR_JOB_COMPLETE state, then it will
|
| // be delayed by the |wait_time_| when it resumes.
|
| if (next_state_ == STATE_NONE || next_state_ <= STATE_WAIT_FOR_JOB_COMPLETE)
|
| @@ -329,18 +310,9 @@ void HttpStreamFactoryImpl::Job::Resume(Job* job,
|
|
|
| void HttpStreamFactoryImpl::Job::Orphan() {
|
| net_log_.AddEvent(NetLog::TYPE_HTTP_STREAM_JOB_ORPHANED);
|
| - if (blocking_job_) {
|
| - // We've been orphaned, but there's a job we're blocked on. Don't bother
|
| - // racing, just cancel ourself.
|
| - DCHECK(blocking_job_->waiting_job_);
|
| - blocking_job_->waiting_job_ = NULL;
|
| - blocking_job_ = NULL;
|
| - if (job_controller_->for_websockets() && connection_ &&
|
| - connection_->socket()) {
|
| - connection_->socket()->Disconnect();
|
| - }
|
| - job_controller_->OnOrphanedJobComplete(this);
|
| - } else if (job_controller_->for_websockets()) {
|
| +
|
| + job_controller_->MaybeResumeOtherJob(this, base::TimeDelta());
|
| + if (job_controller_->for_websockets()) {
|
| // We cancel this job because a WebSocketHandshakeStream can't be created
|
| // without a WebSocketHandshakeStreamBase::CreateHelper which is stored in
|
| // the Request class and isn't retrievable by this job.
|
| @@ -558,9 +530,9 @@ int HttpStreamFactoryImpl::Job::RunLoop(int result) {
|
| if (result == ERR_IO_PENDING)
|
| return result;
|
|
|
| - // If there was an error, we should have already resumed the |waiting_job_|,
|
| - // if there was one.
|
| - DCHECK(result == OK || waiting_job_ == NULL);
|
| + // If there was an error, we should have already resumed the other waiting
|
| + // job, if there was one.
|
| + DCHECK(result == OK || job_type_ == MAIN || !job_controller_->blocking());
|
|
|
| if (job_type_ == PRECONNECT) {
|
| base::ThreadTaskRunnerHandle::Get()->PostTask(
|
| @@ -697,7 +669,7 @@ int HttpStreamFactoryImpl::Job::DoLoop(int result) {
|
| break;
|
| case STATE_WAIT_FOR_JOB:
|
| DCHECK_EQ(OK, rv);
|
| - rv = DoWaitForJob();
|
| + rv = job_controller_->ScheduleJob(this);
|
| break;
|
| case STATE_WAIT_FOR_JOB_COMPLETE:
|
| rv = DoWaitForJobComplete(rv);
|
| @@ -761,10 +733,7 @@ int HttpStreamFactoryImpl::Job::DoStart() {
|
| // Don't connect to restricted ports.
|
| if (!IsPortAllowedForScheme(destination_.port(),
|
| request_info_.url.scheme())) {
|
| - if (waiting_job_) {
|
| - waiting_job_->Resume(this, base::TimeDelta());
|
| - waiting_job_ = NULL;
|
| - }
|
| + job_controller_->MaybeResumeOtherJob(this, base::TimeDelta());
|
| return ERR_UNSAFE_PORT;
|
| }
|
|
|
| @@ -837,10 +806,7 @@ int HttpStreamFactoryImpl::Job::DoResolveProxyComplete(int result) {
|
| }
|
|
|
| if (result != OK) {
|
| - if (waiting_job_) {
|
| - waiting_job_->Resume(this, base::TimeDelta());
|
| - waiting_job_ = NULL;
|
| - }
|
| + job_controller_->MaybeResumeOtherJob(this, base::TimeDelta());
|
| return result;
|
| }
|
|
|
| @@ -855,25 +821,8 @@ bool HttpStreamFactoryImpl::Job::ShouldForceQuic() const {
|
| proxy_info_.is_direct() && origin_url_.SchemeIs("https");
|
| }
|
|
|
| -int HttpStreamFactoryImpl::Job::DoWaitForJob() {
|
| - if (!blocking_job_ && wait_time_.is_zero()) {
|
| - // There is no |blocking_job_| and there is no |wait_time_|.
|
| - next_state_ = STATE_INIT_CONNECTION;
|
| - return OK;
|
| - }
|
| -
|
| - next_state_ = STATE_WAIT_FOR_JOB_COMPLETE;
|
| - if (!wait_time_.is_zero()) {
|
| - // If there is a waiting_time, then resume the job after the wait_time_.
|
| - DCHECK(!blocking_job_);
|
| - ResumeAfterDelay();
|
| - }
|
| -
|
| - return ERR_IO_PENDING;
|
| -}
|
| -
|
| int HttpStreamFactoryImpl::Job::DoWaitForJobComplete(int result) {
|
| - DCHECK(!blocking_job_);
|
| + DCHECK((job_type_ == ALTERNATIVE || !job_controller_->blocking()));
|
| DCHECK_EQ(OK, result);
|
| wait_time_ = base::TimeDelta();
|
| next_state_ = STATE_INIT_CONNECTION;
|
| @@ -885,7 +834,7 @@ int HttpStreamFactoryImpl::Job::DoInitConnection() {
|
| tracked_objects::ScopedTracker tracking_profile(
|
| FROM_HERE_WITH_EXPLICIT_FUNCTION(
|
| "462812 HttpStreamFactoryImpl::Job::DoInitConnection"));
|
| - DCHECK(!blocking_job_);
|
| + DCHECK((job_type_ == ALTERNATIVE || !job_controller_->blocking()));
|
| DCHECK(!connection_->is_initialized());
|
| DCHECK(proxy_info_.proxy_server().is_valid());
|
| next_state_ = STATE_INIT_CONNECTION_COMPLETE;
|
| @@ -957,22 +906,18 @@ int HttpStreamFactoryImpl::Job::DoInitConnection() {
|
| if (rv == OK) {
|
| using_existing_quic_session_ = true;
|
| } else {
|
| - // OK, there's no available QUIC session. Let |waiting_job_| resume
|
| - // if it's paused.
|
| - if (waiting_job_) {
|
| - if (rv == ERR_IO_PENDING) {
|
| - // Start the |waiting_job_| after the delay returned by
|
| - // GetTimeDelayForWaitingJob().
|
| - //
|
| - // If QUIC request fails during handshake, then
|
| - // DoInitConnectionComplete() will start the |waiting_job_|.
|
| - waiting_job_->Resume(this, quic_request_.GetTimeDelayForWaitingJob());
|
| - } else {
|
| - // QUIC request has failed, resume the |waiting_job_|.
|
| - waiting_job_->Resume(this, base::TimeDelta());
|
| - }
|
| - waiting_job_ = NULL;
|
| + base::TimeDelta delay;
|
| + // OK, there's no available QUIC session. Let JobController to resume
|
| + // the waiting job if it's paused.
|
| + if (rv == ERR_IO_PENDING) {
|
| + // Start the waiting job after the delay returned by
|
| + // GetTimeDelayForWaitingJob().
|
| + //
|
| + // If QUIC request fails during handshake, then
|
| + // DoInitConnectionComplete() will start the waiting job.
|
| + delay = quic_request_.GetTimeDelayForWaitingJob();
|
| }
|
| + job_controller_->MaybeResumeOtherJob(this, delay);
|
| }
|
| return rv;
|
| }
|
| @@ -1004,12 +949,9 @@ int HttpStreamFactoryImpl::Job::DoInitConnection() {
|
| job_controller_->SetSpdySessionKey(this, spdy_session_key);
|
| }
|
|
|
| - // OK, there's no available SPDY session. Let |waiting_job_| resume if it's
|
| - // paused.
|
| - if (waiting_job_) {
|
| - waiting_job_->Resume(this, base::TimeDelta());
|
| - waiting_job_ = NULL;
|
| - }
|
| + // OK, there's no available SPDY session. Let JobController to resume the
|
| + // non-alternative job if it's paused.
|
| + job_controller_->MaybeResumeOtherJob(this, base::TimeDelta());
|
|
|
| if (proxy_info_.is_http() || proxy_info_.is_https())
|
| establishing_tunnel_ = using_ssl_;
|
| @@ -1063,9 +1005,8 @@ int HttpStreamFactoryImpl::Job::DoInitConnection() {
|
| }
|
|
|
| int HttpStreamFactoryImpl::Job::DoInitConnectionComplete(int result) {
|
| - if (using_quic_ && result < 0 && waiting_job_) {
|
| - waiting_job_->Resume(this, base::TimeDelta());
|
| - waiting_job_ = NULL;
|
| + if (using_quic_ && result < 0) {
|
| + job_controller_->MaybeResumeOtherJob(this, base::TimeDelta());
|
| }
|
| if (job_type_ == PRECONNECT) {
|
| if (using_quic_)
|
| @@ -1103,9 +1044,8 @@ int HttpStreamFactoryImpl::Job::DoInitConnectionComplete(int result) {
|
|
|
| // TODO(willchan): Make this a bit more exact. Maybe there are recoverable
|
| // errors, such as ignoring certificate errors for Alternate-Protocol.
|
| - if (result < 0 && waiting_job_) {
|
| - waiting_job_->Resume(this, base::TimeDelta());
|
| - waiting_job_ = NULL;
|
| + if (result < 0) {
|
| + job_controller_->MaybeResumeOtherJob(this, base::TimeDelta());
|
| }
|
|
|
| // |result| may be the result of any of the stacked pools. The following
|
|
|