blob: 8194db58f0862824f23553f1a4b56e9d82993e02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* Copyright 2007 Google Inc. All Rights Reserved.
**/
#include <limits.h>
#include <unistd.h>
#include "unicode/udata.h"
/*
** This function attempts to load the ICU data tables from a data file.
** Returns 0 on failure, nonzero on success.
** This a hack job of icu_utils.cc:Initialize(). It's Chrome-specific code.
*/
int sqlite_shell_init_icu() {
char bin_dir[PATH_MAX + 1];
int bin_dir_size = readlink("/proc/self/exe", bin_dir, PATH_MAX);
if (bin_dir_size < 0 || bin_dir_size > PATH_MAX)
return 0;
bin_dir[bin_dir_size] = 0;;
u_setDataDirectory(bin_dir);
// Only look for the packaged data file;
// the default behavior is to look for individual files.
UErrorCode err = U_ZERO_ERROR;
udata_setFileAccess(UDATA_ONLY_PACKAGES, &err);
return err == U_ZERO_ERROR;
}
|