2016-11-25 17:18:40 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the UCB release of Plan 9. It is subject to the license
|
|
|
|
* terms in the LICENSE file found in the top-level directory of this
|
|
|
|
* distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No
|
|
|
|
* part of the UCB release of Plan 9, including this file, may be copied,
|
|
|
|
* modified, propagated, or distributed except according to the terms contained
|
|
|
|
* in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <u.h>
|
2017-04-19 23:33:14 +02:00
|
|
|
#include <lib9.h>
|
2016-11-25 17:18:40 +01:00
|
|
|
#include <bio.h>
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
Bread(Biobufhdr *bp, void *ap, int32_t count)
|
|
|
|
{
|
|
|
|
int32_t c;
|
|
|
|
uint8_t *p;
|
|
|
|
int i, n, ic;
|
|
|
|
|
|
|
|
p = ap;
|
|
|
|
c = count;
|
|
|
|
ic = bp->icount;
|
|
|
|
|
|
|
|
while(c > 0) {
|
|
|
|
n = -ic;
|
|
|
|
if(n > c)
|
|
|
|
n = c;
|
|
|
|
if(n == 0) {
|
|
|
|
if(bp->state != Bractive)
|
|
|
|
break;
|
|
|
|
i = read(bp->fid, bp->bbuf, bp->bsize);
|
|
|
|
if(i <= 0) {
|
|
|
|
bp->state = Bracteof;
|
|
|
|
if(i < 0)
|
|
|
|
bp->state = Binactive;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
bp->gbuf = bp->bbuf;
|
|
|
|
bp->offset += i;
|
|
|
|
if(i < bp->bsize) {
|
|
|
|
memmove(bp->ebuf-i, bp->bbuf, i);
|
|
|
|
bp->gbuf = bp->ebuf-i;
|
|
|
|
}
|
|
|
|
ic = -i;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
memmove(p, bp->ebuf+ic, n);
|
|
|
|
c -= n;
|
|
|
|
ic += n;
|
|
|
|
p += n;
|
|
|
|
}
|
|
|
|
bp->icount = ic;
|
|
|
|
if(count == c && bp->state == Binactive)
|
|
|
|
return -1;
|
|
|
|
return count-c;
|
|
|
|
}
|