/* * JBoss, Home of Professional Open Source. * Copyright 2008, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY 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 along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.iiop.rmi; import java.rmi.Remote; import java.rmi.RemoteException; import java.lang.reflect.Method; import java.util.ArrayList; /** * Operation analysis. * * Routines here are conforming to the "Java(TM) Language to IDL Mapping * Specification", version 1.1 (01-06-07). * * @author <a href="mailto:osh@sparre.dk">Ole Husgaard</a> * @version $Revision: 81018 $ */ public class OperationAnalysis extends AbstractAnalysis { // Constants ----------------------------------------------------- // Attributes ---------------------------------------------------- // Static -------------------------------------------------------- private static final org.jboss.logging.Logger logger = org.jboss.logging.Logger.getLogger(OperationAnalysis.class); // Constructors -------------------------------------------------- OperationAnalysis(Method method) throws RMIIIOPViolationException { super(method.getName()); logger.debug("new OperationAnalysis: " + method.getName()); this.method = method; // Check if valid return type, IF it is a remote interface. Class retCls = method.getReturnType(); if (retCls.isInterface() && Remote.class.isAssignableFrom(retCls)) Util.isValidRMIIIOP(retCls); // Analyze exceptions Class[] ex = method.getExceptionTypes(); boolean gotRemoteException = false; ArrayList a = new ArrayList(); for (int i = 0; i < ex.length; ++i) { if (ex[i].isAssignableFrom(java.rmi.RemoteException.class)) gotRemoteException = true; if (Exception.class.isAssignableFrom(ex[i]) && !RuntimeException.class.isAssignableFrom(ex[i]) && !RemoteException.class.isAssignableFrom(ex[i]) ) a.add(ExceptionAnalysis.getExceptionAnalysis(ex[i])); // map this } if (!gotRemoteException && Remote.class.isAssignableFrom(method.getDeclaringClass())) throw new RMIIIOPViolationException( "All interface methods must throw java.rmi.RemoteException, " + "or a superclass of java.rmi.RemoteException, but method " + getJavaName() + " of interface " + method.getDeclaringClass().getName() + " does not.", "1.2.3"); mappedExceptions = new ExceptionAnalysis[a.size()]; mappedExceptions = (ExceptionAnalysis[])a.toArray(mappedExceptions); // Analyze parameters Class[] params = method.getParameterTypes(); parameters = new ParameterAnalysis[params.length]; for (int i = 0; i < params.length; ++i) { logger.debug("OperationAnalysis: " + method.getName() + " has parameter [" + params[i].getName() + "]"); parameters[i] = new ParameterAnalysis("param" + (i+1), params[i]); } } // Public -------------------------------------------------------- /** * Return my Java return type. */ public Class getReturnType() { return method.getReturnType(); } /** * Return my mapped Method. */ public Method getMethod() { return method; } /** * Return my mapped exceptions. */ public ExceptionAnalysis[] getMappedExceptions() { return (ExceptionAnalysis[])mappedExceptions.clone(); } /** * Return my parameters. */ public ParameterAnalysis[] getParameters() { return (ParameterAnalysis[])parameters.clone(); } // Protected ----------------------------------------------------- // Private ------------------------------------------------------- /** * The Method that this OperationAnalysis is mapping. */ private Method method; /** * The mapped exceptions of this operation. */ private ExceptionAnalysis[] mappedExceptions; /** * The parameters of this operation. */ private ParameterAnalysis[] parameters; }