icu_util.cc 2.09 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 11 12
#endif

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

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

18 19 20 21
#define ICU_UTIL_DATA_FILE   0
#define ICU_UTIL_DATA_SHARED 1
#define ICU_UTIL_DATA_STATIC 2

22 23 24 25 26 27
#define ICU_UTIL_DATA_SYMBOL "icudt" U_ICU_VERSION_SHORT "_dat"
#define ICU_UTIL_DATA_SHARED_MODULE_NAME "icudt.dll"
#endif

namespace v8 {

28 29
namespace internal {

30
#if defined(V8_I18N_SUPPORT) && (ICU_UTIL_DATA_IMPL == ICU_UTIL_DATA_FILE)
31 32 33 34 35 36 37 38 39 40
namespace {
char* g_icu_data_ptr = NULL;

void free_icu_data_ptr() {
  delete[] g_icu_data_ptr;
}

}  // namespace
#endif

41 42 43 44 45
bool InitializeICU(const char* icu_data_file) {
#if !defined(V8_I18N_SUPPORT)
  return true;
#else
#if ICU_UTIL_DATA_IMPL == ICU_UTIL_DATA_SHARED
46 47 48 49 50 51 52 53 54 55
  // 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);
  return err == U_ZERO_ERROR;
56
#elif ICU_UTIL_DATA_IMPL == ICU_UTIL_DATA_STATIC
57 58
  // Mac/Linux bundle the ICU data in.
  return true;
59 60 61
#elif ICU_UTIL_DATA_IMPL == ICU_UTIL_DATA_FILE
  if (!icu_data_file) return false;

62 63
  if (g_icu_data_ptr) return true;

64 65 66 67 68 69 70
  FILE* inf = fopen(icu_data_file, "rb");
  if (!inf) return false;

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

71 72 73 74
  g_icu_data_ptr = new char[size];
  if (fread(g_icu_data_ptr, 1, size, inf) != size) {
    delete[] g_icu_data_ptr;
    g_icu_data_ptr = NULL;
75 76 77 78
    fclose(inf);
    return false;
  }
  fclose(inf);
79 80 81

  atexit(free_icu_data_ptr);

82
  UErrorCode err = U_ZERO_ERROR;
83
  udata_setCommonData(reinterpret_cast<void*>(g_icu_data_ptr), &err);
84 85
  return err == U_ZERO_ERROR;
#endif
86 87 88
#endif
}

89 90
}  // namespace internal
}  // namespace v8