js-locale.h 2.88 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
// Copyright 2018 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef V8_INTL_SUPPORT
#error Internationalization is expected to be enabled.
#endif  // V8_INTL_SUPPORT

#ifndef V8_OBJECTS_JS_LOCALE_H_
#define V8_OBJECTS_JS_LOCALE_H_

12
#include "src/execution/isolate.h"
13
#include "src/handles/global-handles.h"
14
#include "src/heap/factory.h"
15
#include "src/objects/managed.h"
16
#include "src/objects/objects.h"
17 18 19 20

// Has to be the last include (doesn't have include guards):
#include "src/objects/object-macros.h"

21 22 23 24
namespace U_ICU_NAMESPACE {
class Locale;
}

25 26 27 28 29
namespace v8 {
namespace internal {

class JSLocale : public JSObject {
 public:
30
  // Creates locale object with properties derived from input locale string
31
  // and options.
32 33 34
  static MaybeHandle<JSLocale> New(Isolate* isolate, Handle<Map> map,
                                   Handle<String> locale,
                                   Handle<JSReceiver> options);
35 36
  static Handle<String> Maximize(Isolate* isolate, String locale);
  static Handle<String> Minimize(Isolate* isolate, String locale);
37

38 39 40 41 42 43 44 45 46 47 48 49
  static Handle<Object> Language(Isolate* isolate, Handle<JSLocale> locale);
  static Handle<Object> Script(Isolate* isolate, Handle<JSLocale> locale);
  static Handle<Object> Region(Isolate* isolate, Handle<JSLocale> locale);
  static Handle<String> BaseName(Isolate* isolate, Handle<JSLocale> locale);
  static Handle<Object> Calendar(Isolate* isolate, Handle<JSLocale> locale);
  static Handle<Object> CaseFirst(Isolate* isolate, Handle<JSLocale> locale);
  static Handle<Object> Collation(Isolate* isolate, Handle<JSLocale> locale);
  static Handle<Object> HourCycle(Isolate* isolate, Handle<JSLocale> locale);
  static Handle<Object> Numeric(Isolate* isolate, Handle<JSLocale> locale);
  static Handle<Object> NumberingSystem(Isolate* isolate,
                                        Handle<JSLocale> locale);
  static Handle<String> ToString(Isolate* isolate, Handle<JSLocale> locale);
50
  static std::string ToString(Handle<JSLocale> locale);
51

52 53 54
  // Help function to validate locale by other Intl objects.
  static bool StartsWithUnicodeLanguageId(const std::string& value);

55 56 57 58
  // Help function to check well-formed
  // "(3*8alphanum) *("-" (3*8alphanum)) sequence" sequence
  static bool Is38AlphaNumList(const std::string& value);

59 60 61
  // Help function to check well-formed "3alpha"
  static bool Is3Alpha(const std::string& value);

62
  DECL_CAST(JSLocale)
63

64
  DECL_ACCESSORS(icu_locale, Managed<icu::Locale>)
65

66 67 68 69
  DECL_PRINTER(JSLocale)
  DECL_VERIFIER(JSLocale)

  // Layout description.
70
  DEFINE_FIELD_OFFSET_CONSTANTS(JSObject::kHeaderSize,
71
                                TORQUE_GENERATED_JS_LOCALE_FIELDS)
72

73
  OBJECT_CONSTRUCTORS(JSLocale, JSObject);
74 75 76 77 78
};

}  // namespace internal
}  // namespace v8

79 80
#include "src/objects/object-macros-undef.h"

81
#endif  // V8_OBJECTS_JS_LOCALE_H_