2 * Copyright 2008 the original author or authors.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.wamblee.system.graph.component;
18 import org.wamblee.system.core.SystemAssemblyException;
19 import org.wamblee.system.graph.Edge;
20 import org.wamblee.system.graph.Graph;
21 import org.wamblee.system.graph.Node;
22 import org.wamblee.system.graph.Visitor;
24 import java.util.List;
28 * Visitor that checks whether required and provided interfaces are matched
31 * <li>Each required interface is connected to at most one
32 * provided interface</li>
33 * <li>Required interfaces that are not optional must be connected
34 * to precisely one provided interface</li>
37 * @author Erik Brakkee
39 public class CheckRequiredProvidedMultiplicityVisitor implements Visitor {
46 * Creates a new CheckRequiredProvidedMultiplicityVisitor object.
48 * @param aGraph DOCUMENT ME!
50 public CheckRequiredProvidedMultiplicityVisitor(Graph aGraph) {
57 * @param aEdge DOCUMENT ME!
60 public void visitEdge(Edge aEdge) {
67 * @param aNode DOCUMENT ME!
70 public void visitNode(Node aNode) {
71 if (aNode instanceof RequiredInterfaceNode) {
72 RequiredInterfaceNode required = (RequiredInterfaceNode) aNode;
73 List<Edge> edges = graph.findOutgoing(aNode);
75 if (edges.size() > 1) {
76 createDuplicateException("Multiple providers of required interface found",
80 if ((edges.size() == 0) && !required.getRequired().isOptional()) {
81 throw new SystemAssemblyException(aNode
82 + ": mandatpory required interface not provided by other components started earlier");
84 } else if (aNode instanceof ExternalProvidedInterfaceNode) {
85 List<Edge> edges = graph.findOutgoing(aNode);
87 if (edges.size() > 1) {
88 createDuplicateException("multiple internal matches for externally provided interface",
92 if (edges.size() == 0) {
93 throw new SystemAssemblyException(aNode
94 + ": external provided interface is not provided internally");
102 * @param aMsg DOCUMENT ME!
103 * @param aNode DOCUMENT ME!
104 * @param edges DOCUMENT ME!
106 private void createDuplicateException(String aMsg, Node aNode,
108 StringBuffer buf = new StringBuffer();
109 buf.append(aNode + ": " + aMsg + ": ");
111 for (Edge edge : edges) {
112 buf.append(edge.getTo() + "/ ");
115 throw new SystemAssemblyException(buf.toString());