53 lines
1.5 KiB
C++
53 lines
1.5 KiB
C++
// Copyright (c) 2013 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "atom/browser/net/url_request_buffer_job.h"
|
|
|
|
#include <string>
|
|
|
|
#include "net/base/net_errors.h"
|
|
|
|
namespace atom {
|
|
|
|
URLRequestBufferJob::URLRequestBufferJob(
|
|
net::URLRequest* request, net::NetworkDelegate* network_delegate)
|
|
: JsAsker<net::URLRequestSimpleJob>(request, network_delegate) {
|
|
}
|
|
|
|
void URLRequestBufferJob::StartAsync(scoped_ptr<base::Value> options) {
|
|
const base::BinaryValue* binary = nullptr;
|
|
if (options->IsType(base::Value::TYPE_DICTIONARY)) {
|
|
base::DictionaryValue* dict =
|
|
static_cast<base::DictionaryValue*>(options.get());
|
|
dict->GetString("mimeType", &mime_type_);
|
|
dict->GetString("charset", &charset_);
|
|
dict->GetBinary("data", &binary);
|
|
} else if (options->IsType(base::Value::TYPE_BINARY)) {
|
|
options->GetAsBinary(&binary);
|
|
}
|
|
|
|
if (!binary) {
|
|
NotifyStartError(net::URLRequestStatus(
|
|
net::URLRequestStatus::FAILED, net::ERR_NOT_IMPLEMENTED));
|
|
return;
|
|
}
|
|
|
|
data_ = new base::RefCountedBytes(
|
|
reinterpret_cast<const unsigned char*>(binary->GetBuffer()),
|
|
binary->GetSize());
|
|
net::URLRequestSimpleJob::Start();
|
|
}
|
|
|
|
int URLRequestBufferJob::GetRefCountedData(
|
|
std::string* mime_type,
|
|
std::string* charset,
|
|
scoped_refptr<base::RefCountedMemory>* data,
|
|
const net::CompletionCallback& callback) const {
|
|
*mime_type = mime_type_;
|
|
*charset = charset_;
|
|
*data = data_;
|
|
return net::OK;
|
|
}
|
|
|
|
} // namespace atom
|