123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345 |
- /*
- * Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
- * Copyright (C) 2003, 2007, 2008, 2012 Apple Inc. All Rights Reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
- */
- #include "config.h"
- #include "RegExpObject.h"
- #include "ButterflyInlines.h"
- #include "CopiedSpaceInlines.h"
- #include "Error.h"
- #include "ExceptionHelpers.h"
- #include "JSArray.h"
- #include "JSGlobalObject.h"
- #include "JSString.h"
- #include "Lexer.h"
- #include "Lookup.h"
- #include "Operations.h"
- #include "RegExpConstructor.h"
- #include "RegExpMatchesArray.h"
- #include "RegExpPrototype.h"
- #include <wtf/PassOwnPtr.h>
- #include <wtf/text/StringBuilder.h>
- namespace JSC {
- static JSValue regExpObjectGlobal(ExecState*, JSValue, PropertyName);
- static JSValue regExpObjectIgnoreCase(ExecState*, JSValue, PropertyName);
- static JSValue regExpObjectMultiline(ExecState*, JSValue, PropertyName);
- static JSValue regExpObjectSource(ExecState*, JSValue, PropertyName);
- } // namespace JSC
- #include "RegExpObject.lut.h"
- namespace JSC {
- ASSERT_HAS_TRIVIAL_DESTRUCTOR(RegExpObject);
- const ClassInfo RegExpObject::s_info = { "RegExp", &Base::s_info, 0, ExecState::regExpTable, CREATE_METHOD_TABLE(RegExpObject) };
- /* Source for RegExpObject.lut.h
- @begin regExpTable
- global regExpObjectGlobal DontDelete|ReadOnly|DontEnum
- ignoreCase regExpObjectIgnoreCase DontDelete|ReadOnly|DontEnum
- multiline regExpObjectMultiline DontDelete|ReadOnly|DontEnum
- source regExpObjectSource DontDelete|ReadOnly|DontEnum
- @end
- */
- RegExpObject::RegExpObject(JSGlobalObject* globalObject, Structure* structure, RegExp* regExp)
- : JSNonFinalObject(globalObject->vm(), structure)
- , m_regExp(globalObject->vm(), this, regExp)
- , m_lastIndexIsWritable(true)
- {
- m_lastIndex.setWithoutWriteBarrier(jsNumber(0));
- }
- void RegExpObject::finishCreation(JSGlobalObject* globalObject)
- {
- Base::finishCreation(globalObject->vm());
- ASSERT(inherits(&s_info));
- }
- void RegExpObject::visitChildren(JSCell* cell, SlotVisitor& visitor)
- {
- RegExpObject* thisObject = jsCast<RegExpObject*>(cell);
- ASSERT_GC_OBJECT_INHERITS(thisObject, &s_info);
- COMPILE_ASSERT(StructureFlags & OverridesVisitChildren, OverridesVisitChildrenWithoutSettingFlag);
- ASSERT(thisObject->structure()->typeInfo().overridesVisitChildren());
- Base::visitChildren(thisObject, visitor);
- visitor.append(&thisObject->m_regExp);
- visitor.append(&thisObject->m_lastIndex);
- }
- bool RegExpObject::getOwnPropertySlot(JSCell* cell, ExecState* exec, PropertyName propertyName, PropertySlot& slot)
- {
- if (propertyName == exec->propertyNames().lastIndex) {
- RegExpObject* regExp = asRegExpObject(cell);
- slot.setValue(regExp, regExp->getLastIndex());
- return true;
- }
- return getStaticValueSlot<RegExpObject, JSObject>(exec, ExecState::regExpTable(exec), jsCast<RegExpObject*>(cell), propertyName, slot);
- }
- bool RegExpObject::getOwnPropertyDescriptor(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor)
- {
- if (propertyName == exec->propertyNames().lastIndex) {
- RegExpObject* regExp = asRegExpObject(object);
- descriptor.setDescriptor(regExp->getLastIndex(), regExp->m_lastIndexIsWritable ? DontDelete | DontEnum : DontDelete | DontEnum | ReadOnly);
- return true;
- }
- return getStaticValueDescriptor<RegExpObject, JSObject>(exec, ExecState::regExpTable(exec), jsCast<RegExpObject*>(object), propertyName, descriptor);
- }
- bool RegExpObject::deleteProperty(JSCell* cell, ExecState* exec, PropertyName propertyName)
- {
- if (propertyName == exec->propertyNames().lastIndex)
- return false;
- return Base::deleteProperty(cell, exec, propertyName);
- }
- void RegExpObject::getOwnNonIndexPropertyNames(JSObject* object, ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode)
- {
- if (mode == IncludeDontEnumProperties)
- propertyNames.add(exec->propertyNames().lastIndex);
- Base::getOwnNonIndexPropertyNames(object, exec, propertyNames, mode);
- }
- void RegExpObject::getPropertyNames(JSObject* object, ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode)
- {
- if (mode == IncludeDontEnumProperties)
- propertyNames.add(exec->propertyNames().lastIndex);
- Base::getPropertyNames(object, exec, propertyNames, mode);
- }
- static bool reject(ExecState* exec, bool throwException, const char* message)
- {
- if (throwException)
- throwTypeError(exec, ASCIILiteral(message));
- return false;
- }
- bool RegExpObject::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor, bool shouldThrow)
- {
- if (propertyName == exec->propertyNames().lastIndex) {
- RegExpObject* regExp = asRegExpObject(object);
- if (descriptor.configurablePresent() && descriptor.configurable())
- return reject(exec, shouldThrow, "Attempting to change configurable attribute of unconfigurable property.");
- if (descriptor.enumerablePresent() && descriptor.enumerable())
- return reject(exec, shouldThrow, "Attempting to change enumerable attribute of unconfigurable property.");
- if (descriptor.isAccessorDescriptor())
- return reject(exec, shouldThrow, "Attempting to change access mechanism for an unconfigurable property.");
- if (!regExp->m_lastIndexIsWritable) {
- if (descriptor.writablePresent() && descriptor.writable())
- return reject(exec, shouldThrow, "Attempting to change writable attribute of unconfigurable property.");
- if (!sameValue(exec, regExp->getLastIndex(), descriptor.value()))
- return reject(exec, shouldThrow, "Attempting to change value of a readonly property.");
- return true;
- }
- if (descriptor.writablePresent() && !descriptor.writable())
- regExp->m_lastIndexIsWritable = false;
- if (descriptor.value())
- regExp->setLastIndex(exec, descriptor.value(), false);
- return true;
- }
- return Base::defineOwnProperty(object, exec, propertyName, descriptor, shouldThrow);
- }
- JSValue regExpObjectGlobal(ExecState*, JSValue slotBase, PropertyName)
- {
- return jsBoolean(asRegExpObject(slotBase)->regExp()->global());
- }
- JSValue regExpObjectIgnoreCase(ExecState*, JSValue slotBase, PropertyName)
- {
- return jsBoolean(asRegExpObject(slotBase)->regExp()->ignoreCase());
- }
-
- JSValue regExpObjectMultiline(ExecState*, JSValue slotBase, PropertyName)
- {
- return jsBoolean(asRegExpObject(slotBase)->regExp()->multiline());
- }
- template <typename CharacterType>
- static inline void appendLineTerminatorEscape(StringBuilder&, CharacterType);
- template <>
- inline void appendLineTerminatorEscape<LChar>(StringBuilder& builder, LChar lineTerminator)
- {
- if (lineTerminator == '\n')
- builder.append('n');
- else
- builder.append('r');
- }
- template <>
- inline void appendLineTerminatorEscape<UChar>(StringBuilder& builder, UChar lineTerminator)
- {
- if (lineTerminator == '\n')
- builder.append('n');
- else if (lineTerminator == '\r')
- builder.append('r');
- else if (lineTerminator == 0x2028)
- builder.appendLiteral("u2028");
- else
- builder.appendLiteral("u2029");
- }
- template <typename CharacterType>
- static inline JSValue regExpObjectSourceInternal(ExecState* exec, String pattern, const CharacterType* characters, unsigned length)
- {
- bool previousCharacterWasBackslash = false;
- bool inBrackets = false;
- bool shouldEscape = false;
- // 15.10.6.4 specifies that RegExp.prototype.toString must return '/' + source + '/',
- // and also states that the result must be a valid RegularExpressionLiteral. '//' is
- // not a valid RegularExpressionLiteral (since it is a single line comment), and hence
- // source cannot ever validly be "". If the source is empty, return a different Pattern
- // that would match the same thing.
- if (!length)
- return jsNontrivialString(exec, ASCIILiteral("(?:)"));
- // early return for strings that don't contain a forwards slash and LineTerminator
- for (unsigned i = 0; i < length; ++i) {
- CharacterType ch = characters[i];
- if (!previousCharacterWasBackslash) {
- if (inBrackets) {
- if (ch == ']')
- inBrackets = false;
- } else {
- if (ch == '/') {
- shouldEscape = true;
- break;
- }
- if (ch == '[')
- inBrackets = true;
- }
- }
- if (Lexer<CharacterType>::isLineTerminator(ch)) {
- shouldEscape = true;
- break;
- }
- if (previousCharacterWasBackslash)
- previousCharacterWasBackslash = false;
- else
- previousCharacterWasBackslash = ch == '\\';
- }
- if (!shouldEscape)
- return jsString(exec, pattern);
- previousCharacterWasBackslash = false;
- inBrackets = false;
- StringBuilder result;
- for (unsigned i = 0; i < length; ++i) {
- CharacterType ch = characters[i];
- if (!previousCharacterWasBackslash) {
- if (inBrackets) {
- if (ch == ']')
- inBrackets = false;
- } else {
- if (ch == '/')
- result.append('\\');
- else if (ch == '[')
- inBrackets = true;
- }
- }
- // escape LineTerminator
- if (Lexer<CharacterType>::isLineTerminator(ch)) {
- if (!previousCharacterWasBackslash)
- result.append('\\');
- appendLineTerminatorEscape<CharacterType>(result, ch);
- } else
- result.append(ch);
- if (previousCharacterWasBackslash)
- previousCharacterWasBackslash = false;
- else
- previousCharacterWasBackslash = ch == '\\';
- }
- return jsString(exec, result.toString());
- }
- JSValue regExpObjectSource(ExecState* exec, JSValue slotBase, PropertyName)
- {
- String pattern = asRegExpObject(slotBase)->regExp()->pattern();
- if (pattern.is8Bit())
- return regExpObjectSourceInternal(exec, pattern, pattern.characters8(), pattern.length());
- return regExpObjectSourceInternal(exec, pattern, pattern.characters16(), pattern.length());
- }
- void RegExpObject::put(JSCell* cell, ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot)
- {
- if (propertyName == exec->propertyNames().lastIndex) {
- asRegExpObject(cell)->setLastIndex(exec, value, slot.isStrictMode());
- return;
- }
- lookupPut<RegExpObject, JSObject>(exec, propertyName, value, ExecState::regExpTable(exec), jsCast<RegExpObject*>(cell), slot);
- }
- JSValue RegExpObject::exec(ExecState* exec, JSString* string)
- {
- if (MatchResult result = match(exec, string))
- return RegExpMatchesArray::create(exec, string, regExp(), result);
- return jsNull();
- }
- // Shared implementation used by test and exec.
- MatchResult RegExpObject::match(ExecState* exec, JSString* string)
- {
- RegExp* regExp = this->regExp();
- RegExpConstructor* regExpConstructor = exec->lexicalGlobalObject()->regExpConstructor();
- String input = string->value(exec);
- VM& vm = exec->vm();
- if (!regExp->global())
- return regExpConstructor->performMatch(vm, regExp, string, input, 0);
- JSValue jsLastIndex = getLastIndex();
- unsigned lastIndex;
- if (LIKELY(jsLastIndex.isUInt32())) {
- lastIndex = jsLastIndex.asUInt32();
- if (lastIndex > input.length()) {
- setLastIndex(exec, 0);
- return MatchResult::failed();
- }
- } else {
- double doubleLastIndex = jsLastIndex.toInteger(exec);
- if (doubleLastIndex < 0 || doubleLastIndex > input.length()) {
- setLastIndex(exec, 0);
- return MatchResult::failed();
- }
- lastIndex = static_cast<unsigned>(doubleLastIndex);
- }
- MatchResult result = regExpConstructor->performMatch(vm, regExp, string, input, lastIndex);
- setLastIndex(exec, result.end);
- return result;
- }
- } // namespace JSC
|