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.layout;
18  
19  import java.util.Collections;
20  import java.util.HashMap;
21  import java.util.Map;
22  
23  import org.apache.logging.log4j.core.config.plugins.Plugin;
24  import org.apache.logging.log4j.core.config.plugins.PluginAttribute;
25  import org.apache.logging.log4j.core.config.plugins.PluginElement;
26  import org.apache.logging.log4j.core.config.plugins.PluginFactory;
27  import org.apache.logging.log4j.core.util.KeyValuePair;
28  import org.apache.logging.log4j.message.StructuredDataId;
29  
30  /**
31   * A LoggerFields container.
32   */
33  @Plugin(name = "LoggerFields", category = "Core", printObject = true)
34  public final class LoggerFields {
35  
36      private final Map<String, String> map;
37      private final String sdId;
38      private final String enterpriseId;
39      private final boolean discardIfAllFieldsAreEmpty;
40  
41      private LoggerFields(final Map<String, String> map, String sdId, String enterpriseId,
42              boolean discardIfAllFieldsAreEmpty) {
43          this.sdId = sdId;
44          this.enterpriseId = enterpriseId;
45          this.map = Collections.unmodifiableMap(map);
46          this.discardIfAllFieldsAreEmpty = discardIfAllFieldsAreEmpty;
47      }
48  
49      public Map<String, String> getMap() {
50          return this.map;
51      }
52  
53      @Override
54      public String toString() {
55          return this.map.toString();
56      }
57  
58      /**
59       * Create a LoggerFields from KeyValuePairs.
60       *
61       * @param keyValuePairs
62       *            An array of KeyValuePairs.
63       * @param sdId
64       *            The SD-ID in an SD-ELEMENT
65       * @param enterpriseId
66       *            The IANA assigned enterprise number
67       * @param discardIfAllFieldsAreEmpty
68       *            this SD-ELEMENT should be discarded if all fields are empty
69       * @return A LoggerFields instance containing a Map<String, String>.
70       */
71      @PluginFactory
72      public static LoggerFields createLoggerFields(
73          @PluginElement("LoggerFields") final KeyValuePair[] keyValuePairs,
74          @PluginAttribute("sdId") final String sdId,
75          @PluginAttribute("enterpriseId") final String enterpriseId,
76          @PluginAttribute(value = "discardIfAllFieldsAreEmpty", defaultBoolean = false) final boolean discardIfAllFieldsAreEmpty) {
77          final Map<String, String> map = new HashMap<String, String>();
78  
79          for (final KeyValuePair keyValuePair : keyValuePairs) {
80              map.put(keyValuePair.getKey(), keyValuePair.getValue());
81          }
82  
83          return new LoggerFields(map, sdId, enterpriseId, discardIfAllFieldsAreEmpty);
84      }
85  
86      public StructuredDataId getSdId() {
87          if (enterpriseId == null || sdId == null) {
88              return null;
89          }
90          final int eId = Integer.parseInt(enterpriseId);
91          return new StructuredDataId(sdId, eId, null, null);
92      }
93  
94      public boolean getDiscardIfAllFieldsAreEmpty() {
95          return discardIfAllFieldsAreEmpty;
96      }
97  }