js-locale.h 2.85 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
namespace U_ICU_NAMESPACE {
class Locale;
23
}  // namespace U_ICU_NAMESPACE
24

25 26 27
namespace v8 {
namespace internal {

28
class JSLocale : public TorqueGeneratedJSLocale<JSLocale, JSObject> {
29
 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 37 38 39

  static MaybeHandle<JSLocale> Maximize(Isolate* isolate,
                                        Handle<JSLocale> locale);
  static MaybeHandle<JSLocale> Minimize(Isolate* isolate,
                                        Handle<JSLocale> locale);
40

41 42 43 44 45 46 47 48 49 50 51 52
  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);
53
  static std::string ToString(Handle<JSLocale> locale);
54

55 56 57
  // Help function to validate locale by other Intl objects.
  static bool StartsWithUnicodeLanguageId(const std::string& value);

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

62 63 64
  // Help function to check well-formed "3alpha"
  static bool Is3Alpha(const std::string& value);

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

67 68
  DECL_PRINTER(JSLocale)

69
  TQ_OBJECT_CONSTRUCTORS(JSLocale)
70 71 72 73 74
};

}  // namespace internal
}  // namespace v8

75 76
#include "src/objects/object-macros-undef.h"

77
#endif  // V8_OBJECTS_JS_LOCALE_H_