libc/citrus: Forward declare some structs to fix some warnings.
[dragonfly.git] / lib / libc / citrus / citrus_mapper_local.h
1 /* $NetBSD: citrus_mapper_local.h,v 1.2 2008/02/09 14:56:20 junyoung Exp $ */
2 /* $DragonFly: src/lib/libc/citrus/citrus_mapper_local.h,v 1.3 2008/04/10 10:21:01 hasso Exp $ */
3
4 /*-
5  * Copyright (c)2003 Citrus Project,
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #ifndef _CITRUS_MAPPER_LOCAL_H_
31 #define _CITRUS_MAPPER_LOCAL_H_
32
33 #include "citrus_module.h"
34
35 struct _citrus_mapper;
36 struct _citrus_mapper_area;
37 struct _citrus_mapper_ops;
38 struct _citrus_mapper_traits;
39
40 #define _CITRUS_MAPPER_GETOPS_FUNC_BASE(_n_)                            \
41 int _n_(struct _citrus_mapper_ops *, size_t, u_int32_t)
42 #define _CITRUS_MAPPER_GETOPS_FUNC(_n_)                                 \
43 _CITRUS_MAPPER_GETOPS_FUNC_BASE(_citrus_##_n_##_mapper_getops)
44
45 #define _CITRUS_MAPPER_DECLS(_m_)                                       \
46 static int      _citrus_##_m_##_mapper_init                             \
47         (struct _citrus_mapper_area *__restrict,                        \
48          struct _citrus_mapper * __restrict, const char * __restrict,   \
49          const void * __restrict, size_t,                               \
50          struct _citrus_mapper_traits * __restrict, size_t);            \
51 static void     _citrus_##_m_##_mapper_uninit(struct _citrus_mapper *); \
52 static int      _citrus_##_m_##_mapper_convert                          \
53         (struct _citrus_mapper * __restrict,                            \
54          _citrus_index_t * __restrict, _citrus_index_t,                 \
55          void * __restrict);                                            \
56 static void     _citrus_##_m_##_mapper_init_state                       \
57         (struct _citrus_mapper * __restrict, void * __restrict);        \
58 CITRUS_MODULE(_m_, mapper, _citrus_##_m_##_mapper_getops)
59
60 #define _CITRUS_MAPPER_DEF_OPS(_m_)                                     \
61 struct _citrus_mapper_ops _citrus_##_m_##_mapper_ops = {                \
62         /* mo_abi_version */    _CITRUS_MAPPER_ABI_VERSION,             \
63         /* mo_init */           &_citrus_##_m_##_mapper_init,           \
64         /* mo_uninit */         &_citrus_##_m_##_mapper_uninit,         \
65         /* mo_convert */        &_citrus_##_m_##_mapper_convert,        \
66         /* mo_init_state */     &_citrus_##_m_##_mapper_init_state      \
67 }
68
69 typedef _CITRUS_MAPPER_GETOPS_FUNC_BASE((*_citrus_mapper_getops_t));
70 typedef int     (*_citrus_mapper_init_t)(
71         struct _citrus_mapper_area *__restrict,
72         struct _citrus_mapper *__restrict, const char *__restrict,
73         const void *__restrict, size_t,
74         struct _citrus_mapper_traits * __restrict, size_t);
75 typedef void    (*_citrus_mapper_uninit_t)(struct _citrus_mapper *);
76 typedef int     (*_citrus_mapper_convert_t)(struct _citrus_mapper * __restrict,
77                                             _citrus_index_t * __restrict,
78                                             _citrus_index_t,
79                                             void * __restrict);
80 typedef void    (*_citrus_mapper_init_state_t)(
81         struct _citrus_mapper * __restrict, void * __restrict);
82
83 /*
84  * ABI version change log
85  *   0x00000001
86  *     initial version
87  */
88 #define _CITRUS_MAPPER_ABI_VERSION      0x00000001
89 struct _citrus_mapper_ops {
90         uint32_t                        mo_abi_version;
91         /* version 0x00000001 */
92         _citrus_mapper_init_t           mo_init;
93         _citrus_mapper_uninit_t         mo_uninit;
94         _citrus_mapper_convert_t        mo_convert;
95         _citrus_mapper_init_state_t     mo_init_state;
96 };
97
98 struct _citrus_mapper_traits {
99         /* version 0x00000001 */
100         size_t                          mt_state_size;
101         size_t                          mt_src_max;
102         size_t                          mt_dst_max;
103 };
104
105 struct _citrus_mapper {
106         struct _citrus_mapper_ops               *cm_ops;
107         void                                    *cm_closure;
108         _citrus_module_t                        cm_module;
109         struct _citrus_mapper_traits            *cm_traits;
110         _CITRUS_HASH_ENTRY(_citrus_mapper)      cm_entry;
111         int                                     cm_refcount;
112         char                                    *cm_key;
113 };
114 #endif