Annotation of libwww/Library/src/HTReader.c, revision 2.25

2.1       frystyk     1: /*                                                                  HTReader.c
                      2: **     READ STREAM FROM THE NETWORK USING TCP
                      3: **
                      4: **     (c) COPYRIGHT MIT 1995.
                      5: **     Please first read the full copyright statement in the file COPYRIGH.
2.25    ! frystyk     6: **     @(#) $Id: HTReader.c,v 2.24 1998/05/19 16:49:36 frystyk Exp $
2.1       frystyk     7: **
                      8: ** HISTORY:
                      9: **     6 June 95  HFN  Written
                     10: */
                     11: 
                     12: /* Library Include files */
2.23      frystyk    13: #include "wwwsys.h"
2.1       frystyk    14: #include "WWWUtil.h"
2.5       frystyk    15: #include "WWWCore.h"
2.1       frystyk    16: #include "HTNetMan.h"
                     17: #include "HTReader.h"                                   /* Implemented here */
                     18: 
                     19: struct _HTStream {
                     20:     const HTStreamClass *      isa;
                     21:     /* ... */
                     22: };
                     23: 
                     24: struct _HTInputStream {
                     25:     const HTInputStreamClass * isa;
                     26:     HTChannel *                        ch;
2.9       frystyk    27:     HTHost *                   host;
2.1       frystyk    28:     char *                     write;                  /* Last byte written */
                     29:     char *                     read;                      /* Last byte read */
2.15      frystyk    30:     int                                b_read;
2.1       frystyk    31:     char                       data [INPUT_BUFFER_SIZE];          /* buffer */
                     32: };
                     33: 
                     34: /* ------------------------------------------------------------------------- */
                     35: 
                     36: PRIVATE int HTReader_flush (HTInputStream * me)
                     37: {
2.9       frystyk    38:     HTNet * net = HTHost_getReadNet(me->host);
                     39:     return net && net->readStream ? (*net->readStream->isa->flush)(net->readStream) : HT_OK;
2.1       frystyk    40: }
                     41: 
                     42: PRIVATE int HTReader_free (HTInputStream * me)
                     43: {
2.9       frystyk    44:     HTNet * net = HTHost_getReadNet(me->host);
                     45:     if (net && net->readStream) {
                     46:        int status = (*net->readStream->isa->_free)(net->readStream);
2.19      frystyk    47:         if (status == HT_OK) net->readStream = NULL;
2.1       frystyk    48:        return status;
                     49:     }
                     50:     return HT_OK;
                     51: }
                     52: 
                     53: PRIVATE int HTReader_abort (HTInputStream * me, HTList * e)
                     54: {
2.9       frystyk    55:     HTNet * net = HTHost_getReadNet(me->host);
                     56:     if (net && net->readStream) {
                     57:        int status = (*net->readStream->isa->abort)(net->readStream, NULL);
                     58:        if (status != HT_IGNORE) net->readStream = NULL;
2.1       frystyk    59:     }
                     60:     return HT_ERROR;
                     61: }
                     62: 
                     63: /*     Push data from a socket down a stream
                     64: **     -------------------------------------
                     65: **
                     66: **   This routine is responsible for creating and PRESENTING any
                     67: **   graphic (or other) objects described by the file. As this function
                     68: **   max reads a chunk of data on size INPUT_BUFFER_SIZE, it can be used
                     69: **   with both blocking or non-blocking sockets. It will always return to
                     70: **   the event loop, however if we are using blocking I/O then we get a full
                     71: **   buffer read, otherwise we get what's available.
                     72: **
                     73: ** Returns      HT_LOADED      if finished reading
                     74: **             HT_OK           if OK, but more to read
                     75: **             HT_ERROR        if error,
                     76: **                     HT_WOULD_BLOCK  if read or write would block
                     77: **             HT_PAUSE        if stream is paused
                     78: */
