Search in sources :

Example 6 with Target

use of org.wso2.carbon.apimgt.common.analytics.publishers.dto.Target in project carbon-business-process by wso2.

the class ProcessImpl method getLinkArrows.

/**
 * Gets the Link arrow coordinates when there is a FLOW activity in the process
 *
 * @param doc SVG document which defines the components including shapes, gradients etc. of the process
 * @return An element which contains the link arrow coordinates of the Process
 */
private Element getLinkArrows(SVGDocument doc) {
    Element group = doc.createElementNS(SVGNamespace.SVG_NAMESPACE, "g");
    // Checks whether the any links exist
    if (links != null && !links.isEmpty()) {
        // Returns a collection-view of the map with the link names, sources(starting activity) and the target
        // (ending activity)
        Set linksSet = links.entrySet();
        Iterator linksIterator = linksSet.iterator();
        // Iterates through the links
        while (linksIterator.hasNext()) {
            Map.Entry<String, Link> link = (Map.Entry<String, Link>) linksIterator.next();
            // Gets the source/start activity of the link
            ActivityInterface startActivity = link.getValue().getSource();
            // Gets the target/end activity of the link
            ActivityInterface endActivity = link.getValue().getTarget();
            // Get the link name
            String linkName = link.getKey();
            // Check if the source and the target of the link contains a value
            if (endActivity != null && startActivity != null) {
                // Define the link flow/path by giving the coordinates of the start and end activity
                group.appendChild(drawLink(doc, startActivity.getExitArrowCoords().getXLeft(), startActivity.getExitArrowCoords().getYTop(), endActivity.getEntryArrowCoords().getXLeft(), endActivity.getEntryArrowCoords().getYTop(), startActivity.getStartIconWidth(), link.getKey(), linkName));
            }
        }
    }
    return group;
}
Also used : Set(java.util.Set) ActivityInterface(org.wso2.carbon.bpel.ui.bpel2svg.ActivityInterface) OMElement(org.apache.axiom.om.OMElement) Element(org.w3c.dom.Element) Iterator(java.util.Iterator) Map(java.util.Map) Link(org.wso2.carbon.bpel.ui.bpel2svg.Link)

Example 7 with Target

use of org.wso2.carbon.apimgt.common.analytics.publishers.dto.Target in project carbon-business-process by wso2.

the class ActivityImpl method processSubActivities.

/**
 * Get the subactivites in the bpel process
 * Processes the subActivities each one separately, if the activity name matches any of the element tags
 * then the constructor of that activity implementation is invoked
 *
 * @param omElement process definition of the bpel process
 * @return activity
 */
