View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements. See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache license, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License. You may obtain a copy of the License at
8    *
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the license for the specific language governing permissions and
15   * limitations under the license.
16   */
17  package org.apache.logging.log4j.core.appender.rolling;
18  
19  import java.lang.reflect.Method;
20  
21  import org.apache.logging.log4j.core.LogEvent;
22  import org.apache.logging.log4j.core.config.plugins.Plugin;
23  import org.apache.logging.log4j.core.config.plugins.PluginAttribute;
24  import org.apache.logging.log4j.core.config.plugins.PluginFactory;
25  import org.apache.logging.log4j.core.util.Loader;
26  import org.apache.logging.log4j.status.StatusLogger;
27  
28  /**
29   * Triggers a rollover on every restart, but only if the file size is greater than zero.
30   */
31  @Plugin(name = "OnStartupTriggeringPolicy", category = "Core", printObject = true)
32  public class OnStartupTriggeringPolicy extends AbstractTriggeringPolicy {
33  
34      private static final long JVM_START_TIME = initStartTime();
35  
36      private final long minSize;
37  
38      private OnStartupTriggeringPolicy(final long minSize) {
39          this.minSize = minSize;
40      }
41  
42      /**
43       * Returns the result of {@code ManagementFactory.getRuntimeMXBean().getStartTime()},
44       * or the current system time if JMX is not available.
45       */
46      private static long initStartTime() {
47          // LOG4J2-379:
48          // We'd like to call ManagementFactory.getRuntimeMXBean().getStartTime(),
49          // but Google App Engine throws a java.lang.NoClassDefFoundError
50          // "java.lang.management.ManagementFactory is a restricted class".
51          // The reflection is necessary because without it, Google App Engine
52          // will refuse to initialize this class.
53          try {
54              final Class<?> factoryClass = Loader.loadSystemClass("java.lang.management.ManagementFactory");
55              final Method getRuntimeMXBean = factoryClass.getMethod("getRuntimeMXBean");
56              final Object runtimeMXBean = getRuntimeMXBean.invoke(null);
57  
58              final Class<?> runtimeMXBeanClass = Loader.loadSystemClass("java.lang.management.RuntimeMXBean");
59              final Method getStartTime = runtimeMXBeanClass.getMethod("getStartTime");
60              final Long result = (Long) getStartTime.invoke(runtimeMXBean);
61  
62              return result;
63          } catch (final Throwable t) {
64              StatusLogger.getLogger().error("Unable to call ManagementFactory.getRuntimeMXBean().getStartTime(), "
65                      + "using system time for OnStartupTriggeringPolicy", t);
66              // We have little option but to declare "now" as the beginning of time.
67              return System.currentTimeMillis();
68          }
69      }
70  
71      /**
72       * Provide the RollingFileManager to the policy.
73       * @param manager The RollingFileManager.
74       */
75      @Override
76      public void initialize(final RollingFileManager manager) {
77          if (manager.getFileTime() < JVM_START_TIME && manager.getFileSize() >= minSize) {
78              if (minSize == 0) {
79                  manager.setRenameEmptyFiles(true);
80              }
81              manager.skipFooter(true);
82              manager.rollover();
83              manager.skipFooter(false);
84          }
85      }
86  
87      /**
88       * Determine if a rollover should be triggered.
89       * @param event   A reference to the current event.
90       * @return true if the target file's timestamp is older than the JVM start time.
91       */
92      @Override
93      public boolean isTriggeringEvent(final LogEvent event) {
94          return false;
95      }
96  
97      @Override
98      public String toString() {
99          return "OnStartupTriggeringPolicy";
100     }
101 
102     @PluginFactory
103     public static OnStartupTriggeringPolicy createPolicy(
104             @PluginAttribute(value = "minSize", defaultLong = 1) final long minSize) {
105         return new OnStartupTriggeringPolicy(minSize);
106     }
107 }