]>
Commit | Line | Data |
---|---|---|
9dae56ea A |
1 | /* |
2 | * Copyright (C) 1999-2000 Harri Porten (porten@kde.org) | |
3 | * Copyright (C) 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 StringObject_h | |
22 | #define StringObject_h | |
23 | ||
24 | #include "JSWrapperObject.h" | |
25 | #include "JSString.h" | |
26 | ||
27 | namespace JSC { | |
28 | ||
29 | class StringObject : public JSWrapperObject { | |
30 | public: | |
6fe7ccc8 | 31 | typedef JSWrapperObject Base; |
9dae56ea | 32 | |
6fe7ccc8 A |
33 | static StringObject* create(ExecState* exec, Structure* structure) |
34 | { | |
35 | JSString* string = jsEmptyString(exec); | |
93a37866 A |
36 | StringObject* object = new (NotNull, allocateCell<StringObject>(*exec->heap())) StringObject(exec->vm(), structure); |
37 | object->finishCreation(exec->vm(), string); | |
6fe7ccc8 A |
38 | return object; |
39 | } | |
40 | static StringObject* create(ExecState* exec, Structure* structure, JSString* string) | |
41 | { | |
93a37866 A |
42 | StringObject* object = new (NotNull, allocateCell<StringObject>(*exec->heap())) StringObject(exec->vm(), structure); |
43 | object->finishCreation(exec->vm(), string); | |
6fe7ccc8 A |
44 | return object; |
45 | } | |
14957cd0 | 46 | static StringObject* create(ExecState*, JSGlobalObject*, JSString*); |
9dae56ea | 47 | |
93a37866 | 48 | static bool getOwnPropertySlot(JSCell*, ExecState*, PropertyName, PropertySlot&); |
6fe7ccc8 | 49 | static bool getOwnPropertySlotByIndex(JSCell*, ExecState*, unsigned propertyName, PropertySlot&); |
93a37866 | 50 | static bool getOwnPropertyDescriptor(JSObject*, ExecState*, PropertyName, PropertyDescriptor&); |
6fe7ccc8 | 51 | |
93a37866 A |
52 | static void put(JSCell*, ExecState*, PropertyName, JSValue, PutPropertySlot&); |
53 | static void putByIndex(JSCell*, ExecState*, unsigned propertyName, JSValue, bool shouldThrow); | |
9dae56ea | 54 | |
93a37866 A |
55 | static bool deleteProperty(JSCell*, ExecState*, PropertyName); |
56 | static bool deletePropertyByIndex(JSCell*, ExecState*, unsigned propertyName); | |
6fe7ccc8 | 57 | static void getOwnPropertyNames(JSObject*, ExecState*, PropertyNameArray&, EnumerationMode); |
93a37866 | 58 | static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, PropertyDescriptor&, bool shouldThrow); |
9dae56ea | 59 | |
14957cd0 | 60 | static const JS_EXPORTDATA ClassInfo s_info; |
9dae56ea A |
61 | |
62 | JSString* internalValue() const { return asString(JSWrapperObject::internalValue());} | |
63 | ||
93a37866 | 64 | static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) |
9dae56ea | 65 | { |
93a37866 | 66 | return Structure::create(vm, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), &s_info); |
9dae56ea A |
67 | } |
68 | ||
69 | protected: | |
93a37866 A |
70 | JS_EXPORT_PRIVATE void finishCreation(VM&, JSString*); |
71 | static const unsigned StructureFlags = OverridesGetOwnPropertySlot | InterceptsGetOwnPropertySlotByIndexEvenWhenLengthIsNotZero | OverridesGetPropertyNames | JSWrapperObject::StructureFlags; | |
72 | JS_EXPORT_PRIVATE StringObject(VM&, Structure*); | |
14957cd0 | 73 | }; |
9dae56ea | 74 | |
ba379fdc | 75 | StringObject* asStringObject(JSValue); |
9dae56ea | 76 | |
ba379fdc | 77 | inline StringObject* asStringObject(JSValue value) |
9dae56ea | 78 | { |
14957cd0 | 79 | ASSERT(asObject(value)->inherits(&StringObject::s_info)); |
9dae56ea A |
80 | return static_cast<StringObject*>(asObject(value)); |
81 | } | |
82 | ||
93a37866 A |
83 | JS_EXPORT_PRIVATE StringObject* constructString(ExecState*, JSGlobalObject*, JSValue); |
84 | ||
9dae56ea A |
85 | } // namespace JSC |
86 | ||
87 | #endif // StringObject_h |