123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497 |
- /*
- * Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <AK/Function.h>
- #include <AK/JsonArray.h>
- #include <AK/JsonObject.h>
- #include <AK/JsonParser.h>
- #include <AK/StringBuilder.h>
- #include <LibJS/Runtime/Array.h>
- #include <LibJS/Runtime/BigIntObject.h>
- #include <LibJS/Runtime/BooleanObject.h>
- #include <LibJS/Runtime/Error.h>
- #include <LibJS/Runtime/GlobalObject.h>
- #include <LibJS/Runtime/JSONObject.h>
- #include <LibJS/Runtime/NumberObject.h>
- #include <LibJS/Runtime/Object.h>
- #include <LibJS/Runtime/StringObject.h>
- namespace JS {
- JSONObject::JSONObject(GlobalObject& global_object)
- : Object(*global_object.object_prototype())
- {
- }
- void JSONObject::initialize(GlobalObject& global_object)
- {
- auto& vm = this->vm();
- Object::initialize(global_object);
- u8 attr = Attribute::Writable | Attribute::Configurable;
- define_native_function(vm.names.stringify, stringify, 3, attr);
- define_native_function(vm.names.parse, parse, 2, attr);
- // 25.5.3 JSON [ @@toStringTag ], https://tc39.es/ecma262/#sec-json-@@tostringtag
- define_property(vm.well_known_symbol_to_string_tag(), js_string(global_object.heap(), "JSON"), Attribute::Configurable);
- }
- JSONObject::~JSONObject()
- {
- }
- String JSONObject::stringify_impl(GlobalObject& global_object, Value value, Value replacer, Value space)
- {
- auto& vm = global_object.vm();
- StringifyState state;
- if (replacer.is_object()) {
- if (replacer.as_object().is_function()) {
- state.replacer_function = &replacer.as_function();
- } else if (replacer.is_array(global_object)) {
- auto& replacer_object = replacer.as_object();
- auto replacer_length = length_of_array_like(global_object, replacer_object);
- if (vm.exception())
- return {};
- Vector<String> list;
- for (size_t i = 0; i < replacer_length; ++i) {
- auto replacer_value = replacer_object.get(i);
- if (vm.exception())
- return {};
- String item;
- if (replacer_value.is_string() || replacer_value.is_number()) {
- item = replacer_value.to_string(global_object);
- if (vm.exception())
- return {};
- } else if (replacer_value.is_object()) {
- auto& value_object = replacer_value.as_object();
- if (is<StringObject>(value_object) || is<NumberObject>(value_object)) {
- item = value_object.value_of().to_string(global_object);
- if (vm.exception())
- return {};
- }
- }
- if (!item.is_null() && !list.contains_slow(item)) {
- list.append(item);
- }
- }
- state.property_list = list;
- }
- if (vm.exception())
- return {};
- }
- if (space.is_object()) {
- auto& space_obj = space.as_object();
- if (is<StringObject>(space_obj) || is<NumberObject>(space_obj))
- space = space_obj.value_of();
- }
- if (space.is_number()) {
- StringBuilder gap_builder;
- auto gap_size = min(10, space.as_i32());
- for (auto i = 0; i < gap_size; ++i)
- gap_builder.append(' ');
- state.gap = gap_builder.to_string();
- } else if (space.is_string()) {
- auto string = space.as_string().string();
- if (string.length() <= 10) {
- state.gap = string;
- } else {
- state.gap = string.substring(0, 10);
- }
- } else {
- state.gap = String::empty();
- }
- auto* wrapper = Object::create(global_object, global_object.object_prototype());
- wrapper->define_property(String::empty(), value);
- if (vm.exception())
- return {};
- auto result = serialize_json_property(global_object, state, String::empty(), wrapper);
- if (vm.exception())
- return {};
- if (result.is_null())
- return {};
- return result;
- }
- // 25.5.2 JSON.stringify ( value [ , replacer [ , space ] ] ), https://tc39.es/ecma262/#sec-json.stringify
- JS_DEFINE_NATIVE_FUNCTION(JSONObject::stringify)
- {
- if (!vm.argument_count())
- return js_undefined();
- auto value = vm.argument(0);
- auto replacer = vm.argument(1);
- auto space = vm.argument(2);
- auto string = stringify_impl(global_object, value, replacer, space);
- if (string.is_null())
- return js_undefined();
- return js_string(vm, string);
- }
- String JSONObject::serialize_json_property(GlobalObject& global_object, StringifyState& state, const PropertyName& key, Object* holder)
- {
- auto& vm = global_object.vm();
- auto value = holder->get(key);
- if (vm.exception())
- return {};
- if (value.is_object()) {
- auto to_json = value.as_object().get(vm.names.toJSON);
- if (vm.exception())
- return {};
- if (to_json.is_function()) {
- value = vm.call(to_json.as_function(), value, js_string(vm, key.to_string()));
- if (vm.exception())
- return {};
- }
- }
- if (state.replacer_function) {
- value = vm.call(*state.replacer_function, holder, js_string(vm, key.to_string()), value);
- if (vm.exception())
- return {};
- }
- if (value.is_object()) {
- auto& value_object = value.as_object();
- if (is<NumberObject>(value_object) || is<BooleanObject>(value_object) || is<StringObject>(value_object) || is<BigIntObject>(value_object))
- value = value_object.value_of();
- }
- if (value.is_null())
- return "null";
- if (value.is_boolean())
- return value.as_bool() ? "true" : "false";
- if (value.is_string())
- return quote_json_string(value.as_string().string());
- if (value.is_number()) {
- if (value.is_finite_number())
- return value.to_string(global_object);
- return "null";
- }
- if (value.is_object() && !value.is_function()) {
- if (value.is_array(global_object))
- return serialize_json_array(global_object, state, static_cast<Array&>(value.as_object()));
- if (vm.exception())
- return {};
- return serialize_json_object(global_object, state, value.as_object());
- }
- if (value.is_bigint())
- vm.throw_exception<TypeError>(global_object, ErrorType::JsonBigInt);
- return {};
- }
- String JSONObject::serialize_json_object(GlobalObject& global_object, StringifyState& state, Object& object)
- {
- auto& vm = global_object.vm();
- if (state.seen_objects.contains(&object)) {
- vm.throw_exception<TypeError>(global_object, ErrorType::JsonCircular);
- return {};
- }
- state.seen_objects.set(&object);
- String previous_indent = state.indent;
- state.indent = String::formatted("{}{}", state.indent, state.gap);
- Vector<String> property_strings;
- auto process_property = [&](const PropertyName& key) {
- if (key.is_symbol())
- return;
- auto serialized_property_string = serialize_json_property(global_object, state, key, &object);
- if (vm.exception())
- return;
- if (!serialized_property_string.is_null()) {
- property_strings.append(String::formatted(
- "{}:{}{}",
- quote_json_string(key.to_string()),
- state.gap.is_empty() ? "" : " ",
- serialized_property_string));
- }
- };
- if (state.property_list.has_value()) {
- auto property_list = state.property_list.value();
- for (auto& property : property_list) {
- process_property(property);
- if (vm.exception())
- return {};
- }
- } else {
- for (auto& entry : object.indexed_properties()) {
- auto value_and_attributes = entry.value_and_attributes(&object);
- if (!value_and_attributes.attributes.is_enumerable())
- continue;
- process_property(entry.index());
- if (vm.exception())
- return {};
- }
- for (auto& [key, metadata] : object.shape().property_table_ordered()) {
- if (!metadata.attributes.is_enumerable())
- continue;
- process_property(key);
- if (vm.exception())
- return {};
- }
- }
- StringBuilder builder;
- if (property_strings.is_empty()) {
- builder.append("{}");
- } else {
- bool first = true;
- builder.append('{');
- if (state.gap.is_empty()) {
- for (auto& property_string : property_strings) {
- if (!first)
- builder.append(',');
- first = false;
- builder.append(property_string);
- }
- } else {
- builder.append('\n');
- builder.append(state.indent);
- auto separator = String::formatted(",\n{}", state.indent);
- for (auto& property_string : property_strings) {
- if (!first)
- builder.append(separator);
- first = false;
- builder.append(property_string);
- }
- builder.append('\n');
- builder.append(previous_indent);
- }
- builder.append('}');
- }
- state.seen_objects.remove(&object);
- state.indent = previous_indent;
- return builder.to_string();
- }
- String JSONObject::serialize_json_array(GlobalObject& global_object, StringifyState& state, Object& object)
- {
- auto& vm = global_object.vm();
- if (state.seen_objects.contains(&object)) {
- vm.throw_exception<TypeError>(global_object, ErrorType::JsonCircular);
- return {};
- }
- state.seen_objects.set(&object);
- String previous_indent = state.indent;
- state.indent = String::formatted("{}{}", state.indent, state.gap);
- Vector<String> property_strings;
- auto length = length_of_array_like(global_object, object);
- if (vm.exception())
- return {};
- for (size_t i = 0; i < length; ++i) {
- if (vm.exception())
- return {};
- auto serialized_property_string = serialize_json_property(global_object, state, i, &object);
- if (vm.exception())
- return {};
- if (serialized_property_string.is_null()) {
- property_strings.append("null");
- } else {
- property_strings.append(serialized_property_string);
- }
- }
- StringBuilder builder;
- if (property_strings.is_empty()) {
- builder.append("[]");
- } else {
- if (state.gap.is_empty()) {
- builder.append('[');
- bool first = true;
- for (auto& property_string : property_strings) {
- if (!first)
- builder.append(',');
- first = false;
- builder.append(property_string);
- }
- builder.append(']');
- } else {
- builder.append("[\n");
- builder.append(state.indent);
- auto separator = String::formatted(",\n{}", state.indent);
- bool first = true;
- for (auto& property_string : property_strings) {
- if (!first)
- builder.append(separator);
- first = false;
- builder.append(property_string);
- }
- builder.append('\n');
- builder.append(previous_indent);
- builder.append(']');
- }
- }
- state.seen_objects.remove(&object);
- state.indent = previous_indent;
- return builder.to_string();
- }
- String JSONObject::quote_json_string(String string)
- {
- // FIXME: Handle UTF16
- StringBuilder builder;
- builder.append('"');
- for (auto& ch : string) {
- switch (ch) {
- case '\b':
- builder.append("\\b");
- break;
- case '\t':
- builder.append("\\t");
- break;
- case '\n':
- builder.append("\\n");
- break;
- case '\f':
- builder.append("\\f");
- break;
- case '\r':
- builder.append("\\r");
- break;
- case '"':
- builder.append("\\\"");
- break;
- case '\\':
- builder.append("\\\\");
- break;
- default:
- if (ch < 0x20) {
- builder.appendff("\\u{:04x}", ch);
- } else {
- builder.append(ch);
- }
- }
- }
- builder.append('"');
- return builder.to_string();
- }
- // 25.5.1 JSON.parse ( text [ , reviver ] ), https://tc39.es/ecma262/#sec-json.parse
- JS_DEFINE_NATIVE_FUNCTION(JSONObject::parse)
- {
- if (!vm.argument_count())
- return js_undefined();
- auto string = vm.argument(0).to_string(global_object);
- if (vm.exception())
- return {};
- auto reviver = vm.argument(1);
- auto json = JsonValue::from_string(string);
- if (!json.has_value()) {
- vm.throw_exception<SyntaxError>(global_object, ErrorType::JsonMalformed);
- return {};
- }
- Value result = parse_json_value(global_object, json.value());
- if (reviver.is_function()) {
- auto* root = Object::create(global_object, global_object.object_prototype());
- auto root_name = String::empty();
- root->define_property(root_name, result);
- if (vm.exception())
- return {};
- return internalize_json_property(global_object, root, root_name, reviver.as_function());
- }
- return result;
- }
- Value JSONObject::parse_json_value(GlobalObject& global_object, const JsonValue& value)
- {
- if (value.is_object())
- return Value(parse_json_object(global_object, value.as_object()));
- if (value.is_array())
- return Value(parse_json_array(global_object, value.as_array()));
- if (value.is_null())
- return js_null();
- if (value.is_double())
- return Value(value.as_double());
- if (value.is_number())
- return Value(value.to_i32(0));
- if (value.is_string())
- return js_string(global_object.heap(), value.to_string());
- if (value.is_bool())
- return Value(static_cast<bool>(value.as_bool()));
- VERIFY_NOT_REACHED();
- }
- Object* JSONObject::parse_json_object(GlobalObject& global_object, const JsonObject& json_object)
- {
- auto* object = Object::create(global_object, global_object.object_prototype());
- json_object.for_each_member([&](auto& key, auto& value) {
- object->define_property(key, parse_json_value(global_object, value));
- });
- return object;
- }
- Array* JSONObject::parse_json_array(GlobalObject& global_object, const JsonArray& json_array)
- {
- auto* array = Array::create(global_object);
- size_t index = 0;
- json_array.for_each([&](auto& value) {
- array->define_property(index++, parse_json_value(global_object, value));
- });
- return array;
- }
- // 25.5.1.1 InternalizeJSONProperty ( holder, name, reviver ), https://tc39.es/ecma262/#sec-internalizejsonproperty
- Value JSONObject::internalize_json_property(GlobalObject& global_object, Object* holder, const PropertyName& name, Function& reviver)
- {
- auto& vm = global_object.vm();
- auto value = holder->get(name);
- if (vm.exception())
- return {};
- if (value.is_object()) {
- auto& value_object = value.as_object();
- auto process_property = [&](const PropertyName& key) {
- auto element = internalize_json_property(global_object, &value_object, key, reviver);
- if (vm.exception())
- return;
- if (element.is_undefined()) {
- value_object.delete_property(key);
- } else {
- value_object.define_property(key, element, default_attributes, false);
- }
- };
- if (value_object.is_array()) {
- auto length = length_of_array_like(global_object, value_object);
- for (size_t i = 0; i < length; ++i) {
- process_property(i);
- if (vm.exception())
- return {};
- }
- } else {
- for (auto& entry : value_object.indexed_properties()) {
- auto value_and_attributes = entry.value_and_attributes(&value_object);
- if (!value_and_attributes.attributes.is_enumerable())
- continue;
- process_property(entry.index());
- if (vm.exception())
- return {};
- }
- for (auto& [key, metadata] : value_object.shape().property_table_ordered()) {
- if (!metadata.attributes.is_enumerable())
- continue;
- process_property(key);
- if (vm.exception())
- return {};
- }
- }
- }
- return vm.call(reviver, Value(holder), js_string(vm, name.to_string()), value);
- }
- }
|