2.13      eric       79: char * strnstr(char * haystack, int *pLen, char * needle)
                     80: {
                     81:     int found = 0;
                     82:     int need = strlen(needle);
                     83:     int i, start;
                     84:     for (start = i = 0; i < *pLen; i++)
                     85:        if (haystack[i] == needle[found]) {
                     86:            if (++found == need) {
                     87:                i -= need - 1; /* beginning of string */
                     88:                *pLen -= i;
                     89:                return haystack+i;
                     90:            }
                     91:        } else {
                     92:            found = 0;
                     93:        }
                     94:     *pLen = 0;
                     95:     return NULL;
                     96: }
                     97: 
2.20      frystyk    98: /* int DebugBufferSize = INPUT_BUFFER_SIZE; */
2.9       frystyk    99: 
2.1       frystyk   100: PRIVATE int HTReader_read (HTInputStream * me)
                    101: {
2.9       frystyk   102:     HTHost * host = me->host;
                    103:     SOCKET soc = HTChannel_socket(me->ch);
                    104:     HTNet * net = HTHost_getReadNet(host);
                    105:     HTRequest * request = HTNet_request(net);
2.1       frystyk   106:     int status;
2.19      frystyk   107:     if (!net->readStream) {
2.24      frystyk   108:        if (STREAM_TRACE)
                    109:            HTTrace("Read Socket. No read stream for net object %p\n", net);
2.19      frystyk   110:         return HT_ERROR;
                    111:     }
                    112:         
2.9       frystyk   113:     /*    me->b_read = me->read - me->data; */
2.1       frystyk   114:     /* Read from socket if we got rid of all the data previously read */
                    115:     do {
2.9       frystyk   116:        /* don't read if we have to push unwritten data from last call */
2.1       frystyk   117:        if (me->write >= me->read) {
2.20      frystyk   118:            if ((me->b_read = NETREAD(soc, me->data, INPUT_BUFFER_SIZE)) < 0) {
2.1       frystyk   119: #ifdef EAGAIN
                    120:                if (socerrno==EAGAIN || socerrno==EWOULDBLOCK)      /* POSIX */
                    121: #else
                    122:                if (socerrno==EWOULDBLOCK)                            /* BSD */
                    123: #endif 
                    124:                {
2.24      frystyk   125:                    if (STREAM_TRACE)
2.1       frystyk   126:                        HTTrace("Read Socket. WOULD BLOCK fd %d\n",soc);
2.9       frystyk   127:                    HTHost_register(host, net, HTEvent_READ);
2.1       frystyk   128:                    return HT_WOULD_BLOCK;
                    129: #ifdef __svr4__
                    130:     /* 
                    131:     ** In Solaris envirnoment, SIGPOLL is used to signal end of buffer for
                    132:     ** /dev/audio.  If your process is also doing a socket read, it will cause
                    133:     ** an EINTR error.  This error will cause the www library request to 
                    134:     ** terminate prematurly.
                    135:     */
                    136:                 } else if (socerrno == EINTR) {
                    137:                     continue;
                    138: #endif /* __svr4__ */
2.9       frystyk   139: #ifdef EPIPE
                    140:                } else if (socerrno == EPIPE) {
2.24      frystyk   141:                    if (STREAM_TRACE) HTTrace("Read Socket. got EPIPE\n", soc);
2.9       frystyk   142:                    goto socketClosed;
                    143: #endif /* EPIPE */
2.1       frystyk   144:                } else {                             /* We have a real error */
                    145: 
                    146:                    /* HERE WE SHOULD RETURN target abort */
2.9       frystyk   147:                    if (request)
                    148:                        HTRequest_addSystemError(request, ERR_FATAL, socerrno,
                    149:                                                 NO, "NETREAD");
2.1       frystyk   150:                    return HT_ERROR;
                    151:                }
2.8       frystyk   152: #ifdef ECONNRESET
2.9       frystyk   153:            } else if (!me->b_read || socerrno==ECONNRESET) {
2.8       frystyk   154: #else
2.9       frystyk   155:            } else if (!me->b_read) {
2.8       frystyk   156: #endif
2.9       frystyk   157:            socketClosed:
2.24      frystyk   158:                if (STREAM_TRACE)
2.11      frystyk   159:                    HTTrace("Read Socket. FIN received on socket %d\n", soc);
2.9       frystyk   160:                HTHost_unregister(host, net, HTEvent_READ);
2.18      frystyk   161:                HTHost_register(host, net, HTEvent_CLOSE);
2.1       frystyk   162:                return HT_CLOSED;
                    163:            }
                    164: 
                    165:            /* Remember how much we have read from the input socket */
2.24      frystyk   166:            HTTraceData(me->data, me->b_read, "Reading from socket %d", soc);
2.1       frystyk   167:            me->write = me->data;
2.9       frystyk   168:            me->read = me->data + me->b_read;
2.13      eric      169: #ifdef FIND_SIGNATURES
                    170:            {
                    171:                char * ptr = me->data;
                    172:                int len = me->b_read;
                    173:                while ((ptr = strnstr(ptr, &len, "HTTP/1.1 200 OK")) != NULL) {
2.24      frystyk   174:                    if (STREAM_TRACE)
2.13      eric      175:                        HTTrace("Read Socket. Signature found at 0x%x of 0x%x.\n", ptr - me->data, me->b_read);
                    176:                    ptr++;
                    177:                    len--;
                    178:                }
                    179:            }
                    180: #endif /* FIND_SIGNATURES */
2.1       frystyk   181: #ifdef NOT_ASCII
                    182:            {
                    183:                char *p = me->data;
                    184:                while (p < me->read) {
                    185:                    *p = FROMASCII(*p);
                    186:                    p++;
                    187:                }
                    188:            }
                    189: #endif /* NOT_ASCII */
                    190: 
2.24      frystyk   191:            if (STREAM_TRACE)
2.1       frystyk   192:                HTTrace("Read Socket. %d bytes read from socket %d\n",
2.9       frystyk   193:                        me->b_read, soc);
                    194:            if (request) {
2.1       frystyk   195:                HTAlertCallback * cbf = HTAlert_find(HT_PROG_READ);
2.9       frystyk   196: #if 0
                    197:                /* byte account is done later */
                    198:                net->bytesRead += me->b_read;
                    199: #endif
                    200:                if (cbf) (*cbf)(request, HT_PROG_READ,
2.1       frystyk   201:                                HT_MSG_NULL, NULL, NULL, NULL);
                    202:            }
                    203:        }
                    204: 
                    205:        /* Now push the data down the stream */
2.9       frystyk   206:        if ((status = (*net->readStream->isa->put_block)
                    207:             (net->readStream, me->write, me->b_read)) != HT_OK) {
2.1       frystyk   208:            if (status == HT_WOULD_BLOCK) {
2.24      frystyk   209:                if (STREAM_TRACE) HTTrace("Read Socket. Target WOULD BLOCK\n");
2.9       frystyk   210:                HTHost_unregister(host, net, HTEvent_READ);
2.1       frystyk   211:                return HT_WOULD_BLOCK;
                    212:            } else if (status == HT_PAUSE) {
2.24      frystyk   213:                if (STREAM_TRACE) HTTrace("Read Socket. Target PAUSED\n");
2.9       frystyk   214:                HTHost_unregister(host, net, HTEvent_READ);
2.1       frystyk   215:                return HT_PAUSE;
2.9       frystyk   216:            /* CONTINUE code or stream code means data was consumed */
                    217:            } else if (status == HT_CONTINUE || status > 0) {
                    218:                if (status == HT_CONTINUE) {
2.24      frystyk   219:                    if (STREAM_TRACE) HTTrace("Read Socket. CONTINUE\n");
2.9       frystyk   220:                } else
2.24      frystyk   221:                    if (STREAM_TRACE)
2.9       frystyk   222:                        HTTrace("Read Socket. Target returns %d\n", status);
                    223: /*             me->write = me->read; */
2.1       frystyk   224:                return status;
                    225:            } else {                                 /* We have a real error */
2.24      frystyk   226:                if (STREAM_TRACE) HTTrace("Read Socket. Target ERROR %d\n", status);
2.1       frystyk   227:                return status;
                    228:            }
                    229:        }
2.9       frystyk   230:        me->write = me->read;
2.19      frystyk   231:        {
                    232:            int remaining = HTHost_remainingRead(host);
                    233:            if (remaining > 0) {
2.24      frystyk   234:                if (STREAM_TRACE)
2.21      frystyk   235:                    HTTrace("Read Socket. DIDN'T CONSUME %d BYTES: `%s\'\n",
                    236:                            remaining, me->read);
2.19      frystyk   237:                HTHost_setConsumed(host, remaining);
                    238:            }
                    239:        }
2.1       frystyk   240:     } while (net->preemptive);
2.9       frystyk   241:     HTHost_register(host, net, HTEvent_READ);
2.1       frystyk   242:     return HT_WOULD_BLOCK;
                    243: }
                    244: 
                    245: /*
                    246: **     The difference between the close and the free method is that we don't
                    247: **     close the connection in the free method - we only call the free method
                    248: **     of the target stream. That way, we can keep the input stream as long 
                    249: **     as the channel itself.
                    250: */
                    251: PRIVATE int HTReader_close (HTInputStream * me)
                    252: {
                    253:     int status = HT_OK;
2.9       frystyk   254:     HTNet * net = HTHost_getReadNet(me->host);
                    255:     if (net && net->readStream) {
                    256:        if ((status = (*net->readStream->isa->_free)(net->readStream))==HT_WOULD_BLOCK)
2.1       frystyk   257:            return HT_WOULD_BLOCK;
2.9       frystyk   258:        net->readStream = NULL;
2.1       frystyk   259:     }
2.24      frystyk   260:     if (STREAM_TRACE) HTTrace("Socket read. FREEING....\n");
2.1       frystyk   261:     HT_FREE(me);
                    262:     return status;
                    263: }
                    264: 
