📄 nccnameproxy.java
字号:
/* -*- tab-width: 4 -*- * * Electric(tm) VLSI Design System * * File: NccNameProxy.java * * Copyright (c) 2003 Sun Microsystems and Free Software * * Electric(tm) is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * Electric(tm) 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Electric(tm); see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, Mass 02111-1307, USA. */package com.sun.electric.tool.ncc.netlist;import java.io.Serializable;import java.util.Iterator;import com.sun.electric.database.hierarchy.Cell;import com.sun.electric.database.hierarchy.HierarchyEnumerator.NameProxy;import com.sun.electric.database.hierarchy.HierarchyEnumerator.NetNameProxy;import com.sun.electric.database.hierarchy.HierarchyEnumerator.NodableNameProxy;import com.sun.electric.database.network.Network;import com.sun.electric.database.variable.VarContext;import com.sun.electric.tool.generator.layout.LayoutLib;/** Stores the information necessary to generate an instance name for a Part * It is the same as HierarchyEnumerator.NameProxy except that it removes * a common path prefix from the name. */public abstract class NccNameProxy implements Serializable { private String commonPathPrefix; public static String removePrefix(String commonPathPrefix, String fullName) { if (commonPathPrefix.length()==0) return fullName; LayoutLib.error(!fullName.startsWith(commonPathPrefix), "common path prefix not found"); // +1 to skip separator int start = commonPathPrefix.length()+1; if (start>fullName.length()-1) { // nothing but the prefix return ""; } else { return fullName.substring(start); } } /** It was a mistake to use toString(). The use of toString() makes * code unmodifiable. Let me begin the process of purging all uses. */ public String toString() { LayoutLib.error(true, "Please tell Russell about this use of toString"); return null; } abstract NameProxy nameProxy(); NccNameProxy(String commonPathPrefix) { this.commonPathPrefix = commonPathPrefix; } public boolean nameIsInTopContext() { return nameProxy().getContext()==VarContext.globalContext; } public Cell leafCell() {return nameProxy().leafCell();} public String leafName() {return nameProxy().leafName();} public VarContext getContext() { return nameProxy().getContext(); } /** Name whose instance path starts from the Cell from which NCC was run */ public String getName() { return removePrefix(commonPathPrefix, nameProxy().toString()); } /** Cell instance path starting from the Cell from which NCC was run. */ public String cellInstPath() { return removePrefix(commonPathPrefix, nameProxy().getContext().getInstPath("/")); } public static class PartNameProxy extends NccNameProxy { static final long serialVersionUID = 0; private NodableNameProxy nameProxy; NameProxy nameProxy() {return nameProxy;} public PartNameProxy(NodableNameProxy nameProxy, String commonPathPrefix) { super(commonPathPrefix); this.nameProxy = nameProxy; } public NodableNameProxy getNodableNameProxy() {return nameProxy;} } public static class WireNameProxy extends NccNameProxy { static final long serialVersionUID = 0; NetNameProxy nameProxy; NameProxy nameProxy() {return nameProxy;} public WireNameProxy(NetNameProxy nameProxy, String commonPathPrefix) { super(commonPathPrefix); this.nameProxy = nameProxy; } public NetNameProxy getNetNameProxy() {return nameProxy;} public Iterator getNetNames() { return ((NetNameProxy)nameProxy).leafNames(); } public Network getNet() { return nameProxy.getNet(); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -