]> git.saurik.com Git - apple/icu.git/blame - icuSources/common/uinit.cpp
ICU-531.30.tar.gz
[apple/icu.git] / icuSources / common / uinit.cpp
CommitLineData
374ca955
A
1/*
2******************************************************************************
57a6839d
A
3* Copyright (C) 2001-2013, International Business Machines
4* Corporation and others. All Rights Reserved.
374ca955 5******************************************************************************
57a6839d 6* file name: uinit.cpp
374ca955
A
7* encoding: US-ASCII
8* tab size: 8 (not used)
9* indentation:4
10*
11* created on: 2001July05
12* created by: George Rhoten
13*/
14
15#include "unicode/utypes.h"
729e4ab9 16#include "unicode/icuplug.h"
374ca955 17#include "unicode/uclean.h"
729e4ab9
A
18#include "cmemory.h"
19#include "icuplugimp.h"
57a6839d 20#include "ucln_cmn.h"
73c04bcf 21#include "ucnv_io.h"
57a6839d 22#include "umutex.h"
729e4ab9 23#include "utracimp.h"
374ca955 24
57a6839d
A
25U_NAMESPACE_BEGIN
26
27static UInitOnce gICUInitOnce = U_INITONCE_INITIALIZER;
28
29static UBool U_CALLCONV uinit_cleanup() {
30 gICUInitOnce.reset();
31 return TRUE;
32}
33
51004dcb 34static void U_CALLCONV
57a6839d 35initData(UErrorCode &status)
51004dcb 36{
57a6839d
A
37 /* initialize plugins */
38 uplug_init(&status);
39
40#if !UCONFIG_NO_CONVERSION
73c04bcf
A
41 /*
42 * 2005-may-02
43 *
44 * ICU4C 3.4 (jitterbug 4497) hardcodes the data for Unicode character
45 * properties for APIs that want to be fast.
46 * Therefore, we need not load them here nor check for errors.
47 * Instead, we load the converter alias table to see if any ICU data
48 * is available.
49 * Users should really open the service objects they need and check
50 * for errors there, to make sure that the actual items they need are
51 * available.
52 */
57a6839d 53 ucnv_io_countKnownConverters(&status);
73c04bcf 54#endif
57a6839d 55 ucln_common_registerCleanup(UCLN_COMMON_UINIT, uinit_cleanup);
51004dcb
A
56}
57
57a6839d
A
58U_NAMESPACE_END
59
60U_NAMESPACE_USE
61
51004dcb
A
62/*
63 * ICU Initialization Function. Need not be called.
64 */
65U_CAPI void U_EXPORT2
66u_init(UErrorCode *status) {
67 UTRACE_ENTRY_OC(UTRACE_U_INIT);
57a6839d 68 umtx_initOnce(gICUInitOnce, &initData, *status);
374ca955
A
69 UTRACE_EXIT_STATUS(*status);
70}