summaryrefslogtreecommitdiff
path: root/src/libmowgli/linebuf/linebuf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libmowgli/linebuf/linebuf.h')
-rw-r--r--src/libmowgli/linebuf/linebuf.h37
1 files changed, 24 insertions, 13 deletions
diff --git a/src/libmowgli/linebuf/linebuf.h b/src/libmowgli/linebuf/linebuf.h
index 17c45ea..e05629b 100644
--- a/src/libmowgli/linebuf/linebuf.h
+++ b/src/libmowgli/linebuf/linebuf.h
@@ -21,41 +21,52 @@
#ifndef __MOWGLI_LINEBUF_LINEBUF_H__
#define __MOWGLI_LINEBUF_LINEBUF_H__
-#include "eventloop/eventloop.h"
-#include "vio/vio.h"
-
typedef struct _mowgli_linebuf_buf mowgli_linebuf_buf_t;
-typedef void mowgli_linebuf_readline_cb_t(mowgli_linebuf_t *, char *, size_t, void *);
+typedef void mowgli_linebuf_readline_cb_t (mowgli_linebuf_t *, char *, size_t, void *);
+typedef void mowgli_linebuf_shutdown_cb_t (mowgli_linebuf_t *, void *);
+
+extern mowgli_linebuf_t *mowgli_linebuf_create(mowgli_linebuf_readline_cb_t *cb, void *userdata);
-extern mowgli_linebuf_t * mowgli_linebuf_create(mowgli_linebuf_readline_cb_t *cb, void *userdata);
+/* XXX these are unfortunately named and will change */
extern void mowgli_linebuf_attach_to_eventloop(mowgli_linebuf_t *linebuf, mowgli_eventloop_t *eventloop);
+extern void mowgli_linebuf_detach_from_eventloop(mowgli_linebuf_t *linebuf);
extern void mowgli_linebuf_destroy(mowgli_linebuf_t *linebuf);
extern void mowgli_linebuf_setbuflen(mowgli_linebuf_buf_t *buffer, size_t buflen);
+extern void mowgli_linebuf_delim(mowgli_linebuf_t *linebuf, const char *delim, const char *endl);
extern void mowgli_linebuf_write(mowgli_linebuf_t *linebuf, const char *data, int len);
extern void mowgli_linebuf_writef(mowgli_linebuf_t *linebuf, const char *format, ...);
+extern void mowgli_linebuf_shut_down(mowgli_linebuf_t *linebuf);
-struct _mowgli_linebuf_buf {
+struct _mowgli_linebuf_buf
+{
char *buffer;
size_t buflen;
size_t maxbuflen;
};
/* Errors */
-#define MOWGLI_LINEBUF_ERR_NONE 0x0000
-#define MOWGLI_LINEBUF_ERR_READBUF_FULL 0x0001
-#define MOWGLI_LINEBUF_ERR_WRITEBUF_FULL 0x0002
+#define MOWGLI_LINEBUF_ERR_NONE 0x0000
+#define MOWGLI_LINEBUF_ERR_READBUF_FULL 0x0001
+#define MOWGLI_LINEBUF_ERR_WRITEBUF_FULL 0x0002
/* Informative */
-#define MOWGLI_LINEBUF_LINE_HASNULLCHAR 0x0004
+#define MOWGLI_LINEBUF_LINE_HASNULLCHAR 0x0004
-struct _mowgli_linebuf {
+/* State */
+#define MOWGLI_LINEBUF_SHUTTING_DOWN 0x0100
+
+struct _mowgli_linebuf
+{
mowgli_linebuf_readline_cb_t *readline_cb;
+ mowgli_linebuf_shutdown_cb_t *shutdown_cb;
mowgli_vio_t *vio;
const char *delim;
+ const char *endl;
+ size_t endl_len;
int flags;
@@ -69,11 +80,11 @@ struct _mowgli_linebuf {
void *userdata;
};
-static inline mowgli_vio_t * mowgli_linebuf_get_vio(mowgli_linebuf_t *linebuf)
+static inline mowgli_vio_t *
+mowgli_linebuf_get_vio(mowgli_linebuf_t *linebuf)
{
return_val_if_fail(linebuf != NULL, NULL);
return linebuf->vio;
}
#endif
-