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.async;
18  
19  import java.util.Map;
20  
21  import org.apache.logging.log4j.Level;
22  import org.apache.logging.log4j.Marker;
23  import org.apache.logging.log4j.ThreadContext.ContextStack;
24  import org.apache.logging.log4j.message.Message;
25  
26  import com.lmax.disruptor.EventTranslator;
27  
28  /**
29   * This class is responsible for writing elements that make up a log event into
30   * the ringbuffer {@code RingBufferLogEvent}. After this translator populated
31   * the ringbuffer event, the disruptor will update the sequence number so that
32   * the event can be consumed by another thread.
33   */
34  public class RingBufferLogEventTranslator implements
35          EventTranslator<RingBufferLogEvent> {
36  
37      private AsyncLogger asyncLogger;
38      private String loggerName;
39      private Marker marker;
40      private String fqcn;
41      private Level level;
42      private Message message;
43      private Throwable thrown;
44      private Map<String, String> contextMap;
45      private ContextStack contextStack;
46      private String threadName;
47      private StackTraceElement location;
48      private long currentTimeMillis;
49  
50      // @Override
51      @Override
52      public void translateTo(RingBufferLogEvent event, long sequence) {
53          event.setValues(asyncLogger, loggerName, marker, fqcn, level, message,
54                  thrown, contextMap, contextStack, threadName, location,
55                  currentTimeMillis);
56      }
57  
58      public void setValues(AsyncLogger asyncLogger, String loggerName,
59              Marker marker, String fqcn, Level level, Message message,
60              Throwable thrown, Map<String, String> contextMap,
61              ContextStack contextStack, String threadName,
62              StackTraceElement location, long currentTimeMillis) {
63          this.asyncLogger = asyncLogger;
64          this.loggerName = loggerName;
65          this.marker = marker;
66          this.fqcn = fqcn;
67          this.level = level;
68          this.message = message;
69          this.thrown = thrown;
70          this.contextMap = contextMap;
71          this.contextStack = contextStack;
72          this.threadName = threadName;
73          this.location = location;
74          this.currentTimeMillis = currentTimeMillis;
75      }
76  
77  }