/* * 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.TEmpty; import org.savara.bpel.model.TSequence; import org.savara.bpel.model.TSource; import org.savara.bpel.model.TSources; import org.savara.protocol.model.change.ModelChangeContext; import org.scribble.protocol.model.*; /** * This is the model change rule for the Fork custom activity. */ public class ForkModelChangeRule 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.Fork && 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.Fork elem= (org.savara.protocol.model.Fork)mobj; TActivity sourceActivity=null; if (context.getParent() instanceof TSequence) { sourceActivity = (TSequence)context.getParent(); if (((TSequence)sourceActivity).getActivity().size() > 0) { sourceActivity = (TActivity)((TSequence)sourceActivity).getActivity().get( ((TSequence)sourceActivity).getActivity().size()-1); } } if (sourceActivity != null) { if (sourceActivity.getSources() == null) { sourceActivity.setSources(new TSources()); } TSource source=new TSource(); source.setLinkName(elem.getLabel()); sourceActivity.getSources().getSource().add(source); } // Check if contained sequence only contains the sync if (elem.getParent() instanceof Block && ((Block)elem.getParent()).size() == 1) { ((TSequence)context.getParent()).getActivity().add(new TEmpty()); } return(true); } }