public ActivityInterface processSubActivities(OMElement omElement) {
    ActivityInterface endActivity = null;
    // Checks whether omElement contains a value
    if (omElement != null) {
        ActivityInterface activity = null;
        Iterator iterator = omElement.getChildElements();
        // Iterates through the subActivities
        while (iterator.hasNext()) {
            OMElement tmpElement = (OMElement) iterator.next();
            if (tmpElement.getLocalName().equals(BPEL2SVGFactory.ASSIGN_START_TAG) && isIncludeAssigns()) {
                activity = new AssignImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.EMPTY_START_TAG)) {
                activity = new EmptyImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.CATCHALL_START_TAG)) {
                activity = new CatchAllImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.CATCH_START_TAG)) {
                activity = new CatchImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.COMPENSATESCOPE_START_TAG)) {
                activity = new CompensateScopeImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.COMPENSATE_START_TAG)) {
                activity = new CompensateImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.COMPENSATIONHANDLER_START_TAG)) {
                activity = new CompensationHandlerImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.ELSEIF_START_TAG)) {
                activity = new ElseIfImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.ELSE_START_TAG)) {
                activity = new ElseImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.EVENTHANDLER_START_TAG)) {
                activity = new EventHandlerImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.EXIT_START_TAG)) {
                activity = new ExitImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.FAULTHANDLER_START_TAG)) {
                activity = new FaultHandlerImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.FLOW_START_TAG)) {
                activity = new FlowImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.FOREACH_START_TAG)) {
                activity = new ForEachImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.IF_START_TAG)) {
                activity = new IfImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.INVOKE_START_TAG)) {
                activity = new InvokeImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.ONALARM_START_TAG)) {
                activity = new OnAlarmImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.ONEVENT_START_TAG)) {
                activity = new OnEventImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.ONMESSAGE_START_TAG)) {
                activity = new OnMessageImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.PICK_START_TAG)) {
                activity = new PickImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.PROCESS_START_TAG)) {
                activity = new ProcessImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.RECEIVE_START_TAG)) {
                activity = new ReceiveImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.REPEATUNTIL_START_TAG)) {
                activity = new RepeatUntilImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.REPLY_START_TAG)) {
                activity = new ReplyImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.RETHROW_START_TAG)) {
                activity = new ReThrowImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.SCOPE_START_TAG)) {
                activity = new ScopeImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.SEQUENCE_START_TAG)) {
                activity = new SequenceImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.SOURCE_START_TAG)) {
                // source
                activity = new SourceImpl(tmpElement, this);
                if (activity.getAttributes().get(0).getAttribute().equals("linkName")) {
                    if (links.containsKey(activity.getAttributes().get(0).getValue())) {
                        // if a entry for the particular link name already exists
                        links.get(activity.getAttributes().get(0).getValue()).setSource(this.parent);
                    } else {
                        // if the link name doesnot exist i.e. if the link is a new link
                        // Create a new Link object
                        Link link = new Link();
                        // Set the source(Start activity) as the parent activity
                        link.setSource(this.parent);
                        links.put(activity.getAttributes().get(0).getValue(), link);
                    }
                    // Add the parent activity of the activity to the source-list
                    sources.add(this.parent);
                }
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.SOURCES_START_TAG)) {
                activity = new SourcesImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.TARGET_START_TAG)) {
                // target;
                activity = new TargetImpl(tmpElement, this);
                if (activity.getAttributes().get(0).getAttribute().equals("linkName")) {
                    if (links.containsKey(activity.getAttributes().get(0).getValue())) {
                        // if a entry for the particular link name already exists
                        links.get(activity.getAttributes().get(0).getValue()).setTarget(this.parent);
                    } else {
                        // if the link name doesnot exist i.e. if the link is a new link
                        // Create a new Link object
                        Link link = new Link();
                        // Set the target(End activity) as the parent activity
                        link.setTarget(this.parent);
                        links.put(activity.getAttributes().get(0).getValue(), link);
                    }
                    // Add the parent activity of the activity to the target-list
                    targets.add(this.parent);
                }
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.TARGETS_START_TAG)) {
                activity = new TargetsImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.TERMINATIONHANDLER_START_TAG)) {
                activity = new TerminationHandlerImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.THROW_START_TAG)) {
                activity = new ThrowImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.WAIT_START_TAG)) {
                activity = new WaitImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(BPEL2SVGFactory.WHILE_START_TAG)) {
                activity = new WhileImpl(tmpElement, this);
            } else if (tmpElement.getLocalName().equals(getEndTag())) {
                break;
            } else {
                continue;
            }
            // Set the link properties i.e. the link name, source of the link and the target of the link
            activity.setLinkProperties(links, sources, targets);
            // Add the activity to the subActivities list
            subActivities.add(activity);
            // Checks if the activity has any child activities
            if (tmpElement.getChildElements().hasNext()) {
                // The child activities are processed again by invoking the same method recursively
                ActivityInterface replyActivity = activity.processSubActivities(tmpElement);
                if (replyActivity != null) {
                    subActivities.add(replyActivity);
                }
            }
            if (tmpElement.getLocalName().equals(BPEL2SVGFactory.PROCESS_START_TAG)) {
                break;
            }
        }
    }
    return endActivity;
}
Also used : OMElement(org.apache.axiom.om.OMElement) Iterator(java.util.Iterator) ActivityInterface(org.wso2.carbon.bpel.ui.bpel2svg.ActivityInterface) Link(org.wso2.carbon.bpel.ui.bpel2svg.Link)

