// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ******************************************************************************* * * Copyright (C) 2003-2013, International Business Machines * Corporation and others. All Rights Reserved. * ******************************************************************************* * file name: utrace.h * encoding: UTF-8 * tab size: 8 (not used) * indentation:4 * * created on: 2003aug06 * created by: Markus W. Scherer * * Definitions for ICU tracing/logging. * */ #ifndef __UTRACE_H__ #define __UTRACE_H__ #include <stdarg.h> #include "unicode/utypes.h" /** * \file * \brief C API: Definitions for ICU tracing/logging. * * This provides API for debugging the internals of ICU without the use of * a traditional debugger. * * By default, tracing is disabled in ICU. If you need to debug ICU with * tracing, please compile ICU with the --enable-tracing configure option. */ U_CDECL_BEGIN /** * Trace severity levels. Higher levels increase the verbosity of the trace output. * @see utrace_setLevel * @stable ICU 2.8 */ typedef enum UTraceLevel { /** Disable all tracing @stable ICU 2.8*/ UTRACE_OFF=-1, /** Trace error conditions only @stable ICU 2.8*/ UTRACE_ERROR=0, /** Trace errors and warnings @stable ICU 2.8*/ UTRACE_WARNING=3, /** Trace opens and closes of ICU services @stable ICU 2.8*/ UTRACE_OPEN_CLOSE=5, /** Trace an intermediate number of ICU operations @stable ICU 2.8*/ UTRACE_INFO=7, /** Trace the maximum number of ICU operations @stable ICU 2.8*/ UTRACE_VERBOSE=9 } UTraceLevel; /** * These are the ICU functions that will be traced when tracing is enabled. * @stable ICU 2.8 */ typedef enum UTraceFunctionNumber { UTRACE_FUNCTION_START=0, UTRACE_U_INIT=UTRACE_FUNCTION_START, UTRACE_U_CLEANUP, #ifndef U_HIDE_DEPRECATED_API /** * One more than the highest normal collation trace location. * @deprecated ICU 58 The numeric value may change over time, see ICU ticket #12420. */ UTRACE_FUNCTION_LIMIT, #endif // U_HIDE_DEPRECATED_API UTRACE_CONVERSION_START=0x1000, UTRACE_UCNV_OPEN=UTRACE_CONVERSION_START, UTRACE_UCNV_OPEN_PACKAGE, UTRACE_UCNV_OPEN_ALGORITHMIC, UTRACE_UCNV_CLONE, UTRACE_UCNV_CLOSE, UTRACE_UCNV_FLUSH_CACHE, UTRACE_UCNV_LOAD, UTRACE_UCNV_UNLOAD, #ifndef U_HIDE_DEPRECATED_API /** * One more than the highest normal collation trace location. * @deprecated ICU 58 The numeric value may change over time, see ICU ticket #12420. */ UTRACE_CONVERSION_LIMIT, #endif // U_HIDE_DEPRECATED_API UTRACE_COLLATION_START=0x2000, UTRACE_UCOL_OPEN=UTRACE_COLLATION_START, UTRACE_UCOL_CLOSE, UTRACE_UCOL_STRCOLL, UTRACE_UCOL_GET_SORTKEY, UTRACE_UCOL_GETLOCALE, UTRACE_UCOL_NEXTSORTKEYPART, UTRACE_UCOL_STRCOLLITER, UTRACE_UCOL_OPEN_FROM_SHORT_STRING, UTRACE_UCOL_STRCOLLUTF8, /**< @stable ICU 50 */ #ifndef U_HIDE_DEPRECATED_API /** * One more than the highest normal collation trace location. * @deprecated ICU 58 The numeric value may change over time, see ICU ticket #12420. */ UTRACE_COLLATION_LIMIT #endif // U_HIDE_DEPRECATED_API } UTraceFunctionNumber; /** * Setter for the trace level. * @param traceLevel A UTraceLevel value. * @stable ICU 2.8 */ U_STABLE void U_EXPORT2 utrace_setLevel(int32_t traceLevel); /** * Getter for the trace level. * @return The UTraceLevel value being used by ICU. * @stable ICU 2.8 */ U_STABLE int32_t U_EXPORT2 utrace_getLevel(void); /* Trace function pointers types ----------------------------- */ /** * Type signature for the trace function to be called when entering a function. * @param context value supplied at the time the trace functions are set. * @param fnNumber Enum value indicating the ICU function being entered. * @stable ICU 2.8 */ typedef void U_CALLCONV UTraceEntry(const void *context, int32_t fnNumber); /** * Type signature for the trace function to be called when exiting from a function. * @param context value supplied at the time the trace functions are set. * @param fnNumber Enum value indicating the ICU function being exited. * @param fmt A formatting string that describes the number and types * of arguments included with the variable args. The fmt * string has the same form as the utrace_vformat format * string. * @param args A variable arguments list. Contents are described by * the fmt parameter. * @see utrace_vformat * @stable ICU 2.8 */ typedef void U_CALLCONV UTraceExit(const void *context, int32_t fnNumber, const char *fmt, va_list args); /** * Type signature for the trace function to be called from within an ICU function * to display data or messages. * @param context value supplied at the time the trace functions are set. * @param fnNumber Enum value indicating the ICU function being exited. * @param level The current tracing level * @param fmt A format string describing the tracing data that is supplied * as variable args * @param args The data being traced, passed as variable args. * @stable ICU 2.8 */ typedef void U_CALLCONV UTraceData(const void *context, int32_t fnNumber, int32_t level, const char *fmt, va_list args); /** * Set ICU Tracing functions. Installs application-provided tracing * functions into ICU. After doing this, subsequent ICU operations * will call back to the installed functions, providing a trace * of the use of ICU. Passing a NULL pointer for a tracing function * is allowed, and inhibits tracing action at points where that function * would be called. * <p> * Tracing and Threads: Tracing functions are global to a process, and * will be called in response to ICU operations performed by any * thread. If tracing of an individual thread is desired, the * tracing functions must themselves filter by checking that the * current thread is the desired thread. * * @param context an uninterpretted pointer. Whatever is passed in * here will in turn be passed to each of the tracing * functions UTraceEntry, UTraceExit and UTraceData. * ICU does not use or alter this pointer. * @param e Callback function to be called on entry to a * a traced ICU function. * @param x Callback function to be called on exit from a * traced ICU function. * @param d Callback function to be called from within a * traced ICU function, for the purpose of providing * data to the trace. * * @stable ICU 2.8 */ U_STABLE void U_EXPORT2 utrace_setFunctions(const void *context, UTraceEntry *e, UTraceExit *x, UTraceData *d); /** * Get the currently installed ICU tracing functions. Note that a null function * pointer will be returned if no trace function has been set. * * @param context The currently installed tracing context. * @param e The currently installed UTraceEntry function. * @param x The currently installed UTraceExit function. * @param d The currently installed UTraceData function. * @stable ICU 2.8 */ U_STABLE void U_EXPORT2 utrace_getFunctions(const void **context, UTraceEntry **e, UTraceExit **x, UTraceData **d); /* * * ICU trace format string syntax * * Format Strings are passed to UTraceData functions, and define the * number and types of the trace data being passed on each call. * * The UTraceData function, which is supplied by the application, * not by ICU, can either forward the trace data (passed via * varargs) and the format string back to ICU for formatting into * a displayable string, or it can interpret the format itself, * and do as it wishes with the trace data. * * * Goals for the format string * - basic data output * - easy to use for trace programmer * - sufficient provision for data types for trace output readability * - well-defined types and binary portable APIs * * Non-goals * - printf compatibility * - fancy formatting * - argument reordering and other internationalization features * * ICU trace format strings contain plain text with argument inserts, * much like standard printf format strings. * Each insert begins with a '%', then optionally contains a 'v', * then exactly one type character. * Two '%' in a row represent a '%' instead of an insert. * The trace format strings need not have \n at the end. * * * Types * ----- * * Type characters: * - c A char character in the default codepage. * - s A NUL-terminated char * string in the default codepage. * - S A UChar * string. Requires two params, (ptr, length). Length=-1 for nul term. * - b A byte (8-bit integer). * - h A 16-bit integer. Also a 16 bit Unicode code unit. * - d A 32-bit integer. Also a 20 bit Unicode code point value. * - l A 64-bit integer. * - p A data pointer. * * Vectors * ------- * * If the 'v' is not specified, then one item of the specified type * is passed in. * If the 'v' (for "vector") is specified, then a vector of items of the * specified type is passed in, via a pointer to the first item * and an int32_t value for the length of the vector. * Length==-1 means zero or NUL termination. Works for vectors of all types. * * Note: %vS is a vector of (UChar *) strings. The strings must * be nul terminated as there is no way to provide a * separate length parameter for each string. The length * parameter (required for all vectors) is the number of * strings, not the length of the strings. * * Examples * -------- * * These examples show the parameters that will be passed to an application's * UTraceData() function for various formats. * * - the precise formatting is up to the application! * - the examples use type casts for arguments only to _show_ the types of * arguments without needing variable declarations in the examples; * the type casts will not be necessary in actual code * * UTraceDataFunc(context, fnNumber, level, * "There is a character %c in the string %s.", // Format String * (char)c, (const char *)s); // varargs parameters * -> There is a character 0x42 'B' in the string "Bravo". * * UTraceDataFunc(context, fnNumber, level, * "Vector of bytes %vb vector of chars %vc", * (const uint8_t *)bytes, (int32_t)bytesLength, * (const char *)chars, (int32_t)charsLength); * -> Vector of bytes * 42 63 64 3f [4] * vector of chars * "Bcd?"[4] * * UTraceDataFunc(context, fnNumber, level, * "An int32_t %d and a whole bunch of them %vd", * (int32_t)-5, (const int32_t *)ints, (int32_t)intsLength); * -> An int32_t 0xfffffffb and a whole bunch of them * fffffffb 00000005 0000010a [3] * */ /** * Trace output Formatter. An application's UTraceData tracing functions may call * back to this function to format the trace output in a * human readable form. Note that a UTraceData function may choose * to not format the data; it could, for example, save it in * in the raw form it was received (more compact), leaving * formatting for a later trace analyis tool. * @param outBuf pointer to a buffer to receive the formatted output. Output * will be nul terminated if there is space in the buffer - * if the length of the requested output < the output buffer size. * @param capacity Length of the output buffer. * @param indent Number of spaces to indent the output. Intended to allow * data displayed from nested functions to be indented for readability. * @param fmt Format specification for the data to output * @param args Data to be formatted. * @return Length of formatted output, including the terminating NUL. * If buffer capacity is insufficient, the required capacity is returned. * @stable ICU 2.8 */ U_STABLE int32_t U_EXPORT2 utrace_vformat(char *outBuf, int32_t capacity, int32_t indent, const char *fmt, va_list args); /** * Trace output Formatter. An application's UTraceData tracing functions may call * this function to format any additional trace data, beyond that * provided by default, in human readable form with the same * formatting conventions used by utrace_vformat(). * @param outBuf pointer to a buffer to receive the formatted output. Output * will be nul terminated if there is space in the buffer - * if the length of the requested output < the output buffer size. * @param capacity Length of the output buffer. * @param indent Number of spaces to indent the output. Intended to allow * data displayed from nested functions to be indented for readability. * @param fmt Format specification for the data to output * @param ... Data to be formatted. * @return Length of formatted output, including the terminating NUL. * If buffer capacity is insufficient, the required capacity is returned. * @stable ICU 2.8 */ U_STABLE int32_t U_EXPORT2 utrace_format(char *outBuf, int32_t capacity, int32_t indent, const char *fmt, ...); /* Trace function numbers --------------------------------------------------- */ /** * Get the name of a function from its trace function number. * * @param fnNumber The trace number for an ICU function. * @return The name string for the function. * * @see UTraceFunctionNumber * @stable ICU 2.8 */ U_STABLE const char * U_EXPORT2 utrace_functionName(int32_t fnNumber); U_CDECL_END #endif
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
alphaindex.h | File | 26.27 KB | 0644 |
|
appendable.h | File | 8.43 KB | 0644 |
|
basictz.h | File | 8.84 KB | 0644 |
|
brkiter.h | File | 27.54 KB | 0644 |
|
bytestream.h | File | 9.59 KB | 0644 |
|
bytestrie.h | File | 19.26 KB | 0644 |
|
bytestriebuilder.h | File | 7.1 KB | 0644 |
|
calendar.h | File | 105.35 KB | 0644 |
|
caniter.h | File | 7.35 KB | 0644 |
|
casemap.h | File | 25.31 KB | 0644 |
|
char16ptr.h | File | 7.29 KB | 0644 |
|
chariter.h | File | 24 KB | 0644 |
|
choicfmt.h | File | 23.85 KB | 0644 |
|
coleitr.h | File | 13.7 KB | 0644 |
|
coll.h | File | 55.61 KB | 0644 |
|
compactdecimalformat.h | File | 16.58 KB | 0644 |
|
curramt.h | File | 3.69 KB | 0644 |
|
currpinf.h | File | 7.08 KB | 0644 |
|
currunit.h | File | 3.49 KB | 0644 |
|
datefmt.h | File | 40.18 KB | 0644 |
|
dbbi.h | File | 1.11 KB | 0644 |
|
dcfmtsym.h | File | 17.66 KB | 0644 |
|
decimfmt.h | File | 89.73 KB | 0644 |
|
docmain.h | File | 6.56 KB | 0644 |
|
dtfmtsym.h | File | 37.64 KB | 0644 |
|
dtintrv.h | File | 3.76 KB | 0644 |
|
dtitvfmt.h | File | 42.87 KB | 0644 |
|
dtitvinf.h | File | 18.46 KB | 0644 |
|
dtptngen.h | File | 23.72 KB | 0644 |
|
dtrule.h | File | 8.62 KB | 0644 |
|
edits.h | File | 15.54 KB | 0644 |
|
enumset.h | File | 2.05 KB | 0644 |
|
errorcode.h | File | 4.78 KB | 0644 |
|
fieldpos.h | File | 8.63 KB | 0644 |
|
filteredbrk.h | File | 5.46 KB | 0644 |
|
fmtable.h | File | 24.39 KB | 0644 |
|
format.h | File | 12.44 KB | 0644 |
|
fpositer.h | File | 3.14 KB | 0644 |
|
gender.h | File | 3.18 KB | 0644 |
|
gregocal.h | File | 31.57 KB | 0644 |
|
icudataver.h | File | 1.03 KB | 0644 |
|
icuplug.h | File | 11.86 KB | 0644 |
|
idna.h | File | 12.63 KB | 0644 |
|
listformatter.h | File | 4.98 KB | 0644 |
|
localpointer.h | File | 18.19 KB | 0644 |
|
locdspnm.h | File | 7.05 KB | 0644 |
|
locid.h | File | 31.4 KB | 0644 |
|
measfmt.h | File | 11.25 KB | 0644 |
|
measunit.h | File | 37.74 KB | 0644 |
|
measure.h | File | 4.26 KB | 0644 |
|
messagepattern.h | File | 33.64 KB | 0644 |
|
msgfmt.h | File | 43.16 KB | 0644 |
|
normalizer2.h | File | 33.97 KB | 0644 |
|
normlzr.h | File | 30.74 KB | 0644 |
|
nounit.h | File | 2.6 KB | 0644 |
|
numberformatter.h | File | 64.98 KB | 0644 |
|
numfmt.h | File | 47.76 KB | 0644 |
|
numsys.h | File | 6.73 KB | 0644 |
|
parseerr.h | File | 3.08 KB | 0644 |
|
parsepos.h | File | 5.45 KB | 0644 |
|
platform.h | File | 27.71 KB | 0644 |
|
plurfmt.h | File | 25.66 KB | 0644 |
|
plurrule.h | File | 18.34 KB | 0644 |
|
ptypes.h | File | 3.47 KB | 0644 |
|
putil.h | File | 6.34 KB | 0644 |
|
rbbi.h | File | 27.09 KB | 0644 |
|
rbnf.h | File | 49.76 KB | 0644 |
|
rbtz.h | File | 15.47 KB | 0644 |
|
regex.h | File | 84.91 KB | 0644 |
|
region.h | File | 9.12 KB | 0644 |
|
reldatefmt.h | File | 14.3 KB | 0644 |
|
rep.h | File | 9.5 KB | 0644 |
|
resbund.h | File | 18.01 KB | 0644 |
|
schriter.h | File | 6.26 KB | 0644 |
|
scientificnumberformatter.h | File | 6.59 KB | 0644 |
|
search.h | File | 22.21 KB | 0644 |
|
selfmt.h | File | 14.24 KB | 0644 |
|
simpleformatter.h | File | 11.43 KB | 0644 |
|
simpletz.h | File | 45.24 KB | 0644 |
|
smpdtfmt.h | File | 70.09 KB | 0644 |
|
sortkey.h | File | 11.12 KB | 0644 |
|
std_string.h | File | 1015 B | 0644 |
|
strenum.h | File | 10.04 KB | 0644 |
|
stringoptions.h | File | 5.89 KB | 0644 |
|
stringpiece.h | File | 6.46 KB | 0644 |
|
stringtriebuilder.h | File | 15.2 KB | 0644 |
|
stsearch.h | File | 21.29 KB | 0644 |
|
symtable.h | File | 4.21 KB | 0644 |
|
tblcoll.h | File | 36.4 KB | 0644 |
|
timezone.h | File | 40.83 KB | 0644 |
|
tmunit.h | File | 3.29 KB | 0644 |
|
tmutamt.h | File | 4.8 KB | 0644 |
|
tmutfmt.h | File | 7.79 KB | 0644 |
|
translit.h | File | 54.53 KB | 0644 |
|
tzfmt.h | File | 42.81 KB | 0644 |
|
tznames.h | File | 16.79 KB | 0644 |
|
tzrule.h | File | 35.32 KB | 0644 |
|
tztrans.h | File | 6.07 KB | 0644 |
|
ubidi.h | File | 89.28 KB | 0644 |
|
ubiditransform.h | File | 12.71 KB | 0644 |
|
ubrk.h | File | 24.08 KB | 0644 |
|
ucal.h | File | 54.56 KB | 0644 |
|
ucasemap.h | File | 15.18 KB | 0644 |
|
ucat.h | File | 5.36 KB | 0644 |
|
uchar.h | File | 131.61 KB | 0644 |
|
ucharstrie.h | File | 21.06 KB | 0644 |
|
ucharstriebuilder.h | File | 7.14 KB | 0644 |
|
uchriter.h | File | 13.14 KB | 0644 |
|
uclean.h | File | 11.24 KB | 0644 |
|
ucnv.h | File | 83.06 KB | 0644 |
|
ucnv_cb.h | File | 6.59 KB | 0644 |
|
ucnv_err.h | File | 20.98 KB | 0644 |
|
ucnvsel.h | File | 6.14 KB | 0644 |
|
ucol.h | File | 61.36 KB | 0644 |
|
ucoleitr.h | File | 9.46 KB | 0644 |
|
uconfig.h | File | 11.91 KB | 0644 |
|
ucsdet.h | File | 14.67 KB | 0644 |
|
ucurr.h | File | 15.15 KB | 0644 |
|
udat.h | File | 60.13 KB | 0644 |
|
udata.h | File | 15.53 KB | 0644 |
|
udateintervalformat.h | File | 6.79 KB | 0644 |
|
udatpg.h | File | 24.11 KB | 0644 |
|
udisplaycontext.h | File | 5.89 KB | 0644 |
|
uenum.h | File | 7.9 KB | 0644 |
|
ufieldpositer.h | File | 4.36 KB | 0644 |
|
uformattable.h | File | 10.94 KB | 0644 |
|
ugender.h | File | 2 KB | 0644 |
|
uidna.h | File | 33.37 KB | 0644 |
|
uiter.h | File | 22.77 KB | 0644 |
|
uldnames.h | File | 10.45 KB | 0644 |
|
ulistformatter.h | File | 4.54 KB | 0644 |
|
uloc.h | File | 50.75 KB | 0644 |
|
ulocdata.h | File | 11.26 KB | 0644 |
|
umachine.h | File | 13.1 KB | 0644 |
|
umisc.h | File | 1.33 KB | 0644 |
|
umsg.h | File | 24.23 KB | 0644 |
|
unifilt.h | File | 3.63 KB | 0644 |
|
unifunct.h | File | 3.98 KB | 0644 |
|
unimatch.h | File | 6.04 KB | 0644 |
|
unirepl.h | File | 3.32 KB | 0644 |
|
uniset.h | File | 63.98 KB | 0644 |
|
unistr.h | File | 175.65 KB | 0644 |
|
unorm.h | File | 20.45 KB | 0644 |
|
unorm2.h | File | 24.66 KB | 0644 |
|
unum.h | File | 52.49 KB | 0644 |
|
unumsys.h | File | 7.14 KB | 0644 |
|
uobject.h | File | 10.72 KB | 0644 |
|
upluralrules.h | File | 6.77 KB | 0644 |
|
uregex.h | File | 72.05 KB | 0644 |
|
uregion.h | File | 9.84 KB | 0644 |
|
ureldatefmt.h | File | 12.22 KB | 0644 |
|
urename.h | File | 124.49 KB | 0644 |
|
urep.h | File | 5.38 KB | 0644 |
|
ures.h | File | 36.52 KB | 0644 |
|
uscript.h | File | 25.91 KB | 0644 |
|
usearch.h | File | 38.14 KB | 0644 |
|
uset.h | File | 39.91 KB | 0644 |
|
usetiter.h | File | 9.49 KB | 0644 |
|
ushape.h | File | 18 KB | 0644 |
|
uspoof.h | File | 64.9 KB | 0644 |
|
usprep.h | File | 8.13 KB | 0644 |
|
ustdio.h | File | 38.54 KB | 0644 |
|
ustream.h | File | 1.8 KB | 0644 |
|
ustring.h | File | 72.52 KB | 0644 |
|
ustringtrie.h | File | 3.15 KB | 0644 |
|
utext.h | File | 58.11 KB | 0644 |
|
utf.h | File | 7.86 KB | 0644 |
|
utf16.h | File | 22.49 KB | 0644 |
|
utf32.h | File | 763 B | 0644 |
|
utf8.h | File | 28.16 KB | 0644 |
|
utf_old.h | File | 43.78 KB | 0644 |
|
utmscale.h | File | 13.78 KB | 0644 |
|
utrace.h | File | 13.89 KB | 0644 |
|
utrans.h | File | 25.53 KB | 0644 |
|
utypes.h | File | 29.92 KB | 0644 |
|
uvernum.h | File | 5.69 KB | 0644 |
|
uversion.h | File | 6.4 KB | 0644 |
|
vtzone.h | File | 20.17 KB | 0644 |
|