2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2014-04-16 07:14:44 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-04-17 05:45:14 +00:00
|
|
|
#ifndef ATOM_COMMON_NATIVE_MATE_CONVERTERS_STRING16_CONVERTER_H_
|
|
|
|
#define ATOM_COMMON_NATIVE_MATE_CONVERTERS_STRING16_CONVERTER_H_
|
2014-04-16 07:14:44 +00:00
|
|
|
|
|
|
|
#include "base/strings/string16.h"
|
|
|
|
#include "native_mate/converter.h"
|
|
|
|
|
|
|
|
namespace mate {
|
|
|
|
|
2018-04-18 01:44:10 +00:00
|
|
|
template <>
|
2014-06-28 11:36:57 +00:00
|
|
|
struct Converter<base::string16> {
|
2015-05-22 11:11:22 +00:00
|
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
2018-04-18 01:44:10 +00:00
|
|
|
const base::string16& val) {
|
2018-05-18 00:08:28 +00:00
|
|
|
return v8::String::NewFromTwoByte(
|
|
|
|
isolate, reinterpret_cast<const uint16_t*>(val.data()),
|
|
|
|
v8::String::kNormalString, val.size());
|
2014-04-16 07:14:44 +00:00
|
|
|
}
|
|
|
|
static bool FromV8(v8::Isolate* isolate,
|
2015-05-22 11:11:22 +00:00
|
|
|
v8::Local<v8::Value> val,
|
2014-06-28 11:36:57 +00:00
|
|
|
base::string16* out) {
|
2014-07-03 17:30:36 +00:00
|
|
|
if (!val->IsString())
|
|
|
|
return false;
|
|
|
|
|
2014-04-16 07:14:44 +00:00
|
|
|
v8::String::Value s(val);
|
2014-06-28 11:36:57 +00:00
|
|
|
out->assign(reinterpret_cast<const base::char16*>(*s), s.length());
|
2014-04-16 07:14:44 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-04-18 01:44:10 +00:00
|
|
|
inline v8::Local<v8::String> StringToV8(v8::Isolate* isolate,
|
|
|
|
const base::string16& input) {
|
2015-06-23 12:14:03 +00:00
|
|
|
return ConvertToV8(isolate, input).As<v8::String>();
|
|
|
|
}
|
|
|
|
|
2014-04-16 07:14:44 +00:00
|
|
|
} // namespace mate
|
|
|
|
|
2014-04-17 05:45:14 +00:00
|
|
|
#endif // ATOM_COMMON_NATIVE_MATE_CONVERTERS_STRING16_CONVERTER_H_
|