Changed code so that it compiles as C++.
[yaz-moved-to-github.git] / odr / odr_mem.c
1 /*
2  * Copyright (c) 1995, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_mem.c,v $
7  * Revision 1.13  1998-02-11 11:53:34  adam
8  * Changed code so that it compiles as C++.
9  *
10  * Revision 1.12  1995/11/08 17:41:33  quinn
11  * Smallish.
12  *
13  * Revision 1.11  1995/11/01  13:54:43  quinn
14  * Minor adjustments
15  *
16  * Revision 1.10  1995/10/25  16:58:19  quinn
17  * Stupid bug in odr_malloc
18  *
19  * Revision 1.9  1995/10/13  16:08:08  quinn
20  * Added OID utility
21  *
22  * Revision 1.8  1995/09/29  17:12:24  quinn
23  * Smallish
24  *
25  * Revision 1.7  1995/09/27  15:02:59  quinn
26  * Modified function heads & prototypes.
27  *
28  * Revision 1.6  1995/08/21  09:10:41  quinn
29  * Smallish fixes to suppport new formats.
30  *
31  * Revision 1.5  1995/05/16  08:50:55  quinn
32  * License, documentation, and memory fixes
33  *
34  * Revision 1.4  1995/05/15  11:56:09  quinn
35  * More work on memory management.
36  *
37  * Revision 1.3  1995/04/18  08:15:21  quinn
38  * Added dynamic memory allocation on encoding (whew). Code is now somewhat
39  * neater. We'll make the same change for decoding one day.
40  *
41  * Revision 1.2  1995/03/17  10:17:52  quinn
42  * Added memory management.
43  *
44  * Revision 1.1  1995/03/14  10:27:40  quinn
45  * Modified makefile to use common lib
46  * Beginning to add memory management to odr
47  *
48  */
49
50 #include <stdlib.h>
51 #include <odr.h>
52 #include <xmalloc.h>
53
54 /* ------------------------ NIBBLE MEMORY ---------------------- */
55
56 /*
57  * Extract the memory control block from o.
58  */
59 NMEM odr_extract_mem(ODR o)
60 {
61     NMEM r = o->mem;
62
63     o->mem = 0;
64     return r;
65 }
66
67 void *odr_malloc(ODR o, int size)
68 {
69     if (o && !o->mem)
70         o->mem = nmem_create();
71     return nmem_malloc(o ? o->mem : 0, size);
72 }
73
74 int odr_total(ODR o)
75 {
76     return o->mem ? nmem_total(o->mem) : 0;
77 }
78
79 /* ---------- memory management for data encoding ----------*/
80
81
82 int odr_grow_block(odr_ecblock *b, int min_bytes)
83 {
84     int togrow;
85
86     if (!b->can_grow)
87         return -1;
88     if (!b->size)
89         togrow = 1024;
90     else
91         togrow = b->size;
92     if (togrow < min_bytes)
93         togrow = min_bytes;
94     if (b->size && !(b->buf =(unsigned char *)xrealloc(b->buf, b->size += togrow)))
95         abort();
96     else if (!b->size && !(b->buf = (unsigned char *)xmalloc(b->size = togrow)))
97         abort();
98 #ifdef ODR_DEBUG
99     fprintf(stderr, "New size for encode_buffer: %d\n", b->size);
100 #endif
101     return 0;
102 }
103
104 int odr_write(ODR o, unsigned char *buf, int bytes)
105 {
106     if (o->ecb.pos + bytes >= o->ecb.size && odr_grow_block(&o->ecb, bytes))
107     {
108         o->error = OSPACE;
109         return -1;
110     }
111     memcpy(o->ecb.buf + o->ecb.pos, buf, bytes);
112     o->ecb.pos += bytes;
113     if (o->ecb.pos > o->ecb.top)
114         o->ecb.top = o->ecb.pos;
115     return 0;
116 }
117
118 int odr_seek(ODR o, int whence, int offset)
119 {
120     if (whence == ODR_S_CUR)
121         offset += o->ecb.pos;
122     else if (whence == ODR_S_END)
123         offset += o->ecb.top;
124     if (offset > o->ecb.size && odr_grow_block(&o->ecb, offset - o->ecb.size))
125     {
126         o->error = OSPACE;
127         return -1;
128     }
129     o->ecb.pos = offset;
130     return 0;
131 }