]>
git.saurik.com Git - apple/javascriptcore.git/blob - runtime/RegExpObject.cpp
f8e0522223897da36e85dcfe5c043c46c7ce3a70
2 * Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
3 * Copyright (C) 2003, 2007, 2008 Apple Inc. All Rights Reserved.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "RegExpObject.h"
25 #include "JSGlobalObject.h"
27 #include "RegExpConstructor.h"
28 #include "RegExpPrototype.h"
32 static JSValuePtr
regExpObjectGlobal(ExecState
*, const Identifier
&, const PropertySlot
&);
33 static JSValuePtr
regExpObjectIgnoreCase(ExecState
*, const Identifier
&, const PropertySlot
&);
34 static JSValuePtr
regExpObjectMultiline(ExecState
*, const Identifier
&, const PropertySlot
&);
35 static JSValuePtr
regExpObjectSource(ExecState
*, const Identifier
&, const PropertySlot
&);
36 static JSValuePtr
regExpObjectLastIndex(ExecState
*, const Identifier
&, const PropertySlot
&);
37 static void setRegExpObjectLastIndex(ExecState
*, JSObject
*, JSValuePtr
);
41 #include "RegExpObject.lut.h"
45 ASSERT_CLASS_FITS_IN_CELL(RegExpObject
);
47 const ClassInfo
RegExpObject::info
= { "RegExp", 0, 0, ExecState::regExpTable
};
49 /* Source for RegExpObject.lut.h
51 global regExpObjectGlobal DontDelete|ReadOnly|DontEnum
52 ignoreCase regExpObjectIgnoreCase DontDelete|ReadOnly|DontEnum
53 multiline regExpObjectMultiline DontDelete|ReadOnly|DontEnum
54 source regExpObjectSource DontDelete|ReadOnly|DontEnum
55 lastIndex regExpObjectLastIndex DontDelete|DontEnum
59 RegExpObject::RegExpObject(PassRefPtr
<Structure
> structure
, PassRefPtr
<RegExp
> regExp
)
61 , d(new RegExpObjectData(regExp
, 0))
65 RegExpObject::~RegExpObject()
69 bool RegExpObject::getOwnPropertySlot(ExecState
* exec
, const Identifier
& propertyName
, PropertySlot
& slot
)
71 return getStaticValueSlot
<RegExpObject
, JSObject
>(exec
, ExecState::regExpTable(exec
), this, propertyName
, slot
);
74 JSValuePtr
regExpObjectGlobal(ExecState
*, const Identifier
&, const PropertySlot
& slot
)
76 return jsBoolean(asRegExpObject(slot
.slotBase())->regExp()->global());
79 JSValuePtr
regExpObjectIgnoreCase(ExecState
*, const Identifier
&, const PropertySlot
& slot
)
81 return jsBoolean(asRegExpObject(slot
.slotBase())->regExp()->ignoreCase());
84 JSValuePtr
regExpObjectMultiline(ExecState
*, const Identifier
&, const PropertySlot
& slot
)
86 return jsBoolean(asRegExpObject(slot
.slotBase())->regExp()->multiline());
89 JSValuePtr
regExpObjectSource(ExecState
* exec
, const Identifier
&, const PropertySlot
& slot
)
91 return jsString(exec
, asRegExpObject(slot
.slotBase())->regExp()->pattern());
94 JSValuePtr
regExpObjectLastIndex(ExecState
* exec
, const Identifier
&, const PropertySlot
& slot
)
96 return jsNumber(exec
, asRegExpObject(slot
.slotBase())->lastIndex());
99 void RegExpObject::put(ExecState
* exec
, const Identifier
& propertyName
, JSValuePtr value
, PutPropertySlot
& slot
)
101 lookupPut
<RegExpObject
, JSObject
>(exec
, propertyName
, value
, ExecState::regExpTable(exec
), this, slot
);
104 void setRegExpObjectLastIndex(ExecState
* exec
, JSObject
* baseObject
, JSValuePtr value
)
106 asRegExpObject(baseObject
)->setLastIndex(value
.toInteger(exec
));
109 JSValuePtr
RegExpObject::test(ExecState
* exec
, const ArgList
& args
)
111 return jsBoolean(match(exec
, args
));
114 JSValuePtr
RegExpObject::exec(ExecState
* exec
, const ArgList
& args
)
116 if (match(exec
, args
))
117 return exec
->lexicalGlobalObject()->regExpConstructor()->arrayOfMatches(exec
);
121 static JSValuePtr
callRegExpObject(ExecState
* exec
, JSObject
* function
, JSValuePtr
, const ArgList
& args
)
123 return asRegExpObject(function
)->exec(exec
, args
);
126 CallType
RegExpObject::getCallData(CallData
& callData
)
128 callData
.native
.function
= callRegExpObject
;
132 // Shared implementation used by test and exec.
133 bool RegExpObject::match(ExecState
* exec
, const ArgList
& args
)
135 RegExpConstructor
* regExpConstructor
= exec
->lexicalGlobalObject()->regExpConstructor();
137 UString input
= args
.isEmpty() ? regExpConstructor
->input() : args
.at(exec
, 0).toString(exec
);
138 if (input
.isNull()) {
139 throwError(exec
, GeneralError
, "No input to " + toString(exec
) + ".");
143 if (!regExp()->global()) {
146 regExpConstructor
->performMatch(d
->regExp
.get(), input
, 0, position
, length
);
147 return position
>= 0;
150 if (d
->lastIndex
< 0 || d
->lastIndex
> input
.size()) {
157 regExpConstructor
->performMatch(d
->regExp
.get(), input
, static_cast<int>(d
->lastIndex
), position
, length
);
163 d
->lastIndex
= position
+ length
;