-
Notifications
You must be signed in to change notification settings - Fork 442
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4ca35d8
commit 0ccc7e5
Showing
13 changed files
with
1,108 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
136 changes: 136 additions & 0 deletions
136
modules/core/src/main/java/org/apache/synapse/config/xml/ScatterGatherMediatorFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
/* | ||
* Copyright (c) 2024, WSO2 LLC. (http://www.wso2.org) All Rights Reserved. | ||
* | ||
* WSO2 LLC. licenses this file to you under the Apache License, | ||
* Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.apache.synapse.config.xml; | ||
|
||
import org.apache.axiom.om.OMAttribute; | ||
import org.apache.axiom.om.OMElement; | ||
import org.apache.synapse.Mediator; | ||
import org.apache.synapse.mediators.eip.Target; | ||
import org.apache.synapse.mediators.v2.ScatterGather; | ||
import org.jaxen.JaxenException; | ||
|
||
import java.util.Iterator; | ||
import java.util.Properties; | ||
import javax.xml.namespace.QName; | ||
|
||
/** | ||
* The <scatter-gather> mediator is used to copy messages in Synapse to similar messages but with | ||
* different message contexts and aggregate the responses back. | ||
* | ||
* <pre> | ||
* <scatter-gather parallel-execution=(true | false)> | ||
* <aggregation value-to-aggregate="expression" condition="expression" timeout="long" | ||
* min-messages="expression" max-messages="expression"/> | ||
* <target> | ||
* <sequence> | ||
* (mediator)+ | ||
* </sequence> | ||
* </target>+ | ||
* </scatter-gather> | ||
* </pre> | ||
*/ | ||
public class ScatterGatherMediatorFactory extends AbstractMediatorFactory { | ||
|
||
/** | ||
* This will hold the QName of the clone mediator element in the xml configuration | ||
*/ | ||
private static final QName SCATTER_GATHER_Q | ||
= new QName(XMLConfigConstants.SYNAPSE_NAMESPACE, "scatter-gather"); | ||
private static final QName ELEMENT_AGGREGATE_Q | ||
= new QName(XMLConfigConstants.SYNAPSE_NAMESPACE, "aggregation"); | ||
private static final QName ATT_VALUE_TO_AGGREGATE = new QName("value-to-aggregate"); | ||
private static final QName ATT_CONDITION = new QName("condition"); | ||
private static final QName ATT_TIMEOUT = new QName("timeout"); | ||
private static final QName ATT_MIN_MESSAGES = new QName("min-messages"); | ||
private static final QName ATT_MAX_MESSAGES = new QName("max-messages"); | ||
private static final QName TARGET_Q = new QName(XMLConfigConstants.SYNAPSE_NAMESPACE, "target"); | ||
private static final QName PARALLEL_EXEC_Q = new QName("parallel-execution"); | ||
|
||
public Mediator createSpecificMediator(OMElement elem, Properties properties) { | ||
|
||
boolean asynchronousExe = true; | ||
|
||
ScatterGather mediator = new ScatterGather(); | ||
processAuditStatus(mediator, elem); | ||
|
||
OMAttribute parallelExecAttr = elem.getAttribute(PARALLEL_EXEC_Q); | ||
if (parallelExecAttr != null && parallelExecAttr.getAttributeValue().equals("false")) { | ||
asynchronousExe = false; | ||
} | ||
|
||
mediator.setParallelExecution(asynchronousExe); | ||
|
||
Iterator targetElements = elem.getChildrenWithName(TARGET_Q); | ||
while (targetElements.hasNext()) { | ||
Target target = TargetFactory.createTarget((OMElement) targetElements.next(), properties); | ||
target.setAsynchronous(asynchronousExe); | ||
mediator.addTarget(target); | ||
} | ||
|
||
OMElement aggregateElement = elem.getFirstChildWithName(ELEMENT_AGGREGATE_Q); | ||
if (aggregateElement != null) { | ||
OMAttribute aggregateExpr = aggregateElement.getAttribute(ATT_VALUE_TO_AGGREGATE); | ||
if (aggregateExpr != null) { | ||
try { | ||
mediator.setAggregationExpression( | ||
SynapsePathFactory.getSynapsePath(aggregateElement, ATT_VALUE_TO_AGGREGATE)); | ||
} catch (JaxenException e) { | ||
handleException("Unable to load the aggregating expression", e); | ||
} | ||
} | ||
|
||
OMAttribute conditionExpr = aggregateElement.getAttribute(ATT_CONDITION); | ||
if (conditionExpr != null) { | ||
try { | ||
mediator.setCorrelateExpression( | ||
SynapsePathFactory.getSynapsePath(aggregateElement, ATT_CONDITION)); | ||
} catch (JaxenException e) { | ||
handleException("Unable to load the condition expression", e); | ||
} | ||
} | ||
|
||
OMAttribute completeTimeout = aggregateElement.getAttribute(ATT_TIMEOUT); | ||
if (completeTimeout != null) { | ||
mediator.setCompletionTimeoutMillis(Long.parseLong(completeTimeout.getAttributeValue())); | ||
} | ||
|
||
OMAttribute minMessages = aggregateElement.getAttribute(ATT_MIN_MESSAGES); | ||
if (minMessages != null) { | ||
mediator.setMinMessagesToComplete(new ValueFactory().createValue("min-messages", aggregateElement)); | ||
} | ||
|
||
OMAttribute maxMessages = aggregateElement.getAttribute(ATT_MAX_MESSAGES); | ||
if (maxMessages != null) { | ||
mediator.setMaxMessagesToComplete(new ValueFactory().createValue("max-messages", aggregateElement)); | ||
} | ||
} | ||
addAllCommentChildrenToList(elem, mediator.getCommentsList()); | ||
return mediator; | ||
} | ||
|
||
/** | ||
* This method will implement the getTagQName method of the MediatorFactory interface | ||
* | ||
* @return QName of the clone element in xml configuration | ||
*/ | ||
public QName getTagQName() { | ||
|
||
return SCATTER_GATHER_Q; | ||
} | ||
} |
84 changes: 84 additions & 0 deletions
84
...les/core/src/main/java/org/apache/synapse/config/xml/ScatterGatherMediatorSerializer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
/* | ||
* Copyright (c) 2024, WSO2 LLC. (http://www.wso2.org) All Rights Reserved. | ||
* | ||
* WSO2 LLC. licenses this file to you under the Apache License, | ||
* Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.apache.synapse.config.xml; | ||
|
||
import org.apache.axiom.om.OMElement; | ||
import org.apache.synapse.Mediator; | ||
import org.apache.synapse.mediators.eip.Target; | ||
import org.apache.synapse.mediators.v2.ScatterGather; | ||
|
||
/** | ||
* Serializer for {@link ScatterGather} instances. | ||
*/ | ||
public class ScatterGatherMediatorSerializer extends AbstractMediatorSerializer { | ||
|
||
public OMElement serializeSpecificMediator(Mediator m) { | ||
|
||
ScatterGather scatterGatherMediator = null; | ||
if (!(m instanceof ScatterGather)) { | ||
handleException("Unsupported mediator passed in for serialization : " + m.getType()); | ||
} else { | ||
scatterGatherMediator = (ScatterGather) m; | ||
} | ||
|
||
assert scatterGatherMediator != null; | ||
OMElement scatterGatherElement = fac.createOMElement("scatter-gather", synNS); | ||
saveTracingState(scatterGatherElement, scatterGatherMediator); | ||
|
||
scatterGatherElement.addAttribute(fac.createOMAttribute( | ||
"parallel-execution", nullNS, Boolean.toString(scatterGatherMediator.getParallelExecution()))); | ||
OMElement aggregationElement = fac.createOMElement("aggregation", synNS); | ||
|
||
SynapsePathSerializer.serializePath( | ||
scatterGatherMediator.getAggregationExpression(), aggregationElement, "value-to-aggregate"); | ||
|
||
if (scatterGatherMediator.getCorrelateExpression() != null) { | ||
SynapsePathSerializer.serializePath( | ||
scatterGatherMediator.getAggregationExpression(), aggregationElement, "condition"); | ||
} | ||
|
||
if (scatterGatherMediator.getCompletionTimeoutMillis() != 0) { | ||
aggregationElement.addAttribute(fac.createOMAttribute( | ||
"timeout", nullNS, Long.toString(scatterGatherMediator.getCompletionTimeoutMillis()))); | ||
} | ||
if (scatterGatherMediator.getMinMessagesToComplete() != null) { | ||
new ValueSerializer().serializeValue( | ||
scatterGatherMediator.getMinMessagesToComplete(), "min-messages", aggregationElement); | ||
} | ||
if (scatterGatherMediator.getMaxMessagesToComplete() != null) { | ||
new ValueSerializer().serializeValue( | ||
scatterGatherMediator.getMaxMessagesToComplete(), "max-messages", aggregationElement); | ||
} | ||
scatterGatherElement.addChild(aggregationElement); | ||
|
||
for (Target target : scatterGatherMediator.getTargets()) { | ||
if (target != null) { | ||
scatterGatherElement.addChild(TargetSerializer.serializeTarget(target)); | ||
} | ||
} | ||
serializeComments(scatterGatherElement, scatterGatherMediator.getCommentsList()); | ||
|
||
return scatterGatherElement; | ||
} | ||
|
||
public String getMediatorClassName() { | ||
|
||
return ScatterGather.class.getName(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.