blob: 0f153b6369c883edbaae4a786752eb84f74c7553 [file] [log] [blame]
/* Copyright 2017 The Cobalt Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "cobalt/web/message_event.h"
#include <string>
#include <utility>
#include "base/basictypes.h"
#include "cobalt/base/polymorphic_downcast.h"
#include "cobalt/web/context.h"
#include "cobalt/web/environment_settings.h"
#include "starboard/common/string.h"
namespace {
const char* const kResponseTypes[] = {"text", "blob", "arraybuffer"};
COMPILE_ASSERT(arraysize(kResponseTypes) ==
cobalt::web::MessageEvent::kResponseTypeCodeMax,
enum_and_array_size_mismatch);
} // namespace
namespace cobalt {
namespace web {
std::string MessageEvent::GetResponseTypeAsString(
const MessageEvent::ResponseTypeCode code) {
DCHECK_LT(code, kResponseTypeCodeMax);
if ((code >= kText) && (code < kResponseTypeCodeMax)) {
return kResponseTypes[code];
}
return std::string();
}
MessageEvent::ResponseTypeCode MessageEvent::GetResponseTypeCode(
base::StringPiece to_match) {
for (std::size_t i = 0; i != arraysize(kResponseTypes); ++i) {
if (strncmp(kResponseTypes[i], to_match.data(), to_match.size()) == 0) {
return MessageEvent::ResponseTypeCode(i);
}
}
return kResponseTypeCodeMax;
}
MessageEvent::ResponseType MessageEvent::data(
script::EnvironmentSettings* settings) const {
const char* data_pointer = NULL;
int data_length = 0;
if (data_) {
data_pointer = data_->data();
data_length = data_->size();
}
auto* global_environment =
settings ? base::polymorphic_downcast<web::EnvironmentSettings*>(settings)
->context()
->global_environment()
: nullptr;
script::Handle<script::ArrayBuffer> response_buffer;
if (response_type_ != kText) {
DCHECK(global_environment);
auto buffer_copy =
script::ArrayBuffer::New(global_environment, data_pointer, data_length);
response_buffer = std::move(buffer_copy);
}
switch (response_type_) {
case kText: {
// TODO: Find a way to remove two copies of data here.
std::string string_response(data_pointer, data_length);
return ResponseType(string_response);
}
case kBlob: {
DCHECK(settings);
scoped_refptr<web::Blob> blob = new web::Blob(settings, response_buffer);
return ResponseType(blob);
}
case kArrayBuffer: {
return ResponseType(response_buffer);
}
case kResponseTypeCodeMax:
NOTREACHED() << "Invalid response type.";
return ResponseType();
}
return ResponseType();
}
} // namespace web
} // namespace cobalt