1 /* $NetBSD: citrus_stdenc.c,v 1.3 2005/10/29 18:02:04 tshiozak Exp $ */
4 * Copyright (c)2003 Citrus Project,
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 #include <sys/cdefs.h>
30 #if defined(LIBC_SCCS) && !defined(lint)
31 __RCSID("$NetBSD: citrus_stdenc.c,v 1.3 2005/10/29 18:02:04 tshiozak Exp $");
32 #endif /* LIBC_SCCS and not lint */
34 #include "namespace.h"
40 #include "citrus_namespace.h"
41 #include "citrus_types.h"
42 #include "citrus_module.h"
43 #include "citrus_stdenc.h"
44 #include "citrus_none.h"
46 struct _citrus_stdenc _citrus_stdenc_default
= {
47 &_citrus_NONE_stdenc_ops
, /* ce_ops */
48 NULL
, /* ce_closure */
50 &_citrus_NONE_stdenc_traits
, /* ce_traits */
57 get_state_desc_default(struct _citrus_stdenc
* __restrict ce
,
60 struct _citrus_stdenc_state_desc
* __restrict d
)
66 _citrus_stdenc_open(struct _citrus_stdenc
* __restrict
* __restrict rce
,
67 char const * __restrict encname
,
68 const void * __restrict variable
, size_t lenvar
)
71 _citrus_module_t handle
;
72 struct _citrus_stdenc
*ce
;
73 _citrus_stdenc_getops_t getops
;
75 _DIAGASSERT(encname
!= NULL
);
76 _DIAGASSERT(!lenvar
|| variable
!=NULL
);
77 _DIAGASSERT(rce
!= NULL
);
79 if (!strcmp(encname
, _CITRUS_DEFAULT_STDENC_NAME
)) {
80 *rce
= &_citrus_stdenc_default
;
83 ce
= malloc(sizeof(*ce
));
89 ce
->ce_closure
= NULL
;
93 ret
= _citrus_load_module(&handle
, encname
);
97 ce
->ce_module
= handle
;
100 (_citrus_stdenc_getops_t
)_citrus_find_getops(ce
->ce_module
,
102 if (getops
== NULL
) {
107 ce
->ce_ops
= (struct _citrus_stdenc_ops
*)malloc(sizeof(*ce
->ce_ops
));
108 if (ce
->ce_ops
== NULL
) {
113 ret
= (*getops
)(ce
->ce_ops
, sizeof(*ce
->ce_ops
),
114 _CITRUS_STDENC_ABI_VERSION
);
118 /* If return ABI version is not expected, should fixup it */
119 if (ce
->ce_ops
->eo_abi_version
< 0x00000002) {
120 ce
->ce_ops
->eo_get_state_desc
= &get_state_desc_default
;
123 /* validation check */
124 if (ce
->ce_ops
->eo_init
== NULL
||
125 ce
->ce_ops
->eo_uninit
== NULL
||
126 ce
->ce_ops
->eo_init_state
== NULL
||
127 ce
->ce_ops
->eo_mbtocs
== NULL
||
128 ce
->ce_ops
->eo_cstomb
== NULL
||
129 ce
->ce_ops
->eo_mbtowc
== NULL
||
130 ce
->ce_ops
->eo_wctomb
== NULL
||
131 ce
->ce_ops
->eo_get_state_desc
== NULL
)
134 /* allocate traits */
135 ce
->ce_traits
= malloc(sizeof(*ce
->ce_traits
));
136 if (ce
->ce_traits
== NULL
) {
140 /* init and get closure */
141 ret
= (*ce
->ce_ops
->eo_init
)(ce
, variable
, lenvar
, ce
->ce_traits
);
150 _citrus_stdenc_close(ce
);
155 _citrus_stdenc_close(struct _citrus_stdenc
*ce
)
158 _DIAGASSERT(ce
!= NULL
);
160 if (ce
== &_citrus_stdenc_default
)
165 if (ce
->ce_closure
&& ce
->ce_ops
->eo_uninit
)
166 (*ce
->ce_ops
->eo_uninit
)(ce
);
170 _citrus_unload_module(ce
->ce_module
);
180 _citrus_stdenc_open(struct _citrus_stdenc
* __restrict
* __restrict rce
,
181 char const * __restrict encname
,
182 const void * __restrict variable
, size_t lenvar
)
184 if (!strcmp(encname
, _CITRUS_DEFAULT_STDENC_NAME
)) {
185 *rce
= &_citrus_stdenc_default
;
193 _citrus_stdenc_close(struct _citrus_stdenc
*ce
)