215 lines
		
	
	
	
		
			6.4 KiB
			
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			215 lines
		
	
	
	
		
			6.4 KiB
			
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright (c) 2019 GitHub, Inc.
 | 
						|
// Use of this source code is governed by the MIT license that can be
 | 
						|
// found in the LICENSE file.
 | 
						|
 | 
						|
#ifndef SHELL_COMMON_GIN_CONVERTERS_STD_CONVERTER_H_
 | 
						|
#define SHELL_COMMON_GIN_CONVERTERS_STD_CONVERTER_H_
 | 
						|
 | 
						|
#include <map>
 | 
						|
#include <set>
 | 
						|
#include <utility>
 | 
						|
 | 
						|
#include "gin/converter.h"
 | 
						|
 | 
						|
#if defined(OS_WIN)
 | 
						|
#include "base/strings/string_util_win.h"
 | 
						|
#endif
 | 
						|
 | 
						|
namespace gin {
 | 
						|
 | 
						|
// Make it possible to convert move-only types.
 | 
						|
template <typename T>
 | 
						|
v8::Local<v8::Value> ConvertToV8(v8::Isolate* isolate, T&& input) {
 | 
						|
  return Converter<typename std::remove_reference<T>::type>::ToV8(
 | 
						|
      isolate, std::move(input));
 | 
						|
}
 | 
						|
 | 
						|
#if !defined(OS_LINUX) && !defined(OS_FREEBSD)
 | 
						|
template <>
 | 
						|
struct Converter<unsigned long> {  // NOLINT(runtime/int)
 | 
						|
  static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
 | 
						|
                                   unsigned long val) {  // NOLINT(runtime/int)
 | 
						|
    return v8::Integer::New(isolate, val);
 | 
						|
  }
 | 
						|
  static bool FromV8(v8::Isolate* isolate,
 | 
						|
                     v8::Local<v8::Value> val,
 | 
						|
                     unsigned long* out) {  // NOLINT(runtime/int)
 | 
						|
    auto maybe = val->IntegerValue(isolate->GetCurrentContext());
 | 
						|
    if (maybe.IsNothing())
 | 
						|
      return false;
 | 
						|
    *out = maybe.FromJust();
 | 
						|
    return true;
 | 
						|
  }
 | 
						|
};
 | 
						|
#endif
 | 
						|
 | 
						|
template <>
 | 
						|
