0N/A/*
157N/A * Copyright (c) 1998, 2007, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
157N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
157N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
157N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
157N/A * or visit www.oracle.com if you need additional information or have any
157N/A * questions.
0N/A */
0N/A
0N/A/*
0N/A * Licensed Materials - Property of IBM
0N/A * RMI-IIOP v1.0
0N/A * Copyright IBM Corp. 1998 1999 All Rights Reserved
0N/A *
0N/A */
0N/A
0N/Apackage sun.rmi.rmic.iiop;
0N/A
0N/Aimport java.util.Vector;
0N/Aimport sun.tools.java.CompilerError;
0N/Aimport sun.tools.java.ClassNotFound;
0N/Aimport sun.tools.java.ClassDefinition;
0N/A
0N/A/**
0N/A * NCInterfaceType represents any non-special, non-conforming interface.
0N/A * <p>
0N/A * The static forNCInterface(...) method must be used to obtain an instance.
0N/A * @author Bryan Atsatt
0N/A */
0N/Apublic class NCInterfaceType extends InterfaceType {
0N/A
0N/A //_____________________________________________________________________
0N/A // Public Interfaces
0N/A //_____________________________________________________________________
0N/A
0N/A /**
0N/A * Create an NCInterfaceType for the given class.
0N/A *
0N/A * If the class is not a properly formed or if some other error occurs, the
0N/A * return value will be null, and errors will have been reported to the
0N/A * supplied BatchEnvironment.
0N/A */
0N/A public static NCInterfaceType forNCInterface( ClassDefinition classDef,
0N/A ContextStack stack) {
0N/A if (stack.anyErrors()) return null;
0N/A
0N/A boolean doPop = false;
0N/A try {
0N/A // Do we already have it?
0N/A
0N/A sun.tools.java.Type theType = classDef.getType();
0N/A Type existing = getType(theType,stack);
0N/A
0N/A if (existing != null) {
0N/A
0N/A if (!(existing instanceof NCInterfaceType)) return null; // False hit.
0N/A
0N/A // Yep, so return it...
0N/A
0N/A return (NCInterfaceType) existing;
0N/A }
0N/A
0N/A NCInterfaceType it = new NCInterfaceType(stack, classDef);
0N/A putType(theType,it,stack);
0N/A stack.push(it);
0N/A doPop = true;
0N/A
0N/A if (it.initialize(stack)) {
0N/A stack.pop(true);
0N/A return it;
0N/A } else {
0N/A removeType(theType,stack);
0N/A stack.pop(false);
0N/A return null;
0N/A }
0N/A } catch (CompilerError e) {
0N/A if (doPop) stack.pop(false);
0N/A return null;
0N/A }
0N/A }
0N/A
0N/A /**
0N/A * Return a string describing this type.
0N/A */
0N/A public String getTypeDescription () {
0N/A return "Non-conforming interface";
0N/A }
0N/A
0N/A //_____________________________________________________________________
0N/A // Internal/Subclass Interfaces
0N/A //_____________________________________________________________________
0N/A
0N/A /**
0N/A * Create a NCInterfaceType instance for the given class. The resulting
0N/A * object is not yet completely initialized.
0N/A */
0N/A private NCInterfaceType(ContextStack stack, ClassDefinition classDef) {
0N/A super(stack,classDef,TYPE_NC_INTERFACE | TM_INTERFACE | TM_COMPOUND);
0N/A }
0N/A
0N/A //_____________________________________________________________________
0N/A // Internal Interfaces
0N/A //_____________________________________________________________________
0N/A
0N/A /**
0N/A * Initialize this instance.
0N/A */
0N/A private boolean initialize (ContextStack stack) {
0N/A
0N/A if (stack.getEnv().getParseNonConforming()) {
0N/A
0N/A Vector directInterfaces = new Vector();
0N/A Vector directMethods = new Vector();
0N/A Vector directMembers = new Vector();
0N/A
0N/A try {
0N/A
0N/A // need to include parent interfaces in IDL generation...
0N/A addNonRemoteInterfaces( directInterfaces,stack );
0N/A
0N/A // Get methods...
0N/A
0N/A if (addAllMethods(getClassDefinition(),directMethods,false,false,stack) != null) {
0N/A
0N/A // Get conforming constants...
0N/A
0N/A if (addConformingConstants(directMembers,false,stack)) {
0N/A
0N/A // We're ok, so pass 'em up...
0N/A
0N/A if (!initialize(directInterfaces,directMethods,directMembers,stack,false)) {
0N/A return false;
0N/A }
0N/A }
0N/A }
0N/A return true;
0N/A
0N/A } catch (ClassNotFound e) {
0N/A classNotFound(stack,e);
0N/A }
0N/A return false;
0N/A } else {
0N/A return initialize(null,null,null,stack,false);
0N/A }
0N/A }
0N/A}