tizen beta release
[framework/web/webkit-efl.git] / 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         static void put(JSCell*, ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
75
76         static bool getOwnPropertySlot(JSCell*, ExecState*, const Identifier& propertyName, PropertySlot&);
77         static bool getOwnPropertyDescriptor(JSObject*, ExecState*, const Identifier&, PropertyDescriptor&);
78
79         static const ClassInfo s_info;
80
81         void performMatch(JSGlobalData&, RegExp*, const UString&, int startOffset, int& position, int& length, int** ovector = 0);
82         JSObject* arrayOfMatches(ExecState*) const;
83
84         void setInput(const UString&);
85         const UString& input() const;
86
87         void setMultiline(bool);
88         bool multiline() const;
89
90         JSValue getBackref(ExecState*, unsigned) const;
91         JSValue getLastParen(ExecState*) const;
92         JSValue getLeftContext(ExecState*) const;
93         JSValue getRightContext(ExecState*) const;
94
95     protected:
96         void finishCreation(ExecState*, RegExpPrototype*);
97         static const unsigned StructureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance | InternalFunction::StructureFlags;
98
99     private:
100         RegExpConstructor(JSGlobalObject*, Structure*);
101         static ConstructType getConstructData(JSCell*, ConstructData&);
102         static CallType getCallData(JSCell*, CallData&);
103
104         OwnPtr<RegExpConstructorPrivate> d;
105     };
106
107     RegExpConstructor* asRegExpConstructor(JSValue);
108
109     JSObject* constructRegExp(ExecState*, JSGlobalObject*, const ArgList&, bool callAsConstructor = false);
110
111     inline RegExpConstructor* asRegExpConstructor(JSValue value)
112     {
113         ASSERT(asObject(value)->inherits(&RegExpConstructor::s_info));
114         return static_cast<RegExpConstructor*>(asObject(value));
115     }
116
117     /* 
118       To facilitate result caching, exec(), test(), match(), search(), and replace() dipatch regular
119       expression matching through the performMatch function. We use cached results to calculate, 
120       e.g., RegExp.lastMatch and RegExp.leftParen.
121     */
122     ALWAYS_INLINE void RegExpConstructor::performMatch(JSGlobalData& globalData, RegExp* r, const UString& s, int startOffset, int& position, int& length, int** ovector)
123     {
124         position = r->match(globalData, s, startOffset, &d->tempOvector());
125
126         if (ovector)
127             *ovector = d->tempOvector().data();
128
129         if (position != -1) {
130             ASSERT(!d->tempOvector().isEmpty());
131
132             length = d->tempOvector()[1] - d->tempOvector()[0];
133
134             d->input = s;
135             d->lastInput = s;
136             d->changeLastOvector();
137             d->lastNumSubPatterns = r->numSubpatterns();
138         }
139     }
140
141 } // namespace JSC
142
143 #endif // RegExpConstructor_h