001/** 002 * Logback: the reliable, generic, fast and flexible logging framework. 003 * Copyright (C) 1999-2015, QOS.ch. All rights reserved. 004 * 005 * This program and the accompanying materials are dual-licensed under 006 * either the terms of the Eclipse Public License v1.0 as published by 007 * the Eclipse Foundation 008 * 009 * or (per the licensee's choosing) 010 * 011 * under the terms of the GNU Lesser General Public License version 2.1 012 * as published by the Free Software Foundation. 013 */ 014package ch.qos.logback.classic.pattern; 015 016import java.time.ZoneId; 017import java.util.List; 018import java.util.Locale; 019 020import ch.qos.logback.classic.spi.ILoggingEvent; 021import ch.qos.logback.core.CoreConstants; 022import ch.qos.logback.core.util.CachingDateFormatter; 023 024public class DateConverter extends ClassicConverter { 025 026 CachingDateFormatter cachingDateFormatter = null; 027 028 public void start() { 029 030 String datePattern = getFirstOption(); 031 032 if (datePattern == null) { 033 datePattern = CoreConstants.ISO8601_PATTERN; 034 } else if (datePattern.equals(CoreConstants.ISO8601_STR)) { 035 datePattern = CoreConstants.ISO8601_PATTERN; 036 } else if (datePattern.equals(CoreConstants.STRICT_STR)) { 037 datePattern = CoreConstants.STRICT_ISO8601_PATTERN; 038 } 039 040 List<String> optionList = getOptionList(); 041 ZoneId zoneId = null; 042 // if the option list contains a TZ option, then set it. 043 if (optionList != null && optionList.size() > 1) { 044 String zoneIdString = (String) optionList.get(1); 045 zoneId = ZoneId.of(zoneIdString); 046 addInfo("Setting zoneId to \""+zoneId+"\""); 047 } 048 049 Locale locale = null; 050 if (optionList != null && optionList.size() > 2) { 051 String localeIdStr = (String) optionList.get(2); 052 locale = Locale.forLanguageTag(localeIdStr); 053 addInfo("Setting locale to \""+locale+"\""); 054 } 055 try { 056 // if zoneId is null, the CachingDateFormatter will use the ZoneId.systemDefault() 057 // if locale is null, the CachingDateFormatter will use the Locale.getDefault() 058 cachingDateFormatter = new CachingDateFormatter(datePattern, zoneId, locale); 059 } catch (IllegalArgumentException e) { 060 addWarn("Could not instantiate SimpleDateFormat with pattern " + datePattern, e); 061 // default to the ISO8601 format 062 cachingDateFormatter = new CachingDateFormatter(CoreConstants.ISO8601_PATTERN, zoneId); 063 } 064 065 super.start(); 066 } 067 068 public String convert(ILoggingEvent le) { 069 long timestamp = le.getTimeStamp(); 070 return cachingDateFormatter.format(timestamp); 071 } 072}