ICU 64.2
64.2
|
C API: ICU Plugin API. More...
#include "unicode/utypes.h"
Go to the source code of this file.
Macros | |
#define | UPLUG_TOKEN 0x54762486 |
Random Token to identify a valid ICU plugin. More... | |
#define | UPLUG_NAME_MAX 100 |
Max width of names, symbols, and configuration strings. More... | |
Typedefs | |
typedef uint32_t | UPlugTokenReturn |
Return value from a plugin entrypoint. More... | |
typedef UPlugTokenReturn() | UPlugEntrypoint(UPlugData *plug, UPlugReason reason, UErrorCode *status) |
Entrypoint for an ICU plugin. More... | |
typedef struct UPlugData | UPlugData |
Enumerations | |
enum | UPlugReason { UPLUG_REASON_QUERY = 0, UPLUG_REASON_LOAD = 1, UPLUG_REASON_UNLOAD = 2, UPLUG_REASON_COUNT } |
Reason code for the entrypoint's call. More... | |
enum | UPlugLevel { UPLUG_LEVEL_INVALID = 0, UPLUG_LEVEL_UNKNOWN = 1, UPLUG_LEVEL_LOW = 2, UPLUG_LEVEL_HIGH = 3, UPLUG_LEVEL_COUNT } |
Level of plugin loading INITIAL: UNKNOWN QUERY: INVALID -> { LOW | HIGH } ERR -> INVALID. More... | |
Functions | |
void | uplug_setPlugNoUnload (UPlugData *plug, UBool dontUnload) |
Request that this plugin not be unloaded at cleanup time. More... | |
void | uplug_setPlugLevel (UPlugData *plug, UPlugLevel level) |
Set the level of this plugin. More... | |
UPlugLevel | uplug_getPlugLevel (UPlugData *plug) |
Get the level of this plugin. More... | |
UPlugLevel | uplug_getCurrentLevel (void) |
Get the lowest level of plug which can currently load. More... | |
UErrorCode | uplug_getPlugLoadStatus (UPlugData *plug) |
Get plug load status. More... | |
void | uplug_setPlugName (UPlugData *plug, const char *name) |
Set the human-readable name of this plugin. More... | |
const char * | uplug_getPlugName (UPlugData *plug) |
Get the human-readable name of this plugin. More... | |
const char * | uplug_getSymbolName (UPlugData *plug) |
Return the symbol name for this plugin, if known. More... | |
const char * | uplug_getLibraryName (UPlugData *plug, UErrorCode *status) |
Return the library name for this plugin, if known. More... | |
void * | uplug_getLibrary (UPlugData *plug) |
Return the library used for this plugin, if known. More... | |
void * | uplug_getContext (UPlugData *plug) |
Return the plugin-specific context data. More... | |
void | uplug_setContext (UPlugData *plug, void *context) |
Set the plugin-specific context data. More... | |
const char * | uplug_getConfiguration (UPlugData *plug) |
Get the configuration string, if available. More... | |
UPlugData * | uplug_nextPlug (UPlugData *prior) |
Return all currently installed plugins, from newest to oldest Usage Example: More... | |
UPlugData * | uplug_loadPlugFromEntrypoint (UPlugEntrypoint *entrypoint, const char *config, UErrorCode *status) |
Inject a plugin as if it were loaded from a library. More... | |
UPlugData * | uplug_loadPlugFromLibrary (const char *libName, const char *sym, const char *config, UErrorCode *status) |
Inject a plugin from a library, as if the information came from a config file. More... | |
void | uplug_removePlug (UPlugData *plug, UErrorCode *status) |
Remove a plugin. More... | |
C API: ICU Plugin API.
C API allowing run-time loadable modules that extend or modify ICU functionality.
At ICU startup time, the environment variable "ICU_PLUGINS" will be queried for a directory name. If it is not set, the preprocessor symbol "DEFAULT_ICU_PLUGINS" will be checked for a default value.
Within the above-named directory, the file "icuplugins##.txt" will be opened, if present, where ## is the major+minor number of the currently running ICU (such as, 44 for ICU 4.4, thus icuplugins44.txt)
The configuration file has this format:
Hash (#) begins a comment line
Non-comment lines have two or three components: LIBRARYNAME ENTRYPOINT [ CONFIGURATION .. ]
Tabs or spaces separate the three items.
LIBRARYNAME is the name of a shared library, either a short name if it is on the loader path, or a full pathname.
ENTRYPOINT is the short (undecorated) symbol name of the plugin's entrypoint, as above.
An example configuration file is, in its entirety:
Plugins are categorized as "high" or "low" level. Low level are those which must be run BEFORE high level plugins, and before any operations which cause ICU to be 'initialized'. If a plugin is low level but causes ICU to allocate memory or become initialized, that plugin is said to cause a 'level change'.
At load time, ICU first queries all plugins to determine their level, then loads all 'low' plugins first, and then loads all 'high' plugins. Plugins are otherwise loaded in the order listed in the configuration file.
The UPlugData* is an opaque pointer to the plugin-specific data, and is used in all other API calls.
The API contract is:
The plugin MUST always return UPLUG_TOKEN as a return value- to indicate that it is a valid plugin.
When the 'reason' parameter is set to UPLUG_REASON_QUERY, the plugin MUST call uplug_setPlugLevel() to indicate whether it is a high level or low level plugin.
Definition in file icuplug.h.
#define UPLUG_NAME_MAX 100 |
#define UPLUG_TOKEN 0x54762486 |
typedef UPlugTokenReturn() UPlugEntrypoint(UPlugData *plug, UPlugReason reason, UErrorCode *status) |
typedef uint32_t UPlugTokenReturn |
Return value from a plugin entrypoint.
Must always be set to UPLUG_TOKEN
enum UPlugLevel |
Level of plugin loading INITIAL: UNKNOWN QUERY: INVALID -> { LOW | HIGH } ERR -> INVALID.
This API is for internal use only. ICU 4.4 Technology Preview
Enumerator | |
---|---|
UPLUG_LEVEL_INVALID | The plugin is invalid, hasn't called uplug_setLevel, or can't load. |
UPLUG_LEVEL_UNKNOWN | The plugin is waiting to be installed. |
UPLUG_LEVEL_LOW | The plugin must be called before u_init completes. |
UPLUG_LEVEL_HIGH | The plugin can run at any time. |
UPLUG_LEVEL_COUNT | Number of known levels.
|
enum UPlugReason |
Reason code for the entrypoint's call.
This API is for internal use only. ICU 4.4 Technology Preview
Enumerator | |
---|---|
UPLUG_REASON_QUERY | The plugin is being queried for info. |
UPLUG_REASON_LOAD | The plugin is being loaded. |
UPLUG_REASON_UNLOAD | The plugin is being unloaded. |
UPLUG_REASON_COUNT | Number of known reasons.
|
const char* uplug_getConfiguration | ( | UPlugData * | plug | ) |
Get the configuration string, if available.
The string is in the platform default codepage.
plug | plugin data handle |
void* uplug_getContext | ( | UPlugData * | plug | ) |
Return the plugin-specific context data.
plug | plugin data handle |
UPlugLevel uplug_getCurrentLevel | ( | void | ) |
Get the lowest level of plug which can currently load.
For example, if UPLUG_LEVEL_LOW is returned, then low level plugins may load if UPLUG_LEVEL_HIGH is returned, then only high level plugins may load.
void* uplug_getLibrary | ( | UPlugData * | plug | ) |
Return the library used for this plugin, if known.
Plugins could use this to load data out of their
plug | plugin data handle |
const char* uplug_getLibraryName | ( | UPlugData * | plug, |
UErrorCode * | status | ||
) |
Return the library name for this plugin, if known.
plug | plugin data handle |
status | error code |
UPlugLevel uplug_getPlugLevel | ( | UPlugData * | plug | ) |
Get the level of this plugin.
plug | plugin data handle |
UErrorCode uplug_getPlugLoadStatus | ( | UPlugData * | plug | ) |
Get plug load status.
const char* uplug_getPlugName | ( | UPlugData * | plug | ) |
Get the human-readable name of this plugin.
plug | plugin data handle |
const char* uplug_getSymbolName | ( | UPlugData * | plug | ) |
Return the symbol name for this plugin, if known.
plug | plugin data handle |
UPlugData* uplug_loadPlugFromEntrypoint | ( | UPlugEntrypoint * | entrypoint, |
const char * | config, | ||
UErrorCode * | status | ||
) |
Inject a plugin as if it were loaded from a library.
This is useful for testing plugins. Note that it will have a 'NULL' library pointer associated with it, and therefore no llibrary will be closed at cleanup time. Low level plugins may not be able to load, as ordering can't be enforced.
entrypoint | entrypoint to install |
config | user specified configuration string, if available, or NULL. |
status | error result |
UPlugData* uplug_loadPlugFromLibrary | ( | const char * | libName, |
const char * | sym, | ||
const char * | config, | ||
UErrorCode * | status | ||
) |
Inject a plugin from a library, as if the information came from a config file.
Low level plugins may not be able to load, and ordering can't be enforced.
libName | DLL name to load |
sym | symbol of plugin (UPlugEntrypoint function) |
config | configuration string, or NULL |
status | error result |
UPlugData* uplug_nextPlug | ( | UPlugData * | prior | ) |
Return all currently installed plugins, from newest to oldest Usage Example:
Not thread safe- do not call while plugs are added or removed.
prior | pass in 'NULL' to get the first (most recent) plug, otherwise pass the value returned on a prior call to uplug_nextPlug |
void uplug_removePlug | ( | UPlugData * | plug, |
UErrorCode * | status | ||
) |
Remove a plugin.
Will request the plugin to be unloaded, and close the library if needed
plug | plugin handle to close |
status | error result |
void uplug_setContext | ( | UPlugData * | plug, |
void * | context | ||
) |
Set the plugin-specific context data.
plug | plugin data handle |
context | new context to set |
void uplug_setPlugLevel | ( | UPlugData * | plug, |
UPlugLevel | level | ||
) |
Set the level of this plugin.
plug | plugin data handle |
level | the level of this plugin |
void uplug_setPlugName | ( | UPlugData * | plug, |
const char * | name | ||
) |
Set the human-readable name of this plugin.
plug | plugin data handle |
name | the name of this plugin. The first UPLUG_NAME_MAX characters willi be copied into a new buffer. |
void uplug_setPlugNoUnload | ( | UPlugData * | plug, |
UBool | dontUnload | ||
) |
Request that this plugin not be unloaded at cleanup time.
This is appropriate for plugins which cannot be cleaned up.
plug | plugin |
dontUnload | set true if this plugin can't be unloaded |