package ca.ubc.cs.spl.aspectPatterns.patternLibrary; /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- * * This file is part of the design patterns project at UBC * * The contents of this file are subject to the Mozilla Public License * Version 1.1 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * either https://www.mozilla.org/MPL/ or https://aspectj.org/MPL/. * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is ca.ubc.cs.spl.aspectPatterns. * * For more details and the latest version of this code, please see: * https://www.cs.ubc.ca/labs/spl/projects/aodps.html * * Contributor(s): */ import java.util.Enumeration; import java.util.WeakHashMap; import java.util.Vector; /** * Defines the abstract Composite design pattern.
* * It maintains the mapping between composites and their children, defines the * Component, Composite, and Leaf roles, and implements facilities to * implements methods that work on the whole aggregate structure. * *
This is the AspectJ version.
* * Each concrete subaspect does the following things:
recurseOperation(Component, Visitor)
* method. This construct is needed to allow for method forwarding:
* A composite that receives a method forwards the request to all its
* children.
*/
protected interface Visitor {
/**
* Generic method that performs an unspecified operation on compoennts
*
* @param c the component to perform the operation on
*/
public void doOperation(Component c);
}
/**
* Implements the method-forwarding logic: If a method is to be applied
* to the aggregate structure, each composite forwards it to its children
*
* @param c the current component
* @param v the visitor representing the operation to be performed
*/
public void recurseOperation(Component c, Visitor v) { // This implements the logic that Composites forward
for (Enumeration enum = getAllChildren(c); enum.hasMoreElements(); ) { // method calls to their children
Component child = (Component) enum.nextElement();
v.doOperation(child);
}
}
/**
* Defines an interface for visitors that operate on the composite
* structure. These visitors are implemented by comcrete sub-aspects
* and used in the recurseOperation(Component, Visitor)<>/code>
* method. This construct is needed to allow for method forwarding:
* A composite that receives a method forwards the request to all its
* children.
*
* This version allows for a return value of Object type. For some odd
* reason AJDT complains if this type is declared protected (as it should
* be). Note that Visitor above works fine as protected.
*/
public interface FunctionVisitor {
/**
* Generic method that performs an unspecified operation on components
*
* @param c the component to perform the operation on
*/
public Object doFunction(Component c);
}
/**
* Implements the method-forwarding logic: If a method is to be applied
* to the aggregate structure, each composite forwards it to its children.
* This version allows for a return value of Object type, effectively
* enableing collecting aggregate results on the composite structure.
*
* @param c the current component
* @param fv the visitor representing the operation to be performed
*/
public Enumeration recurseFunction(Component c, FunctionVisitor fv) {
Vector results = new Vector();
for (Enumeration enum = getAllChildren(c); enum.hasMoreElements(); ) { // method calls to their children
Component child = (Component) enum.nextElement();
results.add(fv.doFunction(child));
}
return results.elements();
}
}