/** * 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.cxf.tools.corba.common.idltypes; import java.io.PrintWriter; import java.util.Collection; import java.util.List; import java.util.ListIterator; import java.util.Stack; import java.util.Vector; public abstract class IdlScopeBase extends IdlDefnImplBase { private List<IdlDefn> defns; private Stack<IdlDefn> hold; private List<IdlDefn> park; protected IdlScopeBase(IdlScopeBase parent, String name) { super(parent, name); defns = new Vector<IdlDefn>(); hold = new Stack<IdlDefn>(); park = new Vector<IdlDefn>(); } public IdlDefn addToScope(IdlDefn def) { String nm = def.localName(); IdlDefn result = lookup(nm); if (result == null) { defns.add(def); result = def; } return result; } public IdlDefn holdForScope(IdlDefn def) { hold.push(def); return def; } public IdlDefn promoteHeldToScope() { IdlDefn result = hold.pop(); defns.add(result); return result; } public IdlDefn parkHeld() { IdlDefn result = hold.pop(); park.add(result); return result; } public IdlDefn lookup(String nm) { return lookup(nm, false); } public IdlDefn lookup(String nm, boolean undefined) { IdlDefn result = null; for (IdlDefn nextDef : park) { if (nextDef.localName().equals(nm)) { result = nextDef; break; } } if (result == null) { for (IdlDefn nextDef : hold) { if (nextDef.localName().equals(nm)) { result = nextDef; break; } } } if (undefined) { return result; } for (IdlDefn nextDef : defns) { if (nextDef.localName().equals(nm)) { result = nextDef; break; } } return result; } public IdlDefn lookup(IdlScopedName name) { return lookup(name, false); } public IdlDefn lookup(IdlScopedName name, boolean undefined) { IdlScopeBase scope = this; String parents[] = name.parentNames(); if (parents != null) { IdlDefn defn = lookup(parents, undefined); if (!(defn instanceof IdlScopeBase)) { //|| defn == null) { return null; } scope = (IdlScopeBase)defn; } return scope.lookup(name.localName(), undefined); } public IdlDefn lookup(String scopedName[]) { return lookup(scopedName, false); } public IdlDefn lookup(String scopedName[], boolean undefined) { IdlScopeBase scope = this; for (;;) { IdlScopeBase parent = scope.definedIn(); if (parent == null) { break; } scope = parent; } IdlDefn result = null; for (int i = 0; i < scopedName.length; ++i) { boolean inParentScope = scopedName.length > 1 && i < scopedName.length - 1; result = scope.lookup(scopedName[i], undefined && !inParentScope); if (result == null) { return null; } if (i != (scopedName.length - 1)) { if (result instanceof IdlScopeBase) { scope = (IdlScopeBase)result; } else { return null; } } } return result; } public IdlScopeBase getCircularScope(IdlScopeBase startScope, List<Object> doneDefn) { if (doneDefn.contains(this)) { return (this == startScope) ? this : null; } doneDefn.add(this); for (IdlDefn defn : definitions()) { IdlScopeBase circularScope = defn.getCircularScope(startScope, doneDefn); if (circularScope != null) { return circularScope; } } doneDefn.remove(this); return null; } public void write(PrintWriter pw) { for (IdlDefn defn : defns) { defn.write(pw); } } public void writeFwd(PrintWriter pw) { ListIterator<IdlDefn> it = defns.listIterator(defns.size()); while (it.hasPrevious()) { IdlDefn defn = it.previous(); defn.writeFwd(pw); } } public void flush() { promoteParkedToScope(); for (IdlDefn defn : definitions()) { defn.flush(); } } protected Collection<IdlDefn> definitions() { return defns; } private void promoteParkedToScope() { for (IdlDefn nextDef : park) { defns.add(nextDef); } park.clear(); } }