1/*
2 * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family)
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
40namespace JSC {
41
42STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(IntlNumberFormatConstructor);
43
44static EncodedJSValue JSC_HOST_CALL IntlNumberFormatConstructorFuncSupportedLocalesOf(JSGlobalObject*, CallFrame*);
45
46}
47
48#include "IntlNumberFormatConstructor.lut.h"
49
50namespace JSC {
51
52const 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
60IntlNumberFormatConstructor* 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
67Structure* IntlNumberFormatConstructor::createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype)
68{
69 return Structure::create(vm, globalObject, prototype, TypeInfo(InternalFunctionType, StructureFlags), info());
70}
71
72static EncodedJSValue JSC_HOST_CALL callIntlNumberFormat(JSGlobalObject*, CallFrame*);
73static EncodedJSValue JSC_HOST_CALL constructIntlNumberFormat(JSGlobalObject*, CallFrame*);
74
75IntlNumberFormatConstructor::IntlNumberFormatConstructor(VM& vm, Structure* structure)
76 : InternalFunction(vm, structure, callIntlNumberFormat, constructIntlNumberFormat)
77{
78}
79
80void IntlNumberFormatConstructor::finishCreation(VM& vm, IntlNumberFormatPrototype* numberFormatPrototype)
81{
82 Base::finishCreation(vm, "NumberFormat"_s, 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
88static EncodedJSValue JSC_HOST_CALL constructIntlNumberFormat(JSGlobalObject* globalObject, CallFrame* callFrame)
89{
90 VM& vm = globalObject->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(globalObject, callFrame->jsCallee(), callFrame->newTarget(), jsCast<IntlNumberFormatConstructor*>(callFrame->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(globalObject, callFrame->argument(0), callFrame->argument(1));
104 return JSValue::encode(numberFormat);
105}
106
107static EncodedJSValue JSC_HOST_CALL callIntlNumberFormat(JSGlobalObject* globalObject, CallFrame* callFrame)
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*>(callFrame->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>(globalObject, callFrame->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(globalObject, callFrame->argument(0), callFrame->argument(1));
125 return numberFormat;
126 }));
127}
128
129EncodedJSValue JSC_HOST_CALL IntlNumberFormatConstructorFuncSupportedLocalesOf(JSGlobalObject* globalObject, CallFrame* callFrame)
130{
131 VM& vm = globalObject->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 const HashSet<String> availableLocales = globalObject->intlNumberFormatAvailableLocales();
137
138 // 2. Let requestedLocales be CanonicalizeLocaleList(locales).
139 Vector<String> requestedLocales = canonicalizeLocaleList(globalObject, callFrame->argument(0));
140 RETURN_IF_EXCEPTION(scope, encodedJSValue());
141
142 // 3. Return SupportedLocales(availableLocales, requestedLocales, options).
143 RELEASE_AND_RETURN(scope, JSValue::encode(supportedLocales(globalObject, availableLocales, requestedLocales, callFrame->argument(1))));
144}
145
146} // namespace JSC
147
148#endif // ENABLE(INTL)
149