1 | /* |
2 | * Copyright (C) 2015 Andy VanWagoner ([email protected]) |
3 | * Copyright (C) 2016 Apple Inc. All Rights Reserved. |
4 | * |
5 | * Redistribution and use in source and binary forms, with or without |
6 | * modification, are permitted provided that the following conditions |
7 | * are met: |
8 | * 1. Redistributions of source code must retain the above copyright |
9 | * notice, this list of conditions and the following disclaimer. |
10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. |
13 | * |
14 | * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
15 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
16 | * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
17 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
18 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
19 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
20 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
21 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
22 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
23 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
24 | * THE POSSIBILITY OF SUCH DAMAGE. |
25 | */ |
26 | |
27 | #include "config.h" |
28 | #include "IntlNumberFormatConstructor.h" |
29 | |
30 | #if ENABLE(INTL) |
31 | |
32 | #include "Error.h" |
33 | #include "IntlNumberFormat.h" |
34 | #include "IntlNumberFormatPrototype.h" |
35 | #include "IntlObject.h" |
36 | #include "IntlObjectInlines.h" |
37 | #include "JSCInlines.h" |
38 | #include "Lookup.h" |
39 | |
40 | namespace JSC { |
41 | |
42 | STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(IntlNumberFormatConstructor); |
43 | |
44 | static EncodedJSValue JSC_HOST_CALL IntlNumberFormatConstructorFuncSupportedLocalesOf(ExecState*); |
45 | |
46 | } |
47 | |
48 | #include "IntlNumberFormatConstructor.lut.h" |
49 | |
50 | namespace JSC { |
51 | |
52 | const ClassInfo IntlNumberFormatConstructor::s_info = { "Function" , &Base::s_info, &numberFormatConstructorTable, nullptr, CREATE_METHOD_TABLE(IntlNumberFormatConstructor) }; |
53 | |
54 | /* Source for IntlNumberFormatConstructor.lut.h |
55 | @begin numberFormatConstructorTable |
56 | supportedLocalesOf IntlNumberFormatConstructorFuncSupportedLocalesOf DontEnum|Function 1 |
57 | @end |
58 | */ |
59 | |
60 | IntlNumberFormatConstructor* IntlNumberFormatConstructor::create(VM& vm, Structure* structure, IntlNumberFormatPrototype* numberFormatPrototype) |
61 | { |
62 | IntlNumberFormatConstructor* constructor = new (NotNull, allocateCell<IntlNumberFormatConstructor>(vm.heap)) IntlNumberFormatConstructor(vm, structure); |
63 | constructor->finishCreation(vm, numberFormatPrototype); |
64 | return constructor; |
65 | } |
66 | |
67 | Structure* IntlNumberFormatConstructor::createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) |
68 | { |
69 | return Structure::create(vm, globalObject, prototype, TypeInfo(InternalFunctionType, StructureFlags), info()); |
70 | } |
71 | |
72 | static EncodedJSValue JSC_HOST_CALL callIntlNumberFormat(ExecState*); |
73 | static EncodedJSValue JSC_HOST_CALL constructIntlNumberFormat(ExecState*); |
74 | |
75 | IntlNumberFormatConstructor::IntlNumberFormatConstructor(VM& vm, Structure* structure) |
76 | : InternalFunction(vm, structure, callIntlNumberFormat, constructIntlNumberFormat) |
77 | { |
78 | } |
79 | |
80 | void IntlNumberFormatConstructor::finishCreation(VM& vm, IntlNumberFormatPrototype* numberFormatPrototype) |
81 | { |
82 | Base::finishCreation(vm, "NumberFormat"_s , NameVisibility::Visible, NameAdditionMode::WithoutStructureTransition); |
83 | putDirectWithoutTransition(vm, vm.propertyNames->prototype, numberFormatPrototype, PropertyAttribute::DontEnum | PropertyAttribute::DontDelete | PropertyAttribute::ReadOnly); |
84 | putDirectWithoutTransition(vm, vm.propertyNames->length, jsNumber(0), PropertyAttribute::ReadOnly | PropertyAttribute::DontEnum); |
85 | numberFormatPrototype->putDirectWithoutTransition(vm, vm.propertyNames->constructor, this, static_cast<unsigned>(PropertyAttribute::DontEnum)); |
86 | } |
87 | |
88 | static EncodedJSValue JSC_HOST_CALL constructIntlNumberFormat(ExecState* state) |
89 | { |
90 | VM& vm = state->vm(); |
91 | auto scope = DECLARE_THROW_SCOPE(vm); |
92 | // 11.1.2 Intl.NumberFormat ([locales [, options]]) (ECMA-402 2.0) |
93 | // 1. If NewTarget is undefined, let newTarget be the active function object, else let newTarget be NewTarget. |
94 | // 2. Let numberFormat be OrdinaryCreateFromConstructor(newTarget, %NumberFormatPrototype%). |
95 | // 3. ReturnIfAbrupt(numberFormat). |
96 | Structure* structure = InternalFunction::createSubclassStructure(state, state->newTarget(), jsCast<IntlNumberFormatConstructor*>(state->jsCallee())->numberFormatStructure(vm)); |
97 | RETURN_IF_EXCEPTION(scope, encodedJSValue()); |
98 | IntlNumberFormat* numberFormat = IntlNumberFormat::create(vm, structure); |
99 | ASSERT(numberFormat); |
100 | |
101 | // 4. Return InitializeNumberFormat(numberFormat, locales, options). |
102 | scope.release(); |
103 | numberFormat->initializeNumberFormat(*state, state->argument(0), state->argument(1)); |
104 | return JSValue::encode(numberFormat); |
105 | } |
106 | |
107 | static EncodedJSValue JSC_HOST_CALL callIntlNumberFormat(ExecState* state) |
108 | { |
109 | // 11.1.2 Intl.NumberFormat ([locales [, options]]) (ECMA-402 2.0) |
110 | // 1. If NewTarget is undefined, let newTarget be the active function object, else let newTarget be NewTarget. |
111 | // NewTarget is always undefined when called as a function. |
112 | |
113 | IntlNumberFormatConstructor* callee = jsCast<IntlNumberFormatConstructor*>(state->jsCallee()); |
114 | |
115 | // FIXME: Workaround to provide compatibility with ECMA-402 1.0 call/apply patterns. |
116 | // https://bugs.webkit.org/show_bug.cgi?id=153679 |
117 | return JSValue::encode(constructIntlInstanceWithWorkaroundForLegacyIntlConstructor<IntlNumberFormat>(*state, state->thisValue(), callee, [&] (VM& vm) { |
118 | // 2. Let numberFormat be OrdinaryCreateFromConstructor(newTarget, %NumberFormatPrototype%). |
119 | // 3. ReturnIfAbrupt(numberFormat). |
120 | IntlNumberFormat* numberFormat = IntlNumberFormat::create(vm, callee->numberFormatStructure(vm)); |
121 | ASSERT(numberFormat); |
122 | |
123 | // 4. Return InitializeNumberFormat(numberFormat, locales, options). |
124 | numberFormat->initializeNumberFormat(*state, state->argument(0), state->argument(1)); |
125 | return numberFormat; |
126 | })); |
127 | } |
128 | |
129 | EncodedJSValue JSC_HOST_CALL IntlNumberFormatConstructorFuncSupportedLocalesOf(ExecState* state) |
130 | { |
131 | VM& vm = state->vm(); |
132 | auto scope = DECLARE_THROW_SCOPE(vm); |
133 | // 11.2.2 Intl.NumberFormat.supportedLocalesOf(locales [, options]) (ECMA-402 2.0) |
134 | |
135 | // 1. Let availableLocales be %NumberFormat%.[[availableLocales]]. |
136 | JSGlobalObject* globalObject = state->jsCallee()->globalObject(vm); |
137 | const HashSet<String> availableLocales = globalObject->intlNumberFormatAvailableLocales(); |
138 | |
139 | // 2. Let requestedLocales be CanonicalizeLocaleList(locales). |
140 | Vector<String> requestedLocales = canonicalizeLocaleList(*state, state->argument(0)); |
141 | RETURN_IF_EXCEPTION(scope, encodedJSValue()); |
142 | |
143 | // 3. Return SupportedLocales(availableLocales, requestedLocales, options). |
144 | RELEASE_AND_RETURN(scope, JSValue::encode(supportedLocales(*state, availableLocales, requestedLocales, state->argument(1)))); |
145 | } |
146 | |
147 | } // namespace JSC |
148 | |
149 | #endif // ENABLE(INTL) |
150 | |