From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- toolkit/components/mozintl/MozIntlHelper.cpp | 115 +++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 toolkit/components/mozintl/MozIntlHelper.cpp (limited to 'toolkit/components/mozintl/MozIntlHelper.cpp') diff --git a/toolkit/components/mozintl/MozIntlHelper.cpp b/toolkit/components/mozintl/MozIntlHelper.cpp new file mode 100644 index 0000000000..84e192f3dd --- /dev/null +++ b/toolkit/components/mozintl/MozIntlHelper.cpp @@ -0,0 +1,115 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode:nil; c-basic-offset: 2 -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "MozIntlHelper.h" +#include "nsBidiUtils.h" +#include "nsJSUtils.h" +#include "jsapi.h" +#include "js/experimental/Intl.h" // JS::AddMozDateTimeFormatConstructor +#include "js/PropertyAndElement.h" // JS_DefineFunctions +#include "js/PropertySpec.h" +#include "js/Wrapper.h" + +using namespace mozilla; + +NS_IMPL_ISUPPORTS(MozIntlHelper, mozIMozIntlHelper) + +MozIntlHelper::MozIntlHelper() = default; + +MozIntlHelper::~MozIntlHelper() = default; + +static nsresult AddFunctions(JSContext* cx, JS::Handle val, + const JSFunctionSpec* funcs) { + if (!val.isObject()) { + return NS_ERROR_INVALID_ARG; + } + + // We might be adding functions to a Window. + JS::Rooted realIntlObj( + cx, js::CheckedUnwrapDynamic(&val.toObject(), cx)); + if (!realIntlObj) { + return NS_ERROR_INVALID_ARG; + } + + JSAutoRealm ar(cx, realIntlObj); + + if (!JS_DefineFunctions(cx, realIntlObj, funcs)) { + return NS_ERROR_FAILURE; + } + + return NS_OK; +} + +NS_IMETHODIMP +MozIntlHelper::AddGetCalendarInfo(JS::Handle val, JSContext* cx) { + static const JSFunctionSpec funcs[] = { + JS_SELF_HOSTED_FN("getCalendarInfo", "Intl_getCalendarInfo", 1, 0), + JS_FS_END}; + + return AddFunctions(cx, val, funcs); +} + +NS_IMETHODIMP +MozIntlHelper::AddDateTimeFormatConstructor(JS::Handle val, + JSContext* cx) { + if (!val.isObject()) { + return NS_ERROR_INVALID_ARG; + } + + // We might be adding this constructor to a Window + JS::Rooted realIntlObj( + cx, js::CheckedUnwrapDynamic(&val.toObject(), cx)); + if (!realIntlObj) { + return NS_ERROR_INVALID_ARG; + } + + JSAutoRealm ar(cx, realIntlObj); + + if (!JS::AddMozDateTimeFormatConstructor(cx, realIntlObj)) { + return NS_ERROR_FAILURE; + } + + return NS_OK; +} + +NS_IMETHODIMP +MozIntlHelper::AddDisplayNamesConstructor(JS::Handle val, + JSContext* cx) { + if (!val.isObject()) { + return NS_ERROR_INVALID_ARG; + } + + // We might be adding this constructor to a Window + JS::Rooted realIntlObj( + cx, js::CheckedUnwrapDynamic(&val.toObject(), cx)); + if (!realIntlObj) { + return NS_ERROR_INVALID_ARG; + } + + JSAutoRealm ar(cx, realIntlObj); + + if (!JS::AddMozDisplayNamesConstructor(cx, realIntlObj)) { + return NS_ERROR_FAILURE; + } + + return NS_OK; +} + +NS_IMETHODIMP +MozIntlHelper::StringHasRTLChars(JS::Handle str, JSContext* cx, + bool* res) { + if (!str.isString()) { + return NS_ERROR_INVALID_ARG; + } + + nsAutoJSString string; + if (!string.init(cx, str)) { + return NS_ERROR_FAILURE; + } + + *res = HasRTLChars( + Span(static_cast(string.get()), string.Length())); + return NS_OK; +} -- cgit v1.2.3