1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.logging.log4j.core.appender.rewrite;
18
19 import org.apache.logging.log4j.Logger;
20 import org.apache.logging.log4j.core.LogEvent;
21 import org.apache.logging.log4j.core.config.Configuration;
22 import org.apache.logging.log4j.core.config.Property;
23 import org.apache.logging.log4j.core.config.plugins.Plugin;
24 import org.apache.logging.log4j.core.config.plugins.PluginConfiguration;
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.impl.Log4jLogEvent;
28 import org.apache.logging.log4j.status.StatusLogger;
29
30 import java.util.Arrays;
31 import java.util.HashMap;
32 import java.util.List;
33 import java.util.Map;
34
35
36
37
38 @Plugin(name = "PropertiesRewritePolicy", type = "Core", elementType = "rewritePolicy", printObject = true)
39 public final class PropertiesRewritePolicy implements RewritePolicy {
40
41
42
43 protected static final Logger LOGGER = StatusLogger.getLogger();
44
45 private final Map<Property, Boolean> properties;
46
47 private final Configuration config;
48
49 private PropertiesRewritePolicy(final Configuration config, final List<Property> props) {
50 this.config = config;
51 this.properties = new HashMap<Property, Boolean>(props.size());
52 for (final Property prop : props) {
53 final boolean interpolate = prop.getValue().contains("${");
54 properties.put(prop, interpolate);
55 }
56 }
57
58
59
60
61
62
63
64 public LogEvent rewrite(final LogEvent source) {
65 final Map<String, String> props = new HashMap<String, String>(source.getContextMap());
66 for (final Map.Entry<Property, Boolean> entry : properties.entrySet()) {
67 final Property prop = entry.getKey();
68 props.put(prop.getName(), entry.getValue() ?
69 config.getSubst().replace(prop.getValue()) : prop.getValue());
70 }
71
72 return new Log4jLogEvent(source.getLoggerName(), source.getMarker(), source.getFQCN(), source.getLevel(),
73 source.getMessage(), source.getThrown(), props, source.getContextStack(), source.getThreadName(),
74 source.getSource(), source.getMillis());
75 }
76
77 @Override
78 public String toString() {
79 final StringBuilder sb = new StringBuilder();
80 sb.append(" {");
81 boolean first = true;
82 for (final Map.Entry<Property, Boolean> entry : properties.entrySet()) {
83 if (!first) {
84 sb.append(", ");
85 }
86 final Property prop = entry.getKey();
87 sb.append(prop.getName()).append("=").append(prop.getValue());
88 first = false;
89 }
90 sb.append("}");
91 return sb.toString();
92 }
93
94
95
96
97
98
99
100 @PluginFactory
101 public static PropertiesRewritePolicy createPolicy(@PluginConfiguration final Configuration config,
102 @PluginElement("properties") final Property[] props) {
103 if (props == null || props.length == 0) {
104 LOGGER.error("Properties must be specified for the PropertiesRewritePolicy");
105 return null;
106 }
107 final List<Property> properties = Arrays.asList(props);
108 return new PropertiesRewritePolicy(config, properties);
109 }
110 }