Example 8 with Target

use of org.wso2.carbon.apimgt.common.analytics.publishers.dto.Target in project carbon-business-process by wso2.

the class IfImpl method getArrows.

/**
 * Get the arrow coordinates of the activities
 *
 * @param doc SVG document which defines the components including shapes, gradients etc. of the activity
 * @return An element which contains the arrow coordinates of the If activity and its subActivities
 */
protected Element getArrows(SVGDocument doc) {
    if (subActivities != null) {
        ActivityInterface prevActivity = null;
        ActivityInterface prevElseActivity = null;
        ActivityInterface activity = null;
        ActivityInterface seqActivity = null;
        boolean throwOrNot = true;
        String id = null;
        // Coordinates of the start icon exit arrow
        SVGCoordinates myStartCoords = getStartIconExitArrowCoords();
        // Coordinates of the end icon entry arrow
        SVGCoordinates myExitCoords = getEndIconEntryArrowCoords();
        // Coordinates of the Else activity start icon entry arrow
        SVGCoordinates myStartElseCoords = getStartIconElseArrowCoords();
        SVGCoordinates exitCoords = null;
        SVGCoordinates activityEntryCoords = null;
        SVGCoordinates activityExitCoords = null;
        Iterator<ActivityInterface> itr = subActivities.iterator();
        Element subGroup = doc.createElementNS(SVGNamespace.SVG_NAMESPACE, "g");
        // Iterates through all the subActivities
        while (itr.hasNext()) {
            activity = itr.next();
            // Gets the entry and exit coordinates of the iterated activity
            activityEntryCoords = activity.getEntryArrowCoords();
            activityExitCoords = activity.getExitArrowCoords();
            // Checks if the iterated activity is an instance of ElseIf or Else activity
            if (activity instanceof ElseIfImpl || activity instanceof ElseImpl) {
                // Checks whether there is a  previous activity and if so whether that activity is an ElseIf
                if (prevActivity != null && prevActivity instanceof ElseIfImpl) {
                    // Get the exit arrow coordinates of the ElseIf activity
                    exitCoords = ((ElseIfInterface) prevActivity).getNextElseExitArrowCoords();
                    // id is assigned with the id of the previous activity + id of the current activity
                    id = prevActivity.getId() + "-" + activity.getId();
                    // Checks whether the activity is an instance of Else
                    if (activity instanceof ElseImpl) {
                        // Gets the boolean value assigned inside ElseImpl when a throw activity is in Else
                        boolean check = ((ElseImpl) activity).throwOrNot;
                        // Define the entry arrow flow coordinates for the activity
                        subGroup.appendChild(getArrowDefinition(doc, exitCoords.getXLeft(), exitCoords.getYTop(), activityEntryCoords.getXLeft() - getEndIconWidth() / 2, exitCoords.getYTop(), id));
                        // If there is a Throw activity inside Else, no exit arrow from Throw activity
                        if (check != true) {
                            subGroup.appendChild(getArrowDefinition(doc, activityExitCoords.getXLeft(), activityExitCoords.getYTop(), myExitCoords.getXLeft(), myExitCoords.getYTop(), id));
                        }
                    } else if (activity instanceof ElseIfImpl) {
                        // Checks whether the activity is an instance of ElseIf
                        // Gets the boolean value assigned inside ElseIfImpl when a throw activity is in ElseIf
                        boolean check = ((ElseIfImpl) activity).throwOrNot;
                        // Define the entry arrow flow coordinates for the activity
                        subGroup.appendChild(getArrowDefinition(doc, exitCoords.getXLeft(), exitCoords.getYTop(), activityEntryCoords.getXLeft(), activityEntryCoords.getYTop(), id));
                        // If there is a Throw activity inside ElseIf, no exit arrow from Throw activity
                        if (check != true) {
                            subGroup.appendChild(getArrowDefinition(doc, activityExitCoords.getXLeft(), activityExitCoords.getYTop(), myExitCoords.getXLeft(), myExitCoords.getYTop(), id));
                        }
                    } else {
                        // Entry and exit arrow flows defined for other activities except for instances of Elseif and
                        // Else
                        subGroup.appendChild(getArrowDefinition(doc, exitCoords.getXLeft(), exitCoords.getYTop(), activityEntryCoords.getXLeft(), activityEntryCoords.getYTop(), id));
                        subGroup.appendChild(getArrowDefinition(doc, activityExitCoords.getXLeft(), activityExitCoords.getYTop(), myExitCoords.getXLeft(), myExitCoords.getYTop(), id));
                    }
                } else if (prevActivity instanceof ThrowImpl && activity instanceof ElseImpl) {
                    // IF conditon fifnished --> ELSE IF ( previous activity is null and its is not an instance of
                    // ElseIf)
                    /*Checks if the previous activity is a Throw and if the current activity an Else, if so no exit
                        arrow flows only entry arrow flows.
                        */
                    subGroup.appendChild(getArrowDefinition(doc, myStartElseCoords.getXLeft(), myStartElseCoords.getYTop(), activityEntryCoords.getXLeft(), activityEntryCoords.getYTop(), id));
                } else if (activity instanceof ElseIfImpl) {
                    // Checks whether the activity is an instance of ElseIf
                    // Gets the boolean value assigned inside ElseIfImpl when a throw activity is in ElseIf
                    boolean check = ((ElseIfImpl) activity).throwOrNot;
                    // Define the entry arrow flow coordinates for the activity
                    subGroup.appendChild(getArrowDefinition(doc, myStartElseCoords.getXLeft(), myStartElseCoords.getYTop(), activityEntryCoords.getXLeft(), activityEntryCoords.getYTop(), id));
                    // If there is a Throw activity inside ElseIf, no exit arrow from Throw activity
                    if (check != true) {
                        subGroup.appendChild(getArrowDefinition(doc, activityExitCoords.getXLeft(), activityExitCoords.getYTop(), myExitCoords.getXLeft(), myExitCoords.getYTop(), id));
                    }
                } else if (activity instanceof ElseImpl) {
                    // Checks whether the activity is an instance of Else
                    // Gets the boolean value assigned inside ElseIfImpl when a throw activity is in Else
                    boolean check = ((ElseImpl) activity).throwOrNot;
                    // Define the entry arrow flow coordinates for the activity
                    subGroup.appendChild(getArrowDefinition(doc, myStartElseCoords.getXLeft(), myStartElseCoords.getYTop(), activityEntryCoords.getXLeft(), activityEntryCoords.getYTop(), id));
                    // If there is a Throw activity inside Else, no exit arrow from Throw activity
                    if (check != true) {
                        subGroup.appendChild(getArrowDefinition(doc, activityExitCoords.getXLeft(), activityExitCoords.getYTop(), myExitCoords.getXLeft(), myExitCoords.getYTop(), id));
                    }
                } else {
                    id = prevActivity.getId() + "-" + activity.getId();
                    // flows
                    if (activity instanceof ThrowImpl) {
                        subGroup.appendChild(getArrowDefinition(doc, myStartElseCoords.getXLeft(), myStartElseCoords.getYTop(), activityEntryCoords.getXLeft(), activityEntryCoords.getYTop(), id));
                    } else {
                        // Define both the entry and the exit arrow flows to the activity
                        subGroup.appendChild(getArrowDefinition(doc, myStartElseCoords.getXLeft(), myStartElseCoords.getYTop(), activityEntryCoords.getXLeft(), activityEntryCoords.getYTop(), id));
                        subGroup.appendChild(getArrowDefinition(doc, activityExitCoords.getXLeft(), activityExitCoords.getYTop(), myExitCoords.getXLeft(), myExitCoords.getYTop(), id));
                    }
                }
            } else if (activity instanceof ThrowImpl) {
                // Checks if the current activity a Throw activity, if so no exit arrow flows only entry arrow flows
                subGroup.appendChild(getArrowDefinition(doc, myStartCoords.getXLeft(), myStartCoords.getYTop(), activityEntryCoords.getXLeft(), activityEntryCoords.getYTop(), id));
            } else if (activity instanceof SourceImpl || activity instanceof TargetImpl || activity instanceof SourcesImpl || activity instanceof TargetsImpl) {
            // Checks if the current activity a Source/s or Target/s activity, if so no exit or entry arrow flows
            // as no icons are defined
            // No arrow flows for Sources or Targets..
            } else {
                if (prevActivity != null) {
                    // Gets the coordinates of the exit arrows of the previous activity
                    exitCoords = prevActivity.getExitArrowCoords();
                    id = prevActivity.getId() + "-" + activity.getId();
                    // arrow flows as no icons are defined
                    if (prevActivity instanceof SourceImpl || prevActivity instanceof TargetImpl || prevActivity instanceof SourcesImpl || prevActivity instanceof TargetsImpl) {
                    // No arrow flows for Sources or Targets..
                    } else {
                        subGroup.appendChild(getArrowDefinition(doc, exitCoords.getXLeft(), exitCoords.getYTop(), activityEntryCoords.getXLeft(), activityEntryCoords.getYTop(), id));
                    }
                } else {
                    // Checks whether the activity is a Sequence
                    if (activity instanceof SequenceImpl) {
                        List<ActivityInterface> sub = activity.getSubActivities();
                        // Iterates through the subActivities
                        Iterator<ActivityInterface> as = sub.iterator();
                        while (as.hasNext()) {
                            seqActivity = as.next();
                            // Checks if the subActivity is a Throw activity
                            if (seqActivity instanceof ThrowImpl) {
                                throwOrNot = true;
                                // if condition breaks if the subActivity is a Throw activity
                                break;
                            } else {
                                throwOrNot = false;
                            }
                        }
                        // If its a Throw activity , no exit arrow flow only entry arrow flow to the activity
                        if (throwOrNot == true) {
                            subGroup.appendChild(getArrowDefinition(doc, myStartCoords.getXLeft(), myStartCoords.getYTop(), activityEntryCoords.getXLeft(), activityEntryCoords.getYTop(), id));
                        } else {
                            // If not, define both the entry and the exit arrow flows to the activity
                            subGroup.appendChild(getArrowDefinition(doc, myStartCoords.getXLeft(), myStartCoords.getYTop(), activityEntryCoords.getXLeft(), activityEntryCoords.getYTop(), id));
                            subGroup.appendChild(getArrowDefinition(doc, activityExitCoords.getXLeft(), activityExitCoords.getYTop(), myExitCoords.getXLeft(), myExitCoords.getYTop(), id));
                        }
                    } else {
                        // Define both the entry and the exit arrow flows to the activity
                        subGroup.appendChild(getArrowDefinition(doc, myStartCoords.getXLeft(), myStartCoords.getYTop(), activityEntryCoords.getXLeft(), activityEntryCoords.getYTop(), id));
                        subGroup.appendChild(getArrowDefinition(doc, activityExitCoords.getXLeft(), activityExitCoords.getYTop(), myExitCoords.getXLeft(), myExitCoords.getYTop(), id));
                    }
                }
            }
            // current activity is assigned to the previous activity
            prevActivity = activity;
        }
        return subGroup;
    }
    return null;
}
Also used : ActivityInterface(org.wso2.carbon.bpel.ui.bpel2svg.ActivityInterface) OMElement(org.apache.axiom.om.OMElement) Element(org.w3c.dom.Element) SVGCoordinates(org.wso2.carbon.bpel.ui.bpel2svg.SVGCoordinates)