struct Converter<std::nullptr_t> {
 | 
						|
  static v8::Local<v8::Value> ToV8(v8::Isolate* isolate, std::nullptr_t val) {
 | 
						|
    return v8::Null(isolate);
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
template <>
 | 
						|
struct Converter<const char*> {
 | 
						|
  static v8::Local<v8::Value> ToV8(v8::Isolate* isolate, const char* val) {
 | 
						|
    return v8::String::NewFromUtf8(isolate, val, v8::NewStringType::kNormal)
 | 
						|
        .ToLocalChecked();
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
template <>
 | 
						|
struct Converter<char[]> {
 | 
						|
  static v8::Local<v8::Value> ToV8(v8::Isolate* isolate, const char* val) {
 | 
						|
    return v8::String::NewFromUtf8(isolate, val, v8::NewStringType::kNormal)
 | 
						|
        .ToLocalChecked();
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
template <size_t n>
 | 
						|
struct Converter<char[n]> {
 | 
						|
  static v8::Local<v8::Value> ToV8(v8::Isolate* isolate, const char* val) {
 | 
						|
    return v8::String::NewFromUtf8(isolate, val, v8::NewStringType::kNormal,
 | 
						|
                                   n - 1)
 | 
						|
        .ToLocalChecked();
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
template <>
 | 
						|
struct Converter<v8::Local<v8::Array>> {
 | 
						|
  static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
 | 
						|
                                   v8::Local<v8::Array> val) {
 | 
						|
    return val;
 | 
						|
  }
 | 
						|
  static bool FromV8(v8::Isolate* isolate,
 | 
						|
                     v8::Local<v8::Value> val,
 | 
						|
                     v8::Local<v8::Array>* out) {
 | 
						|
    if (!val->IsArray())
 | 
						|
      return false;
 | 
						|
    *out = v8::Local<v8::Array>::Cast(val);
 | 
						|
    return true;
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
template <>
 | 
						|
struct Converter<v8::Local<v8::String>> {
 | 
						|
  static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
 | 
						|
                                   v8::Local<v8::String> val) {
 | 
						|
    return val;
 | 
						|
  }
 | 
						|
  static bool FromV8(v8::Isolate* isolate,
 | 
						|
                     v8::Local<v8::Value> val,
 | 
						|
                     v8::Local<v8::String>* out) {
 | 
						|
    if (!val->IsString())
 | 
						|
      return false;
 | 
						|
    *out = v8::Local<v8::String>::Cast(val);
 | 
						|
    return true;
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
template <typename T>
 | 
						|
struct Converter<std::set<T>> {
 | 
						|
  static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
 | 
						|
                                   const std::set<T>& val) {
 | 
						|
    v8::Local<v8::Array> result(
 | 
						|
        v8::Array::New(isolate, static_cast<int>(val.size())));
 | 
						|
    auto context = isolate->GetCurrentContext();
 | 
						|
    typename std::set<T>::const_iterator it;
 | 
						|
    int i;
 | 
						|
    for (i = 0, it = val.begin(); it != val.end(); ++it, ++i)
 | 
						|
      result->Set(context, i, Converter<T>::ToV8(isolate, *it)).Check();
 | 
						|
    return result;
 | 
						|
  }
 | 
						|
  static bool FromV8(v8::Isolate* isolate,
 | 
						|
                     v8::Local<v8::Value> val,
 | 
						|
                     std::set<T>* out) {
 | 
						|
    if (!val->IsArray())
 | 
						|
      return false;
 | 
						|
 | 
						|
    auto context = isolate->GetCurrentContext();
 | 
						|
    std::set<T> result;
 | 
						|
    v8::Local<v8::Array> array(v8::Local<v8::Array>::Cast(val));
 | 
						|
    uint32_t length = array->Length();
 | 
						|
    for (uint32_t i = 0; i < length; ++i) {
 | 
						|
      T item;
 | 
						|
      if (!Converter<T>::FromV8(isolate,
 | 
						|
                                array->Get(context, i).ToLocalChecked(), &item))
 | 
						|
        return false;
 | 
						|
      result.insert(item);
 | 
						|
    }
 | 
						|
 | 
						|
    out->swap(result);
 | 
						|
    return true;
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
template <typename K, typename V>
 | 
						|
struct Converter<std::map<K, V>> {
 | 
						|
  static bool FromV8(v8::Isolate* isolate,
 | 
						|
                     v8::Local<v8::Value> value,
 | 
						|
                     std::map<K, V>* out) {
 | 
						|
    if (!value->IsObject())
 | 
						|
      return false;
 | 
						|
    out->clear();
 | 
						|
    v8::Local<v8::Context> context = isolate->GetCurrentContext();
 | 
						|
    v8::Local<v8::Object> obj = value.As<v8::Object>();
 | 
						|
    v8::Local<v8::Array> keys = obj->GetPropertyNames(context).ToLocalChecked();
 | 
						|
    for (uint32_t i = 0; i < keys->Length(); ++i) {
 | 
						|
      v8::MaybeLocal<v8::Value> maybe_v8key = keys->Get(context, i);
 | 
						|
      if (maybe_v8key.IsEmpty())
 | 
						|
        return false;
 | 
						|
      v8::Local<v8::Value> v8key = maybe_v8key.ToLocalChecked();
 | 
						|
      v8::MaybeLocal<v8::Value> maybe_v8value = obj->Get(context, v8key);
 | 
						|
      if (maybe_v8value.IsEmpty())
 | 
						|
        return false;
 | 
						|
      K key;
 | 
						|
      V value;
 | 
						|
      if (!ConvertFromV8(isolate, v8key, &key) ||
 | 
						|
          !ConvertFromV8(isolate, maybe_v8value.ToLocalChecked(), &value))
 | 
						|
        return false;
 | 
						|
      (*out)[key] = std::move(value);
 | 
						|
    }
 | 
						|
    return true;
 | 
						|
  }
 | 
						|
 | 
						|
  static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
 | 
						|
                                   const std::map<K, V>& dict) {
 | 
						|
    v8::Local<v8::Object> obj = v8::Object::New(isolate);
 | 
						|
    v8::Local<v8::Context> context = isolate->GetCurrentContext();
 | 
						|
    for (const auto& it : dict) {
 | 
						|
      if (obj->Set(context, ConvertToV8(isolate, it.first),
 | 
						|
                   ConvertToV8(isolate, it.second))
 | 
						|
              .IsNothing())
 | 
						|
        break;
 | 
						|
    }
 | 
						|
    return obj;
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
#if defined(OS_WIN)
 | 
						|
template <>
 | 
						|
struct Converter<std::wstring> {
 | 
						|
  static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
 | 
						|
                                   const std::wstring& val) {
 | 
						|
    return Converter<std::u16string>::ToV8(isolate, base::AsString16(val));
 | 
						|
  }
 | 
						|
  static bool FromV8(v8::Isolate* isolate,
 | 
						|
                     v8::Local<v8::Value> val,
 | 
						|
                     std::wstring* out) {
 | 
						|
    if (!val->IsString())
 | 
						|
      return false;
 | 
						|
 | 
						|
    std::u16string str;
 | 
						|
    if (Converter<std::u16string>::FromV8(isolate, val, &str)) {
 | 
						|
      *out = base::AsWString(str);
 | 
						|
      return true;
 | 
						|
    } else {
 | 
						|
      return false;
 | 
						|
    }
 | 
						|
  }
 | 
						|
};
 | 
						|
#endif
 | 
						|
 | 
						|
}  // namespace gin
 | 
						|
 | 
						|
#endif  // SHELL_COMMON_GIN_CONVERTERS_STD_CONVERTER_H_
 |