Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 800d8c8d012d69f56fd6adea46471ebc9e467793 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*******************************************************************************
 * Copyright (c) 2013 protos software gmbh (http://www.protos.de).
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * CONTRIBUTORS:
 * 		Henrik Rentz-Reichert (initial contribution)
 * 
 *******************************************************************************/

package org.eclipse.etrice.core.genmodel.etricegen.util;

import org.eclipse.etrice.core.genmodel.etricegen.ActiveTrigger;
import org.eclipse.etrice.core.genmodel.etricegen.ETriceGenFactory;
import org.eclipse.etrice.core.room.Trigger;
import org.eclipse.etrice.core.room.TriggeredTransition;
import org.eclipse.etrice.core.room.util.RoomHelpers;

/**
 * @author Henrik Rentz-Reichert
 *
 */
public class ETriceGenUtil {

	/**
	 * @param trig the trigger
	 * @param trigstr the encoded trigger string
	 * @return <code>true</code> if the encoded trigger string is matching the {@link Trigger}
	 * 
	 * @see {@link org.eclipse.etrice.core.genmodel.etricegen.ExpandedActorClass#isMatching(Trigger, String)}
	 */
	public static boolean isMatching(Trigger trig, String trigstr) {
		return ETriceGenFactory.eINSTANCE.createExpandedActorClass().isMatching(trig, trigstr);
	}
	
	/**
	 * @param at an {@link ActiveTrigger}
	 * @return <code>true</code> if the active trigger has defined a guard
	 */
	public static boolean hasGuard(ActiveTrigger at) {
		for (TriggeredTransition t : at.getTransitions()) {
			for (Trigger trig : t.getTriggers()) {
				if (isMatching(trig, at.getTrigger())
						&& RoomHelpers.hasGuard(trig))
					return true;
			}
		}
		return false;
	}
}

Back to the top