2001-03-21 20:44:20 +00:00
|
|
|
/*
|
|
|
|
**********************************************************************
|
|
|
|
* Copyright (C) 2000-2001, International Business Machines
|
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
**********************************************************************
|
|
|
|
*/
|
|
|
|
|
2000-05-15 18:39:17 +00:00
|
|
|
#ifndef URESIMP_H
|
|
|
|
#define URESIMP_H
|
|
|
|
|
|
|
|
#include "unicode/ures.h"
|
|
|
|
|
|
|
|
#include "uresdata.h"
|
|
|
|
|
|
|
|
#define kRootLocaleName "root"
|
|
|
|
|
|
|
|
/*
|
|
|
|
The default minor version and the version separator must be exactly one
|
|
|
|
character long.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define kDefaultMinorVersion "0"
|
|
|
|
#define kVersionSeparator "."
|
|
|
|
#define kVersionTag "Version"
|
|
|
|
|
2000-07-12 22:59:57 +00:00
|
|
|
#define MAGIC1 19700503
|
|
|
|
#define MAGIC2 19641227
|
|
|
|
|
2001-10-10 18:05:10 +00:00
|
|
|
/*
|
2000-05-15 18:39:17 +00:00
|
|
|
enum UResEntryType {
|
|
|
|
ENTRY_OK = 0,
|
|
|
|
ENTRY_GOTO_ROOT = 1,
|
|
|
|
ENTRY_GOTO_DEFAULT = 2,
|
|
|
|
ENTRY_INVALID = 3
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef enum UResEntryType UResEntryType;
|
2001-10-10 18:05:10 +00:00
|
|
|
*/
|
2000-05-15 18:39:17 +00:00
|
|
|
|
|
|
|
struct UResourceDataEntry;
|
|
|
|
typedef struct UResourceDataEntry UResourceDataEntry;
|
|
|
|
|
|
|
|
struct UResourceDataEntry {
|
|
|
|
char *fName; /* name of the locale for bundle - still to decide whether it is original or fallback */
|
|
|
|
char *fPath; /* path to bundle - used for distinguishing between resources with the same name */
|
|
|
|
uint32_t fCountExisting; /* how much is this resource used */
|
|
|
|
ResourceData fData; /* data for low level access */
|
|
|
|
UResourceDataEntry *fParent; /*next resource in fallback chain*/
|
2001-10-10 18:05:10 +00:00
|
|
|
/* UResEntryType fStatus;*/
|
2000-05-15 18:39:17 +00:00
|
|
|
UErrorCode fBogus;
|
|
|
|
int32_t fHashKey; /* for faster access in the hashtable */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct UResourceBundle {
|
|
|
|
const char *fKey; /*tag*/
|
|
|
|
char *fVersion;
|
2000-05-18 22:08:39 +00:00
|
|
|
UBool fHasFallback;
|
|
|
|
UBool fIsTopLevel;
|
2000-07-12 22:59:57 +00:00
|
|
|
uint32_t fMagic1;
|
|
|
|
uint32_t fMagic2;
|
|
|
|
/*UBool fIsStackObject;*/
|
2000-05-15 18:39:17 +00:00
|
|
|
UResourceDataEntry *fData; /*for low-level access*/
|
|
|
|
int32_t fIndex;
|
|
|
|
int32_t fSize;
|
|
|
|
ResourceData fResData;
|
|
|
|
Resource fRes;
|
|
|
|
};
|
|
|
|
|
2001-07-27 17:15:30 +00:00
|
|
|
U_CFUNC void ures_setIsStackObject( UResourceBundle* resB, UBool state);
|
|
|
|
U_CFUNC UBool ures_isStackObject( UResourceBundle* resB);
|
2000-05-15 18:39:17 +00:00
|
|
|
|
2001-07-27 17:15:30 +00:00
|
|
|
/* Some getters used by the copy constructor */
|
|
|
|
U_CFUNC const char* ures_getName(const UResourceBundle* resB);
|
|
|
|
U_CFUNC const char* ures_getPath(const UResourceBundle* resB);
|
|
|
|
|
2000-05-15 18:39:17 +00:00
|
|
|
/* Candidates for export */
|
2001-10-04 00:12:19 +00:00
|
|
|
U_CFUNC UResourceBundle *ures_copyResb(UResourceBundle *r, const UResourceBundle *original, UErrorCode *status);
|
2000-05-15 18:39:17 +00:00
|
|
|
#endif /*URESIMP_H*/
|