2.9       frystyk   265: PUBLIC int HTReader_consumed (HTInputStream * me, size_t bytes)
                    266: {
                    267:     me->write += bytes;
                    268:     me->b_read -= bytes;
                    269:     HTHost_setRemainingRead(me->host, me->b_read);
                    270:     return HT_OK;
                    271: }
                    272: 
2.1       frystyk   273: PRIVATE const HTInputStreamClass HTReader =
                    274: {
                    275:     "SocketReader",
                    276:     HTReader_flush,
                    277:     HTReader_free,
                    278:     HTReader_abort,
                    279:     HTReader_read,
2.9       frystyk   280:     HTReader_close,
                    281:     HTReader_consumed
2.1       frystyk   282: }; 
                    283: 
                    284: /*
                    285: **     Create a new input read stream. Before we actually create it we check
                    286: **     to see whether we already have an input stream for this channel and if
                    287: **     so we just return that. This means that we can reuse input streams 
                    288: **     in persistent connections, for example.
                    289: */
2.9       frystyk   290: PUBLIC HTInputStream * HTReader_new (HTHost * host, HTChannel * ch,
                    291:                                     void * param, int mode)
2.1       frystyk   292: {
2.9       frystyk   293:     if (host && ch) {
2.1       frystyk   294:        HTInputStream * me = HTChannel_input(ch);
                    295:        if (me == NULL) {
                    296:            if ((me=(HTInputStream *) HT_CALLOC(1, sizeof(HTInputStream))) == NULL)
                    297:            HT_OUTOFMEM("HTReader_new");
                    298:            me->isa = &HTReader;
                    299:            me->ch = ch;
2.9       frystyk   300:            me->host = host;
2.24      frystyk   301:            if (STREAM_TRACE) HTTrace("Reader...... Created reader stream %p\n", me);
2.1       frystyk   302:        }
                    303:        return me;
                    304:     }
                    305:     return NULL;
                    306: }
2.9       frystyk   307: 

Webmaster