mirror of
https://gitee.com/openharmony/arkcompiler_ets_runtime
synced 2024-11-27 20:20:52 +00:00
4a082f4f0b
Signed-off-by: linxiang <linxiang8@huawei.com> Change-Id: I20b5cf6245799839362b1999d3d9fb6955bf609a
104 lines
3.9 KiB
C++
104 lines
3.9 KiB
C++
/*
|
|
* Copyright (c) 2021-2022 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef ECMASCRIPT_JS_DISPLAYNAMES_H
|
|
#define ECMASCRIPT_JS_DISPLAYNAMES_H
|
|
|
|
#include "ecmascript/ecma_string.h"
|
|
#include "ecmascript/ecma_vm.h"
|
|
#include "ecmascript/ecma_macros.h"
|
|
#include "ecmascript/global_env.h"
|
|
#include "ecmascript/js_hclass.h"
|
|
#include "ecmascript/js_intl.h"
|
|
#include "ecmascript/js_locale.h"
|
|
#include "ecmascript/js_object.h"
|
|
#include "ecmascript/js_object.h"
|
|
#include "ecmascript/js_tagged_value.h"
|
|
#include "ecmascript/object_factory.h"
|
|
|
|
#include "unicode/locdspnm.h"
|
|
|
|
namespace panda::ecmascript {
|
|
enum class TypednsOption : uint8_t {
|
|
LANGUAGE = 0x01,
|
|
CALENDAR,
|
|
CURRENCY,
|
|
DATETIMEFIELD,
|
|
REGION,
|
|
SCRIPT,
|
|
UNDEFINED,
|
|
EXCEPTION
|
|
};
|
|
|
|
enum class StyOption : uint8_t {
|
|
LONG = 0x01,
|
|
SHORT,
|
|
NARROW,
|
|
EXCEPTION
|
|
};
|
|
|
|
enum class FallbackOption : uint8_t {
|
|
CODE = 0x01,
|
|
NONE,
|
|
EXCEPTION
|
|
};
|
|
|
|
class JSDisplayNames : public JSObject {
|
|
public:
|
|
CAST_CHECK(JSDisplayNames, IsJSDisplayNames);
|
|
|
|
static constexpr size_t LOCALE_OFFSET = JSObject::SIZE;
|
|
ACCESSORS(Locale, LOCALE_OFFSET, ICU_LOCALE_DISPPLAY_NAMES)
|
|
ACCESSORS(IcuLDN, ICU_LOCALE_DISPPLAY_NAMES, BIT_FIELD_OFFSET)
|
|
ACCESSORS_BIT_FIELD(BitField, BIT_FIELD_OFFSET, LAST_OFFSET)
|
|
DEFINE_ALIGN_SIZE(LAST_OFFSET);
|
|
|
|
// define BitField
|
|
static constexpr size_t TYPE_BITS = 4;
|
|
static constexpr size_t STYLE_BITS = 3;
|
|
static constexpr size_t FALL_BACK_BITS = 2;
|
|
FIRST_BIT_FIELD(BitField, Type, TypednsOption, TYPE_BITS)
|
|
NEXT_BIT_FIELD(BitField, Style, StyOption, STYLE_BITS, Type)
|
|
NEXT_BIT_FIELD(BitField, Fallback, FallbackOption, FALL_BACK_BITS, Style)
|
|
|
|
DECL_VISIT_OBJECT_FOR_JS_OBJECT(JSObject, LOCALE_OFFSET, BIT_FIELD_OFFSET)
|
|
DECL_DUMP()
|
|
|
|
icu::LocaleDisplayNames *GetIcuLocaleDisplayNames() const;
|
|
|
|
static void FreeIcuLocaleDisplayNames(void *pointer, [[maybe_unused]] void* hint);
|
|
|
|
static JSHandle<TaggedArray> GetAvailableLocales(JSThread *thread);
|
|
|
|
static void SetIcuLocaleDisplayNames(JSThread *thread, const JSHandle<JSDisplayNames> &displayNames,
|
|
icu::LocaleDisplayNames* icuPointer, const DeleteEntryPoint &callback);
|
|
|
|
// 12.1.1 CanonicalCodeForDisplayNames ( type, code )
|
|
static JSHandle<EcmaString> CanonicalCodeForDisplayNames(JSThread *thread,
|
|
const JSHandle<JSDisplayNames> &displayNames,
|
|
const TypednsOption &typeOpt,
|
|
const JSHandle<EcmaString> &code);
|
|
|
|
// 12.1.2 InitializeDisplayNames ( displaynames, locales, options )
|
|
static JSHandle<JSDisplayNames> InitializeDisplayNames(JSThread *thread,
|
|
const JSHandle<JSDisplayNames> &displayNames,
|
|
const JSHandle<JSTaggedValue> &locales,
|
|
const JSHandle<JSTaggedValue> &options);
|
|
|
|
static void ResolvedOptions(JSThread *thread, const JSHandle<JSDisplayNames> &displayNames,
|
|
const JSHandle<JSObject> &options);
|
|
};
|
|
} // namespace panda::ecmascript
|
|
#endif // ECMASCRIPT_JS_DISPLAYNAMES_H
|