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