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    long lastTimestamp = -1;
027    String timestampStrCache = null;
028    CachingDateFormatter cachingDateFormatter = null;
029
030    public void start() {
031
032        String datePattern = getFirstOption();
033        if (datePattern == null) {
034            datePattern = CoreConstants.ISO8601_PATTERN;
035        }
036
037        if (datePattern.equals(CoreConstants.ISO8601_STR)) {
038            datePattern = CoreConstants.ISO8601_PATTERN;
039        }
040
041        List<String> optionList = getOptionList();
042        ZoneId zoneId = null;
043        // if the option list contains a TZ option, then set it.
044        if (optionList != null && optionList.size() > 1) {
045            String zoneIdString = (String) optionList.get(1);
046            zoneId = ZoneId.of(zoneIdString);
047            addInfo("Setting zoneId to \""+zoneId+"\"");
048        }
049
050        Locale locale = null;
051        if (optionList != null && optionList.size() > 2) {
052            String localeIdStr = (String) optionList.get(2);
053            locale = Locale.forLanguageTag(localeIdStr);
054            addInfo("Setting locale to \""+locale+"\"");
055        }
056        try {
057            // if zoneId is null, the CachingDateFormatter will use the ZoneId.systemDefault()
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}