icu_util.cc 3.06 KB
Newer Older
1
// Copyright 2013 the V8 project authors. All rights reserved.
2 3
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
4

5
#include "src/icu_util.h"
6

7
#if defined(_WIN32)
8
#include <windows.h>
9 10
#endif

11
#if defined(V8_INTL_SUPPORT)
12
#include <stdio.h>
13
#include <stdlib.h>
14 15 16 17

#include "unicode/putil.h"
#include "unicode/udata.h"

18
#include "src/base/build_config.h"
19 20
#include "src/base/file-utils.h"

21 22 23 24
#define ICU_UTIL_DATA_FILE   0
#define ICU_UTIL_DATA_SHARED 1
#define ICU_UTIL_DATA_STATIC 2

25 26 27 28 29 30
#define ICU_UTIL_DATA_SYMBOL "icudt" U_ICU_VERSION_SHORT "_dat"
#define ICU_UTIL_DATA_SHARED_MODULE_NAME "icudt.dll"
#endif

namespace v8 {

31 32
namespace internal {

33
#if defined(V8_INTL_SUPPORT) && (ICU_UTIL_DATA_IMPL == ICU_UTIL_DATA_FILE)
34
namespace {
35
char* g_icu_data_ptr = nullptr;
36 37 38 39 40 41 42 43

void free_icu_data_ptr() {
  delete[] g_icu_data_ptr;
}

}  // namespace
#endif

44 45
bool InitializeICUDefaultLocation(const char* exec_path,
                                  const char* icu_data_file) {
46
#if !defined(V8_INTL_SUPPORT)
47 48 49 50 51 52 53
  return true;
#else
#if ICU_UTIL_DATA_IMPL == ICU_UTIL_DATA_FILE
  if (icu_data_file) {
    return InitializeICU(icu_data_file);
  }
  char* icu_data_file_default;
54
#if defined(V8_TARGET_LITTLE_ENDIAN)
55
  base::RelativePath(&icu_data_file_default, exec_path, "icudtl.dat");
56
#elif defined(V8_TARGET_BIG_ENDIAN)
57
  base::RelativePath(&icu_data_file_default, exec_path, "icudtb.dat");
58 59 60
#else
#error Unknown byte ordering
#endif
61 62 63 64
  bool result = InitializeICU(icu_data_file_default);
  free(icu_data_file_default);
  return result;
#else
65
  return InitializeICU(nullptr);
66 67 68 69
#endif
#endif
}

70
bool InitializeICU(const char* icu_data_file) {
71
#if !defined(V8_INTL_SUPPORT)
72 73 74
  return true;
#else
#if ICU_UTIL_DATA_IMPL == ICU_UTIL_DATA_SHARED
75 76 77 78 79 80 81 82 83
  // We expect to find the ICU data module alongside the current module.
  HMODULE module = LoadLibraryA(ICU_UTIL_DATA_SHARED_MODULE_NAME);
  if (!module) return false;

  FARPROC addr = GetProcAddress(module, ICU_UTIL_DATA_SYMBOL);
  if (!addr) return false;

  UErrorCode err = U_ZERO_ERROR;
  udata_setCommonData(reinterpret_cast<void*>(addr), &err);
84 85
  // Never try to load ICU data from files.
  udata_setFileAccess(UDATA_ONLY_PACKAGES, &err);
86
  return err == U_ZERO_ERROR;
87
#elif ICU_UTIL_DATA_IMPL == ICU_UTIL_DATA_STATIC
88 89
  // Mac/Linux bundle the ICU data in.
  return true;
90 91 92
#elif ICU_UTIL_DATA_IMPL == ICU_UTIL_DATA_FILE
  if (!icu_data_file) return false;

93 94
  if (g_icu_data_ptr) return true;

95 96 97 98 99 100 101
  FILE* inf = fopen(icu_data_file, "rb");
  if (!inf) return false;

  fseek(inf, 0, SEEK_END);
  size_t size = ftell(inf);
  rewind(inf);

102 103 104
  g_icu_data_ptr = new char[size];
  if (fread(g_icu_data_ptr, 1, size, inf) != size) {
    delete[] g_icu_data_ptr;
105
    g_icu_data_ptr = nullptr;
106 107 108 109
    fclose(inf);
    return false;
  }
  fclose(inf);
110 111 112

  atexit(free_icu_data_ptr);

113
  UErrorCode err = U_ZERO_ERROR;
114
  udata_setCommonData(reinterpret_cast<void*>(g_icu_data_ptr), &err);
115 116
  // Never try to load ICU data from files.
  udata_setFileAccess(UDATA_ONLY_PACKAGES, &err);
117 118
  return err == U_ZERO_ERROR;
#endif
119 120 121
#endif
}

122 123
}  // namespace internal
}  // namespace v8