123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400 |
- /*
- * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #include <AK/Function.h>
- #include <AK/StringBuilder.h>
- #include <LibJS/Heap/Heap.h>
- #include <LibJS/Interpreter.h>
- #include <LibJS/Runtime/Error.h>
- #include <LibJS/Runtime/GlobalObject.h>
- #include <LibJS/Runtime/PrimitiveString.h>
- #include <LibJS/Runtime/StringObject.h>
- #include <LibJS/Runtime/StringPrototype.h>
- #include <LibJS/Runtime/Value.h>
- #include <string.h>
- namespace JS {
- StringPrototype::StringPrototype()
- : StringObject(*js_string(interpreter(), String::empty()), *interpreter().global_object().object_prototype())
- {
- put_native_property("length", length_getter, nullptr);
- put_native_function("charAt", char_at, 1);
- put_native_function("repeat", repeat, 1);
- put_native_function("startsWith", starts_with, 1);
- put_native_function("indexOf", index_of, 1);
- put_native_function("toLowerCase", to_lowercase, 0);
- put_native_function("toUpperCase", to_uppercase, 0);
- put_native_function("toString", to_string, 0);
- put_native_function("padStart", pad_start, 1);
- put_native_function("padEnd", pad_end, 1);
- put_native_function("trim", trim, 0);
- put_native_function("trimStart", trim_start, 0);
- put_native_function("trimEnd", trim_end, 0);
- put_native_function("concat", concat, 1);
- put_native_function("substring", substring, 2);
- put_native_function("includes", includes, 1);
- }
- StringPrototype::~StringPrototype()
- {
- }
- Value StringPrototype::char_at(Interpreter& interpreter)
- {
- auto* this_object = interpreter.this_value().to_object(interpreter.heap());
- if (!this_object)
- return {};
- i32 index = 0;
- if (interpreter.argument_count())
- index = interpreter.argument(0).to_i32();
- ASSERT(this_object->is_string_object());
- auto underlying_string = static_cast<const StringObject*>(this_object)->primitive_string()->string();
- if (index < 0 || index >= static_cast<i32>(underlying_string.length()))
- return js_string(interpreter, String::empty());
- return js_string(interpreter, underlying_string.substring(index, 1));
- }
- Value StringPrototype::repeat(Interpreter& interpreter)
- {
- auto* this_object = interpreter.this_value().to_object(interpreter.heap());
- if (!this_object)
- return {};
- ASSERT(this_object->is_string_object());
- if (!interpreter.argument_count())
- return js_string(interpreter, String::empty());
- if (interpreter.argument(0).to_double() < 0)
- return interpreter.throw_exception<RangeError>("repeat count must be a positive number");
- if (interpreter.argument(0).to_number().is_infinity())
- return interpreter.throw_exception<RangeError>("repeat count must be a finite number");
- auto count = interpreter.argument(0).to_i32();
- auto* string_object = static_cast<StringObject*>(this_object);
- StringBuilder builder;
- for (i32 i = 0; i < count; ++i)
- builder.append(string_object->primitive_string()->string());
- return js_string(interpreter, builder.to_string());
- }
- Value StringPrototype::starts_with(Interpreter& interpreter)
- {
- auto* this_object = interpreter.this_value().to_object(interpreter.heap());
- if (!this_object)
- return {};
- if (!interpreter.argument_count())
- return Value(false);
- auto search_string = interpreter.argument(0).to_string();
- auto search_string_length = static_cast<i32>(search_string.length());
- i32 position = 0;
- if (interpreter.argument_count() > 1) {
- auto number = interpreter.argument(1).to_number();
- if (!number.is_nan())
- position = number.to_i32();
- }
- ASSERT(this_object->is_string_object());
- auto underlying_string = static_cast<const StringObject*>(this_object)->primitive_string()->string();
- auto underlying_string_length = static_cast<i32>(underlying_string.length());
- auto start = min(max(position, 0), underlying_string_length);
- if (start + search_string_length > underlying_string_length)
- return Value(false);
- if (search_string_length == 0)
- return Value(true);
- return Value(underlying_string.substring(start, search_string_length) == search_string);
- }
- Value StringPrototype::index_of(Interpreter& interpreter)
- {
- auto* this_object = interpreter.this_value().to_object(interpreter.heap());
- if (!this_object)
- return {};
- if (!this_object->is_string_object())
- return interpreter.throw_exception<TypeError>("Not a String object");
- Value needle_value = js_undefined();
- if (interpreter.argument_count() >= 1)
- needle_value = interpreter.argument(0);
- auto needle = needle_value.to_string();
- auto haystack = static_cast<const StringObject*>(this_object)->primitive_string()->string();
- return Value((i32)haystack.index_of(needle).value_or(-1));
- }
- static StringObject* string_object_from(Interpreter& interpreter)
- {
- auto* this_object = interpreter.this_value().to_object(interpreter.heap());
- if (!this_object)
- return nullptr;
- if (!this_object->is_string_object()) {
- interpreter.throw_exception<TypeError>("Not a String object");
- return nullptr;
- }
- return static_cast<StringObject*>(this_object);
- }
- Value StringPrototype::to_lowercase(Interpreter& interpreter)
- {
- auto* string_object = string_object_from(interpreter);
- if (!string_object)
- return {};
- return js_string(interpreter, string_object->primitive_string()->string().to_lowercase());
- }
- Value StringPrototype::to_uppercase(Interpreter& interpreter)
- {
- auto* string_object = string_object_from(interpreter);
- if (!string_object)
- return {};
- return js_string(interpreter, string_object->primitive_string()->string().to_uppercase());
- }
- Value StringPrototype::length_getter(Interpreter& interpreter)
- {
- auto* string_object = string_object_from(interpreter);
- if (!string_object)
- return {};
- return Value((i32)string_object->primitive_string()->string().length());
- }
- Value StringPrototype::to_string(Interpreter& interpreter)
- {
- auto* string_object = string_object_from(interpreter);
- if (!string_object)
- return {};
- return js_string(interpreter, string_object->primitive_string()->string());
- }
- enum class PadPlacement {
- Start,
- End,
- };
- static Value pad_string(Interpreter& interpreter, Object* object, PadPlacement placement)
- {
- auto string = object->to_string().as_string()->string();
- if (interpreter.argument(0).to_number().is_nan()
- || interpreter.argument(0).to_number().is_undefined()
- || interpreter.argument(0).to_number().to_i32() < 0) {
- return js_string(interpreter, string);
- }
- auto max_length = static_cast<size_t>(interpreter.argument(0).to_i32());
- if (max_length <= string.length())
- return js_string(interpreter, string);
- String fill_string = " ";
- if (!interpreter.argument(1).is_undefined())
- fill_string = interpreter.argument(1).to_string();
- if (fill_string.is_empty())
- return js_string(interpreter, string);
- auto fill_length = max_length - string.length();
- StringBuilder filler_builder;
- while (filler_builder.length() < fill_length)
- filler_builder.append(fill_string);
- auto filler = filler_builder.build().substring(0, fill_length);
- if (placement == PadPlacement::Start)
- return js_string(interpreter, String::format("%s%s", filler.characters(), string.characters()));
- return js_string(interpreter, String::format("%s%s", string.characters(), filler.characters()));
- }
- Value StringPrototype::pad_start(Interpreter& interpreter)
- {
- auto* this_object = interpreter.this_value().to_object(interpreter.heap());
- if (!this_object)
- return {};
- return pad_string(interpreter, this_object, PadPlacement::Start);
- }
- Value StringPrototype::pad_end(Interpreter& interpreter)
- {
- auto* this_object = interpreter.this_value().to_object(interpreter.heap());
- if (!this_object)
- return {};
- return pad_string(interpreter, this_object, PadPlacement::End);
- }
- enum class TrimMode {
- Left,
- Right,
- Both
- };
- static Value trim_string(Interpreter& interpreter, const Object& object, TrimMode mode)
- {
- auto& string = object.to_string().as_string()->string();
- size_t substring_start = 0;
- size_t substring_length = string.length();
- auto is_white_space_character = [](char character) -> bool {
- return character == 0x9 || character == 0xa || character == 0xb || character == 0xc || character == 0xd || character == 0x20;
- };
- if (mode == TrimMode::Left || mode == TrimMode::Both) {
- for (size_t i = 0; i < string.length(); ++i) {
- if (!is_white_space_character(string[i])) {
- substring_start = i;
- substring_length -= substring_start;
- break;
- }
- }
- }
- if (substring_length == 0)
- return js_string(interpreter, String(""));
- if (mode == TrimMode::Right || mode == TrimMode::Both) {
- size_t count = 0;
- for (size_t i = string.length() - 1; i > 0; --i) {
- if (!is_white_space_character(string[i])) {
- substring_length -= count;
- break;
- }
- count++;
- }
- }
- return js_string(interpreter, string.substring(substring_start, substring_length));
- }
- Value StringPrototype::trim(Interpreter& interpreter)
- {
- auto* this_object = interpreter.this_value().to_object(interpreter.heap());
- if (!this_object)
- return {};
- return trim_string(interpreter, *this_object, TrimMode::Both);
- }
- Value StringPrototype::trim_start(Interpreter& interpreter)
- {
- auto* this_object = interpreter.this_value().to_object(interpreter.heap());
- if (!this_object)
- return {};
- return trim_string(interpreter, *this_object, TrimMode::Left);
- }
- Value StringPrototype::trim_end(Interpreter& interpreter)
- {
- auto* this_object = interpreter.this_value().to_object(interpreter.heap());
- if (!this_object)
- return {};
- return trim_string(interpreter, *this_object, TrimMode::Right);
- }
- Value StringPrototype::concat(Interpreter& interpreter)
- {
- auto* this_object = interpreter.this_value().to_object(interpreter.heap());
- if (!this_object)
- return {};
- auto& string = this_object->to_string().as_string()->string();
- StringBuilder builder;
- builder.append(string);
- for (size_t i = 0; i < interpreter.argument_count(); ++i) {
- auto string_argument = interpreter.argument(i).to_string();
- builder.append(string_argument);
- }
- return js_string(interpreter, builder.to_string());
- }
- Value StringPrototype::substring(Interpreter& interpreter)
- {
- auto* this_object = interpreter.this_value().to_object(interpreter.heap());
- if (!this_object)
- return {};
- auto& string = this_object->to_string().as_string()->string();
- if (interpreter.argument_count() == 0)
- return js_string(interpreter, string);
- i32 string_length = static_cast<i32>(string.length());
- i32 index_start = interpreter.argument(0).to_number().to_i32();
- i32 index_end = string_length;
- if (index_start > string_length)
- index_start = string_length;
- else if (index_start < 0)
- index_start = 0;
- if (interpreter.argument_count() >= 2) {
- index_end = interpreter.argument(1).to_number().to_i32();
- if (index_end > string_length)
- index_end = string_length;
- else if (index_end < 0)
- index_end = 0;
- }
- if (index_start == index_end)
- return js_string(interpreter, String(""));
- if (index_start > index_end) {
- if (interpreter.argument_count() == 1) {
- return js_string(interpreter, String(""));
- } else {
- i32 temp_index_start = index_start;
- index_start = index_end;
- index_end = temp_index_start;
- }
- }
- auto part_length = index_end - index_start;
- auto string_part = string.substring(index_start, part_length);
- return js_string(interpreter, string_part);
- }
- Value StringPrototype::includes(Interpreter& interpreter)
- {
- auto* this_object = interpreter.this_value().to_object(interpreter.heap());
- if (!this_object)
- return {};
- auto& string = this_object->to_string().as_string()->string();
- auto search_string = interpreter.argument(0).to_string();
- i32 position = 0;
- if (interpreter.argument_count() >= 2) {
- position = interpreter.argument(1).to_i32();
- if (position >= static_cast<i32>(string.length()))
- return Value(false);
- if (position < 0)
- position = 0;
- }
- if (position == 0)
- return Value(string.contains(search_string));
- auto substring_length = string.length() - position;
- auto substring_search = string.substring(position, substring_length);
- return Value(substring_search.contains(search_string));
- }
- }
|