Example 9 with Target

use of org.wso2.carbon.apimgt.common.analytics.publishers.dto.Target in project ballerina by ballerina-lang.

the class Types method isAssignableToUnionType.

private boolean isAssignableToUnionType(BType source, BType target) {
    Set<BType> sourceTypes = new HashSet<>();
    Set<BType> targetTypes = new HashSet<>();
    if (source.tag == TypeTags.UNION) {
        BUnionType sourceUnionType = (BUnionType) source;
        sourceTypes.addAll(sourceUnionType.memberTypes);
    } else {
        sourceTypes.add(source);
    }
    if (target.tag == TypeTags.UNION) {
        BUnionType targetUnionType = (BUnionType) target;
        targetTypes.addAll(targetUnionType.memberTypes);
    } else {
        targetTypes.add(target);
    }
    boolean notAssignable = sourceTypes.stream().map(s -> targetTypes.stream().anyMatch(t -> isAssignable(s, t))).anyMatch(assignable -> !assignable);
    return !notAssignable;
}
Also used : BUnionType(org.wso2.ballerinalang.compiler.semantics.model.types.BUnionType) BStructField(org.wso2.ballerinalang.compiler.semantics.model.types.BStructType.BStructField) BInvokableType(org.wso2.ballerinalang.compiler.semantics.model.types.BInvokableType) BTupleType(org.wso2.ballerinalang.compiler.semantics.model.types.BTupleType) BMapType(org.wso2.ballerinalang.compiler.semantics.model.types.BMapType) BLangTypeConversionExpr(org.wso2.ballerinalang.compiler.tree.expressions.BLangTypeConversionExpr) BAttachedFunction(org.wso2.ballerinalang.compiler.semantics.model.symbols.BStructSymbol.BAttachedFunction) BStreamType(org.wso2.ballerinalang.compiler.semantics.model.types.BStreamType) BBuiltInRefType(org.wso2.ballerinalang.compiler.semantics.model.types.BBuiltInRefType) Lists(org.wso2.ballerinalang.util.Lists) BConnectorType(org.wso2.ballerinalang.compiler.semantics.model.types.BConnectorType) ArrayList(java.util.ArrayList) BXMLType(org.wso2.ballerinalang.compiler.semantics.model.types.BXMLType) TypeTags(org.wso2.ballerinalang.compiler.util.TypeTags) HashSet(java.util.HashSet) Flags(org.wso2.ballerinalang.util.Flags) TreeBuilder(org.ballerinalang.model.TreeBuilder) BType(org.wso2.ballerinalang.compiler.semantics.model.types.BType) Names(org.wso2.ballerinalang.compiler.util.Names) BInvokableSymbol(org.wso2.ballerinalang.compiler.semantics.model.symbols.BInvokableSymbol) BErrorType(org.wso2.ballerinalang.compiler.semantics.model.types.BErrorType) BFutureType(org.wso2.ballerinalang.compiler.semantics.model.types.BFutureType) DiagnosticPos(org.wso2.ballerinalang.compiler.util.diagnotic.DiagnosticPos) BArrayType(org.wso2.ballerinalang.compiler.semantics.model.types.BArrayType) BEnumType(org.wso2.ballerinalang.compiler.semantics.model.types.BEnumType) BLangDiagnosticLog(org.wso2.ballerinalang.compiler.util.diagnotic.BLangDiagnosticLog) BStructType(org.wso2.ballerinalang.compiler.semantics.model.types.BStructType) BUnionType(org.wso2.ballerinalang.compiler.semantics.model.types.BUnionType) BLangExpression(org.wso2.ballerinalang.compiler.tree.expressions.BLangExpression) BConversionOperatorSymbol(org.wso2.ballerinalang.compiler.semantics.model.symbols.BConversionOperatorSymbol) BSymbol(org.wso2.ballerinalang.compiler.semantics.model.symbols.BSymbol) BJSONType(org.wso2.ballerinalang.compiler.semantics.model.types.BJSONType) Set(java.util.Set) BTypeVisitor(org.wso2.ballerinalang.compiler.semantics.model.types.BTypeVisitor) Symbols(org.wso2.ballerinalang.compiler.semantics.model.symbols.Symbols) Collectors(java.util.stream.Collectors) BLangNode(org.wso2.ballerinalang.compiler.tree.BLangNode) List(java.util.List) DiagnosticCode(org.ballerinalang.util.diagnostic.DiagnosticCode) InstructionCodes(org.wso2.ballerinalang.programfile.InstructionCodes) BAnyType(org.wso2.ballerinalang.compiler.semantics.model.types.BAnyType) BTableType(org.wso2.ballerinalang.compiler.semantics.model.types.BTableType) BStructSymbol(org.wso2.ballerinalang.compiler.semantics.model.symbols.BStructSymbol) Collections(java.util.Collections) SymbolTable(org.wso2.ballerinalang.compiler.semantics.model.SymbolTable) CompilerContext(org.wso2.ballerinalang.compiler.util.CompilerContext) BType(org.wso2.ballerinalang.compiler.semantics.model.types.BType) HashSet(java.util.HashSet)

