| /* |
| * Licensed to the Apache Software Foundation (ASF) under one or more |
| * contributor license agreements. See the NOTICE file distributed with |
| * this work for additional information regarding copyright ownership. |
| * The ASF 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.commons.scxml; |
| |
| import java.io.Serializable; |
| import java.util.ArrayList; |
| import java.util.Collection; |
| import java.util.HashSet; |
| import java.util.Set; |
| |
| import org.apache.commons.scxml.model.State; |
| import org.apache.commons.scxml.model.TransitionTarget; |
| |
| /** |
| * The encapsulation of the current state of a state machine. |
| * |
| */ |
| public class Status implements Serializable { |
| |
| /** |
| * Serial version UID. |
| */ |
| private static final long serialVersionUID = 1L; |
| |
| /** |
| * The states that are currently active. |
| */ |
| private Set<TransitionTarget> states; |
| |
| /** |
| * The events that are currently queued. |
| */ |
| private Collection<TriggerEvent> events; |
| |
| /** |
| * Have we reached a final configuration for this state machine. |
| * |
| * True - if all the states are final and there are not events |
| * pending from the last step. False - otherwise. |
| * |
| * @return Whether a final configuration has been reached. |
| */ |
| public boolean isFinal() { |
| boolean rslt = true; |
| for (TransitionTarget tt : states) { |
| State s = (State) tt; |
| if (!s.isFinal()) { |
| rslt = false; |
| break; |
| } |
| //the status is final only iff these are top-level states |
| if (s.getParent() != null) { |
| rslt = false; |
| break; |
| } |
| } |
| if (!events.isEmpty()) { |
| rslt = false; |
| } |
| return rslt; |
| } |
| |
| /** |
| * Constructor. |
| */ |
| public Status() { |
| states = new HashSet<TransitionTarget>(); |
| events = new ArrayList<TriggerEvent>(); |
| } |
| |
| /** |
| * Get the states configuration (leaf only). |
| * |
| * @return Returns the states configuration - simple (leaf) states only. |
| */ |
| public Set<TransitionTarget> getStates() { |
| return states; |
| } |
| |
| /** |
| * Get the events that are currently queued. |
| * |
| * @return The events that are currently queued. |
| */ |
| public Collection<TriggerEvent> getEvents() { |
| return events; |
| } |
| |
| /** |
| * Get the complete states configuration. |
| * |
| * @return complete states configuration including simple states and their |
| * complex ancestors up to the root. |
| */ |
| public Set<TransitionTarget> getAllStates() { |
| return SCXMLHelper.getAncestorClosure(states, null); |
| } |
| |
| } |
| |