forked from syslog-ng/syslog-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stdout: add new stdout() destination
This destination is the same as using the file() destination with /dev/stdout as a filename. The reason it makes sense to create a separate destination is that /dev/stdout is not a portable filename that would work on all UNIXes. Signed-off-by: Balazs Scheidler <[email protected]>
- Loading branch information
Showing
8 changed files
with
132 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
* Copyright (c) 2023 Balazs Scheidler <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 as published | ||
* by the Free Software Foundation, 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 an additional exemption you are allowed to compile & link against the | ||
* OpenSSL libraries as published by the OpenSSL project. See the file | ||
* COPYING for details. | ||
* | ||
*/ | ||
#include "file-specializations.h" | ||
#include "transport/transport-file.h" | ||
#include "affile-dest.h" | ||
#include "logproto-file-writer.h" | ||
#include <unistd.h> | ||
|
||
static LogTransport * | ||
_construct_transport(FileOpener *self, gint fd) | ||
{ | ||
return log_transport_file_new(fd); | ||
} | ||
|
||
static LogProtoClient * | ||
_construct_dst_proto(FileOpener *s, LogTransport *transport, LogProtoClientOptions *proto_options) | ||
{ | ||
return log_proto_file_writer_new(transport, proto_options, 0, FALSE); | ||
} | ||
|
||
static gint | ||
_open(FileOpener *self, const gchar *name, gint flags) | ||
{ | ||
return dup(1); | ||
} | ||
|
||
FileOpener * | ||
file_opener_for_stdout_new(void) | ||
{ | ||
FileOpener *self = file_opener_new(); | ||
|
||
self->construct_transport = _construct_transport; | ||
self->construct_dst_proto = _construct_dst_proto; | ||
self->open = _open; | ||
return self; | ||
} | ||
|
||
LogDriver * | ||
stdout_dd_new(GlobalConfig *cfg) | ||
{ | ||
LogTemplate *filename_template = log_template_new(cfg, NULL); | ||
|
||
log_template_compile_literal_string(filename_template, "-"); | ||
AFFileDestDriver *self = affile_dd_new_instance(filename_template, cfg); | ||
|
||
// self->file_reader_options.reader_options.super.stats_source = stats_register_type("stdout"); | ||
self->file_opener = file_opener_for_stdout_new(); | ||
return &self->super.super; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Copyright (c) 2023 Balazs Scheidler <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 as published | ||
* by the Free Software Foundation, 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 an additional exemption you are allowed to compile & link against the | ||
* OpenSSL libraries as published by the OpenSSL project. See the file | ||
* COPYING for details. | ||
* | ||
*/ | ||
|
||
#ifndef AFFILE_STDOUT_H_INCLUDED | ||
#define AFFILE_STDOUT_H_INCLUDED | ||
|
||
#include "driver.h" | ||
#include "cfg.h" | ||
|
||
LogDriver *stdout_dd_new(GlobalConfig *cfg); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters