/* * Copyright (c) 2022, LI YUBEI * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include namespace JS { void RegExpLegacyStaticProperties::invalidate() { m_input = {}; m_last_match = {}; m_last_match_string = {}; m_last_paren = {}; m_left_context = {}; m_left_context_string = {}; m_right_context = {}; m_right_context_string = {}; for (auto& p : m_$) p = {}; for (auto& s : m_paren_starts) s = -1; for (auto& e : m_paren_ends) e = -1; m_parens_materialized = true; } Optional const& RegExpLegacyStaticProperties::lazy_paren(size_t index) const { VERIFY(index < 9); if (!m_parens_materialized) { // Materialize all lazy parens from stored indices. for (size_t i = 0; i < 9; i++) { if (m_paren_starts[i] >= 0 && m_paren_ends[i] >= 0 && m_input.has_value()) { auto view = m_input->substring_view(m_paren_starts[i], m_paren_ends[i] - m_paren_starts[i]); m_$[i] = Utf16String::from_utf16(view); } else { m_$[i] = Utf16String {}; } } m_parens_materialized = true; } return m_$[index]; } void RegExpLegacyStaticProperties::set_captures_lazy(size_t num_captures, int const* capture_starts, int const* capture_ends) { for (size_t i = 0; i < 9; i++) { if (i < num_captures) { m_paren_starts[i] = capture_starts[i]; m_paren_ends[i] = capture_ends[i]; } else { m_paren_starts[i] = -1; m_paren_ends[i] = -1; } } // Clear any previously materialized strings. for (auto& p : m_$) p = {}; m_parens_materialized = false; // Set last_paren to the last captured value. if (num_captures > 0 && capture_starts[num_captures - 1] >= 0 && capture_ends[num_captures - 1] >= 0 && m_input.has_value()) { auto view = m_input->substring_view(capture_starts[num_captures - 1], capture_ends[num_captures - 1] - capture_starts[num_captures - 1]); m_last_paren = Utf16String::from_utf16(view); } else { m_last_paren = Utf16String {}; } } // GetLegacyRegExpStaticProperty( C, thisValue, internalSlotName ), https://github.com/tc39/proposal-regexp-legacy-features#getlegacyregexpstaticproperty-c-thisvalue-internalslotname- ThrowCompletionOr get_legacy_regexp_static_property(VM& vm, RegExpConstructor& constructor, Value this_value, Optional const& (RegExpLegacyStaticProperties::*property_getter)() const) { // 1. Assert C is an object that has an internal slot named internalSlotName. // 2. If SameValue(C, thisValue) is false, throw a TypeError exception. if (!same_value(&constructor, this_value)) return vm.throw_completion(ErrorType::GetLegacyRegExpStaticPropertyThisValueMismatch); // 3. Let val be the value of the internal slot of C named internalSlotName. auto val = (constructor.legacy_static_properties().*property_getter)(); // 4. If val is empty, throw a TypeError exception. if (!val.has_value()) return vm.throw_completion(ErrorType::GetLegacyRegExpStaticPropertyValueEmpty); // 5. Return val. return PrimitiveString::create(vm, val.release_value()); } // SetLegacyRegExpStaticProperty( C, thisValue, internalSlotName, val ), https://github.com/tc39/proposal-regexp-legacy-features#setlegacyregexpstaticproperty-c-thisvalue-internalslotname-val- ThrowCompletionOr set_legacy_regexp_static_property(VM& vm, RegExpConstructor& constructor, Value this_value, void (RegExpLegacyStaticProperties::*property_setter)(Utf16String), Value value) { // 1. Assert C is an object that has an internal slot named internalSlotName. // 2. If SameValue(C, thisValue) is false, throw a TypeError exception. if (!same_value(&constructor, this_value)) return vm.throw_completion(ErrorType::SetLegacyRegExpStaticPropertyThisValueMismatch); // 3. Let strVal be ? ToString(val). auto str_value = TRY(value.to_utf16_string(vm)); // 4. Set the value of the internal slot of C named internalSlotName to strVal. (constructor.legacy_static_properties().*property_setter)(str_value); return {}; } // UpdateLegacyRegExpStaticProperties ( C, S, startIndex, endIndex, capturedValues ), https://github.com/tc39/proposal-regexp-legacy-features#updatelegacyregexpstaticproperties--c-s-startindex-endindex-capturedvalues- void update_legacy_regexp_static_properties(RegExpConstructor& constructor, Utf16String const& string, size_t start_index, size_t end_index, Vector const& captured_values) { auto& legacy_static_properties = constructor.legacy_static_properties(); // 1. Assert: C is an Object that has a [[RegExpInput]] internal slot. // 2. Assert: Type(S) is String. // 3. Let len be the number of code units in S. auto len = string.length_in_code_units(); // 4. Assert: startIndex and endIndex are integers such that 0 ≤ startIndex ≤ endIndex ≤ len. VERIFY(start_index <= end_index); VERIFY(end_index <= len); // 5. Assert: capturedValues is a List of Strings. // 6. Let n be the number of elements in capturedValues. auto group_count = captured_values.size(); // 7. Set the value of C’s [[RegExpInput]] internal slot to S. legacy_static_properties.set_input(string); // 8. Set the value of C’s [[RegExpLastMatch]] internal slot to a String whose length is endIndex - startIndex and containing the code units from S with indices startIndex through endIndex - 1, in ascending order. auto last_match = legacy_static_properties.input()->substring_view(start_index, end_index - start_index); legacy_static_properties.set_last_match(last_match); // 9. If n > 0, set the value of C’s [[RegExpLastParen]] internal slot to the last element of capturedValues. if (group_count > 0) { auto item = captured_values[group_count - 1]; legacy_static_properties.set_last_paren(item); } // 10. Else, set the value of C’s [[RegExpLastParen]] internal slot to the empty String. else { legacy_static_properties.set_last_paren({}); } // 11. Set the value of C’s [[RegExpLeftContext]] internal slot to a String whose length is startIndex and containing the code units from S with indices 0 through startIndex - 1, in ascending order. auto left_context = legacy_static_properties.input()->substring_view(0, start_index); legacy_static_properties.set_left_context(left_context); // 12. Set the value of C’s [[RegExpRightContext]] internal slot to a String whose length is len - endIndex and containing the code units from S with indices endIndex through len - 1, in ascending order. auto right_context = legacy_static_properties.input()->substring_view(end_index, len - end_index); legacy_static_properties.set_right_context(right_context); // 13. For each integer i such that 1 ≤ i ≤ 9 for (size_t i = 1; i <= 9; i++) { // i. If i ≤ n, set the value of C’s [[RegExpPareni]] internal slot to the ith element of capturedValues. // ii. Else, set the value of C’s [[RegExpPareni]] internal slot to the empty String. auto value = (i <= group_count) ? captured_values[i - 1] : Utf16String {}; if (i == 1) { legacy_static_properties.set_$1(move(value)); } else if (i == 2) { legacy_static_properties.set_$2(move(value)); } else if (i == 3) { legacy_static_properties.set_$3(move(value)); } else if (i == 4) { legacy_static_properties.set_$4(move(value)); } else if (i == 5) { legacy_static_properties.set_$5(move(value)); } else if (i == 6) { legacy_static_properties.set_$6(move(value)); } else if (i == 7) { legacy_static_properties.set_$7(move(value)); } else if (i == 8) { legacy_static_properties.set_$8(move(value)); } else if (i == 9) { legacy_static_properties.set_$9(move(value)); } } } // Like update_legacy_regexp_static_properties, but defers $1-$9 string creation. // Captures are stored as index pairs into the input string and materialized on access. void update_legacy_regexp_static_properties_lazy(RegExpConstructor& constructor, Utf16String const& string, size_t start_index, size_t end_index, size_t num_captures, int const* capture_starts, int const* capture_ends) { auto& legacy_static_properties = constructor.legacy_static_properties(); auto len = string.length_in_code_units(); VERIFY(start_index <= end_index); VERIFY(end_index <= len); legacy_static_properties.set_input(string); auto last_match = legacy_static_properties.input()->substring_view(start_index, end_index - start_index); legacy_static_properties.set_last_match(last_match); auto left_context = legacy_static_properties.input()->substring_view(0, start_index); legacy_static_properties.set_left_context(left_context); auto right_context = legacy_static_properties.input()->substring_view(end_index, len - end_index); legacy_static_properties.set_right_context(right_context); legacy_static_properties.set_captures_lazy(num_captures, capture_starts, capture_ends); } // InvalidateLegacyRegExpStaticProperties ( C ), https://github.com/tc39/proposal-regexp-legacy-features#invalidatelegacyregexpstaticproperties--c void invalidate_legacy_regexp_static_properties(RegExpConstructor& constructor) { // 1. Assert: C is an Object that has a [[RegExpInput]] internal slot. // 2. Set the value of the following internal slots of C to empty: constructor.legacy_static_properties().invalidate(); } }