blob: 5e64551cb7960a69a1fea38b74338074f665f03f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
#ifndef _RCC_INTERNAL_H
#define _RCC_INTERNAL_H
#ifndef LIBRCC_DATA_DIR
# define LIBRCC_DATA_DIR "/usr/lib/rcc"
#endif /* LIBRCC_DATA_DIR */
#define RCC_MAX_LANGUAGE_PARRENTS 4
#define RCC_MAX_RELATIONS RCC_MAX_LANGUAGES
#ifdef HAVE_STRNLEN
#define STRNLEN(str,n) (n?strnlen(str,n):strlen(str))
#else
#define STRNLEN(str,n) (n?rccStrnlen(str,n):strlen(str))
#endif /* !strnlen */
#define RCC_MAX_PLUGINS 32
#define RCC_MAX_STRING_CHARS 1024
#define RCC_MAX_PREFIX_CHARS 32
#define RCC_MIN_DB4_CHARS 3
#include "librcc.h"
#include "recode.h"
#include "engine.h"
#include "lngconfig.h"
#include "rccstring.h"
#include "rccdb4.h"
#include "rcciconv.h"
#include "rccstring.h"
#include "rccmutex.h"
#include "rcclocale.h"
#define RCC_MAX_ADDITION_CHARSETS 8
#define RCC_MAX_DISABLED_CHARSETS 64
typedef rcc_language_id rcc_language_parrent_list[RCC_MAX_LANGUAGE_PARRENTS];
struct rcc_language_internal_t {
rcc_language language;
rcc_language_id parrents[RCC_MAX_LANGUAGE_PARRENTS + 1];
unsigned char latin;
};
typedef struct rcc_language_internal_t rcc_language_internal;
typedef rcc_language_internal *rcc_language_internal_ptr;
struct rcc_class_internal_t {
rcc_class cl;
rcc_charset *additional;
rcc_charset *disabled;
};
typedef struct rcc_class_internal_t rcc_class_internal;
struct rcc_context_t {
char locale_variable[RCC_MAX_VARIABLE_CHARS+1];
rcc_language_alias_list aliases;
rcc_option_value options[RCC_MAX_OPTIONS];
unsigned char default_options[RCC_MAX_OPTIONS];
unsigned int max_languages;
unsigned int n_languages;
rcc_language_internal *ilang;
rcc_language_ptr *languages;
rcc_language_config configs;
unsigned int max_classes;
unsigned int n_classes;
rcc_class_internal *iclass;
rcc_class_ptr *classes;
rcc_iconv *iconv_from;
rcc_iconv iconv_auto[RCC_MAX_CHARSETS];
rcc_iconv fsiconv;
char tmpbuffer[RCC_MAX_STRING_CHARS+sizeof(rcc_string_header)+9];
char lastprefix[RCC_MAX_PREFIX_CHARS+1];
unsigned char configure;
rcc_language_config current_config;
rcc_language_id current_language;
rcc_language_id default_language;
db4_context db4ctx;
rcc_mutex mutex;
unsigned int configuration_lock;
};
typedef struct rcc_context_t rcc_context_s;
int rccConfigure(rcc_context ctx);
char *rccCreateResult(rcc_context ctx, size_t len);
extern rcc_context rcc_default_ctx;
extern char *rcc_home_dir;
#endif /* _RCC_INTERNAL_H */
|