aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/fifolog/fifolog_writer
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2008-03-09 19:14:36 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2008-03-09 19:14:36 +0000
commit662cb04c254ef2fa36ddae26bbd2740d1d5727d9 (patch)
tree1ac353f6fcd504cada7e247a46746cb3f8bb97eb /usr.sbin/fifolog/fifolog_writer
parent801772ec32b9783a8f77e7dcadef88e27f917281 (diff)
downloadsrc-662cb04c254ef2fa36ddae26bbd2740d1d5727d9.tar.gz
src-662cb04c254ef2fa36ddae26bbd2740d1d5727d9.zip
Add the fifolog tools to FreeBSD.
Quoth the man-page: Fifologs provide a compact round-robin circular storage for recording text and binary information to permanent storage in a bounded and pre- dictable fashion, time and space wise. Not yet connected to the build, but feel free to test & review.
Notes
Notes: svn path=/head/; revision=176998
Diffstat (limited to 'usr.sbin/fifolog/fifolog_writer')
-rw-r--r--usr.sbin/fifolog/fifolog_writer/Makefile16
-rw-r--r--usr.sbin/fifolog/fifolog_writer/fifolog_writer.c105
2 files changed, 121 insertions, 0 deletions
diff --git a/usr.sbin/fifolog/fifolog_writer/Makefile b/usr.sbin/fifolog/fifolog_writer/Makefile
new file mode 100644
index 000000000000..76130851bd5e
--- /dev/null
+++ b/usr.sbin/fifolog/fifolog_writer/Makefile
@@ -0,0 +1,16 @@
+# $FreeBSD$
+
+PROG = fifolog_writer
+
+CFLAGS += -I${.CURDIR}/../lib
+
+NO_MAN = see ../fifolog_create/fifolog.1
+
+DPADD = ${LIBFIFOLOG} ${LIBUTIL} ${LIBZ}
+LDADD = ${LIBFIFOLOG} -lutil -lz
+
+.include <bsd.prog.mk>
+
+test: ${PROG}
+ date | ./${PROG} -z 0 /tmp/fifolog.0
+ lptest 65 | ./${PROG} -z 9 /tmp/fifolog.1
diff --git a/usr.sbin/fifolog/fifolog_writer/fifolog_writer.c b/usr.sbin/fifolog/fifolog_writer/fifolog_writer.c
new file mode 100644
index 000000000000..469d2845eda0
--- /dev/null
+++ b/usr.sbin/fifolog/fifolog_writer/fifolog_writer.c
@@ -0,0 +1,105 @@
+/*-
+ * Copyright (c) 2005-2008 Poul-Henning Kamp
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * $FreeBSD$
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <err.h>
+#include <unistd.h>
+#include <ctype.h>
+#include <assert.h>
+#include <poll.h>
+#include <string.h>
+#include <zlib.h>
+
+#include "libfifolog.h"
+
+int
+main(int argc, char * const *argv)
+{
+ struct fifolog_writer *f;
+ const char *es;
+ struct pollfd pfd[1];
+ char buf[BUFSIZ], *p;
+ int i, c;
+ unsigned w_opt = 10;
+ unsigned s_opt = 60;
+ unsigned z_opt = Z_BEST_COMPRESSION;
+
+ while ((c = getopt(argc, argv, "w:s:z:")) != -1) {
+ switch(c) {
+ case 'w':
+ w_opt = strtoul(optarg, NULL, 0);
+ break;
+ case 's':
+ s_opt = strtoul(optarg, NULL, 0);
+ break;
+ case 'z':
+ z_opt = strtoul(optarg, NULL, 0);
+ break;
+ default:
+ errx(1, "Usage");
+ }
+ }
+ argc -= optind;
+ argv += optind;
+ if (argc != 1)
+ errx(1, "Usage");
+
+ if (z_opt > 9)
+ errx(1, "Usage");
+
+ if (w_opt > s_opt)
+ errx(1, "Usage");
+
+ f = fifolog_write_new();
+ assert(f != NULL);
+
+ es = fifolog_write_open(f, argv[0], w_opt, s_opt, z_opt);
+ if (es)
+ err(1, "Error: %s", es);
+
+ while (1) {
+ pfd[0].fd = 0;
+ pfd[0].events = POLLIN;
+ i = poll(pfd, 1, 1000);
+ if (i == 1) {
+ if (fgets(buf, sizeof buf, stdin) == NULL)
+ break;
+ p = strchr(buf, '\0');
+ assert(p != NULL);
+ while (p > buf && isspace(p[-1]))
+ p--;
+ *p = '\0';
+ if (*buf != '\0')
+ fifolog_write_bytes_poll(f, 0, 0, buf, 0);
+ } else if (i == 0)
+ (void)fifolog_write_poll(f, 0);
+ }
+ (void)fifolog_write_flush(f);
+ return (0);
+}