Example 10 with Target

use of org.wso2.carbon.apimgt.common.analytics.publishers.dto.Target in project ballerina by ballerina-lang.

the class CodeGenerator method getWorkerDataChannelInfo.

private WorkerDataChannelInfo getWorkerDataChannelInfo(CallableUnitInfo callableUnit, String source, String target) {
    WorkerDataChannelInfo workerDataChannelInfo = callableUnit.getWorkerDataChannelInfo(WorkerDataChannelInfo.generateChannelName(source, target));
    if (workerDataChannelInfo == null) {
        UTF8CPEntry sourceCPEntry = new UTF8CPEntry(source);
        int sourceCPIndex = this.currentPkgInfo.addCPEntry(sourceCPEntry);
        UTF8CPEntry targetCPEntry = new UTF8CPEntry(target);
        int targetCPIndex = this.currentPkgInfo.addCPEntry(targetCPEntry);
        workerDataChannelInfo = new WorkerDataChannelInfo(sourceCPIndex, source, targetCPIndex, target);
        workerDataChannelInfo.setUniqueName(workerDataChannelInfo.getChannelName() + this.workerChannelCount);
        String uniqueName = workerDataChannelInfo.getUniqueName();
        UTF8CPEntry uniqueNameCPEntry = new UTF8CPEntry(uniqueName);
        int uniqueNameCPIndex = this.currentPkgInfo.addCPEntry(uniqueNameCPEntry);
        workerDataChannelInfo.setUniqueNameCPIndex(uniqueNameCPIndex);
        callableUnit.addWorkerDataChannelInfo(workerDataChannelInfo);
        this.workerChannelCount++;
    }
    return workerDataChannelInfo;
}
Also used : UTF8CPEntry(org.wso2.ballerinalang.programfile.cpentries.UTF8CPEntry) BLangXMLQuotedString(org.wso2.ballerinalang.compiler.tree.expressions.BLangXMLQuotedString) WorkerDataChannelInfo(org.wso2.ballerinalang.programfile.WorkerDataChannelInfo) BLangEndpoint(org.wso2.ballerinalang.compiler.tree.BLangEndpoint)

Aggregations

BLangAssignment (org.wso2.ballerinalang.compiler.tree.statements.BLangAssignment)11 DiagnosticPos (org.wso2.ballerinalang.compiler.util.diagnotic.DiagnosticPos)11 ArrayList (java.util.ArrayList)9 APIManagementException (org.wso2.carbon.apimgt.api.APIManagementException)8 File (java.io.File)7 IOException (java.io.IOException)7 Element (org.w3c.dom.Element)6 BLangBinaryExpr (org.wso2.ballerinalang.compiler.tree.expressions.BLangBinaryExpr)5 Target (org.wso2.carbon.apimgt.common.analytics.publishers.dto.Target)5 Gson (com.google.gson.Gson)4 List (java.util.List)4 Map (java.util.Map)4 OMElement (org.apache.axiom.om.OMElement)4 NodeList (org.w3c.dom.NodeList)4 BLangIndexBasedAccess (org.wso2.ballerinalang.compiler.tree.expressions.BLangIndexBasedAccess)4 JsonElement (com.google.gson.JsonElement)3 FileOutputStream (java.io.FileOutputStream)3 HashMap (java.util.HashMap)3 Iterator (java.util.Iterator)3 Set (java.util.Set)3