1999-11-22 19:43:01 +00:00
|
|
|
/*
|
2001-03-21 20:44:20 +00:00
|
|
|
******************************************************************************
|
2000-01-13 23:54:23 +00:00
|
|
|
*
|
2001-03-21 20:44:20 +00:00
|
|
|
* Copyright (C) 1999-2001, International Business Machines
|
2000-01-13 23:54:23 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
*
|
2001-03-21 20:44:20 +00:00
|
|
|
******************************************************************************
|
1999-11-22 19:43:01 +00:00
|
|
|
* file name: udata.c
|
|
|
|
* encoding: US-ASCII
|
|
|
|
* tab size: 8 (not used)
|
|
|
|
* indentation:4
|
|
|
|
*
|
|
|
|
* created on: 1999oct25
|
|
|
|
* created by: Markus W. Scherer
|
|
|
|
*/
|
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
#include "unicode/utypes.h"
|
|
|
|
#include "unicode/putil.h"
|
1999-11-22 19:43:01 +00:00
|
|
|
#include "umutex.h"
|
|
|
|
#include "cmemory.h"
|
|
|
|
#include "cstring.h"
|
1999-12-28 23:39:02 +00:00
|
|
|
#include "unicode/udata.h"
|
2001-07-26 21:55:49 +00:00
|
|
|
#include "unicode/uversion.h"
|
2001-08-10 20:50:07 +00:00
|
|
|
#include "uhash.h"
|
2001-08-17 00:18:49 +00:00
|
|
|
#include "ucln_cmn.h"
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2001-03-09 23:30:31 +00:00
|
|
|
#ifdef OS390
|
2001-03-09 23:03:12 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
|
2001-03-21 20:44:20 +00:00
|
|
|
/* configuration ---------------------------------------------------------- */
|
2000-05-03 23:11:04 +00:00
|
|
|
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-11-22 01:24:40 +00:00
|
|
|
#define COMMON_DATA_NAME U_ICUDATA_NAME
|
|
|
|
#define COMMON_DATA_NAME_LENGTH 8
|
|
|
|
/* Tests must verify that it remains 8 characters. */
|
|
|
|
|
2000-12-05 02:28:32 +00:00
|
|
|
#ifdef OS390
|
2001-02-06 23:27:07 +00:00
|
|
|
#define COMMON_DATA1_NAME U_ICUDATA_NAME"_390"
|
|
|
|
#define COMMON_DATA1_NAME_LENGTH (COMMON_DATA_NAME_LENGTH + 4)
|
2000-12-05 02:28:32 +00:00
|
|
|
static UBool s390dll = TRUE;
|
|
|
|
#endif
|
|
|
|
|
1999-11-22 19:43:01 +00:00
|
|
|
#define DATA_TYPE "dat"
|
|
|
|
|
2000-01-19 07:23:50 +00:00
|
|
|
/* If you are excruciatingly bored turn this on .. */
|
2000-05-03 23:11:04 +00:00
|
|
|
/* #define UDATA_DEBUG 1 */
|
1999-11-22 19:43:01 +00:00
|
|
|
|
|
|
|
#if defined(UDATA_DEBUG)
|
2000-05-03 23:11:04 +00:00
|
|
|
# include <stdio.h>
|
1999-11-22 19:43:01 +00:00
|
|
|
#endif
|
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
/* DLL/shared library base functions ---------------------------------------- */
|
|
|
|
/* TODO: Dynamic loading of DLLs is no longer supported. */
|
|
|
|
/* 390 is a special case, since it can not support file loading. */
|
|
|
|
/* Need to abstract 390 library loading so that it appears to the rest */
|
|
|
|
/* ICU as file loading. */
|
2000-01-19 07:23:50 +00:00
|
|
|
|
2000-05-11 23:23:49 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
#ifdef OS390
|
2000-05-03 23:11:04 +00:00
|
|
|
# include <dll.h>
|
2000-01-19 07:23:50 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
# define RTLD_LAZY 0
|
|
|
|
# define RTLD_GLOBAL 0
|
2000-01-19 07:23:50 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
void *dlopen(const char *filename, int flag) {
|
2001-07-26 21:55:49 +00:00
|
|
|
dllhandle *handle;
|
2000-01-19 07:23:50 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
# ifdef UDATA_DEBUG
|
|
|
|
fprintf(stderr, "dllload: %s ", filename);
|
|
|
|
# endif
|
|
|
|
handle=dllload(filename);
|
|
|
|
# ifdef UDATA_DEBUG
|
|
|
|
fprintf(stderr, " -> %08X\n", handle );
|
|
|
|
# endif
|
|
|
|
return handle;
|
|
|
|
}
|
2000-01-19 07:23:50 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
void *dlsym(void *h, const char *symbol) {
|
|
|
|
void *val=0;
|
|
|
|
val=dllqueryvar((dllhandle*)h,symbol);
|
|
|
|
# ifdef UDATA_DEBUG
|
|
|
|
fprintf(stderr, "dllqueryvar(%08X, %s) -> %08X\n", h, symbol, val);
|
|
|
|
# endif
|
|
|
|
return val;
|
|
|
|
}
|
2000-01-19 07:23:50 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
int dlclose(void *handle) {
|
|
|
|
# ifdef UDATA_DEBUG
|
|
|
|
fprintf(stderr, "dllfree: %08X\n", handle);
|
|
|
|
# endif
|
|
|
|
return dllfree((dllhandle*)handle);
|
|
|
|
}
|
2001-08-15 22:39:42 +00:00
|
|
|
#endif /* OS390: */
|
2000-03-10 01:52:03 +00:00
|
|
|
|
2000-11-04 02:16:12 +00:00
|
|
|
|
|
|
|
|
2000-03-10 01:52:03 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
/* memory-mapping base definitions ------------------------------------------ */
|
2000-03-10 01:52:03 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
/* we need these definitions before the common ones because
|
|
|
|
MemoryMap is a field of UDataMemory;
|
|
|
|
however, the mapping functions use UDataMemory,
|
|
|
|
therefore they are defined later
|
|
|
|
*/
|
2000-03-10 01:52:03 +00:00
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
#define MAP_WIN32 1
|
|
|
|
#define MAP_POSIX 2
|
2000-05-03 23:11:04 +00:00
|
|
|
#define MAP_FILE_STREAM 3
|
2000-03-10 01:52:03 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
#ifdef WIN32
|
2001-08-15 22:39:42 +00:00
|
|
|
# define WIN32_LEAN_AND_MEAN
|
|
|
|
# define NOGDI
|
|
|
|
# define NOUSER
|
|
|
|
# define NOSERVICE
|
|
|
|
# define NOIME
|
|
|
|
# define NOMCX
|
|
|
|
# include <windows.h>
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
typedef HANDLE MemoryMap;
|
2000-03-10 01:52:03 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
# define IS_MAP(map) ((map)!=NULL)
|
2000-03-10 01:52:03 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
# define MAP_IMPLEMENTATION MAP_WIN32
|
2000-03-10 01:52:03 +00:00
|
|
|
|
2000-05-18 17:37:33 +00:00
|
|
|
/* ### Todo: auto detect mmap(). Until then, just add your platform here. */
|
2000-09-22 19:02:20 +00:00
|
|
|
#elif HAVE_MMAP || defined(U_LINUX) || defined(POSIX) || defined(U_SOLARIS) || defined(AIX) || defined(HPUX) || defined(OS390) || defined(PTX)
|
2000-05-03 23:11:04 +00:00
|
|
|
typedef size_t MemoryMap;
|
2000-03-10 01:52:03 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
# define IS_MAP(map) ((map)!=0)
|
2000-01-19 07:23:50 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
# include <unistd.h>
|
|
|
|
# include <sys/mman.h>
|
|
|
|
# include <sys/stat.h>
|
|
|
|
# include <fcntl.h>
|
1999-12-13 21:36:13 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
# ifndef MAP_FAILED
|
|
|
|
# define MAP_FAILED ((void*)-1)
|
|
|
|
# endif
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
# define MAP_IMPLEMENTATION MAP_POSIX
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
#else /* unknown platform, no memory map implementation: use FileStream/uprv_malloc() instead */
|
2000-01-14 23:30:55 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
# include "filestrm.h"
|
2000-01-14 23:30:55 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
typedef void *MemoryMap;
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
# define IS_MAP(map) ((map)!=NULL)
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
# define MAP_IMPLEMENTATION MAP_FILE_STREAM
|
1999-12-04 02:31:40 +00:00
|
|
|
|
|
|
|
#endif
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
/* common definitions ------------------------------------------------------- */
|
1999-12-14 01:07:43 +00:00
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint16_t headerSize;
|
|
|
|
uint8_t magic1;
|
|
|
|
uint8_t magic2;
|
2000-05-03 23:11:04 +00:00
|
|
|
} MappedData;
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
typedef struct {
|
|
|
|
MappedData dataHeader;
|
|
|
|
UDataInfo info;
|
2000-05-03 23:11:04 +00:00
|
|
|
} DataHeader;
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
typedef const DataHeader *
|
|
|
|
LookupFn(const UDataMemory *pData,
|
|
|
|
const char *tocEntryName,
|
|
|
|
const char *dllEntryName,
|
|
|
|
UErrorCode *pErrorCode);
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
/*----------------------------------------------------------------------------------*
|
|
|
|
* *
|
|
|
|
* UDataMemory Very Important Struct. Pointers to these are returned *
|
|
|
|
* to callers from the various data open functions. *
|
|
|
|
* These keep track of everything about the memeory *
|
|
|
|
* *
|
|
|
|
*----------------------------------------------------------------------------------*/
|
2001-08-15 23:27:38 +00:00
|
|
|
struct UDataMemory {
|
2001-08-10 20:50:07 +00:00
|
|
|
MemoryMap map; /* Handle, or whatever. OS dependent. */
|
2001-08-15 22:39:42 +00:00
|
|
|
/* Only set if a close operation should unmap the */
|
|
|
|
/* associated data. */
|
2001-08-10 20:50:07 +00:00
|
|
|
LookupFn *lookupFn;
|
|
|
|
const void *toc; /* For common memory, to find pieces within. */
|
|
|
|
const DataHeader *pHeader; /* Header. For common data, header is at top of file */
|
2001-08-15 22:39:42 +00:00
|
|
|
const void *mapAddr; /* For mapped or allocated memory, the start addr. */
|
|
|
|
/* Will be above pHeader in some cases. */
|
|
|
|
/* Needed to allow unmapping. */
|
2001-08-10 20:50:07 +00:00
|
|
|
uint32_t flags; /* Memory format, TOC type, Allocation type, etc. */
|
2001-08-15 22:39:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* constants for UDataMemory flags */
|
|
|
|
#define MALLOCED_UDATAMEMORY_FLAG 0x80000000 /* Set flag if UDataMemory object itself
|
|
|
|
* is on heap, and must be freed when
|
|
|
|
* it is closed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define IS_DATA_MEMORY_LOADED(pData) ((pData)->pHeader!=NULL)
|
2001-08-10 20:50:07 +00:00
|
|
|
|
|
|
|
|
2001-08-15 23:27:38 +00:00
|
|
|
static void UDataMemory_init(UDataMemory *This) {
|
2001-08-10 20:50:07 +00:00
|
|
|
uprv_memset(This, 0, sizeof(UDataMemory));
|
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
|
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
static void UDatamemory_assign(UDataMemory *dest, UDataMemory *source) {
|
2001-08-15 23:27:38 +00:00
|
|
|
/* UDataMemory Assignment. Destination UDataMemory must be initialized first.
|
2001-08-15 22:39:42 +00:00
|
|
|
* Malloced flag of the destination is preserved,
|
|
|
|
* since it indicates where the UDataMemory struct itself
|
|
|
|
* is allocated. */
|
|
|
|
uint32_t dest_MALLOCED_UDATAMEMORY_FLAG = dest->flags & MALLOCED_UDATAMEMORY_FLAG;
|
2001-08-10 20:50:07 +00:00
|
|
|
uprv_memcpy(dest, source, sizeof(UDataMemory));
|
2001-08-15 22:39:42 +00:00
|
|
|
dest->flags &= ~MALLOCED_UDATAMEMORY_FLAG;
|
|
|
|
dest->flags |= dest_MALLOCED_UDATAMEMORY_FLAG;
|
2001-08-10 20:50:07 +00:00
|
|
|
}
|
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
static UDataMemory *UDataMemory_createNewInstance(UErrorCode *pErr) {
|
2001-08-10 20:50:07 +00:00
|
|
|
UDataMemory *This;
|
|
|
|
This = uprv_malloc(sizeof(UDataMemory));
|
2001-08-15 22:39:42 +00:00
|
|
|
if (This == NULL) {
|
|
|
|
*pErr = U_MEMORY_ALLOCATION_ERROR; }
|
|
|
|
else {
|
|
|
|
UDataMemory_init(This);
|
|
|
|
This->flags |= MALLOCED_UDATAMEMORY_FLAG;
|
|
|
|
}
|
2001-08-10 20:50:07 +00:00
|
|
|
return This;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------------------*
|
|
|
|
* *
|
|
|
|
* Pointer TOCs. This form of table-of-contents should be removed because *
|
|
|
|
* DLLs must be relocated on loading to correct the pointer values *
|
|
|
|
* and this operation makes shared memory mapping of the data *
|
|
|
|
* much less likely to work. *
|
|
|
|
* *
|
|
|
|
*----------------------------------------------------------------------------------*/
|
2000-05-03 23:11:04 +00:00
|
|
|
typedef struct {
|
|
|
|
const char *entryName;
|
|
|
|
const DataHeader *pHeader;
|
|
|
|
} PointerTOCEntry;
|
1999-11-22 19:43:01 +00:00
|
|
|
|
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
/*----------------------------------------------------------------------------------*
|
|
|
|
* *
|
|
|
|
* Memory Mapped File support. Platform dependent implementation of functions *
|
|
|
|
* used by the rest of the implementation. *
|
|
|
|
* *
|
|
|
|
*----------------------------------------------------------------------------------*/
|
2000-05-03 23:11:04 +00:00
|
|
|
#if MAP_IMPLEMENTATION==MAP_WIN32
|
2000-05-18 22:08:39 +00:00
|
|
|
static UBool
|
2001-08-10 20:50:07 +00:00
|
|
|
uprv_mapFile(
|
|
|
|
UDataMemory *pData, /* Fill in with info on the result doing the mapping. */
|
|
|
|
/* Output only; any original contents are cleared. */
|
|
|
|
const char *path /* File path to be opened/mapped */
|
2001-08-15 23:27:38 +00:00
|
|
|
)
|
2001-08-10 20:50:07 +00:00
|
|
|
{
|
2000-05-03 23:11:04 +00:00
|
|
|
HANDLE map;
|
2001-08-10 20:50:07 +00:00
|
|
|
HANDLE file;
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
UDataMemory_init(pData); /* Clear the output struct. */
|
2000-12-05 02:28:32 +00:00
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
/* open the input file */
|
|
|
|
file=CreateFile(path, GENERIC_READ, FILE_SHARE_READ, NULL,
|
|
|
|
OPEN_EXISTING,
|
|
|
|
FILE_ATTRIBUTE_NORMAL|FILE_FLAG_RANDOM_ACCESS, NULL);
|
|
|
|
if(file==INVALID_HANDLE_VALUE) {
|
|
|
|
return FALSE;
|
2000-12-05 02:28:32 +00:00
|
|
|
}
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
/* create an unnamed Windows file-mapping object for the specified file */
|
|
|
|
map=CreateFileMapping(file, NULL, PAGE_READONLY, 0, 0, NULL);
|
|
|
|
CloseHandle(file);
|
2000-05-03 23:11:04 +00:00
|
|
|
if(map==NULL) {
|
2001-08-10 20:50:07 +00:00
|
|
|
return FALSE;
|
2000-05-03 23:11:04 +00:00
|
|
|
}
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
/* map a view of the file into our address space */
|
2000-05-03 23:11:04 +00:00
|
|
|
pData->pHeader=(const DataHeader *)MapViewOfFile(map, FILE_MAP_READ, 0, 0, 0);
|
|
|
|
if(pData->pHeader==NULL) {
|
|
|
|
CloseHandle(map);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
pData->map=map;
|
|
|
|
return TRUE;
|
1999-11-22 19:43:01 +00:00
|
|
|
}
|
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
static void
|
2000-05-04 00:34:46 +00:00
|
|
|
uprv_unmapFile(UDataMemory *pData) {
|
2000-05-03 23:11:04 +00:00
|
|
|
if(pData!=NULL && pData->map!=NULL) {
|
|
|
|
UnmapViewOfFile(pData->pHeader);
|
|
|
|
CloseHandle(pData->map);
|
|
|
|
pData->pHeader=NULL;
|
|
|
|
pData->map=NULL;
|
1999-11-22 19:43:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
#elif MAP_IMPLEMENTATION==MAP_POSIX
|
2000-05-18 22:08:39 +00:00
|
|
|
static UBool
|
2001-08-10 20:50:07 +00:00
|
|
|
uprv_mapFile(UDataMemory *pData, const char *path) {
|
2000-05-03 23:11:04 +00:00
|
|
|
int fd;
|
|
|
|
int length;
|
|
|
|
struct stat mystat;
|
|
|
|
const void *data;
|
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
UDataMemory_init(pData); /* Clear the output struct. */
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
/* determine the length of the file */
|
|
|
|
if(stat(path, &mystat)!=0 || mystat.st_size<=0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
length=mystat.st_size;
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
/* open the file */
|
|
|
|
fd=open(path, O_RDONLY);
|
|
|
|
if(fd==-1) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
/* get a view of the mapping */
|
2000-05-30 21:47:19 +00:00
|
|
|
#ifndef HPUX
|
|
|
|
data=mmap(0, length, PROT_READ, MAP_SHARED, fd, 0);
|
|
|
|
#else
|
|
|
|
data=mmap(0, length, PROT_READ, MAP_PRIVATE, fd, 0);
|
|
|
|
#endif
|
2000-05-03 23:11:04 +00:00
|
|
|
close(fd); /* no longer needed */
|
|
|
|
if(data==MAP_FAILED) {
|
2000-05-11 23:23:49 +00:00
|
|
|
|
|
|
|
# ifdef UDATA_DEBUG
|
2000-05-30 21:47:19 +00:00
|
|
|
perror("mmap");
|
2000-05-11 23:23:49 +00:00
|
|
|
# endif
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
# ifdef UDATA_DEBUG
|
|
|
|
fprintf(stderr, "mmap of %s [%d bytes] succeeded, -> 0x%X\n", path, length, data);
|
|
|
|
fflush(stderr);
|
|
|
|
# endif
|
2001-07-26 21:55:49 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
pData->map=length;
|
|
|
|
pData->pHeader=(const DataHeader *)data;
|
2001-08-15 22:39:42 +00:00
|
|
|
pData->mapAddr = data;
|
2000-05-03 23:11:04 +00:00
|
|
|
return TRUE;
|
1999-11-22 19:43:01 +00:00
|
|
|
}
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
static void
|
2000-05-04 00:34:46 +00:00
|
|
|
uprv_unmapFile(UDataMemory *pData) {
|
2000-05-03 23:11:04 +00:00
|
|
|
if(pData!=NULL && pData->map>0) {
|
2001-08-15 22:39:42 +00:00
|
|
|
if(munmap((void *)pData->mapAddr, pData->map)==-1) {
|
2000-08-30 17:27:08 +00:00
|
|
|
# ifdef UDATA_DEBUG
|
|
|
|
perror("munmap");
|
|
|
|
# endif
|
2000-05-03 23:11:04 +00:00
|
|
|
}
|
|
|
|
pData->pHeader=NULL;
|
|
|
|
pData->map=0;
|
2001-08-15 22:39:42 +00:00
|
|
|
pData->mapAddr=NULL;
|
2000-05-03 23:11:04 +00:00
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
}
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
#elif MAP_IMPLEMENTATION==MAP_FILE_STREAM
|
2000-05-18 22:08:39 +00:00
|
|
|
static UBool
|
2001-08-10 20:50:07 +00:00
|
|
|
uprv_mapFile(UDataMemory *pData, const char *path) {
|
2000-05-03 23:11:04 +00:00
|
|
|
FileStream *file;
|
|
|
|
int32_t fileLength;
|
|
|
|
void *p;
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
UDataMemory_init(pData); /* Clear the output struct. */
|
2000-05-03 23:11:04 +00:00
|
|
|
/* open the input file */
|
|
|
|
file=T_FileStream_open(path, "rb");
|
|
|
|
if(file==NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
/* get the file length */
|
|
|
|
fileLength=T_FileStream_size(file);
|
|
|
|
if(T_FileStream_error(file) || fileLength<=20) {
|
|
|
|
T_FileStream_close(file);
|
|
|
|
return FALSE;
|
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
/* allocate the data structure */
|
|
|
|
p=uprv_malloc(fileLength);
|
|
|
|
if(p==NULL) {
|
|
|
|
T_FileStream_close(file);
|
|
|
|
return FALSE;
|
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
/* read the file */
|
|
|
|
if(fileLength!=T_FileStream_read(file, p, fileLength)) {
|
|
|
|
uprv_free(p);
|
|
|
|
T_FileStream_close(file);
|
|
|
|
return FALSE;
|
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
T_FileStream_close(file);
|
|
|
|
pData->map=p;
|
|
|
|
pData->pHeader=(const DataHeader *)p;
|
2001-08-15 22:39:42 +00:00
|
|
|
pData->mapAddr=p;
|
2000-05-03 23:11:04 +00:00
|
|
|
return TRUE;
|
1999-11-22 19:43:01 +00:00
|
|
|
}
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
static void
|
2000-05-04 00:34:46 +00:00
|
|
|
uprv_unmapFile(UDataMemory *pData) {
|
2000-05-03 23:11:04 +00:00
|
|
|
if(pData!=NULL && pData->map!=NULL) {
|
|
|
|
uprv_free(pData->map);
|
2001-08-15 22:39:42 +00:00
|
|
|
pData->map = NULL;
|
|
|
|
pData->mapAddr = NULL;
|
|
|
|
pData->pHeader = NULL;
|
1999-11-22 19:43:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
#else
|
|
|
|
# error MAP_IMPLEMENTATION is set incorrectly
|
|
|
|
#endif
|
1999-11-22 19:43:01 +00:00
|
|
|
|
|
|
|
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
/*----------------------------------------------------------------------------------*
|
|
|
|
* *
|
|
|
|
* entry point lookup implementations *
|
|
|
|
* *
|
|
|
|
*----------------------------------------------------------------------------------*/
|
2000-05-03 23:11:04 +00:00
|
|
|
static const DataHeader *
|
|
|
|
normalizeDataPointer(const DataHeader *p) {
|
|
|
|
/* allow the data to be optionally prepended with an alignment-forcing double value */
|
2000-10-12 18:34:26 +00:00
|
|
|
if(p==NULL || (p->dataHeader.magic1==0xda && p->dataHeader.magic2==0x27)) {
|
2000-05-03 23:11:04 +00:00
|
|
|
return p;
|
|
|
|
} else {
|
|
|
|
return (const DataHeader *)((const double *)p+1);
|
1999-11-22 19:43:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
static const DataHeader *
|
|
|
|
offsetTOCLookupFn(const UDataMemory *pData,
|
|
|
|
const char *tocEntryName,
|
|
|
|
const char *dllEntryName,
|
|
|
|
UErrorCode *pErrorCode) {
|
2000-12-05 02:28:32 +00:00
|
|
|
|
2000-11-04 02:16:12 +00:00
|
|
|
#ifdef UDATA_DEBUG
|
|
|
|
fprintf(stderr, "offsetTOC[%p] looking for %s/%s\n",
|
2000-12-05 02:28:32 +00:00
|
|
|
pData,
|
|
|
|
tocEntryName,dllEntryName);
|
2000-11-04 02:16:12 +00:00
|
|
|
#endif
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
if(pData->toc!=NULL) {
|
|
|
|
const char *base=(const char *)pData->toc;
|
|
|
|
uint32_t *toc=(uint32_t *)pData->toc;
|
1999-11-22 19:43:01 +00:00
|
|
|
uint32_t start, limit, number;
|
|
|
|
|
|
|
|
/* perform a binary search for the data in the common data's table of contents */
|
|
|
|
start=0;
|
|
|
|
limit=*toc++; /* number of names in this table of contents */
|
|
|
|
while(start<limit-1) {
|
|
|
|
number=(start+limit)/2;
|
2000-05-03 23:11:04 +00:00
|
|
|
if(uprv_strcmp(tocEntryName, base+toc[2*number])<0) {
|
1999-11-22 19:43:01 +00:00
|
|
|
limit=number;
|
|
|
|
} else {
|
|
|
|
start=number;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
if(uprv_strcmp(tocEntryName, base+toc[2*start])==0) {
|
1999-11-22 19:43:01 +00:00
|
|
|
/* found it */
|
2000-11-04 02:16:12 +00:00
|
|
|
#ifdef UDATA_DEBUG
|
2000-12-05 02:28:32 +00:00
|
|
|
fprintf(stderr, "Found: %p\n",(base+toc[2*start+1]));
|
2000-11-04 02:16:12 +00:00
|
|
|
#endif
|
2000-05-03 23:11:04 +00:00
|
|
|
return (const DataHeader *)(base+toc[2*start+1]);
|
1999-11-22 19:43:01 +00:00
|
|
|
} else {
|
2000-11-04 02:16:12 +00:00
|
|
|
#ifdef UDATA_DEBUG
|
2000-12-05 02:28:32 +00:00
|
|
|
fprintf(stderr, "Not found.\n");
|
2000-11-04 02:16:12 +00:00
|
|
|
#endif
|
1999-11-22 19:43:01 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
} else {
|
2000-11-04 02:16:12 +00:00
|
|
|
#ifdef UDATA_DEBUG
|
2000-12-05 02:28:32 +00:00
|
|
|
fprintf(stderr, "returning header\n");
|
2000-11-04 02:16:12 +00:00
|
|
|
#endif
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
return pData->pHeader;
|
1999-11-22 19:43:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
static const DataHeader *
|
|
|
|
pointerTOCLookupFn(const UDataMemory *pData,
|
|
|
|
const char *tocEntryName,
|
|
|
|
const char *dllEntryName,
|
|
|
|
UErrorCode *pErrorCode) {
|
2000-11-04 02:16:12 +00:00
|
|
|
#ifdef UDATA_DEBUG
|
|
|
|
fprintf(stderr, "ptrTOC[%p] looking for %s/%s\n",
|
2000-12-05 02:28:32 +00:00
|
|
|
pData,
|
|
|
|
tocEntryName,dllEntryName);
|
2000-11-04 02:16:12 +00:00
|
|
|
#endif
|
2000-05-03 23:11:04 +00:00
|
|
|
if(pData->toc!=NULL) {
|
|
|
|
const PointerTOCEntry *toc=(const PointerTOCEntry *)((const uint32_t *)pData->toc+2);
|
|
|
|
uint32_t start, limit, number;
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
/* perform a binary search for the data in the common data's table of contents */
|
|
|
|
start=0;
|
|
|
|
limit=*(const uint32_t *)pData->toc; /* number of names in this table of contents */
|
2000-11-04 02:16:12 +00:00
|
|
|
|
|
|
|
#ifdef UDATA_DEBUG
|
2000-12-05 02:28:32 +00:00
|
|
|
fprintf(stderr, " # of ents: %d\n", limit);
|
|
|
|
fflush(stderr);
|
2000-11-04 02:16:12 +00:00
|
|
|
#endif
|
|
|
|
|
2001-07-26 21:55:49 +00:00
|
|
|
if (limit == 0) { /* Stub common data library used during build is empty. */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
while(start<limit-1) {
|
|
|
|
number=(start+limit)/2;
|
|
|
|
if(uprv_strcmp(tocEntryName, toc[number].entryName)<0) {
|
|
|
|
limit=number;
|
|
|
|
} else {
|
|
|
|
start=number;
|
|
|
|
}
|
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
if(uprv_strcmp(tocEntryName, toc[start].entryName)==0) {
|
|
|
|
/* found it */
|
2000-11-04 02:16:12 +00:00
|
|
|
#ifdef UDATA_DEBUG
|
2001-07-26 21:55:49 +00:00
|
|
|
fprintf(stderr, "FOUND: %p\n",
|
2000-12-05 02:28:32 +00:00
|
|
|
normalizeDataPointer(toc[start].pHeader));
|
2000-11-04 02:16:12 +00:00
|
|
|
#endif
|
|
|
|
|
2000-12-05 02:28:32 +00:00
|
|
|
return normalizeDataPointer(toc[start].pHeader);
|
2000-05-03 23:11:04 +00:00
|
|
|
} else {
|
2000-11-04 02:16:12 +00:00
|
|
|
#ifdef UDATA_DEBUG
|
2000-12-05 02:28:32 +00:00
|
|
|
fprintf(stderr, "NOT found\n");
|
2000-11-04 02:16:12 +00:00
|
|
|
#endif
|
2000-05-03 23:11:04 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
} else {
|
2000-11-04 02:16:12 +00:00
|
|
|
#ifdef UDATA_DEBUG
|
2000-12-05 02:28:32 +00:00
|
|
|
fprintf(stderr, "Returning header\n");
|
2000-11-04 02:16:12 +00:00
|
|
|
#endif
|
2000-12-05 02:28:32 +00:00
|
|
|
return pData->pHeader;
|
1999-11-22 19:43:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
/* common library functions ------------------------------------------------- */
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2001-08-17 00:18:49 +00:00
|
|
|
static UDataMemory commonICUData={ 0 };
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
static UBool
|
2000-05-03 23:11:04 +00:00
|
|
|
setCommonICUData(UDataMemory *pData) {
|
2000-05-18 22:08:39 +00:00
|
|
|
UBool setThisLib=FALSE;
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
/* in the mutex block, set the common library for this process */
|
|
|
|
umtx_lock(NULL);
|
|
|
|
if(!IS_DATA_MEMORY_LOADED(&commonICUData)) {
|
2001-08-15 22:39:42 +00:00
|
|
|
UDatamemory_assign(&commonICUData, pData);
|
2000-05-03 23:11:04 +00:00
|
|
|
setThisLib=TRUE;
|
|
|
|
}
|
|
|
|
umtx_unlock(NULL);
|
2001-08-15 22:39:42 +00:00
|
|
|
return setThisLib;
|
1999-12-01 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
static char *
|
|
|
|
strcpy_returnEnd(char *dest, const char *src) {
|
|
|
|
while((*dest=*src)!=0) {
|
|
|
|
++dest;
|
|
|
|
++src;
|
|
|
|
}
|
|
|
|
return dest;
|
|
|
|
}
|
1999-12-01 01:02:06 +00:00
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
/*------------------------------------------------------------------------------*
|
|
|
|
* *
|
|
|
|
* setPathGetBasename given a (possibly partial) path of an item *
|
|
|
|
* to be opened, compute a full directory path and leave *
|
|
|
|
* it in pathBuffer. Returns a pointer to the null at *
|
|
|
|
* the end of the computed path. *
|
2001-08-15 22:39:42 +00:00
|
|
|
* Overwrites any contents in the output pathBuffer *
|
2001-08-10 20:50:07 +00:00
|
|
|
* *
|
|
|
|
*------------------------------------------------------------------------------*/
|
2000-05-03 23:11:04 +00:00
|
|
|
static char *
|
|
|
|
setPathGetBasename(const char *path, char *pathBuffer) {
|
2001-08-15 22:39:42 +00:00
|
|
|
if(path==NULL) {
|
2000-05-03 23:11:04 +00:00
|
|
|
/* copy the ICU_DATA path to the path buffer */
|
|
|
|
path=u_getDataDirectory();
|
|
|
|
if(path!=NULL && *path!=0) {
|
|
|
|
return strcpy_returnEnd(pathBuffer, path);
|
|
|
|
} else {
|
|
|
|
/* there is no path */
|
|
|
|
return pathBuffer;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* find the last file sepator in the input path */
|
|
|
|
char *basename=uprv_strrchr(path, U_FILE_SEP_CHAR);
|
|
|
|
if(basename==NULL) {
|
|
|
|
/* copy the ICU_DATA path to the path buffer */
|
|
|
|
path=u_getDataDirectory();
|
|
|
|
if(path!=NULL && *path!=0) {
|
|
|
|
return strcpy_returnEnd(pathBuffer, path);
|
|
|
|
} else {
|
|
|
|
/* there is no path */
|
|
|
|
return pathBuffer;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* copy the path to the path buffer */
|
|
|
|
++basename;
|
|
|
|
uprv_memcpy(pathBuffer, path, basename-path);
|
|
|
|
basename=pathBuffer+(basename-path);
|
|
|
|
*basename=0;
|
|
|
|
return basename;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-12-01 01:02:06 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
static const char *
|
|
|
|
findBasename(const char *path) {
|
|
|
|
const char *basename=uprv_strrchr(path, U_FILE_SEP_CHAR);
|
|
|
|
if(basename==NULL) {
|
|
|
|
return path;
|
|
|
|
} else {
|
|
|
|
return basename+1;
|
1999-12-01 01:02:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-07-26 21:55:49 +00:00
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
/*----------------------------------------------------------------------*
|
|
|
|
* *
|
|
|
|
* Cache for common data *
|
|
|
|
* Functions for looking up or adding entries to a cache of *
|
|
|
|
* data that has been previously opened. Avoids a potentially *
|
|
|
|
* expensive operation of re-opening the data for subsequent *
|
|
|
|
* uses. *
|
|
|
|
* *
|
|
|
|
* Data remains cached for the duration of the process. *
|
|
|
|
* *
|
|
|
|
*----------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
typedef struct DataCacheElement {
|
|
|
|
char *path;
|
|
|
|
UDataMemory item;
|
|
|
|
} DataCacheElement;
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
static UHashtable *gHashTable = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2001-08-15 23:27:38 +00:00
|
|
|
* Deleter function for DataCacheElements.
|
2001-08-15 22:39:42 +00:00
|
|
|
* udata cleanup function closes the hash table; hash table in turn calls back to
|
|
|
|
* here for each entry.
|
|
|
|
*/
|
|
|
|
static void U_CALLCONV DataCacheElement_deleter(void *pDCEl) {
|
|
|
|
DataCacheElement *p = (DataCacheElement *)pDCEl;
|
|
|
|
udata_close(&p->item); /* unmaps storage */
|
|
|
|
uprv_free(p->path); /* delete the hash key string. */
|
|
|
|
uprv_free(pDCEl); /* delete 'this' */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
/* udata_getCacheHashTable()
|
|
|
|
* Get the hash table used to store the data cache entries.
|
|
|
|
* Lazy create it if it doesn't yet exist.
|
2001-08-15 23:27:38 +00:00
|
|
|
*/
|
2001-08-10 20:50:07 +00:00
|
|
|
static UHashtable *udata_getHashTable() {
|
|
|
|
UErrorCode err = U_ZERO_ERROR;
|
|
|
|
|
|
|
|
if (gHashTable != NULL) {
|
|
|
|
return gHashTable;
|
|
|
|
}
|
2001-08-15 23:27:38 +00:00
|
|
|
umtx_lock(NULL);
|
2001-08-10 20:50:07 +00:00
|
|
|
if (gHashTable == NULL) {
|
|
|
|
gHashTable = uhash_open(uhash_hashChars, uhash_compareChars, &err);
|
2001-08-15 22:39:42 +00:00
|
|
|
uhash_setValueDeleter(gHashTable, DataCacheElement_deleter);
|
2001-08-10 20:50:07 +00:00
|
|
|
}
|
|
|
|
umtx_unlock(NULL);
|
|
|
|
|
|
|
|
if U_FAILURE(err) {
|
2001-08-15 22:39:42 +00:00
|
|
|
return NULL; /* TODO: handle this error better. */
|
2001-08-10 20:50:07 +00:00
|
|
|
}
|
|
|
|
return gHashTable;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static UDataMemory *udata_findCachedData(const char *path)
|
|
|
|
{
|
2001-08-15 22:39:42 +00:00
|
|
|
UHashtable *htable;
|
|
|
|
UDataMemory *retVal = NULL;
|
|
|
|
DataCacheElement *el;
|
2001-08-10 20:50:07 +00:00
|
|
|
|
|
|
|
htable = udata_getHashTable();
|
2001-08-15 23:27:38 +00:00
|
|
|
umtx_lock(NULL);
|
2001-08-15 22:39:42 +00:00
|
|
|
el = (DataCacheElement *)uhash_get(htable, path);
|
2001-08-10 20:50:07 +00:00
|
|
|
umtx_unlock(NULL);
|
2001-08-15 22:39:42 +00:00
|
|
|
if (el != NULL) {
|
|
|
|
retVal = &el->item;
|
|
|
|
}
|
2001-08-10 20:50:07 +00:00
|
|
|
return retVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
static UDataMemory *udata_cacheDataItem(const char *path, UDataMemory *item, UErrorCode *pErr) {
|
2001-08-10 20:50:07 +00:00
|
|
|
DataCacheElement *newElement;
|
|
|
|
int pathLen;
|
2001-08-15 22:39:42 +00:00
|
|
|
UHashtable *htable;
|
|
|
|
UDataMemory *oldValue = NULL;
|
|
|
|
|
|
|
|
if (U_FAILURE(*pErr)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2001-08-10 20:50:07 +00:00
|
|
|
|
|
|
|
/* Create a new DataCacheElement - the thingy we store in the hash table -
|
|
|
|
* and copy the supplied path and UDataMemoryItems into it.
|
|
|
|
*/
|
|
|
|
newElement = uprv_malloc(sizeof(DataCacheElement));
|
2001-08-15 22:39:42 +00:00
|
|
|
if (newElement == NULL) {
|
|
|
|
*pErr = U_MEMORY_ALLOCATION_ERROR;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
UDataMemory_init(&newElement->item); /*Need separte init + copy to get flags right. */
|
|
|
|
UDatamemory_assign(&newElement->item, item); /* They're not all copied. */
|
2001-08-10 20:50:07 +00:00
|
|
|
pathLen = uprv_strlen(path);
|
|
|
|
newElement->path = uprv_malloc(pathLen+1);
|
2001-08-15 22:39:42 +00:00
|
|
|
if (newElement->path == NULL) {
|
|
|
|
*pErr = U_MEMORY_ALLOCATION_ERROR;
|
|
|
|
return NULL;
|
|
|
|
}
|
2001-08-10 20:50:07 +00:00
|
|
|
uprv_strcpy(newElement->path, path);
|
|
|
|
|
|
|
|
/* Stick the new DataCacheElement into the hash table.
|
|
|
|
*/
|
2001-08-15 22:39:42 +00:00
|
|
|
htable = udata_getHashTable();
|
2001-08-15 23:27:38 +00:00
|
|
|
umtx_lock(NULL);
|
2001-08-15 22:39:42 +00:00
|
|
|
oldValue = uhash_get(htable, path);
|
|
|
|
if (oldValue != NULL) {
|
|
|
|
*pErr = U_USING_DEFAULT_WARNING; }
|
|
|
|
else {
|
2001-08-15 23:27:38 +00:00
|
|
|
uhash_put(
|
2001-08-15 22:39:42 +00:00
|
|
|
htable,
|
|
|
|
newElement->path, /* Key */
|
|
|
|
newElement, /* Value */
|
|
|
|
pErr);
|
|
|
|
}
|
2001-08-10 20:50:07 +00:00
|
|
|
umtx_unlock(NULL);
|
2001-08-15 22:39:42 +00:00
|
|
|
|
|
|
|
if (*pErr == U_USING_DEFAULT_WARNING || U_FAILURE(*pErr)) {
|
|
|
|
uprv_free(newElement->path);
|
|
|
|
uprv_free(newElement);
|
|
|
|
return oldValue;
|
|
|
|
}
|
2001-08-10 20:50:07 +00:00
|
|
|
|
|
|
|
return &newElement->item;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
/*----------------------------------------------------------------------*
|
|
|
|
* *
|
|
|
|
* checkCommonData Validate the format of a common data file. *
|
|
|
|
* Fill in the TOC type in the UDataMemory *
|
|
|
|
* If the data is invalid, close the UDataMemory *
|
|
|
|
* and set the appropriate error code. *
|
|
|
|
* *
|
|
|
|
*----------------------------------------------------------------------*/
|
|
|
|
static void checkCommonData(UDataMemory *udm, UErrorCode *err) {
|
|
|
|
if (U_FAILURE(*err)) {
|
2001-08-15 23:27:38 +00:00
|
|
|
return;
|
2001-08-15 22:39:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!(udm->pHeader->dataHeader.magic1==0xda &&
|
|
|
|
udm->pHeader->dataHeader.magic2==0x27 &&
|
|
|
|
udm->pHeader->info.isBigEndian==U_IS_BIG_ENDIAN &&
|
|
|
|
udm->pHeader->info.charsetFamily==U_CHARSET_FAMILY)
|
|
|
|
) {
|
|
|
|
/* header not valid */
|
|
|
|
*err=U_INVALID_FORMAT_ERROR;
|
|
|
|
}
|
|
|
|
else if (udm->pHeader->info.dataFormat[0]==0x43 &&
|
|
|
|
udm->pHeader->info.dataFormat[1]==0x6d &&
|
|
|
|
udm->pHeader->info.dataFormat[2]==0x6e &&
|
|
|
|
udm->pHeader->info.dataFormat[3]==0x44 &&
|
|
|
|
udm->pHeader->info.formatVersion[0]==1
|
|
|
|
) {
|
|
|
|
/* dataFormat="CmnD" */
|
|
|
|
udm->lookupFn=offsetTOCLookupFn;
|
|
|
|
udm->toc=(const char *)udm->pHeader+udm->pHeader->dataHeader.headerSize;
|
|
|
|
}
|
|
|
|
else if(udm->pHeader->info.dataFormat[0]==0x54 &&
|
|
|
|
udm->pHeader->info.dataFormat[1]==0x6f &&
|
|
|
|
udm->pHeader->info.dataFormat[2]==0x43 &&
|
|
|
|
udm->pHeader->info.dataFormat[3]==0x50 &&
|
|
|
|
udm->pHeader->info.formatVersion[0]==1
|
|
|
|
) {
|
|
|
|
/* dataFormat="ToCP" */
|
|
|
|
udm->lookupFn=pointerTOCLookupFn;
|
|
|
|
udm->toc=(const char *)udm->pHeader+udm->pHeader->dataHeader.headerSize;
|
2001-08-15 23:27:38 +00:00
|
|
|
}
|
2001-08-15 22:39:42 +00:00
|
|
|
else {
|
|
|
|
/* dataFormat not recognized */
|
|
|
|
*err=U_INVALID_FORMAT_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (U_FAILURE(*err)) {
|
|
|
|
/* If the data is no good and we memory-mapped it ourselves,
|
|
|
|
* close the memory mapping so it doesn't leak. Note that this has
|
|
|
|
* no effect on non-memory mapped data, other than clearing fields in udm.
|
|
|
|
*/
|
|
|
|
uprv_unmapFile(udm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-17 00:18:49 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
2001-08-15 22:39:42 +00:00
|
|
|
udata_cleanup()
|
|
|
|
{
|
2001-08-17 00:18:49 +00:00
|
|
|
umtx_lock(NULL);
|
2001-08-15 22:39:42 +00:00
|
|
|
if (gHashTable) { /* Delete the cache of user data mappings. */
|
|
|
|
uhash_close(gHashTable); /* Table owns the contents, and will delete them. */
|
|
|
|
gHashTable = 0; /* Cleanup is not thread safe. */
|
|
|
|
}
|
|
|
|
|
|
|
|
udata_close(&commonICUData); /* Clean up common ICU Data */
|
2001-08-17 00:18:49 +00:00
|
|
|
umtx_unlock(NULL);
|
|
|
|
|
|
|
|
return TRUE; /* Everything was cleaned up */
|
2001-08-15 22:39:42 +00:00
|
|
|
}
|
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
|
2001-07-26 21:55:49 +00:00
|
|
|
/* */
|
|
|
|
/* Add a static reference to the common data from a library if the */
|
|
|
|
/* build options are set to request it. */
|
|
|
|
/* Unless overridden by an explicit u_setCommonData, this will be */
|
|
|
|
/* our common data. */
|
2001-08-06 22:53:11 +00:00
|
|
|
#if defined(UDATA_STATIC_LIB) || defined(UDATA_DLL)
|
|
|
|
extern const DataHeader U_IMPORT U_ICUDATA_ENTRY_POINT;
|
2001-07-26 21:55:49 +00:00
|
|
|
#endif
|
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
|
|
|
|
/*----------------------------------------------------------------------*
|
|
|
|
* *
|
|
|
|
* openCommonData Attempt to open a common format (.dat) file *
|
|
|
|
* Map it into memory (if it's not there already) *
|
|
|
|
* and return a UDataMemory object for it. *
|
|
|
|
* The UDataMemory object will either be heap or *
|
|
|
|
* global - in either case, it is permanent and can *
|
|
|
|
* be safely passed back the chain of callers. *
|
|
|
|
* *
|
|
|
|
*----------------------------------------------------------------------*/
|
1999-11-22 19:43:01 +00:00
|
|
|
static UDataMemory *
|
2001-08-10 20:50:07 +00:00
|
|
|
openCommonData(
|
|
|
|
const char *path, /* Path from OpenCHoice? */
|
|
|
|
UBool isICUData, /* ICU Data true if path == NULL */
|
|
|
|
UErrorCode *pErrorCode)
|
2001-08-15 22:39:42 +00:00
|
|
|
{
|
2000-05-03 23:11:04 +00:00
|
|
|
const char *inBasename;
|
1999-11-22 19:43:01 +00:00
|
|
|
char *basename, *suffix;
|
2001-08-10 20:50:07 +00:00
|
|
|
char pathBuffer[1024];
|
|
|
|
UDataMemory tData;
|
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
if (U_FAILURE(*pErrorCode)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
UDataMemory_init(&tData);
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
if (isICUData) {
|
|
|
|
/* "mini-cache" for common ICU data */
|
|
|
|
if(IS_DATA_MEMORY_LOADED(&commonICUData)) {
|
|
|
|
return &commonICUData;
|
|
|
|
}
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
tData.pHeader = &U_ICUDATA_ENTRY_POINT;
|
|
|
|
checkCommonData(&tData, pErrorCode);
|
|
|
|
if (U_SUCCESS(*pErrorCode)) {
|
|
|
|
setCommonICUData(&tData);
|
|
|
|
return &commonICUData;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return NULL;
|
|
|
|
}
|
2000-05-03 23:11:04 +00:00
|
|
|
}
|
2001-08-15 23:27:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* request is NOT for ICU Data.
|
2001-08-15 22:39:42 +00:00
|
|
|
* Is the requested data already cached? */
|
|
|
|
{
|
2001-08-10 20:50:07 +00:00
|
|
|
UDataMemory *dataToReturn = udata_findCachedData(path);
|
|
|
|
if (dataToReturn != NULL) {
|
|
|
|
return dataToReturn;
|
|
|
|
}
|
|
|
|
}
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
/* Requested item is not in the cache.
|
|
|
|
* Hunt it down, trying all the fall back locations.
|
|
|
|
*/
|
2000-05-03 23:11:04 +00:00
|
|
|
basename=setPathGetBasename(path, pathBuffer);
|
2001-08-15 22:39:42 +00:00
|
|
|
inBasename=findBasename(path);
|
|
|
|
if(*inBasename==0) {
|
|
|
|
/* no basename, no common data */
|
|
|
|
*pErrorCode=U_FILE_ACCESS_ERROR;
|
|
|
|
return NULL;
|
2000-05-03 23:11:04 +00:00
|
|
|
}
|
2001-08-15 23:27:38 +00:00
|
|
|
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
/* set up the file name */
|
|
|
|
suffix=strcpy_returnEnd(basename, inBasename);
|
2001-08-10 20:50:07 +00:00
|
|
|
uprv_strcpy(suffix, "." DATA_TYPE); /* DATA_TYPE is ".dat" */
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
/* try path/basename first, then basename only */
|
2001-08-15 22:39:42 +00:00
|
|
|
uprv_mapFile(&tData, pathBuffer);
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
if (!IS_DATA_MEMORY_LOADED(&tData)) {
|
|
|
|
if (basename!=pathBuffer) {
|
|
|
|
uprv_mapFile(&tData, basename);
|
1999-11-22 19:43:01 +00:00
|
|
|
}
|
|
|
|
}
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
if (!IS_DATA_MEMORY_LOADED(&tData)) {
|
|
|
|
/* no common data */
|
|
|
|
*pErrorCode=U_FILE_ACCESS_ERROR;
|
|
|
|
return NULL;
|
|
|
|
}
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
/* we have mapped a file, check its header */
|
|
|
|
tData.pHeader=tData.pHeader;
|
|
|
|
checkCommonData(&tData, pErrorCode);
|
2001-08-15 23:27:38 +00:00
|
|
|
|
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
/* Cache the UDataMemory struct for this .dat file,
|
|
|
|
* so we won't need to hunt it down and map it again next time
|
|
|
|
* something is needed from it. */
|
|
|
|
return udata_cacheDataItem(path, &tData, pErrorCode);
|
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
|
1999-12-01 01:02:06 +00:00
|
|
|
|
|
|
|
|
2001-08-17 00:00:55 +00:00
|
|
|
|
|
|
|
/*----------------------------------------------------------------------*
|
|
|
|
* *
|
|
|
|
* extendICUData If the full set of ICU data was not loaded at *
|
|
|
|
* program startup, load it now. This function will *
|
|
|
|
* be called when the lookup of an ICU data item in *
|
|
|
|
* the common ICU data fails. *
|
|
|
|
* *
|
|
|
|
* return true if new data is loaded, false otherwise.*
|
|
|
|
* *
|
|
|
|
*----------------------------------------------------------------------*/
|
|
|
|
static UBool extendICUData()
|
|
|
|
{
|
|
|
|
#ifndef OS390
|
|
|
|
return FALSE;
|
|
|
|
#else
|
|
|
|
|
|
|
|
/* 390 specific Library Loading.
|
|
|
|
* This is the only platform left that dynamically loads an ICU Data Library.
|
|
|
|
* All other platforms use .data files when dynamic loading is required, but
|
|
|
|
* this turn out to be awkward to support in 390 batch mode.
|
|
|
|
*/
|
|
|
|
static UBool isLibLoaded;
|
|
|
|
|
|
|
|
if (isLibLoaded == TRUE) {
|
|
|
|
/* We've already been through here once and loaded the full ICU Data library.
|
|
|
|
* Nothing more left to load. */
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Need to do loading in a mutex-protected section of code because we
|
|
|
|
* don't want to load it twice because of a race.
|
|
|
|
*/
|
|
|
|
umtx_lock(NULL);
|
|
|
|
if (isLibLoaded) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: the following code is just a mish-mash of pieces from the
|
|
|
|
* previous data library loading code that might be useful
|
|
|
|
* in putting together something that works.
|
|
|
|
*/
|
|
|
|
|
|
|
|
Library lib;
|
|
|
|
inBasename=U_ICUDATA_NAME"_390";
|
|
|
|
suffix=strcpy_returnEnd(basename, inBasename);
|
|
|
|
uprv_strcpy(suffix, LIB_SUFFIX);
|
|
|
|
|
|
|
|
if (uprv_isOS390BatchMode()) {
|
|
|
|
/* ### hack: we still need to get u_getDataDirectory() fixed
|
|
|
|
for OS/390 (batch mode - always return "//"? )
|
|
|
|
and this here straightened out with LIB_PREFIX and LIB_SUFFIX (both empty?!)
|
|
|
|
This is probably due to the strange file system on OS/390. It's more like
|
|
|
|
a database with short entry names than a typical file system. */
|
|
|
|
if (s390dll) {
|
|
|
|
lib=LOAD_LIBRARY("//IXMICUD1", "//IXMICUD1");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* U_ICUDATA_NAME should always have the correct name */
|
|
|
|
/* 390port: BUT FOR BATCH MODE IT IS AN EXCEPTION ... */
|
|
|
|
/* 390port: THE NEXT LINE OF CODE WILL NOT WORK !!!!! */
|
|
|
|
/*lib=LOAD_LIBRARY("//" U_ICUDATA_NAME, "//" U_ICUDATA_NAME);*/
|
|
|
|
lib=LOAD_LIBRARY("//IXMICUDA", "//IXMICUDA"); /*390port*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lib=LOAD_LIBRARY(pathBuffer, basename);
|
|
|
|
if(!IS_LIBRARY(lib) && basename!=pathBuffer) {
|
|
|
|
/* try basename only next */
|
|
|
|
lib=LOAD_LIBRARY(basename, basename);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(IS_LIBRARY(lib)) {
|
|
|
|
/* we have a data DLL - what kind of lookup do we need here? */
|
|
|
|
char entryName[100];
|
|
|
|
const DataHeader *pHeader;
|
|
|
|
*basename=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
checkCommonData(&tData, pErrorCode);
|
|
|
|
if (U_SUCCESS(*pErrorCode)) {
|
|
|
|
/* Don't close the old data - someone might be using it
|
|
|
|
* May need to change the global to be a pointer rather than a static struct
|
|
|
|
* to get a clean switch-over.
|
|
|
|
*/
|
|
|
|
setCommonICUData(&tData);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
umtx_unlock(NULL);
|
2001-08-17 00:18:49 +00:00
|
|
|
return TRUE; /* SUCCESS? */
|
2001-08-17 00:00:55 +00:00
|
|
|
#endif /* OS390 */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
U_CAPI void U_EXPORT2
|
|
|
|
udata_setCommonData(const void *data, UErrorCode *pErrorCode) {
|
2001-08-15 22:39:42 +00:00
|
|
|
UDataMemory dataMemory;
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) {
|
|
|
|
return;
|
|
|
|
}
|
1999-12-01 01:02:06 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
if(data==NULL) {
|
|
|
|
*pErrorCode=U_ILLEGAL_ARGUMENT_ERROR;
|
|
|
|
return;
|
1999-11-22 19:43:01 +00:00
|
|
|
}
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
/* do we already have common ICU data set? */
|
|
|
|
if(IS_DATA_MEMORY_LOADED(&commonICUData)) {
|
|
|
|
*pErrorCode=U_USING_DEFAULT_ERROR;
|
|
|
|
return;
|
2001-08-15 22:39:42 +00:00
|
|
|
}
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
/* normalize the data pointer and test for validity */
|
|
|
|
UDataMemory_init(&dataMemory);
|
|
|
|
dataMemory.pHeader = normalizeDataPointer((const DataHeader *)data);
|
|
|
|
checkCommonData(&dataMemory, pErrorCode);
|
|
|
|
if (U_FAILURE(*pErrorCode)) {return;}
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
/* we have common data */
|
|
|
|
if (setCommonICUData(&dataMemory) == FALSE) {
|
|
|
|
/* some thread passed us */
|
|
|
|
*pErrorCode=U_USING_DEFAULT_ERROR;
|
2000-05-03 23:11:04 +00:00
|
|
|
}
|
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* udata_setAppData
|
|
|
|
*
|
|
|
|
*---------------------------------------------------------------------------- */
|
2001-08-15 23:27:38 +00:00
|
|
|
U_CAPI void U_EXPORT2
|
2001-08-10 20:50:07 +00:00
|
|
|
udata_setAppData(const char *path, const void *data, UErrorCode *err)
|
|
|
|
{
|
2001-08-15 22:39:42 +00:00
|
|
|
UDataMemory udm;
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
if(err==NULL || U_FAILURE(*err)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(data==NULL) {
|
|
|
|
*err=U_ILLEGAL_ARGUMENT_ERROR;
|
|
|
|
return;
|
|
|
|
}
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
UDataMemory_init(&udm);
|
|
|
|
udm.pHeader = data;
|
|
|
|
checkCommonData(&udm, err);
|
|
|
|
udata_cacheDataItem(path, &udm, err);
|
2001-08-17 00:18:49 +00:00
|
|
|
}
|
2001-08-10 20:50:07 +00:00
|
|
|
|
2001-08-17 00:18:49 +00:00
|
|
|
/*----------------------------------------------------------------------------*
|
|
|
|
* *
|
|
|
|
* checkDataItem Given a freshly located/loaded data item, either *
|
|
|
|
* an entry in a common file or a separately loaded file, *
|
|
|
|
* sanity check its header, and see if the data is *
|
|
|
|
* acceptable to the app. *
|
|
|
|
* If the data is good, create and return a UDataMemory *
|
|
|
|
* object that can be returned to the application. *
|
|
|
|
* Return NULL on any sort of failure. *
|
|
|
|
* *
|
|
|
|
*----------------------------------------------------------------------------*/
|
2001-08-15 22:39:42 +00:00
|
|
|
static UDataMemory *
|
2001-08-15 23:27:38 +00:00
|
|
|
checkDataItem
|
2001-08-15 22:39:42 +00:00
|
|
|
(
|
|
|
|
const DataHeader *pHeader, /* The data item to be checked. */
|
|
|
|
UDataMemoryIsAcceptable *isAcceptable, /* App's call-back function */
|
|
|
|
void *context, /* pass-thru param for above. */
|
|
|
|
const char *type, /* pass-thru param for above. */
|
|
|
|
const char *name, /* pass-thru param for above. */
|
|
|
|
UErrorCode *nonFatalErr, /* Error code if this data was not acceptable */
|
|
|
|
/* but openChoice should continue with */
|
|
|
|
/* trying to get data from fallback path. */
|
|
|
|
UErrorCode *fatalErr /* Bad error, caller should return immediately */
|
|
|
|
)
|
|
|
|
{
|
|
|
|
UDataMemory *rDataMem = NULL; /* the new UDataMemory, to be returned. */
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
if (U_FAILURE(*fatalErr)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(pHeader->dataHeader.magic1==0xda &&
|
|
|
|
pHeader->dataHeader.magic2==0x27 &&
|
|
|
|
pHeader->info.isBigEndian==U_IS_BIG_ENDIAN &&
|
|
|
|
(isAcceptable==NULL || isAcceptable(context, type, name, &pHeader->info))
|
|
|
|
) {
|
|
|
|
rDataMem=UDataMemory_createNewInstance(fatalErr);
|
|
|
|
if (U_FAILURE(*fatalErr)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
UDataMemory_init(rDataMem);
|
|
|
|
rDataMem->pHeader = pHeader;
|
|
|
|
} else {
|
|
|
|
/* the data is not acceptable, look further */
|
|
|
|
/* If we eventually find something good, this errorcode will be */
|
|
|
|
/* cleared out. */
|
|
|
|
*nonFatalErr=U_INVALID_FORMAT_ERROR;
|
|
|
|
}
|
|
|
|
return rDataMem;
|
|
|
|
}
|
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
/*------------------------------------------------------------------------------*
|
|
|
|
* *
|
|
|
|
* setEntryNames Files Names and DLL entry point names have different *
|
|
|
|
* rules for what's valid. For a DLL entry point name, *
|
|
|
|
" change all '.' or '-'s to '_'. For both, append *
|
|
|
|
* '.typeName' (or _typeName) to the name *
|
|
|
|
* *
|
|
|
|
*------------------------------------------------------------------------------*/
|
2000-05-03 23:11:04 +00:00
|
|
|
static void
|
|
|
|
setEntryNames(const char *type, const char *name,
|
|
|
|
char *tocEntryName, char *dllEntryName) {
|
|
|
|
while(*name!=0) {
|
|
|
|
*tocEntryName=*name;
|
|
|
|
if(*name=='.' || *name=='-') {
|
|
|
|
*dllEntryName='_';
|
|
|
|
} else {
|
|
|
|
*dllEntryName=*name;
|
|
|
|
}
|
|
|
|
++tocEntryName;
|
|
|
|
++dllEntryName;
|
|
|
|
++name;
|
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
if(type!=NULL && *type!=0) {
|
|
|
|
*tocEntryName++='.';
|
|
|
|
*dllEntryName++='_';
|
|
|
|
do {
|
|
|
|
*tocEntryName++=*dllEntryName++=*type++;
|
|
|
|
} while(*type!=0);
|
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
*tocEntryName=*dllEntryName=0;
|
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* A note on the ownership of Mapped Memory
|
|
|
|
*
|
|
|
|
* For common format files, ownership resides with the UDataMemory object
|
|
|
|
* that lives in the cache of opened common data. These UDataMemorys are private
|
|
|
|
* to the udata implementation, and are never seen directly by users.
|
|
|
|
*
|
|
|
|
* The UDataMemory objects returned to users will have the address of some desired
|
|
|
|
* data within the mapped region, but they wont have the mapping info itself, and thus
|
|
|
|
* won't cause anything to be removed from memory when they are closed.
|
|
|
|
*
|
|
|
|
* For individual data files, the UDataMemory returned to the user holds the
|
|
|
|
* information necessary to unmap the data on close. If the user independently
|
|
|
|
* opens the same data file twice, two completely independent mappings will be made.
|
|
|
|
*
|
|
|
|
* For common data passed in from the user via udata_setAppData() or
|
|
|
|
* udata_setCommonData(), ownership remains with the user.
|
|
|
|
*
|
|
|
|
* UDataMemory objects themselves, as opposed to the memory they describe,
|
2001-08-15 23:27:38 +00:00
|
|
|
* can be anywhere - heap, stack/local or global.
|
2001-08-15 22:39:42 +00:00
|
|
|
* They have a flag bit to indicate when they're heap allocated and thus
|
|
|
|
* must be deleted when closed.
|
|
|
|
*/
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
|
|
|
|
/* main data loading function ----------------------------------------------- */
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
static UDataMemory *
|
|
|
|
doOpenChoice(const char *path, const char *type, const char *name,
|
|
|
|
UDataMemoryIsAcceptable *isAcceptable, void *context,
|
2001-08-15 23:27:38 +00:00
|
|
|
UErrorCode *pErrorCode)
|
2001-08-15 22:39:42 +00:00
|
|
|
{
|
|
|
|
char pathBuffer[1024];
|
|
|
|
char tocEntryName[100];
|
|
|
|
char dllEntryName[100];
|
|
|
|
UDataMemory dataMemory;
|
2001-08-15 23:27:38 +00:00
|
|
|
UDataMemory *pCommonData;
|
2001-08-15 22:39:42 +00:00
|
|
|
UDataMemory *pEntryData;
|
|
|
|
const DataHeader *pHeader;
|
|
|
|
const char *inBasename;
|
2001-08-15 23:27:38 +00:00
|
|
|
char *basename;
|
2001-08-15 22:39:42 +00:00
|
|
|
char *suffix;
|
|
|
|
UErrorCode errorCode=U_ZERO_ERROR;
|
|
|
|
UBool isICUData= (UBool)(path==NULL);
|
2000-05-03 23:11:04 +00:00
|
|
|
|
|
|
|
/* set up the ToC names for DLL and offset-ToC lookups */
|
|
|
|
setEntryNames(type, name, tocEntryName, dllEntryName);
|
|
|
|
|
2000-12-05 02:28:32 +00:00
|
|
|
|
2001-08-17 00:00:55 +00:00
|
|
|
/* try to get common data. The loop is for platforms such as the 390 that do
|
|
|
|
* not initially load the full set of ICU data. If the lookup of an ICU data item
|
|
|
|
* fails, the full (but slower to load) set is loaded, the and the loop repeats,
|
|
|
|
* trying the lookup again. Once the full set of ICU data is loaded, the loop wont
|
|
|
|
* repeat because the full set will be checked the first time through. */
|
|
|
|
for (;;) {
|
|
|
|
pCommonData=openCommonData(path, isICUData, &errorCode);
|
2000-11-04 02:16:12 +00:00
|
|
|
#ifdef UDATA_DEBUG
|
2001-08-17 00:00:55 +00:00
|
|
|
fprintf(stderr, "commonData;%p\n", pCommonData);
|
|
|
|
fflush(stderr);
|
2000-11-04 02:16:12 +00:00
|
|
|
#endif
|
2001-08-17 00:00:55 +00:00
|
|
|
|
|
|
|
if(U_SUCCESS(errorCode)) {
|
|
|
|
/* look up the data piece in the common data */
|
|
|
|
pHeader=pCommonData->lookupFn(pCommonData, tocEntryName, dllEntryName, &errorCode);
|
2000-11-04 02:16:12 +00:00
|
|
|
#ifdef UDATA_DEBUG
|
2001-08-17 00:00:55 +00:00
|
|
|
fprintf(stderr, "Common found: %p\n", pHeader);
|
2000-11-04 02:16:12 +00:00
|
|
|
#endif
|
2001-08-17 00:00:55 +00:00
|
|
|
if(pHeader!=NULL) {
|
|
|
|
pEntryData = checkDataItem(pHeader, isAcceptable, context, type, name, &errorCode, pErrorCode);
|
|
|
|
if (U_FAILURE(*pErrorCode)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (pEntryData != NULL) {
|
|
|
|
return pEntryData;
|
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
}
|
|
|
|
}
|
2001-08-17 00:00:55 +00:00
|
|
|
/* Data wasn't found. If we were looking for an ICUData item and there is
|
|
|
|
* more data available, load it and try again,
|
|
|
|
* otherwise break out of this loop. */
|
|
|
|
if (!(isICUData && extendICUData())) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
};
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
|
|
|
|
/* the data was not found in the common data, look further */
|
2000-05-03 23:11:04 +00:00
|
|
|
/* try to get an individual data file */
|
|
|
|
basename=setPathGetBasename(path, pathBuffer);
|
|
|
|
if(isICUData) {
|
|
|
|
inBasename=COMMON_DATA_NAME;
|
|
|
|
} else {
|
|
|
|
inBasename=findBasename(path);
|
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-11-04 02:16:12 +00:00
|
|
|
#ifdef UDATA_DEBUG
|
|
|
|
fprintf(stderr, "looking for ind. file\n");
|
|
|
|
#endif
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
/* try path+basename+"_"+entryName first */
|
2000-06-05 17:24:34 +00:00
|
|
|
if(*inBasename!=0) {
|
2000-05-03 23:11:04 +00:00
|
|
|
suffix=strcpy_returnEnd(basename, inBasename);
|
|
|
|
*suffix++='_';
|
|
|
|
uprv_strcpy(suffix, tocEntryName);
|
|
|
|
|
2001-08-10 20:50:07 +00:00
|
|
|
if( uprv_mapFile(&dataMemory, pathBuffer) ||
|
2001-08-15 23:27:38 +00:00
|
|
|
(basename!=pathBuffer && uprv_mapFile(&dataMemory, basename)))
|
2001-08-15 22:39:42 +00:00
|
|
|
{
|
|
|
|
/* We mapped a file. Check out its contents. */
|
|
|
|
pEntryData = checkDataItem(dataMemory.pHeader, isAcceptable, context, type, name, &errorCode, pErrorCode);
|
2001-08-15 23:27:38 +00:00
|
|
|
if (pEntryData != NULL)
|
2001-08-15 22:39:42 +00:00
|
|
|
{
|
|
|
|
/* Got good data.
|
|
|
|
* Hand off ownership of the backing memory to the user's UDataMemory.
|
|
|
|
* and return it. */
|
2001-08-15 23:27:38 +00:00
|
|
|
pEntryData->mapAddr = dataMemory.mapAddr;
|
2001-08-15 22:39:42 +00:00
|
|
|
pEntryData->map = dataMemory.map;
|
2000-05-03 23:11:04 +00:00
|
|
|
return pEntryData;
|
1999-11-22 19:43:01 +00:00
|
|
|
}
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
/* the data is not acceptable, or some error occured. Either way, unmap the memory */
|
|
|
|
uprv_unmapFile(&dataMemory);
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
/* If we had a nasty error, bail out completely. */
|
|
|
|
if (U_FAILURE(*pErrorCode)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
/* Otherwise remember that we found data but didn't like it for some reason,
|
|
|
|
* and continue looking
|
|
|
|
*/
|
|
|
|
errorCode=U_INVALID_FORMAT_ERROR;
|
1999-11-22 19:43:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
/* try path+entryName next */
|
|
|
|
uprv_strcpy(basename, tocEntryName);
|
2001-08-10 20:50:07 +00:00
|
|
|
if( uprv_mapFile(&dataMemory, pathBuffer) ||
|
2001-08-15 23:27:38 +00:00
|
|
|
(basename!=pathBuffer && uprv_mapFile(&dataMemory, basename)))
|
2001-08-15 22:39:42 +00:00
|
|
|
{
|
|
|
|
pEntryData = checkDataItem(dataMemory.pHeader, isAcceptable, context, type, name, &errorCode, pErrorCode);
|
|
|
|
if (pEntryData != NULL) {
|
|
|
|
/* Data is good.
|
|
|
|
* Hand off ownership of the backing memory to the user's UDataMemory.
|
|
|
|
* and return it. */
|
2001-08-15 23:27:38 +00:00
|
|
|
pEntryData->mapAddr = dataMemory.mapAddr;
|
2001-08-15 22:39:42 +00:00
|
|
|
pEntryData->map = dataMemory.map;
|
2000-05-03 23:11:04 +00:00
|
|
|
return pEntryData;
|
|
|
|
}
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
/* the data is not acceptable, or some error occured. Either way, unmap the memory */
|
|
|
|
uprv_unmapFile(&dataMemory);
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
/* If we had a nasty error, bail out completely. */
|
|
|
|
if (U_FAILURE(*pErrorCode)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
/* Otherwise remember that we found data but didn't like it for some reason */
|
|
|
|
errorCode=U_INVALID_FORMAT_ERROR;
|
1999-11-22 19:43:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* data not found */
|
|
|
|
if(U_SUCCESS(*pErrorCode)) {
|
1999-11-22 19:53:19 +00:00
|
|
|
if(U_SUCCESS(errorCode)) {
|
|
|
|
/* file not found */
|
|
|
|
*pErrorCode=U_FILE_ACCESS_ERROR;
|
|
|
|
} else {
|
|
|
|
/* entry point not found or rejected */
|
|
|
|
*pErrorCode=errorCode;
|
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
static void
|
|
|
|
unloadDataMemory(UDataMemory *pData) {
|
2001-08-15 22:39:42 +00:00
|
|
|
uprv_unmapFile(pData);
|
2000-05-03 23:11:04 +00:00
|
|
|
}
|
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
/* API ---------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
U_CAPI UDataMemory * U_EXPORT2
|
|
|
|
udata_open(const char *path, const char *type, const char *name,
|
|
|
|
UErrorCode *pErrorCode) {
|
2000-05-30 21:47:19 +00:00
|
|
|
#ifdef UDATA_DEBUG
|
2000-12-05 02:28:32 +00:00
|
|
|
fprintf(stderr, "udata_open(): Opening: %s . %s\n", name, type);
|
|
|
|
fflush(stderr);
|
2000-05-30 21:47:19 +00:00
|
|
|
#endif
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) {
|
|
|
|
return NULL;
|
|
|
|
} else if(name==NULL || *name==0) {
|
|
|
|
*pErrorCode=U_ILLEGAL_ARGUMENT_ERROR;
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
return doOpenChoice(path, type, name, NULL, NULL, pErrorCode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
U_CAPI UDataMemory * U_EXPORT2
|
|
|
|
udata_openChoice(const char *path, const char *type, const char *name,
|
|
|
|
UDataMemoryIsAcceptable *isAcceptable, void *context,
|
|
|
|
UErrorCode *pErrorCode) {
|
2000-11-04 02:16:12 +00:00
|
|
|
#ifdef UDATA_DEBUG
|
|
|
|
fprintf(stderr, "udata_openChoice(): Opening: %s . %s\n", name, type);fflush(stderr);
|
|
|
|
#endif
|
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) {
|
|
|
|
return NULL;
|
|
|
|
} else if(name==NULL || *name==0 || isAcceptable==NULL) {
|
|
|
|
*pErrorCode=U_ILLEGAL_ARGUMENT_ERROR;
|
1999-11-22 19:43:01 +00:00
|
|
|
return NULL;
|
2000-05-03 23:11:04 +00:00
|
|
|
} else {
|
|
|
|
return doOpenChoice(path, type, name, isAcceptable, context, pErrorCode);
|
1999-11-22 19:43:01 +00:00
|
|
|
}
|
2000-05-03 23:11:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
U_CAPI void U_EXPORT2
|
|
|
|
udata_close(UDataMemory *pData) {
|
2000-11-04 02:16:12 +00:00
|
|
|
#ifdef UDATA_DEBUG
|
2001-08-15 22:39:42 +00:00
|
|
|
fprintf(stderr, "udata_close()\n");fflush(stderr);
|
2000-11-04 02:16:12 +00:00
|
|
|
#endif
|
2001-08-15 23:27:38 +00:00
|
|
|
|
2001-08-15 22:39:42 +00:00
|
|
|
if(pData!=NULL) {
|
2000-05-03 23:11:04 +00:00
|
|
|
unloadDataMemory(pData);
|
2001-08-15 22:39:42 +00:00
|
|
|
if(pData->flags & MALLOCED_UDATAMEMORY_FLAG ) {
|
2000-05-03 23:11:04 +00:00
|
|
|
uprv_free(pData);
|
|
|
|
} else {
|
2001-08-15 22:39:42 +00:00
|
|
|
UDataMemory_init(pData);
|
2000-05-03 23:11:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
U_CAPI const void * U_EXPORT2
|
|
|
|
udata_getMemory(UDataMemory *pData) {
|
|
|
|
if(pData!=NULL && pData->pHeader!=NULL) {
|
|
|
|
return (char *)(pData->pHeader)+pData->pHeader->dataHeader.headerSize;
|
|
|
|
} else {
|
1999-11-22 19:43:01 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2000-05-03 23:11:04 +00:00
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
|
2000-05-03 23:11:04 +00:00
|
|
|
U_CAPI void U_EXPORT2
|
|
|
|
udata_getInfo(UDataMemory *pData, UDataInfo *pInfo) {
|
|
|
|
if(pInfo!=NULL) {
|
|
|
|
if(pData!=NULL && pData->pHeader!=NULL) {
|
|
|
|
const UDataInfo *info=&pData->pHeader->info;
|
2001-05-25 21:50:10 +00:00
|
|
|
if(pInfo->size>info->size) {
|
2000-05-03 23:11:04 +00:00
|
|
|
pInfo->size=info->size;
|
|
|
|
}
|
2001-05-25 21:50:10 +00:00
|
|
|
uprv_memcpy((uint16_t *)pInfo+1, (uint16_t *)info+1, pInfo->size-2);
|
2000-05-03 23:11:04 +00:00
|
|
|
} else {
|
|
|
|
pInfo->size=0;
|
|
|
|
}
|
|
|
|
}
|
1999-11-22 19:43:01 +00:00
|
|
|
}
|