X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=blobdiff_plain;f=ustream.h;h=6431744155f810f5c8d2b8d3a4b57c47de60e490;hp=c9e23e89f504a73e5d4cf484b64f9c2676317f1c;hb=0bfb44f590402137bfcf8e65c54638908d5ed6d2;hpb=768a69b3cedfebde10825847e42f35ed4aee1856 diff --git a/ustream.h b/ustream.h index c9e23e8..6431744 100644 --- a/ustream.h +++ b/ustream.h @@ -19,6 +19,7 @@ #ifndef __USTREAM_H #define __USTREAM_H +#include #include "uloop.h" struct ustream; @@ -48,9 +49,10 @@ struct ustream_buf_list { struct ustream { struct ustream_buf_list r, w; struct uloop_timeout state_change; + struct ustream *next; /* - * notify_read: + * notify_read: (optional) * called by the ustream core to notify that new data is available * for reading. * must not free the ustream from this callback @@ -66,7 +68,7 @@ struct ustream { void (*notify_write)(struct ustream *s, int bytes); /* - * notify_state: + * notify_state: (optional) * called by the ustream implementation to notify that the read * side of the stream is closed (eof is set) or there was a write * error (write_error is set). @@ -99,6 +101,14 @@ struct ustream { void (*set_read_blocked)(struct ustream *s); /* + * poll: (optional) + * defined by the upstream implementation, called to request polling for + * available data. + * returns true if data was fetched. + */ + bool (*poll)(struct ustream *s); + + /* * ustream user should set this if the input stream is expected * to contain string data. the core will keep all data 0-terminated. */ @@ -153,6 +163,19 @@ static inline bool ustream_read_blocked(struct ustream *s) return !!(s->read_blocked & READ_BLOCKED_USER); } +static inline int ustream_pending_data(struct ustream *s, bool write) +{ + struct ustream_buf_list *b = write ? &s->w : &s->r; + return b->data_bytes; +} + +static inline bool ustream_read_buf_full(struct ustream *s) +{ + struct ustream_buf *buf = s->r.data_tail; + return buf && buf->data == buf->head && buf->tail == buf->end && + s->r.buffers == s->r.max_buffers; +} + /*** --- functions only used by ustream implementations --- ***/ /* ustream_init_defaults: fill default callbacks and options */ @@ -180,4 +203,12 @@ static inline void ustream_state_change(struct ustream *s) uloop_timeout_set(&s->state_change, 0); } +static inline bool ustream_poll(struct ustream *s) +{ + if (!s->poll) + return false; + + return s->poll(s); +} + #endif