com.nesscomputing.syslog4j.impl.message.AbstractSyslogMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ness-syslog4j Show documentation
Show all versions of ness-syslog4j Show documentation
Syslog4j provides client and server implementations of the BSD Syslog protocol (RFC 3164) and the structured syslog" protocol (RFC5424).
/**
*
* (C) Copyright 2008-2011 syslog4j.org
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Lesser General Public License
* (LGPL) version 2.1 which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/lgpl-2.1.html
*
* This library 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
* Lesser General Public License for more details.
*/
package com.nesscomputing.syslog4j.impl.message;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.apache.log4j.Logger;
import com.nesscomputing.syslog4j.SyslogMessageIF;
/**
* AbstractSyslogMessage provides support for turning POJO (Plain Ol'
* Java Objects) into Syslog messages.
*
* More information on the PCI DSS specification is available here:
*
* https://www.pcisecuritystandards.org/security_standards/pci_dss.shtml
*
* Syslog4j is licensed under the Lesser GNU Public License v2.1. A copy
* of the LGPL license is available in the META-INF folder in all
* distributions of Syslog4j and in the base directory of the "doc" ZIP.
*
* @author <[email protected]>
* @version $Id: AbstractSyslogMessage.java,v 1.2 2009/04/17 02:37:04 cvs Exp $
*/
public abstract class AbstractSyslogMessage implements SyslogMessageIF {
private static final Logger LOG = Logger.getLogger(AbstractSyslogMessage.class);
public static final String UNDEFINED = "undefined";
public static final String DEFAULT_DATE_FORMAT = "yyyy/MM/dd";
public static final String DEFAULT_TIME_FORMAT = "HH:mm:ss";
public static final char DEFAULT_DELIMITER = ' ';
public static final String DEFAULT_REPLACE_DELIMITER = "_";
protected char getDelimiter() {
return DEFAULT_DELIMITER;
}
protected String getReplaceDelimiter() {
return DEFAULT_REPLACE_DELIMITER;
}
protected String getDateFormat() {
return DEFAULT_DATE_FORMAT;
}
protected String getTimeFormat() {
return DEFAULT_TIME_FORMAT;
}
protected String generateDate() {
String date = new SimpleDateFormat(getDateFormat()).format(new Date());
return date;
}
protected String generateTime() {
String time = new SimpleDateFormat(getTimeFormat()).format(new Date());
return time;
}
protected String[] generateDateAndTime(Date date) {
String[] dateAndTime = new String[2];
dateAndTime[0] = new SimpleDateFormat(getDateFormat()).format(date);
dateAndTime[1] = new SimpleDateFormat(getTimeFormat()).format(date);
return dateAndTime;
}
protected String generateLocalHostName() {
String localHostName = UNDEFINED;
try {
localHostName = InetAddress.getLocalHost().getHostName();
} catch (UnknownHostException uhe) {
LOG.warn("While finding host name: ", uhe);
}
return localHostName;
}
protected String replaceDelimiter(String fieldName, String fieldValue, char delimiter, String replaceDelimiter) {
if (replaceDelimiter == null || replaceDelimiter.length() < 1 || fieldValue == null || fieldValue.length() < 1) {
return fieldValue;
}
String newFieldValue = fieldValue.replaceAll("\\" + delimiter, replaceDelimiter);
return newFieldValue;
}
public abstract String createMessage();
}