Thread-safe handling of errno variable.
[yaz-moved-to-github.git] / include / yaz / nmem.h
1 /*
2  * Copyright (c) 1995-2001, Index Data.
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and
5  * its documentation, in whole or in part, for any purpose, is hereby granted,
6  * provided that:
7  *
8  * 1. This copyright and permission notice appear in all copies of the
9  * software and its documentation. Notices of copyright or attribution
10  * which appear at the beginning of any file must remain unchanged.
11  *
12  * 2. The names of Index Data or the individual authors may not be used to
13  * endorse or promote products derived from this software without specific
14  * prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND,
17  * EXPRESS, IMPLIED, OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
18  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
19  * IN NO EVENT SHALL INDEX DATA BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
20  * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES
21  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR
22  * NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
23  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
24  * OF THIS SOFTWARE.
25  *
26  * $Log: nmem.h,v $
27  * Revision 1.8  2002-09-25 12:37:07  adam
28  * Thread-safe handling of errno variable.
29  * For server option -a@ produces APDU prints in YAZ log.
30  *
31  * Revision 1.7  2002/09/10 18:41:18  adam
32  * Added yaz_errno
33  *
34  * Revision 1.6  2001/06/26 14:11:27  adam
35  * Added MUTEX functions for NMEM module (used by OID utility).
36  *
37  * Revision 1.5  2001/03/25 21:55:12  adam
38  * Added odr_intdup. Ztest server returns TaskPackage for ItemUpdate.
39  *
40  * Revision 1.4  2000/05/09 11:48:58  adam
41  * Fix (bug introduced by previous commit).
42  *
43  * Revision 1.3  2000/05/09 10:55:05  adam
44  * Public nmem_print_list (for debugging).
45  *
46  * Revision 1.2  2000/02/28 11:20:06  adam
47  * Using autoconf. New definitions: YAZ_BEGIN_CDECL/YAZ_END_CDECL.
48  *
49  * Revision 1.1  1999/11/30 13:47:11  adam
50  * Improved installation. Moved header files to include/yaz.
51  *
52  * Revision 1.10  1998/10/19 15:24:20  adam
53  * New nmem utility, nmem_transfer, that transfer blocks from one
54  * NMEM to another.
55  *
56  * Revision 1.9  1998/10/13 16:00:17  adam
57  * Implemented nmem_critical_{enter,leave}.
58  *
59  * Revision 1.8  1998/07/20 12:35:59  adam
60  * Added more memory diagnostics (when NMEM_DEBUG is 1).
61  *
62  * Revision 1.7  1997/10/31 12:20:08  adam
63  * Improved memory debugging for xmalloc/nmem.c. References to NMEM
64  * instead of ODR in n ESPEC-1 handling in source d1_espec.c.
65  * Bug fix: missing fclose in data1_read_espec1.
66  *
67  */
68
69 #ifndef NMEM_H
70 #define NMEM_H
71 #include <yaz/yconfig.h>
72
73 #define NMEM_DEBUG 0
74
75 #ifndef NMEM_DEBUG
76 #define NMEM_DEBUG 0
77 #endif
78
79 YAZ_BEGIN_CDECL
80
81 typedef struct nmem_block
82 {
83     char *buf;              /* memory allocated in this block */
84     int size;               /* size of buf */
85     int top;                /* top of buffer */
86     struct nmem_block *next;
87 } nmem_block;
88
89 typedef struct nmem_control
90 {
91     int total;
92     nmem_block *blocks;
93     struct nmem_control *next;
94 } nmem_control;
95
96 typedef struct nmem_mutex *NMEM_MUTEX;
97 YAZ_EXPORT void nmem_mutex_create(NMEM_MUTEX *);
98 YAZ_EXPORT void nmem_mutex_enter(NMEM_MUTEX);
99 YAZ_EXPORT void nmem_mutex_leave(NMEM_MUTEX);
100 YAZ_EXPORT void nmem_mutex_destroy(NMEM_MUTEX *);
101
102 typedef struct nmem_control *NMEM;
103
104 YAZ_EXPORT void nmem_reset(NMEM n);
105 YAZ_EXPORT int nmem_total(NMEM n);
106 YAZ_EXPORT char *nmem_strdup (NMEM mem, const char *src);
107 YAZ_EXPORT int *nmem_intdup (NMEM mem, int v);
108 YAZ_EXPORT void nmem_transfer (NMEM dst, NMEM src);
109
110 YAZ_EXPORT void nmem_critical_enter (void);
111 YAZ_EXPORT void nmem_critical_leave (void);
112
113 #if NMEM_DEBUG
114
115 YAZ_EXPORT NMEM nmem_create_f(const char *file, int line);
116 YAZ_EXPORT void nmem_destroy_f(const char *file, int line, NMEM n);
117 YAZ_EXPORT void *nmem_malloc_f(const char *file, int line, NMEM n, int size);
118 #define nmem_create() nmem_create_f(__FILE__, __LINE__)
119 #define nmem_destroy(x) nmem_destroy_f(__FILE__, __LINE__, (x))
120 #define nmem_malloc(x, y) nmem_malloc_f(__FILE__, __LINE__, (x), (y))
121
122 YAZ_EXPORT void nmem_print_list (void);
123
124 #else
125
126 YAZ_EXPORT NMEM nmem_create(void);
127 YAZ_EXPORT void nmem_destroy(NMEM n);
128 YAZ_EXPORT void *nmem_malloc(NMEM n, int size);
129
130 #define nmem_print_list()
131
132 #endif
133
134 YAZ_EXPORT void nmem_init (void);
135 YAZ_EXPORT void nmem_exit (void);
136 YAZ_EXPORT int yaz_errno (void);
137 YAZ_EXPORT void yaz_set_errno (int v);
138
139 YAZ_END_CDECL
140
141 #endif