Add first implementation of syslog module.
authorDaniele Basile <asterix@develer.com>
Mon, 16 Jan 2012 11:46:12 +0000 (12:46 +0100)
committerDaniele Basile <asterix@develer.com>
Mon, 16 Jan 2012 11:57:35 +0000 (12:57 +0100)
bertos/cfg/cfg_syslog.h [new file with mode: 0644]
bertos/net/syslog.c [new file with mode: 0644]
bertos/net/syslog.h [new file with mode: 0644]

diff --git a/bertos/cfg/cfg_syslog.h b/bertos/cfg/cfg_syslog.h
new file mode 100644 (file)
index 0000000..922a5f7
--- /dev/null
@@ -0,0 +1,57 @@
+/**
+ * \file
+ * <!--
+ * This file is part of BeRTOS.
+ *
+ * Bertos is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ * As a special exception, you may use this file as part of a free software
+ * library without restriction.  Specifically, if other files instantiate
+ * templates or use macros or inline functions from this file, or you compile
+ * this file and link it with other files to produce an executable, this
+ * file does not by itself cause the resulting executable to be covered by
+ * the GNU General Public License.  This exception does not however
+ * invalidate any other reasons why the executable file might be covered by
+ * the GNU General Public License.
+ *
+ * Copyright 2012 Develer S.r.l. (http://www.develer.com/)
+ *
+ * -->
+ *
+ * \brief SYSLOG configuration.
+ *
+ * \author Daniele Basile <asterix@develer.com>
+ *
+ */
+#ifndef CFG_SYSLOG_H
+#define CFG_SYSLOG_H
+
+/**
+ * Module logging level.
+ *
+ * $WIZ$ type = "enum"
+ * $WIZ$ value_list = "log_level"
+ */
+#define SYSLOG_LOG_LEVEL    LOG_LVL_WARN
+
+/**
+ * Module logging format.
+ *
+ * $WIZ$ type = "enum"
+ * $WIZ$ value_list = "log_format"
+ */
+#define SYSLOG_LOG_FORMAT   LOG_FMT_VERBOSE
+
+#endif /* CFG_SYSLOG_H */
diff --git a/bertos/net/syslog.c b/bertos/net/syslog.c
new file mode 100644 (file)
index 0000000..2974c47
--- /dev/null
@@ -0,0 +1,55 @@
+/**
+ * \file
+ * <!--
+ * This file is part of BeRTOS.
+ *
+ * Bertos is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ * As a special exception, you may use this file as part of a free software
+ * library without restriction.  Specifically, if other files instantiate
+ * templates or use macros or inline functions from this file, or you compile
+ * this file and link it with other files to produce an executable, this
+ * file does not by itself cause the resulting executable to be covered by
+ * the GNU General Public License.  This exception does not however
+ * invalidate any other reasons why the executable file might be covered by
+ * the GNU General Public License.
+ *
+ * Copyright 2012 Develer S.r.l. (http://www.develer.com/)
+ *
+ * -->
+ *
+ * \brief SYSLOG implementation
+ *
+ * \author Daniele Basile <asterix@develer.com>
+ *
+ * notest:all
+ */
+
+#include "syslog.h"
+
+#include "cfg/cfg_syslog.h"
+#define LOG_LEVEL   SYSLOG_LOG_LEVEL
+#define LOG_FORMAT  SYSLOG_LOG_FORMAT
+#include <cfg/log.h>
+
+/**
+ * Init
+ *
+ */
+int syslog_init(void)
+{
+       return 0;
+}
+
diff --git a/bertos/net/syslog.h b/bertos/net/syslog.h
new file mode 100644 (file)
index 0000000..92c9f23
--- /dev/null
@@ -0,0 +1,52 @@
+/**
+ * \file
+ * <!--
+ * This file is part of BeRTOS.
+ *
+ * Bertos is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ * As a special exception, you may use this file as part of a free software
+ * library without restriction.  Specifically, if other files instantiate
+ * templates or use macros or inline functions from this file, or you compile
+ * this file and link it with other files to produce an executable, this
+ * file does not by itself cause the resulting executable to be covered by
+ * the GNU General Public License.  This exception does not however
+ * invalidate any other reasons why the executable file might be covered by
+ * the GNU General Public License.
+ *
+ * Copyright 2012 Develer S.r.l. (http://www.develer.com/)
+ *
+ * -->
+ *
+ * \brief SYSLOG
+ *
+ * The usage pattern is as follows:
+ * \code
+ * \endcode
+ *
+ *
+ * \author Daniele Basile <asterix@develer.com>
+ *
+ * $WIZ$ module_name = "syslog"
+ * $WIZ$ module_configuration = "bertos/cfg/cfg_syslog.h"
+ * $WIZ$ module_depends = "lwip", "kfile"
+ */
+
+#ifndef NET_SYSLOG_H
+#define NET_SYSLOG_H
+
+int syslog_init(void);
+
+#endif /* NET_SYSLOG_H */