123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- /*
- * 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>
- #include <libc.h>
- #include <draw.h>
- Image *
- creadimage(Display *d, int fd, int dolock)
- {
- char hdr[5*12+1];
- Rectangle r;
- int m, nb, miny, maxy, new, ldepth, ncblock;
- uint8_t *buf, *a;
- Image *i;
- uint32_t chan;
- if(readn(fd, hdr, 5*12) != 5*12)
- return nil;
- /*
- * distinguish new channel descriptor from old ldepth.
- * channel descriptors have letters as well as numbers,
- * while ldepths are a single digit formatted as %-11d.
- */
- new = 0;
- for(m=0; m<10; m++){
- if(hdr[m] != ' '){
- new = 1;
- break;
- }
- }
- if(hdr[11] != ' '){
- werrstr("creadimage: bad format");
- return nil;
- }
- if(new){
- hdr[11] = '\0';
- if((chan = strtochan(hdr)) == 0){
- werrstr("creadimage: bad channel string %s", hdr);
- return nil;
- }
- }else{
- ldepth = ((int)hdr[10])-'0';
- if(ldepth<0 || ldepth>3){
- werrstr("creadimage: bad ldepth %d", ldepth);
- return nil;
- }
- chan = drawld2chan[ldepth];
- }
- r.min.x=atoi(hdr+1*12);
- r.min.y=atoi(hdr+2*12);
- r.max.x=atoi(hdr+3*12);
- r.max.y=atoi(hdr+4*12);
- if(r.min.x>r.max.x || r.min.y>r.max.y){
- werrstr("creadimage: bad rectangle");
- return nil;
- }
- if(d){
- if(dolock)
- lockdisplay(d);
- i = allocimage(d, r, chan, 0, 0);
- setmalloctag(i, getcallerpc(&d));
- if(dolock)
- unlockdisplay(d);
- if(i == nil)
- return nil;
- }else{
- i = mallocz(sizeof(Image), 1);
- if(i == nil)
- return nil;
- }
- ncblock = _compblocksize(r, chantodepth(chan));
- buf = malloc(ncblock);
- if(buf == nil)
- goto Errout;
- miny = r.min.y;
- while(miny != r.max.y){
- if(readn(fd, hdr, 2*12) != 2*12){
- Errout:
- if(dolock)
- lockdisplay(d);
- Erroutlock:
- freeimage(i);
- if(dolock)
- unlockdisplay(d);
- free(buf);
- return nil;
- }
- maxy = atoi(hdr+0*12);
- nb = atoi(hdr+1*12);
- if(maxy<=miny || r.max.y<maxy){
- werrstr("creadimage: bad maxy %d", maxy);
- goto Errout;
- }
- if(nb<=0 || ncblock<nb){
- werrstr("creadimage: bad count %d", nb);
- goto Errout;
- }
- if(readn(fd, buf, nb)!=nb)
- goto Errout;
- if(d){
- if(dolock)
- lockdisplay(d);
- a = bufimage(i->display, 21+nb);
- if(a == nil)
- goto Erroutlock;
- a[0] = 'Y';
- BPLONG(a+1, i->id);
- BPLONG(a+5, r.min.x);
- BPLONG(a+9, miny);
- BPLONG(a+13, r.max.x);
- BPLONG(a+17, maxy);
- if(!new) /* old image: flip the data bits */
- _twiddlecompressed(buf, nb);
- memmove(a+21, buf, nb);
- if(dolock)
- unlockdisplay(d);
- }
- miny = maxy;
- }
- free(buf);
- return i;
- }
|