]>
git.saurik.com Git - apple/libc.git/blob - db/recno/FreeBSD/rec_get.c
2 * Copyright (c) 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #if defined(LIBC_SCCS) && !defined(lint)
35 static char sccsid
[] = "@(#)rec_get.c 8.9 (Berkeley) 8/18/94";
36 #endif /* LIBC_SCCS and not lint */
37 #include <sys/cdefs.h>
38 __FBSDID("$FreeBSD: src/lib/libc/db/recno/rec_get.c,v 1.5 2002/03/22 21:52:02 obrien Exp $");
40 #include <sys/types.h>
53 * __REC_GET -- Get a record from the btree.
56 * dbp: pointer to access method
58 * data: data to return
59 * flag: currently unused
62 * RET_ERROR, RET_SUCCESS and RET_SPECIAL if the key not found.
65 __rec_get(dbp
, key
, data
, flags
)
78 /* Toss any page pinned across calls. */
79 if (t
->bt_pinned
!= NULL
) {
80 mpool_put(t
->bt_mp
, t
->bt_pinned
, 0);
84 /* Get currently doesn't take any flags, and keys of 0 are illegal. */
85 if (flags
|| (nrec
= *(recno_t
*)key
->data
) == 0) {
91 * If we haven't seen this record yet, try to find it in the
94 if (nrec
> t
->bt_nrecs
) {
95 if (F_ISSET(t
, R_EOF
| R_INMEM
))
97 if ((status
= t
->bt_irec(t
, nrec
)) != RET_SUCCESS
)
102 if ((e
= __rec_search(t
, nrec
, SEARCH
)) == NULL
)
105 status
= __rec_ret(t
, e
, 0, NULL
, data
);
106 if (F_ISSET(t
, B_DB_LOCK
))
107 mpool_put(t
->bt_mp
, e
->page
, 0);
109 t
->bt_pinned
= e
->page
;
114 * __REC_FPIPE -- Get fixed length records from a pipe.
118 * cnt: records to read
121 * RET_ERROR, RET_SUCCESS
134 if (t
->bt_rdata
.size
< t
->bt_reclen
) {
135 t
->bt_rdata
.data
= t
->bt_rdata
.data
== NULL
?
136 malloc(t
->bt_reclen
) :
137 reallocf(t
->bt_rdata
.data
, t
->bt_reclen
);
138 if (t
->bt_rdata
.data
== NULL
)
140 t
->bt_rdata
.size
= t
->bt_reclen
;
142 data
.data
= t
->bt_rdata
.data
;
143 data
.size
= t
->bt_reclen
;
145 for (nrec
= t
->bt_nrecs
; nrec
< top
;) {
147 for (p
= t
->bt_rdata
.data
;; *p
++ = ch
)
148 if ((ch
= getc(t
->bt_rfp
)) == EOF
|| !--len
) {
152 memset(p
, t
->bt_bval
, len
);
154 nrec
, &data
, 0) != RET_SUCCESS
)
164 return (RET_SPECIAL
);
166 return (RET_SUCCESS
);
170 * __REC_VPIPE -- Get variable length records from a pipe.
174 * cnt: records to read
177 * RET_ERROR, RET_SUCCESS
192 for (nrec
= t
->bt_nrecs
; nrec
< top
; ++nrec
) {
193 for (p
= t
->bt_rdata
.data
,
194 sz
= t
->bt_rdata
.size
;; *p
++ = ch
, --sz
) {
195 if ((ch
= getc(t
->bt_rfp
)) == EOF
|| ch
== bval
) {
196 data
.data
= t
->bt_rdata
.data
;
197 data
.size
= p
- (u_char
*)t
->bt_rdata
.data
;
198 if (ch
== EOF
&& data
.size
== 0)
200 if (__rec_iput(t
, nrec
, &data
, 0)
206 len
= p
- (u_char
*)t
->bt_rdata
.data
;
207 t
->bt_rdata
.size
+= (sz
= 256);
208 t
->bt_rdata
.data
= t
->bt_rdata
.data
== NULL
?
209 malloc(t
->bt_rdata
.size
) :
210 reallocf(t
->bt_rdata
.data
, t
->bt_rdata
.size
);
211 if (t
->bt_rdata
.data
== NULL
)
213 p
= (u_char
*)t
->bt_rdata
.data
+ len
;
221 return (RET_SPECIAL
);
223 return (RET_SUCCESS
);
227 * __REC_FMAP -- Get fixed length records from a file.
231 * cnt: records to read
234 * RET_ERROR, RET_SUCCESS
246 if (t
->bt_rdata
.size
< t
->bt_reclen
) {
247 t
->bt_rdata
.data
= t
->bt_rdata
.data
== NULL
?
248 malloc(t
->bt_reclen
) :
249 reallocf(t
->bt_rdata
.data
, t
->bt_reclen
);
250 if (t
->bt_rdata
.data
== NULL
)
252 t
->bt_rdata
.size
= t
->bt_reclen
;
254 data
.data
= t
->bt_rdata
.data
;
255 data
.size
= t
->bt_reclen
;
257 sp
= (u_char
*)t
->bt_cmap
;
258 ep
= (u_char
*)t
->bt_emap
;
259 for (nrec
= t
->bt_nrecs
; nrec
< top
; ++nrec
) {
262 return (RET_SPECIAL
);
265 for (p
= t
->bt_rdata
.data
;
266 sp
< ep
&& len
> 0; *p
++ = *sp
++, --len
);
268 memset(p
, t
->bt_bval
, len
);
269 if (__rec_iput(t
, nrec
, &data
, 0) != RET_SUCCESS
)
272 t
->bt_cmap
= (caddr_t
)sp
;
273 return (RET_SUCCESS
);
277 * __REC_VMAP -- Get variable length records from a file.
281 * cnt: records to read
284 * RET_ERROR, RET_SUCCESS
296 sp
= (u_char
*)t
->bt_cmap
;
297 ep
= (u_char
*)t
->bt_emap
;
300 for (nrec
= t
->bt_nrecs
; nrec
< top
; ++nrec
) {
303 return (RET_SPECIAL
);
305 for (data
.data
= sp
; sp
< ep
&& *sp
!= bval
; ++sp
);
306 data
.size
= sp
- (u_char
*)data
.data
;
307 if (__rec_iput(t
, nrec
, &data
, 0) != RET_SUCCESS
)
311 t
->bt_cmap
= (caddr_t
)sp
;
312 return (RET_SUCCESS
);