15 char *io_type_names[] = { "FDSEEK", "FDNOSEEK", "BUFFER", "CBSEEK", "CBNOSEEK", "BUFCHAIN" };
21 iolayer.c - encapsulates different source of data into a single framework.
25 io_glue *ig = io_new_fd( fileno(stdin) );
26 method = io_reqmeth( IOL_NOSEEK | IOL_MMAP ); // not implemented yet
27 io_glue_commit_types(ig); // always assume IOL_SEEK for now
30 code that uses ig->readcb()
31 to read data goes here.
34 code that uses ig->readcb()
35 to read data goes here.
44 iolayer.c implements the basic functions to create and destroy io_glue
45 objects for Imager. The typical usage pattern for data sources is:
47 1. Create the source (io_new_fd)
48 2. Define how you want to get data from it (io_reqmeth)
49 3. read from it using the interface requested (ig->readdb, ig->mmapcb)
50 4. Close the source, which
51 shouldn't really close the underlying source. (io_glue DESTROY)
53 =head1 FUNCTION REFERENCE
55 Some of these functions are internal.
62 static ssize_t fd_read(io_glue *ig, void *buf, size_t count);
63 static ssize_t fd_write(io_glue *ig, const void *buf, size_t count);
64 static off_t fd_seek(io_glue *ig, off_t offset, int whence);
65 static void fd_close(io_glue *ig);
66 static ssize_t fd_size(io_glue *ig);
69 * Callbacks for sources that cannot seek
72 /* fakeseek_read: read method for when emulating a seekable source
75 fakeseek_read(io_glue *ig, void *buf, size_t count) {
76 io_ex_fseek *exdata = ig->exdata;
84 * Callbacks for sources that can seek
88 =item realseek_read(ig, buf, count)
90 Does the reading from a source that can be seeked on
93 buf - buffer to return data in
94 count - number of bytes to read into buffer max
101 realseek_read(io_glue *ig, void *buf, size_t count) {
102 io_ex_rseek *ier = ig->exdata;
103 void *p = ig->source.cb.p;
108 IOL_DEB( printf("realseek_read: fd = %d, ier->cpos = %ld, buf = %p, "
109 "count = %d\n", fd, (long) ier->cpos, buf, count) );
110 /* Is this a good idea? Would it be better to handle differently?
112 while( count!=bc && (rc = ig->source.cb.readcb(p,cbuf+bc,count-bc))>0 ) {
117 IOL_DEB( printf("realseek_read: rc = %d, bc = %d\n", rc, bc) );
123 =item realseek_write(ig, buf, count)
125 Does the writing to a 'source' that can be seeked on
128 buf - buffer that contains data
129 count - number of bytes to write
136 realseek_write(io_glue *ig, const void *buf, size_t count) {
137 io_ex_rseek *ier = ig->exdata;
138 void *p = ig->source.cb.p;
141 char *cbuf = (char*)buf;
143 IOL_DEB( printf("realseek_write: ig = %p, ier->cpos = %ld, buf = %p, "
144 "count = %d\n", ig, (long) ier->cpos, buf, count) );
146 /* Is this a good idea? Would it be better to handle differently?
148 while( count!=bc && (rc = ig->source.cb.writecb(p,cbuf+bc,count-bc))>0 ) {
153 IOL_DEB( printf("realseek_write: rc = %d, bc = %d\n", rc, bc) );
159 =item realseek_close(ig)
161 Closes a source that can be seeked on. Not sure if this should be an
162 actual close or not. Does nothing for now. Should be fixed.
170 realseek_close(io_glue *ig) {
171 mm_log((1, "realseek_close(ig %p)\n", ig));
172 if (ig->source.cb.closecb)
173 ig->source.cb.closecb(ig->source.cb.p);
177 /* realseek_seek(ig, offset, whence)
179 Implements seeking for a source that is seekable, the purpose of having this is to be able to
180 have an offset into a file that is different from what the underlying library thinks.
183 offset - offset into stream
184 whence - whence argument a la lseek
191 realseek_seek(io_glue *ig, off_t offset, int whence) {
192 /* io_ex_rseek *ier = ig->exdata; Needed later */
193 void *p = ig->source.cb.p;
195 IOL_DEB( printf("realseek_seek(ig %p, offset %ld, whence %d)\n", ig, (long) offset, whence) );
196 rc = ig->source.cb.seekcb(p, offset, whence);
198 IOL_DEB( printf("realseek_seek: rc %ld\n", (long) rc) );
200 /* FIXME: How about implementing this offset handling stuff? */
204 * Callbacks for sources that are a fixed size buffer
208 =item buffer_read(ig, buf, count)
210 Does the reading from a buffer source
213 buf - buffer to return data in
214 count - number of bytes to read into buffer max
221 buffer_read(io_glue *ig, void *buf, size_t count) {
222 io_ex_buffer *ieb = ig->exdata;
224 IOL_DEB( printf("buffer_read: fd = %d, ier->cpos = %ld, buf = %p, count = %d\n", fd, (long) ier->cpos, buf, count) );
226 if ( ieb->cpos+count > ig->source.buffer.len ) {
227 mm_log((1,"buffer_read: short read: cpos=%d, len=%d, count=%d\n", ieb->cpos, ig->source.buffer.len));
228 count = ig->source.buffer.len - ieb->cpos;
231 memcpy(buf, ig->source.buffer.data+ieb->cpos, count);
233 IOL_DEB( printf("buffer_read: rc = %d, count = %d\n", rc, count) );
239 =item buffer_write(ig, buf, count)
241 Does nothing, returns -1
244 buf - buffer that contains data
245 count - number of bytes to write
252 buffer_write(io_glue *ig, const void *buf, size_t count) {
253 mm_log((1, "buffer_write called, this method should never be called.\n"));
259 =item buffer_close(ig)
261 Closes a source that can be seeked on. Not sure if this should be an actual close
262 or not. Does nothing for now. Should be fixed.
271 buffer_close(io_glue *ig) {
272 mm_log((1, "buffer_close(ig %p)\n", ig));
273 /* FIXME: Do stuff here */
277 /* buffer_seek(ig, offset, whence)
279 Implements seeking for a buffer source.
282 offset - offset into stream
283 whence - whence argument a la lseek
290 buffer_seek(io_glue *ig, off_t offset, int whence) {
291 io_ex_buffer *ieb = ig->exdata;
292 off_t reqpos = offset
293 + (whence == SEEK_CUR)*ieb->cpos
294 + (whence == SEEK_END)*ig->source.buffer.len;
296 if (reqpos > ig->source.buffer.len) {
297 mm_log((1, "seeking out of readable range\n"));
302 IOL_DEB( printf("buffer_seek(ig %p, offset %ld, whence %d)\n", ig, (long) offset, whence) );
305 /* FIXME: How about implementing this offset handling stuff? */
313 * Callbacks for sources that are a chain of variable sized buffers
318 /* Helper functions for buffer chains */
325 mm_log((1, "io_blink_new()\n"));
327 ib = mymalloc(sizeof(io_blink));
333 memset(&ib->buf, 0, ib->len);
340 =item io_bchain_advance(ieb)
342 Advances the buffer chain to the next link - extending if
343 necessary. Also adjusts the cpos and tfill counters as needed.
345 ieb - buffer chain object
352 io_bchain_advance(io_ex_bchain *ieb) {
353 if (ieb->cp->next == NULL) {
354 ieb->tail = io_blink_new();
355 ieb->tail->prev = ieb->cp;
356 ieb->cp->next = ieb->tail;
358 ieb->tfill = 0; /* Only set this if we added a new slice */
360 ieb->cp = ieb->cp->next;
367 =item io_bchain_destroy()
369 frees all resources used by a buffer chain.
375 io_destroy_bufchain(io_ex_bchain *ieb) {
377 mm_log((1, "io_destroy_bufchain(ieb %p)\n", ieb));
381 io_blink *t = cp->next;
394 bufchain_dump(io_ex_bchain *ieb) {
395 mm_log((1, " buf_chain_dump(ieb %p)\n"));
396 mm_log((1, " buf_chain_dump: ieb->offset = %d\n", ieb->offset));
397 mm_log((1, " buf_chain_dump: ieb->length = %d\n", ieb->length));
398 mm_log((1, " buf_chain_dump: ieb->head = %p\n", ieb->head ));
399 mm_log((1, " buf_chain_dump: ieb->tail = %p\n", ieb->tail ));
400 mm_log((1, " buf_chain_dump: ieb->tfill = %d\n", ieb->tfill ));
401 mm_log((1, " buf_chain_dump: ieb->cp = %p\n", ieb->cp ));
402 mm_log((1, " buf_chain_dump: ieb->cpos = %d\n", ieb->cpos ));
403 mm_log((1, " buf_chain_dump: ieb->gpos = %d\n", ieb->gpos ));
408 * TRUE if lengths are NOT equal
414 chainlencert( io_glue *ig ) {
419 io_ex_bchain *ieb = ig->exdata;
420 io_blink *cp = ieb->head;
423 if (ieb->gpos > ieb->length) mm_log((1, "BBAR : ieb->gpos = %d, ieb->length = %d\n", ieb->gpos, ieb->length));
426 clen = (cp == ieb->tail) ? ieb->tfill : cp->len;
427 if (ieb->head == cp && cp->prev) mm_log((1, "Head of chain has a non null prev\n"));
428 if (ieb->tail == cp && cp->next) mm_log((1, "Tail of chain has a non null next\n"));
430 if (ieb->head != cp && !cp->prev) mm_log((1, "Middle of chain has a null prev\n"));
431 if (ieb->tail != cp && !cp->next) mm_log((1, "Middle of chain has a null next\n"));
433 if (cp->prev && cp->prev->next != cp) mm_log((1, "%p = cp->prev->next != cp\n", cp->prev->next));
434 if (cp->next && cp->next->prev != cp) mm_log((1, "%p cp->next->prev != cp\n", cp->next->prev));
441 if (!cfl) cpos += clen;
446 if (( csize != ieb->length )) mm_log((1, "BAR : csize = %d, ieb->length = %d\n", csize, ieb->length));
447 if (( cpos != ieb->gpos )) mm_log((1, "BAR : cpos = %d, ieb->gpos = %d\n", cpos, ieb->gpos ));
453 chaincert( io_glue *ig) {
455 io_ex_bchain *ieb = ig->exdata;
456 io_blink *cp = ieb->head;
458 mm_log((1, "Chain verification.\n"));
460 mm_log((1, " buf_chain_dump: ieb->offset = %d\n", ieb->offset));
461 mm_log((1, " buf_chain_dump: ieb->length = %d\n", ieb->length));
462 mm_log((1, " buf_chain_dump: ieb->head = %p\n", ieb->head ));
463 mm_log((1, " buf_chain_dump: ieb->tail = %p\n", ieb->tail ));
464 mm_log((1, " buf_chain_dump: ieb->tfill = %d\n", ieb->tfill ));
465 mm_log((1, " buf_chain_dump: ieb->cp = %p\n", ieb->cp ));
466 mm_log((1, " buf_chain_dump: ieb->cpos = %d\n", ieb->cpos ));
467 mm_log((1, " buf_chain_dump: ieb->gpos = %d\n", ieb->gpos ));
470 int clen = cp == ieb->tail ? ieb->tfill : cp->len;
471 mm_log((1, "link: %p <- %p -> %p\n", cp->prev, cp, cp->next));
472 if (ieb->head == cp && cp->prev) mm_log((1, "Head of chain has a non null prev\n"));
473 if (ieb->tail == cp && cp->next) mm_log((1, "Tail of chain has a non null next\n"));
475 if (ieb->head != cp && !cp->prev) mm_log((1, "Middle of chain has a null prev\n"));
476 if (ieb->tail != cp && !cp->next) mm_log((1, "Middle of chain has a null next\n"));
478 if (cp->prev && cp->prev->next != cp) mm_log((1, "%p = cp->prev->next != cp\n", cp->prev->next));
479 if (cp->next && cp->next->prev != cp) mm_log((1, "%p cp->next->prev != cp\n", cp->next->prev));
485 mm_log((1, "csize = %d %s ieb->length = %d\n", csize, csize == ieb->length ? "==" : "!=", ieb->length));
500 =item bufchain_read(ig, buf, count)
502 Does the reading from a source that can be seeked on
505 buf - buffer to return data in
506 count - number of bytes to read into buffer max
513 bufchain_read(io_glue *ig, void *buf, size_t count) {
514 io_ex_bchain *ieb = ig->exdata;
515 size_t scount = count;
519 mm_log((1, "bufchain_read(ig %p, buf %p, count %ld)\n", ig, buf, count));
522 int clen = (ieb->cp == ieb->tail) ? ieb->tfill : ieb->cp->len;
523 if (clen == ieb->cpos) {
524 if (ieb->cp == ieb->tail) break; /* EOF */
525 ieb->cp = ieb->cp->next;
527 clen = (ieb->cp == ieb->tail) ? ieb->tfill : ieb->cp->len;
530 sk = clen - ieb->cpos;
531 sk = sk > scount ? scount : sk;
533 memcpy(&cbuf[count-scount], &ieb->cp->buf[ieb->cpos], sk);
539 mm_log((1, "bufchain_read: returning %d\n", count-scount));
548 =item bufchain_write(ig, buf, count)
550 Does the writing to a 'source' that can be seeked on
553 buf - buffer that contains data
554 count - number of bytes to write
561 bufchain_write(io_glue *ig, const void *buf, size_t count) {
562 char *cbuf = (char *)buf;
563 io_ex_bchain *ieb = ig->exdata;
564 size_t ocount = count;
567 mm_log((1, "bufchain_write: ig = %p, buf = %p, count = %d\n", ig, buf, count));
569 IOL_DEB( printf("bufchain_write: ig = %p, ieb->cpos = %ld, buf = %p, count = %d\n", ig, (long) ieb->cpos, buf, count) );
572 mm_log((2, "bufchain_write: - looping - count = %d\n", count));
573 if (ieb->cp->len == ieb->cpos) {
574 mm_log((1, "bufchain_write: cp->len == ieb->cpos = %d - advancing chain\n", (long) ieb->cpos));
575 io_bchain_advance(ieb);
578 sk = ieb->cp->len - ieb->cpos;
579 sk = sk > count ? count : sk;
580 memcpy(&ieb->cp->buf[ieb->cpos], &cbuf[ocount-count], sk);
582 if (ieb->cp == ieb->tail) {
583 int extend = ieb->cpos + sk - ieb->tfill;
584 mm_log((2, "bufchain_write: extending tail by %d\n", extend));
586 ieb->length += extend;
587 ieb->tfill += extend;
599 =item bufchain_close(ig)
601 Closes a source that can be seeked on. Not sure if this should be an actual close
602 or not. Does nothing for now. Should be fixed.
611 bufchain_close(io_glue *ig) {
612 mm_log((1, "bufchain_close(ig %p)\n",ig));
613 IOL_DEB( printf("bufchain_close(ig %p)\n", ig) );
614 /* FIXME: Commit a seek point here */
619 /* bufchain_seek(ig, offset, whence)
621 Implements seeking for a source that is seekable, the purpose of having this is to be able to
622 have an offset into a file that is different from what the underlying library thinks.
625 offset - offset into stream
626 whence - whence argument a la lseek
633 bufchain_seek(io_glue *ig, off_t offset, int whence) {
634 io_ex_bchain *ieb = ig->exdata;
639 off_t scount = offset;
642 mm_log((1, "bufchain_seek(ig %p, offset %ld, whence %d)\n", ig, offset, whence));
645 case SEEK_SET: /* SEEK_SET = 0, From the top */
651 int clen = (ieb->cp == ieb->tail) ? ieb->tfill : ieb->cp->len;
652 if (clen == ieb->cpos) {
653 if (ieb->cp == ieb->tail) break; /* EOF */
654 ieb->cp = ieb->cp->next;
656 clen = (ieb->cp == ieb->tail) ? ieb->tfill : ieb->cp->len;
659 sk = clen - ieb->cpos;
660 sk = sk > scount ? scount : sk;
671 * extending file - get ieb into consistent state and then
672 * call write which will get it to the correct position
675 memset(TB, 0, BBSIZ);
676 ieb->gpos = ieb->length;
677 ieb->cpos = ieb->tfill;
680 ssize_t rc, wl = i_min(wrlen, BBSIZ);
681 mm_log((1, "bufchain_seek: wrlen = %d, wl = %d\n", wrlen, wl));
682 rc = bufchain_write( ig, TB, wl );
683 if (rc != wl) m_fatal(0, "bufchain_seek: Unable to extend file\n");
691 m_fatal(123, "SEEK_CUR IS NOT IMPLEMENTED\n");
699 while(cof < 0 && ib->prev) {
705 case SEEK_END: /* SEEK_END = 2 */
706 if (cof>0) m_fatal(0, "bufchain_seek: SEEK_END + %d : Extending files via seek not supported!\n", cof);
709 ieb->cpos = ieb->tfill;
715 while(cof<0 && ib->prev) {
720 if (cof<0) m_fatal(0, "bufchain_seek: Tried to seek before start of file\n");
721 ieb->gpos = ieb->length+offset;
726 m_fatal(0, "bufchain_seek: Unhandled seek request: whence = %d\n", whence );
729 mm_log((2, "bufchain_seek: returning ieb->gpos = %d\n", ieb->gpos));
739 * Methods for setting up data source
743 =item io_obj_setp_buffer(io, p, len)
745 Sets an io_object for reading from a buffer source
747 io - io object that describes a source
748 p - pointer to buffer
749 len - length of buffer
755 io_obj_setp_buffer(io_obj *io, char *p, size_t len, closebufp closecb, void *closedata) {
756 io->buffer.type = BUFFER;
758 io->buffer.len = len;
759 io->buffer.closecb = closecb;
760 io->buffer.closedata = closedata;
765 =item io_obj_setp_buchain(io)
767 Sets an io_object for reading/writing from a buffer source
769 io - io object that describes a source
770 p - pointer to buffer
771 len - length of buffer
777 io_obj_setp_bufchain(io_obj *io) {
783 =item io_obj_setp_cb2(io, p, readcb, writecb, seekcb, closecb, destroycb)
785 Sets an io_object for reading from a source that uses callbacks
787 io - io object that describes a source
788 p - pointer to data for callbacks
789 readcb - read callback to read from source
790 writecb - write callback to write to source
791 seekcb - seek callback to seek on source
792 closecb - flush any pending data
793 destroycb - release any extra resources
799 io_obj_setp_cb2(io_obj *io, void *p, readl readcb, writel writecb, seekl seekcb, closel closecb, destroyl destroycb) {
800 io->cb.type = CBSEEK;
802 io->cb.readcb = readcb;
803 io->cb.writecb = writecb;
804 io->cb.seekcb = seekcb;
805 io->cb.closecb = closecb;
806 io->cb.destroycb = destroycb;
810 io_obj_setp_cb(io_obj *io, void *p, readl readcb, writel writecb,
812 io_obj_setp_cb2(io, p, readcb, writecb, seekcb, NULL, NULL);
816 =item io_glue_commit_types(ig)
818 Creates buffers and initializes structures to read with the chosen interface.
826 io_glue_commit_types(io_glue *ig) {
827 io_type inn = ig->source.type;
829 mm_log((1, "io_glue_commit_types(ig %p)\n", ig));
830 mm_log((1, "io_glue_commit_types: source type %d (%s)\n", inn, io_type_names[inn]));
832 if (ig->flags & 0x01) {
833 mm_log((1, "io_glue_commit_types: type already set up\n"));
840 io_ex_bchain *ieb = mymalloc(sizeof(io_ex_bchain));
848 ieb->head = io_blink_new();
850 ieb->tail = ieb->head;
853 ig->readcb = bufchain_read;
854 ig->writecb = bufchain_write;
855 ig->seekcb = bufchain_seek;
856 ig->closecb = bufchain_close;
861 io_ex_rseek *ier = mymalloc(sizeof(io_ex_rseek));
867 ig->readcb = realseek_read;
868 ig->writecb = realseek_write;
869 ig->seekcb = realseek_seek;
870 ig->closecb = realseek_close;
875 io_ex_buffer *ieb = mymalloc(sizeof(io_ex_buffer));
880 ig->readcb = buffer_read;
881 ig->writecb = buffer_write;
882 ig->seekcb = buffer_seek;
883 ig->closecb = buffer_close;
889 ig->readcb = fd_read;
890 ig->writecb = fd_write;
891 ig->seekcb = fd_seek;
892 ig->closecb = fd_close;
896 ig->flags |= 0x01; /* indicate source has been setup already */
900 =item io_glue_gettypes(ig, reqmeth)
902 Returns a set of compatible interfaces to read data with.
905 reqmeth - request mask
907 The request mask is a bit mask (of something that hasn't been implemented yet)
908 of interfaces that it would like to read data from the source which the ig
915 io_glue_gettypes(io_glue *ig, int reqmeth) {
920 /* FIXME: Implement this function! */
921 /* if (ig->source.type =
922 if (reqmeth & IO_BUFF) */
928 =item io_new_bufchain()
930 returns a new io_glue object that has the 'empty' source and but can
931 be written to and read from later (like a pseudo file).
939 mm_log((1, "io_new_bufchain()\n"));
940 ig = mymalloc(sizeof(io_glue));
941 memset(ig, 0, sizeof(*ig));
942 io_obj_setp_bufchain(&ig->source);
951 =item io_new_buffer(data, len)
953 Returns a new io_glue object that has the source defined as reading
954 from specified buffer. Note that the buffer is not copied.
956 data - buffer to read from
957 len - length of buffer
963 io_new_buffer(char *data, size_t len, closebufp closecb, void *closedata) {
965 mm_log((1, "io_new_buffer(data %p, len %d, closecb %p, closedata %p)\n", data, len, closecb, closedata));
966 ig = mymalloc(sizeof(io_glue));
967 memset(ig, 0, sizeof(*ig));
968 io_obj_setp_buffer(&ig->source, data, len, closecb, closedata);
977 returns a new io_glue object that has the source defined as reading
978 from specified filedescriptor. Note that the the interface to recieving
979 data from the io_glue callbacks hasn't been done yet.
981 fd - file descriptor to read/write from
989 mm_log((1, "io_new_fd(fd %d)\n", fd));
990 ig = mymalloc(sizeof(io_glue));
991 memset(ig, 0, sizeof(*ig));
992 ig->source.type = FDSEEK;
993 ig->source.fdseek.fd = fd;
997 io_obj_setp_cb(&ig->source, (void*)fd, _read, _write, _lseek);
999 io_obj_setp_cb(&ig->source, (void*)fd, read, write, lseek);
1002 mm_log((1, "(%p) <- io_new_fd\n", ig));
1006 io_glue *io_new_cb(void *p, readl readcb, writel writecb, seekl seekcb,
1007 closel closecb, destroyl destroycb) {
1010 mm_log((1, "io_new_cb(p %p, readcb %p, writecb %p, seekcb %p, closecb %p, "
1011 "destroycb %p)\n", p, readcb, writecb, seekcb, closecb, destroycb));
1012 ig = mymalloc(sizeof(io_glue));
1013 memset(ig, 0, sizeof(*ig));
1014 io_obj_setp_cb2(&ig->source, p, readcb, writecb, seekcb, closecb, destroycb);
1015 mm_log((1, "(%p) <- io_new_cb\n", ig));
1023 Takes the source that the io_glue is bound to and allocates space
1024 for a return buffer and returns the entire content in a single buffer.
1025 Note: This only works for io_glue objects that contain a bufchain. It
1026 is usefull for saving to scalars and such.
1029 c - pointer to a pointer to where data should be copied to
1035 io_slurp(io_glue *ig, unsigned char **c) {
1040 io_type inn = ig->source.type;
1042 if ( inn != BUFCHAIN ) {
1043 m_fatal(0, "io_slurp: called on a source that is not from a bufchain\n");
1047 cc = *c = mymalloc( ieb->length );
1051 bufchain_seek(ig, 0, SEEK_SET);
1053 rc = bufchain_read(ig, cc, ieb->length);
1055 if (rc != ieb->length)
1056 m_fatal(1, "io_slurp: bufchain_read returned an incomplete read: rc = %d, request was %d\n", rc, ieb->length);
1062 =item fd_read(ig, buf, count)
1066 static ssize_t fd_read(io_glue *ig, void *buf, size_t count) {
1068 return _read(ig->source.fdseek.fd, buf, count);
1070 return read(ig->source.fdseek.fd, buf, count);
1074 static ssize_t fd_write(io_glue *ig, const void *buf, size_t count) {
1077 result = _write(ig->source.fdseek.fd, buf, count);
1079 result = write(ig->source.fdseek.fd, buf, count);
1083 i_push_errorf(errno, "write() failure: %s (%d)", strerror(errno), errno);
1089 static off_t fd_seek(io_glue *ig, off_t offset, int whence) {
1092 result = _lseek(ig->source.fdseek.fd, offset, whence);
1094 result = lseek(ig->source.fdseek.fd, offset, whence);
1097 if (result == (off_t)-1) {
1098 i_push_errorf(errno, "lseek() failure: %s (%d)", strerror(errno), errno);
1104 static void fd_close(io_glue *ig) {
1105 /* no, we don't close it */
1108 static ssize_t fd_size(io_glue *ig) {
1109 mm_log((1, "fd_size(ig %p) unimplemented\n", ig));
1115 =item io_glue_DESTROY(ig)
1117 A destructor method for io_glue objects. Should clean up all related buffers.
1118 Might leave us with a dangling pointer issue on some buffers.
1120 ig - io_glue object to destroy.
1126 io_glue_DESTROY(io_glue *ig) {
1127 io_type inn = ig->source.type;
1128 mm_log((1, "io_glue_DESTROY(ig %p)\n", ig));
1133 io_ex_bchain *ieb = ig->exdata;
1134 io_destroy_bufchain(ieb);
1140 io_ex_rseek *ier = ig->exdata;
1141 if (ig->source.cb.destroycb)
1142 ig->source.cb.destroycb(ig->source.cb.p);
1148 io_ex_buffer *ieb = ig->exdata;
1149 if (ig->source.buffer.closecb) {
1150 mm_log((1,"calling close callback %p for io_buffer\n", ig->source.buffer.closecb));
1151 ig->source.buffer.closecb(ig->source.buffer.closedata);
1168 Arnar M. Hrafnkelsson <addi@umich.edu>