initial import
[vuplus_webkit] / Source / JavaScriptCore / runtime / RegExpConstructor.h
1 /*
2  *  Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
3  *  Copyright (C) 2003, 2007, 2008 Apple Inc. All Rights Reserved.
4  *
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.
9  *
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.
14  *
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
18  *
19  */
20
21 #ifndef RegExpConstructor_h
22 #define RegExpConstructor_h
23
24 #include "InternalFunction.h"
25 #include "RegExp.h"
26 #include <wtf/OwnPtr.h>
27
28 namespace JSC {
29
30     class RegExp;
31     class RegExpPrototype;
32     struct RegExpConstructorPrivate;
33
34     struct RegExpConstructorPrivate {
35         WTF_MAKE_FAST_ALLOCATED;
36     public:
37         // Global search cache / settings
38         RegExpConstructorPrivate()
39             : lastNumSubPatterns(0)
40             , multiline(false)
41             , lastOvectorIndex(0)
42         {
43         }
44
45         const Vector<int, 32>& lastOvector() const { return ovector[lastOvectorIndex]; }
46         Vector<int, 32>& lastOvector() { return ovector[lastOvectorIndex]; }
47         Vector<int, 32>& tempOvector() { return ovector[lastOvectorIndex ? 0 : 1]; }
48         void changeLastOvector() { lastOvectorIndex = lastOvectorIndex ? 0 : 1; }
49
50         UString input;
51         UString lastInput;
52         Vector<int, 32> ovector[2];
53         unsigned lastNumSubPatterns : 30;
54         bool multiline : 1;
55         unsigned lastOvectorIndex : 1;
56     };
57
58     class RegExpConstructor : public InternalFunction {
59     public:
60         typedef InternalFunction Base;
61
62         static RegExpConstructor* create(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, RegExpPrototype* regExpPrototype)
63         {
64             RegExpConstructor* constructor = new (allocateCell<RegExpConstructor>(*exec->heap())) RegExpConstructor(globalObject, structure);
65             constructor->finishCreation(exec, regExpPrototype);
66             return constructor;
67         }
68
69         static Structure* createStructure(JSGlobalData& globalData, JSGlobalObject* globalObject, JSValue prototype)
70         {
71             return Structure::create(globalData, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), &s_info);
72         }
73
74         virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
75         virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
76         virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
77
78         static const ClassInfo s_info;
79
80         void performMatch(JSGlobalData&, RegExp*, const UString&, int startOffset, int& position, int& length, int** ovector = 0);
81         JSObject* arrayOfMatches(ExecState*) const;
82
83         void setInput(const UString&);
84         const UString& input() const;
85
86         void setMultiline(bool);
87         bool multiline() const;
88
89         JSValue getBackref(ExecState*, unsigned) const;
90         JSValue getLastParen(ExecState*) const;
91         JSValue getLeftContext(ExecState*) const;
92         JSValue getRightContext(ExecState*) const;
93
94     protected:
95         void finishCreation(ExecState*, RegExpPrototype*);
96         static const unsigned StructureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance | InternalFunction::StructureFlags;
97
98     private:
99         RegExpConstructor(JSGlobalObject*, Structure*);
100         virtual ConstructType getConstructData(ConstructData&);
101         virtual CallType getCallData(CallData&);
102
103         OwnPtr<RegExpConstructorPrivate> d;
104     };
105
106     RegExpConstructor* asRegExpConstructor(JSValue);
107
108     JSObject* constructRegExp(ExecState*, JSGlobalObject*, const ArgList&, bool callAsConstructor = false);
109
110     inline RegExpConstructor* asRegExpConstructor(JSValue value)
111     {
112         ASSERT(asObject(value)->inherits(&RegExpConstructor::s_info));
113         return static_cast<RegExpConstructor*>(asObject(value));
114     }
115
116     /* 
117       To facilitate result caching, exec(), test(), match(), search(), and replace() dipatch regular
118       expression matching through the performMatch function. We use cached results to calculate, 
119       e.g., RegExp.lastMatch and RegExp.leftParen.
120     */
121     ALWAYS_INLINE void RegExpConstructor::performMatch(JSGlobalData& globalData, RegExp* r, const UString& s, int startOffset, int& position, int& length, int** ovector)
122     {
123         position = r->match(globalData, s, startOffset, &d->tempOvector());
124
125         if (ovector)
126             *ovector = d->tempOvector().data();
127
128         if (position != -1) {
129             ASSERT(!d->tempOvector().isEmpty());
130
131             length = d->tempOvector()[1] - d->tempOvector()[0];
132
133             d->input = s;
134             d->lastInput = s;
135             d->changeLastOvector();
136             d->lastNumSubPatterns = r->numSubpatterns();
137         }
138     }
139
140 } // namespace JSC
141
142 #endif // RegExpConstructor_h