From 039468ae42bc21b6f2990a751f8f8c52f5e19c73 Mon Sep 17 00:00:00 2001 From: Mark Nellemann Date: Wed, 7 Oct 2020 12:33:54 +0200 Subject: [PATCH] Remove the outpuf file option to simplify. There are better options, eg. pipe output to the Apache rotatelogs tool. --- bitbucket-pipelines.yml | 2 +- .../biz/nellemann/syslogd/SyslogServer.java | 63 ++++--------------- 2 files changed, 12 insertions(+), 53 deletions(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index d3a4cfc..3b35599 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -17,7 +17,7 @@ pipelines: - gradle name: Build and Release script: - - ./gradlew clean build shadowJar buildRpm buildDeb + - ./gradlew clean versionFile build shadowJar buildRpm buildDeb - shopt -s nullglob ; for file in ${BITBUCKET_CLONE_DIR}/build/libs/*-all.jar ; do curl -X POST --user "${BB_AUTH_STRING}" "https://api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/downloads" --form files=@"${file}" ; done - shopt -s nullglob ; for file in ${BITBUCKET_CLONE_DIR}/build/distributions/*.rpm ; do curl -X POST --user "${BB_AUTH_STRING}" "https://api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/downloads" --form files=@"${file}" ; done - shopt -s nullglob ; for file in ${BITBUCKET_CLONE_DIR}/build/distributions/*.deb ; do curl -X POST --user "${BB_AUTH_STRING}" "https://api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/downloads" --form files=@"${file}" ; done diff --git a/src/main/java/biz/nellemann/syslogd/SyslogServer.java b/src/main/java/biz/nellemann/syslogd/SyslogServer.java index 09fecad..30e18c7 100644 --- a/src/main/java/biz/nellemann/syslogd/SyslogServer.java +++ b/src/main/java/biz/nellemann/syslogd/SyslogServer.java @@ -20,7 +20,7 @@ import org.slf4j.LoggerFactory; import picocli.CommandLine; import picocli.CommandLine.Command; -import java.io.*; +import java.io.IOException; import java.util.concurrent.Callable; @Command(name = "syslogd", @@ -30,25 +30,22 @@ import java.util.concurrent.Callable; public class SyslogServer implements Callable, LogListener { private final static Logger log = LoggerFactory.getLogger(SyslogServer.class); - private BufferedWriter bw; - @CommandLine.Option(names = {"-p", "--port"}, description = "Listening port [default: 514]") + @CommandLine.Option(names = {"-p", "--port"}, description = "Listening port [default: 514].") private int port = 514; - @CommandLine.Option(names = "--no-udp", negatable = true, description = "Listen on UDP [default: true]") + @CommandLine.Option(names = "--no-udp", negatable = true, description = "Listen on UDP [default: true].") boolean udpServer = true; - @CommandLine.Option(names = "--no-tcp", negatable = true, description = "Listen on TCP [default: true]") + @CommandLine.Option(names = "--no-tcp", negatable = true, description = "Listen on TCP [default: true].") boolean tcpServer = true; - @CommandLine.Option(names = "--rfc5424", negatable = false, description = "Parse RFC5424 messages [default: RFC3164]") - boolean rfc5424 = false; - - @CommandLine.Option(names = "--no-ansi", negatable = true, description = "Output ANSI colors [default: true]") + @CommandLine.Option(names = "--no-ansi", negatable = true, description = "Output ANSI colors [default: true].") boolean ansiOutput = true; - @CommandLine.Option(names = {"-f", "--file"}, description = "Write output to file [default: STDOUT]") - File outputFile; + @CommandLine.Option(names = "--rfc5424", description = "Parse RFC-5424 messages [default: RFC-3164].") + boolean rfc5424 = false; + public static void main(String... args) { int exitCode = new CommandLine(new SyslogServer()).execute(args); @@ -57,16 +54,7 @@ public class SyslogServer implements Callable, LogListener { @Override - public Integer call() throws Exception { - - FileOutputStream fos = null; - OutputStreamWriter w; - - if(outputFile != null) { - fos = new FileOutputStream(outputFile); - w = new OutputStreamWriter(fos, "UTF-8"); - bw = new BufferedWriter(w); - } + public Integer call() throws IOException { if(udpServer) { UdpServer udpServer = new UdpServer(port); @@ -80,11 +68,6 @@ public class SyslogServer implements Callable, LogListener { tcpServer.start(); } - if(outputFile != null) { - bw.close(); - fos.close(); - } - return 0; } @@ -106,37 +89,13 @@ public class SyslogServer implements Callable, LogListener { } if(msg != null) { - if(bw != null) { - writeToFile(msg); - } else { - writeToStdout(msg); - } - } - - } - - - void writeToFile(SyslogMessage msg) { - try { if(ansiOutput) { - bw.append(msg.toAnsiString()); + System.out.println(msg.toAnsiString()); } else { - bw.append(msg.toString()); + System.out.println(msg); } - bw.newLine(); - bw.flush(); - } catch (IOException e) { - log.error("file error", e); } - } - - void writeToStdout(SyslogMessage msg) { - if(ansiOutput) { - System.out.println(msg.toAnsiString()); - } else { - System.out.println(msg); - } } }