Skip to content

Commit 3a27857

Browse files
Anil KonakallaAnil Konakalla
Anil Konakalla
authored and
Anil Konakalla
committed
Updated with the review suggestions
1 parent c26f06b commit 3a27857

File tree

7 files changed

+56
-66
lines changed

7 files changed

+56
-66
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111

1212
<artifactId>mule-custom-logger</artifactId>
13-
<version>3.1.12-SNAPSHOT</version>
13+
<version>3.1.0-SNAPSHOT</version>
1414
<packaging>mule-extension</packaging>
1515
<name>Mule Custom Logger</name>
1616
<description>Mule Custom Logger module that provides standard structured logging</description>

src/main/java/com/avioconsulting/mule/logger/api/processor/ExpressionText.java

-35
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,43 @@
11
package com.avioconsulting.mule.logger.api.processor;
22

33
import org.mule.runtime.extension.api.annotation.Alias;
4+
import org.mule.runtime.extension.api.annotation.param.Optional;
45
import org.mule.runtime.extension.api.annotation.param.Parameter;
56
import org.mule.runtime.extension.api.annotation.param.ParameterGroup;
67
import org.mule.runtime.extension.api.annotation.param.display.Summary;
78

8-
@Alias("flow-logs-config")
9+
@Alias("flow-log-config")
910
public class FlowLogConfig {
1011

1112
@Parameter
1213
@Summary("Name of the flow to associate given expression as attributes")
1314
private String flowName;
1415

15-
@ParameterGroup(name = "Flow Attributes")
16-
private ExpressionText expressionText;
16+
@Parameter
17+
@Optional
18+
@Summary("A valid dataweave expression that resolves to a Map object with key-value pairs")
19+
private String attributesExpressionText;
20+
21+
@Parameter
22+
@Optional
23+
@Summary("A valid dataweave expression that results in a String to append to default flow start message")
24+
private String messageExpressionText;
25+
26+
public String getAttributesExpressionText() {
27+
return attributesExpressionText;
28+
}
29+
30+
public void setAttributesExpressionText(String attributesExpressionText) {
31+
this.attributesExpressionText = attributesExpressionText;
32+
}
33+
34+
public String getMessageExpressionText() {
35+
return messageExpressionText;
36+
}
37+
38+
public void setMessageExpressionText(String messageExpressionText) {
39+
this.messageExpressionText = messageExpressionText;
40+
}
1741

1842
public String getFlowName() {
1943
return flowName;
@@ -24,11 +48,4 @@ public FlowLogConfig setFlowName(String flowName) {
2448
return this;
2549
}
2650

27-
public ExpressionText getExpressionText() {
28-
return expressionText;
29-
}
30-
31-
public void setExpressionText(ExpressionText expressionText) {
32-
this.expressionText = expressionText;
33-
}
3451
}

src/main/java/com/avioconsulting/mule/logger/internal/config/CustomLoggerConfiguration.java

+12-7
Original file line numberDiff line numberDiff line change
@@ -345,13 +345,6 @@ public void start() throws MuleException {
345345
customLoggerRegistrationService.setConfig(this);
346346
if (isEnableFlowLogs()) {
347347
classLogger.info("Flow logs enabled");
348-
flowLogConfigs.forEach(flowLogConfig -> {
349-
if (flowLogConfig.getExpressionText().getMessageExpressionText() == null
350-
&& flowLogConfig.getExpressionText().getAttributesExpressionText() == null) {
351-
throw new IllegalStateException(
352-
"One of attributesExpressionText or messageExpressionText must be defined in flow-logs-config");
353-
}
354-
});
355348
flowLogConfigMap = flowLogConfigs.stream().collect(
356349
Collectors.toMap(FlowLogConfig::getFlowName, Function.identity()));
357350
synchronized (CustomLoggerConfiguration.class) {
@@ -387,5 +380,17 @@ public void initialise() throws InitialisationException {
387380
throw new InitialisationException(createStaticMessage(
388381
"Encryption Algorithm must be provided if encryption password is being supplied"), this);
389382
}
383+
flowLogConfigs.forEach(flowLogConfig -> {
384+
if (flowLogConfig.getMessageExpressionText() == null
385+
&& flowLogConfig.getAttributesExpressionText() == null) {
386+
try {
387+
throw new InitialisationException(createStaticMessage(
388+
"One of attributesExpressionText or messageExpressionText must be defined in flow-logs-config"),
389+
this);
390+
} catch (InitialisationException e) {
391+
throw new RuntimeException(e);
392+
}
393+
}
394+
});
390395
}
391396
}

src/main/java/com/avioconsulting/mule/logger/internal/listeners/CustomLoggerAbstractNotificationListener.java

+7-6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
import java.util.Collections;
1212
import java.util.List;
1313
import java.util.Map;
14+
import java.util.Optional;
1415
import java.util.stream.Collectors;
1516

1617
public abstract class CustomLoggerAbstractNotificationListener {
@@ -58,14 +59,14 @@ protected Map<String, String> getFlowLogAttributes(EnrichedServerNotification no
5859
* ex: mq-listener-* will look for all the flows that starts with mq-listener
5960
* ex: *-mq-flow will look for all the flows that ends with -mq-flow
6061
**/
61-
List<Map.Entry<String, FlowLogConfig>> matchedEntries = config.getFlowLogConfigMap().entrySet().stream()
62+
Optional<Map.Entry<String, FlowLogConfig>> matchedEntry = config.getFlowLogConfigMap().entrySet().stream()
6263
.filter(entry -> matchWildcard(entry.getKey(), notification.getResourceIdentifier()))
63-
.collect(Collectors.toList());
64-
if (!matchedEntries.isEmpty()) {
65-
flowLogConfig = matchedEntries.get(0).getValue();
64+
.findFirst();
65+
if (matchedEntry.isPresent()) {
66+
flowLogConfig = matchedEntry.get().getValue();
6667
TypedValue<Map<String, String>> evaluate = (TypedValue<Map<String, String>>) config
6768
.getExpressionManager()
68-
.evaluate("#[" + flowLogConfig.getExpressionText().getAttributesExpressionText() + "]",
69+
.evaluate("#[" + flowLogConfig.getAttributesExpressionText() + "]",
6970
notification.getEvent().asBindingContext());
7071
value = evaluate.getValue();
7172
if (value == null)
@@ -79,7 +80,7 @@ public boolean matchWildcard(String wildcardKey, String searchString) {
7980
String cleanWildcardKey = wildcardKey.trim();
8081

8182
// Exact match if no wildcards
82-
if (searchString.equals(wildcardKey)) {
83+
if (searchString.equalsIgnoreCase(wildcardKey.toLowerCase())) {
8384
return true;
8485
}
8586

src/main/java/com/avioconsulting/mule/logger/internal/listeners/CustomLoggerPipelineNotificationListener.java

+7-5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
import java.util.List;
1212
import java.util.Map;
13+
import java.util.Optional;
1314
import java.util.stream.Collectors;
1415

1516
/*
@@ -42,14 +43,15 @@ public void onNotification(PipelineMessageNotification notification) {
4243
if (config != null) {
4344
try {
4445
String msgToAppend = "";
45-
List<Map.Entry<String, FlowLogConfig>> matchedEntries = config.getFlowLogConfigMap().entrySet().stream()
46+
Optional<Map.Entry<String, FlowLogConfig>> matchedEntry = config.getFlowLogConfigMap().entrySet()
47+
.stream()
4648
.filter(entry -> matchWildcard(entry.getKey(), notification.getResourceIdentifier()))
47-
.collect(Collectors.toList());
48-
if (!matchedEntries.isEmpty()) {
49-
FlowLogConfig flowLogConfig = matchedEntries.get(0).getValue();
49+
.findFirst();
50+
if (matchedEntry.isPresent()) {
51+
FlowLogConfig flowLogConfig = matchedEntry.get().getValue();
5052
TypedValue<String> evaluate = (TypedValue<String>) config
5153
.getExpressionManager()
52-
.evaluate("#[" + flowLogConfig.getExpressionText().getMessageExpressionText() + "]",
54+
.evaluate("#[" + flowLogConfig.getMessageExpressionText() + "]",
5355
notification.getEvent().asBindingContext());
5456
msgToAppend = evaluate.getValue();
5557
}

src/test/resources/custom-logger-config.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ http://www.mulesoft.org/schema/mule/avio-logger http://www.mulesoft.org/schema/m
99
<avio-logger:config name="AVIO_Logger_Config_Json" doc:name="AVIO Logger Config" doc:id="84bd2712-015b-46b8-93e9-94536774b8ad"
1010
applicationVersion="1" applicationName="munit" environment="test" compressor="GZIP" encryptionAlgorithm="PBEWithHmacSHA512AndAES_128" encryptionPassword="example" enableFlowLogs="true" formatAsJson="true" flowLogLevel="INFO">
1111
<avio-logger:flow-log-configs >
12-
<avio-logger:flow-logs-config flowName="custom-logger-configFlow" attributesExpressionText="attributes" />
12+
<avio-logger:flow-log-config flowName="custom-logger-configFlow" attributesExpressionText="attributes" />
1313
</avio-logger:flow-log-configs>
1414
</avio-logger:config>
1515

1616
<avio-logger:config name="AVIO_Logger_Config" doc:name="AVIO Logger Config" doc:id="84bd2712-015b-46b8-93e9-94536774b8ad"
1717
applicationVersion="1" applicationName="munit" environment="test" compressor="GZIP" encryptionAlgorithm="PBEWithHmacSHA512AndAES_128" encryptionPassword="example" enableFlowLogs="true" flowLogLevel="INFO">
1818
<avio-logger:flow-log-configs >
19-
<avio-logger:flow-logs-config flowName="custom-logger-configFlow" attributesExpressionText="attributes" />
19+
<avio-logger:flow-log-config flowName="custom-logger-configFlow" attributesExpressionText="attributes" />
2020
</avio-logger:flow-log-configs>
2121
</avio-logger:config>
2222

0 commit comments

Comments
 (0)