/* * JBoss, Home of Professional Open Source * Copyright 2008-12, Red Hat Middleware LLC, and others contributors as indicated * by the @authors tag. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * This copyrighted material is made available to anyone wishing to use, * modify, copy, or redistribute it subject to the terms and conditions * of the GNU Lesser General Public License, v. 2.1. * This program is distributed in the hope that it will be useful, but WITHOUT A * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. * You should have received a copy of the GNU Lesser General Public License, * v.2.1 along with this distribution; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. */ package org.savara.bpel.internal.model.change; import org.savara.bpel.model.TActivity; import org.savara.bpel.model.TCondition; import org.savara.bpel.model.TSequence; import org.savara.bpel.model.TTarget; import org.savara.bpel.model.TTargets; import org.savara.protocol.model.change.ModelChangeContext; import org.scribble.protocol.model.*; /** * This is the model change rule for the Join custom activity. */ public class JoinModelChangeRule extends AbstractBPELModelChangeRule { /** * This method determines whether the rule is appropriate * for the supplied type of model, parent (in the context) and * model object. * * @param context The context * @param model The model * @param mobj The model object causing the change * @param ref The optional reference model object * @return Whether the rule supports the supplied information */ @Override public boolean isInsertSupported(ModelChangeContext context, ProtocolModel model, ModelObject mobj, ModelObject ref) { boolean ret=false; if (mobj instanceof org.savara.protocol.model.Join && isBPELModel(model)) { ret = true; } return(ret); } /** * This method adds a new model object, within a * parent model object, with the details supplied in * another model object. The supplied model object * will usually be from a different model representation * (e.g. due to a merge), so the details will be * copied and placed in the representation associated * with the supplied model and parent model object.<p> * <p> * If a reference model object is supplied, then the * insertion will occur relative to it. If the reference * object is a block, then it means that the insertion * should occur at the end of the block. Otherwise the * new model object should be inserted before the * reference object, within the containing block.<p> * <p> * If the reference object is not supplied, then the * new model object should be inserted at the end of * the behaviour associated with the parent in the model * change context. * * @param context The context * @param model The model being changed * @param mobj The model object details to be inserted * @param ref The optional reference model object * @return Whether the change has been applied */ @Override public boolean insert(ModelChangeContext context, ProtocolModel model, ModelObject mobj, ModelObject ref) { org.savara.protocol.model.Join elem= (org.savara.protocol.model.Join)mobj; TActivity targetActivity=null; if (context.getParent() instanceof TSequence) { targetActivity = (TSequence)context.getParent(); if (((TSequence)targetActivity).getActivity().size() > 0) { targetActivity = (TActivity)((TSequence)targetActivity).getActivity().get( ((TSequence)targetActivity).getActivity().size()-1); } } if (targetActivity != null) { if (targetActivity.getTargets() == null) { targetActivity.setTargets(new TTargets()); } String joinCondition=null; for (String linkName : elem.getLabels()) { TTarget target=new TTarget(); target.setLinkName(linkName); targetActivity.getTargets().getTarget().add(target); if (joinCondition == null) { joinCondition = "$"+linkName; } else { joinCondition += " and $"+linkName; } } if (!elem.getXOR()) { TCondition cond=new TCondition(); cond.getContent().add(joinCondition); targetActivity.getTargets().setJoinCondition(cond); } } return(true); } }