* refactor: move the arg instead of const reference it * refactor: avoid unnecessary copies of base::Value in arg * refactor: pass-by-value in dict_util * refactor: avoid unnecessary reference
		
			
				
	
	
		
			107 lines
		
	
	
	
		
			3.7 KiB
			
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			107 lines
		
	
	
	
		
			3.7 KiB
			
		
	
	
	
		
			Text
		
	
	
	
	
	
// Copyright (c) 2016 GitHub, Inc.
 | 
						|
// Use of this source code is governed by the MIT license that can be
 | 
						|
// found in the LICENSE file.
 | 
						|
 | 
						|
#include "shell/browser/mac/dict_util.h"
 | 
						|
 | 
						|
#include <string>
 | 
						|
 | 
						|
#include "base/json/json_writer.h"
 | 
						|
#include "base/strings/sys_string_conversions.h"
 | 
						|
#include "base/values.h"
 | 
						|
 | 
						|
namespace electron {
 | 
						|
 | 
						|
NSArray* ListValueToNSArray(const base::ListValue& value) {
 | 
						|
  std::string json;
 | 
						|
  if (!base::JSONWriter::Write(value, &json))
 | 
						|
    return nil;
 | 
						|
  NSData* jsonData = [NSData dataWithBytes:json.c_str() length:json.length()];
 | 
						|
  id obj = [NSJSONSerialization JSONObjectWithData:jsonData
 | 
						|
                                           options:0
 | 
						|
                                             error:nil];
 | 
						|
  if (![obj isKindOfClass:[NSArray class]])
 | 
						|
    return nil;
 | 
						|
  return obj;
 | 
						|
}
 | 
						|
 | 
						|
base::ListValue NSArrayToListValue(NSArray* arr) {
 | 
						|
  base::ListValue result;
 | 
						|
  if (!arr)
 | 
						|
    return result;
 | 
						|
 | 
						|
  for (id value in arr) {
 | 
						|
    if ([value isKindOfClass:[NSString class]]) {
 | 
						|
      result.AppendString(base::SysNSStringToUTF8(value));
 | 
						|
    } else if ([value isKindOfClass:[NSNumber class]]) {
 | 
						|
      const char* objc_type = [value objCType];
 | 
						|
      if (strcmp(objc_type, @encode(BOOL)) == 0 ||
 | 
						|
          strcmp(objc_type, @encode(char)) == 0)
 | 
						|
        result.AppendBoolean([value boolValue]);
 | 
						|
      else if (strcmp(objc_type, @encode(double)) == 0 ||
 | 
						|
               strcmp(objc_type, @encode(float)) == 0)
 | 
						|
        result.AppendDouble([value doubleValue]);
 | 
						|
      else
 | 
						|
        result.AppendInteger([value intValue]);
 | 
						|
    } else if ([value isKindOfClass:[NSArray class]]) {
 | 
						|
      result.Append(NSArrayToListValue(value));
 | 
						|
    } else if ([value isKindOfClass:[NSDictionary class]]) {
 | 
						|
      result.Append(NSDictionaryToDictionaryValue(value));
 | 
						|
    } else {
 | 
						|
      result.AppendString(base::SysNSStringToUTF8([value description]));
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  return result;
 | 
						|
}
 | 
						|
 | 
						|
NSDictionary* DictionaryValueToNSDictionary(
 | 
						|
    const base::DictionaryValue& value) {
 | 
						|
  std::string json;
 | 
						|
  if (!base::JSONWriter::Write(value, &json))
 | 
						|
    return nil;
 | 
						|
  NSData* jsonData = [NSData dataWithBytes:json.c_str() length:json.length()];
 | 
						|
  id obj = [NSJSONSerialization JSONObjectWithData:jsonData
 | 
						|
                                           options:0
 | 
						|
                                             error:nil];
 | 
						|
  if (![obj isKindOfClass:[NSDictionary class]])
 | 
						|
    return nil;
 | 
						|
  return obj;
 | 
						|
}
 | 
						|
 | 
						|
base::DictionaryValue NSDictionaryToDictionaryValue(NSDictionary* dict) {
 | 
						|
  base::DictionaryValue result;
 | 
						|
  if (!dict)
 | 
						|
    return result;
 | 
						|
 | 
						|
  for (id key in dict) {
 | 
						|
    std::string str_key = base::SysNSStringToUTF8(
 | 
						|
        [key isKindOfClass:[NSString class]] ? key : [key description]);
 | 
						|
 | 
						|
    id value = [dict objectForKey:key];
 | 
						|
    if ([value isKindOfClass:[NSString class]]) {
 | 
						|
      result.SetKey(str_key, base::Value(base::SysNSStringToUTF8(value)));
 | 
						|
    } else if ([value isKindOfClass:[NSNumber class]]) {
 | 
						|
      const char* objc_type = [value objCType];
 | 
						|
      if (strcmp(objc_type, @encode(BOOL)) == 0 ||
 | 
						|
          strcmp(objc_type, @encode(char)) == 0)
 | 
						|
        result.SetKey(str_key, base::Value([value boolValue]));
 | 
						|
      else if (strcmp(objc_type, @encode(double)) == 0 ||
 | 
						|
               strcmp(objc_type, @encode(float)) == 0)
 | 
						|
        result.SetKey(str_key, base::Value([value doubleValue]));
 | 
						|
      else
 | 
						|
        result.SetKey(str_key, base::Value([value intValue]));
 | 
						|
    } else if ([value isKindOfClass:[NSArray class]]) {
 | 
						|
      result.SetKey(str_key, NSArrayToListValue(value));
 | 
						|
    } else if ([value isKindOfClass:[NSDictionary class]]) {
 | 
						|
      result.SetKey(str_key, NSDictionaryToDictionaryValue(value));
 | 
						|
    } else {
 | 
						|
      result.SetKey(str_key,
 | 
						|
                    base::Value(base::SysNSStringToUTF8([value description])));
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  return result;
 | 
						|
}
 | 
						|
 | 
						|
}  // namespace electron
 |