// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/renderer_host/sync_resource_handler.h" #include "base/logging.h" #include "chrome/common/render_messages.h" #include "net/http/http_response_headers.h" SyncResourceHandler::SyncResourceHandler( ResourceDispatcherHost::Receiver* receiver, const GURL& url, IPC::Message* result_message) : read_buffer_(new net::IOBuffer(kReadBufSize)), receiver_(receiver), result_message_(result_message) { result_.final_url = url; } SyncResourceHandler::~SyncResourceHandler() { } bool SyncResourceHandler::OnUploadProgress(int request_id, uint64 position, uint64 size) { return true; } bool SyncResourceHandler::OnRequestRedirected(int request_id, const GURL& new_url, ResourceResponse* response, bool* defer) { // TODO(darin): It would be much better if this could live in WebCore, but // doing so requires API changes at all levels. Similar code exists in // WebCore/platform/network/cf/ResourceHandleCFNet.cpp :-( if (new_url.GetOrigin() != result_.final_url.GetOrigin()) { LOG(ERROR) << "Cross origin redirect denied"; return false; } result_.final_url = new_url; return true; } bool SyncResourceHandler::OnResponseStarted(int request_id, ResourceResponse* response) { // We don't care about copying the status here. result_.headers = response->response_head.headers; result_.mime_type = response->response_head.mime_type; result_.charset = response->response_head.charset; return true; } bool SyncResourceHandler::OnWillStart(int request_id, const GURL& url, bool* defer) { return true; } bool SyncResourceHandler::OnWillRead(int request_id, net::IOBuffer** buf, int* buf_size, int min_size) { DCHECK(min_size == -1); *buf = read_buffer_.get(); // TODO(willchan): Remove after debugging bug 16371. CHECK(read_buffer_->data()); *buf_size = kReadBufSize; return true; } bool SyncResourceHandler::OnReadCompleted(int request_id, int* bytes_read) { if (!*bytes_read) return true; result_.data.append(read_buffer_->data(), *bytes_read); return true; } bool SyncResourceHandler::OnResponseCompleted( int request_id, const URLRequestStatus& status, const std::string& security_info) { result_.status = status; ViewHostMsg_SyncLoad::WriteReplyParams(result_message_, result_); receiver_->Send(result_message_); result_message_ = NULL; return true; } void SyncResourceHandler::OnRequestClosed() { if (!result_message_) return; result_message_->set_reply_error(); receiver_->Send(result_message_); receiver_ = NULL; // URLRequest is gone, and perhaps also the receiver. }