CDIn.mesa
Copyright © 1983, 1986 by Xerox Corporation. All rights reserved.
Last Edited by: Kimr, November 28, 1983 10:22 am
Last Edited by: Jacobi, February 8, 1984 9:41 am
Last Edited by: Jacobi, March 29, 1986 5:53:02 pm PST
gbb April 4, 1986 3:21:48 pm PST
DIRECTORY
Atom,
BasicTime,
Commander,
CD,
CDCells,
CDBasics,
CDDirectory,
CDEvents,
CDInstances,
CDIO,
CDOps USING [CreateDesign],
CDOrient,
CDPrivate,
CDProperties,
CDRects,
CDValue,
CommandTool,
Convert,
FileNames,
FS,
IO,
List,
PropertyLists,
ProcessProps,
Rope,
RuntimeError USING [UNCAUGHT],
TerminalIO,
TokenIO,
CDOldInterestRects,
UserProfile;
CDIn: CEDAR MONITOR
IMPORTS Atom, BasicTime, Commander, Convert, CD, CDBasics, CDCells, CDDirectory, CDEvents, CDInstances, CDIO, CDOps, CDOrient, CDPrivate, CDProperties, CDRects, CDValue, CommandTool, FileNames, FS, IO, List, PropertyLists, ProcessProps, Rope, RuntimeError, TerminalIO, TokenIO, UserProfile, CDOldInterestRects
EXPORTS CDIO
SHARES CD, CDDirectory, CDOldInterestRects =
BEGIN
--RELEASE: search for the string "RELEASE"
xChipndaleFile: INT = 12121983;
xVersion: INT = 13;
-- global vars
versionKey: PUBLIC INT;
designInReadOperation: PUBLIC CD.Design ← NIL;
designVersionKey: Rope.ROPENIL;
binfile: IO.STREAM;
IndexTable: TYPE = RECORD[table: SEQUENCE max: CARDINAL OF CD.Object];
TableTable: TYPE = RECORD[tt: SEQUENCE max: CARDINAL OF REF IndexTable];
fileName: Rope.ROPE;
indexTable: REF IndexTable ← NIL;
tableTable: REF TableTable ← NIL;
maxTableSize: INT = 32000;
GetTableEntry: PROC[i: INT] RETURNS [CD.Object] = INLINE
BEGIN
IF i<maxTableSize THEN RETURN[indexTable.table[i]]
ELSE RETURN [tableTable.tt[i/maxTableSize-1].table[i MOD maxTableSize]]
END;
SetTableEntry: PROC[i: INT, ob: CD.Object] = INLINE
BEGIN
IF i<maxTableSize THEN indexTable.table[i] ← ob
ELSE tableTable.tt[i/maxTableSize-1].table[i MOD maxTableSize] ← ob
END;
AllocateTables: PROC[i: INT] =
BEGIN
indexTable ← NEW[IndexTable[MIN[i, maxTableSize]]];
IF i>=maxTableSize THEN {
tableTable ← NEW[TableTable[i/maxTableSize]];
FOR n: INT IN [0..i/maxTableSize) DO -- don't be picky with size if it is anyway as big
tableTable.tt[n] ← NEW[IndexTable[maxTableSize]]
ENDLOOP
};
END;
signalOnPropertyProblem: BOOLTRUE; --set variable with debugger
ReadProperties: PUBLIC PROC [] RETURNS [props: CD.PropList←NIL] =
BEGIN
PropertyProblem: PROC [skip: BOOLFALSE] = {
TerminalIO.WriteRope["**** property not readable"];
IF key#NIL THEN {
TerminalIO.WriteRopes["; probably ", Atom.GetPName[key]];
};
TerminalIO.WriteLn[];
IF signalOnPropertyProblem THEN SIGNAL TokenIO.EncodingError;
IF skip THEN SkipThrough;
};
key: ATOM;
propProcs: CDProperties.PropertyProcs;
token: TokenIO.Token;
DO
token ← TokenIO.ReadToken[];
SELECT token.ref FROM
$Property => { --with a write proc
key ← TokenIO.ReadPushFlag[];
propProcs ← CDProperties.FetchProcs[key];
IF propProcs#NIL AND propProcs.internalRead#NIL THEN {
props ← PropertyLists.PutProp[propList: props, prop: key, val: propProcs.internalRead[key]];
}
ELSE IF versionKey>=12 THEN {
n: Rope.ROPE ← Atom.GetPName[key];
TerminalIO.WriteRopes["**** property ", n, " not registered\n"];
LoadEntry[n, designInReadOperation.technology];
propProcs ← CDProperties.FetchProcs[key];
IF propProcs#NIL AND propProcs.internalRead#NIL THEN {
props ← PropertyLists.PutProp[propList: props, prop: key, val: propProcs.internalRead[key]];
}
ELSE {
TerminalIO.WriteRope["failed"];
IF signalOnPropertyProblem THEN SIGNAL TokenIO.EncodingError;
};
}
ELSE {
token ← TokenIO.ReadToken[];
IF token.kind=rope OR token.kind=atom OR token.kind=int THEN
props ← PropertyLists.PutProp[propList: props, prop: key, val: token.ref]
ELSE IF token.kind=popFlag THEN {
TokenIO.ReadAgain[];
props ← PropertyLists.PutProp[propList: props, prop: key, val: key]
}
ELSE IF token.kind=pushFlag THEN {
IF token.ref=NIL OR token.ref=$properties THEN {
propertieProps: CD.PropList ← ReadProperties[];
props ← PropertyLists.PutProp[propList: props, prop: key, val: propertieProps];
}
ELSE IF token.ref=$layer THEN {
lev: CD.Layer ← ReadLayer[];
props ← PropertyLists.PutProp[propList: props, prop: key, val: CDPrivate.layers[lev]]
}
ELSE PropertyProblem[skip: FALSE];
token ← TokenIO.ReadToken[];
IF token.kind#popFlag THEN PropertyProblem[skip: TRUE]
}
ELSE PropertyProblem[]
};
token ← TokenIO.ReadToken[];
IF token.kind#popFlag THEN PropertyProblem[skip: TRUE];
};
$DefaultProperty => {
token ← TokenIO.ReadToken[];
key ← NARROW[token.ref];
propProcs ← CDProperties.FetchProcs[key];
IF propProcs#NIL AND propProcs.internalRead#NIL THEN {
TerminalIO.WriteRope["**** property registered and not readable"];
PropertyProblem[];
};
IF token.kind=rope OR token.kind=atom OR token.kind=int THEN {
token ← TokenIO.ReadToken[];
IF token.kind=rope OR token.kind=atom OR token.kind=int THEN
props ← PropertyLists.PutProp[propList: props, prop: key, val: token.ref]
ELSE PropertyProblem[];
}
ELSE IF token.kind=pushFlag THEN {
kind: ATOM ← TokenIO.ReadAtom[];
IF kind=$properties THEN {
propertieProps: CD.PropList ← ReadProperties[];
props ← PropertyLists.PutProp[propList: props, prop: key, val: propertieProps];
}
ELSE IF kind=$layer THEN {
lev: CD.Layer ← ReadLayer[];
props ← PropertyLists.PutProp[propList: props, prop: key, val: CDPrivate.layers[lev]]
}
ELSE IF kind=$ropeList THEN {
rList: LIST OF Rope.ROPENIL;
token ← TokenIO.ReadToken[];
WHILE token.kind=rope DO
rList ← CONS[NARROW[token.ref, Rope.ROPE], rList];
token ← TokenIO.ReadToken[];
ENDLOOP;
TokenIO.ReadAgain[];
props ← PropertyLists.PutProp[propList: props, prop: key, val: rList]
}
ELSE PropertyProblem[skip: FALSE];
token ← TokenIO.ReadToken[];
IF token.kind#popFlag THEN PropertyProblem[skip: TRUE]
}
ELSE PropertyProblem[]
};
ENDCASE => {
TokenIO.ReadAgain[];
RETURN [props];
};
ENDLOOP;
END;
SkipThrough: PROC [] =
BEGIN
token: TokenIO.Token;
layer: INT ← 0;
DO
token ← TokenIO.ReadToken[];
IF token.kind=pushFlag THEN layer ← layer+1
ELSE IF token.kind=popFlag THEN layer ← layer-1;
IF layer<0 THEN EXIT;
ENDLOOP;
END;
SetName: PROC[me: CD.Object, r: Rope.ROPE] ~ INLINE {
IF me.class.inDirectory THEN CDDirectory.ObToDirectoryProcs[me].setName[me, r]
};
ReadObjectDefinition: PROC [] RETURNS [obj: CD.Object←NIL] =
BEGIN
token: TokenIO.Token;
atom: ATOM = TokenIO.ReadPushFlag[];
class: CD.ObjectClass ← CD.FetchObjectClass[atom, designInReadOperation.technology];
IF class=NIL OR class.internalRead=NIL THEN {
n: Rope.ROPE ← Atom.GetPName[atom];
TerminalIO.WriteRopes["object class ", n, " not registered\n"];
LoadEntry[n, designInReadOperation.technology];
class ← CD.FetchObjectClass[atom, designInReadOperation.technology];
};
IF class=NIL OR class.internalRead=NIL THEN {
TerminalIO.WriteRopes["reading object class", Atom.GetPName[atom], " failed\n"];
SkipThrough[];
obj ← CDRects.CreateBareRect[[10, 10], CD.errorLayer];
RETURN
};
obj ← class.internalRead[];
IF obj=NIL OR obj.class=NIL THEN
obj ← NEW[CD.ObjectRep ← CDRects.CreateRect[[10, 10], CD.errorLayer]^];
IF versionKey>0 THEN {
IF class.inDirectory THEN {
name: Rope.ROPE ← TokenIO.ReadRope[];
SetName[obj, name];
IF versionKey<=4 THEN [] ← TokenIO.ReadRope[]; --ignore an old versionkey feature
};
};
token ← TokenIO.ReadToken[];
IF token.kind#popFlag THEN {
TokenIO.ReadAgain[];
obj.properties ← ReadProperties[];
TokenIO.ReadPopFlag[];
IF versionKey<8 THEN CDOldInterestRects.AdjustInterest[obj];
--border was'nt a very public feature in 12; might be removed
IF versionKey=12 THEN {
IF CDCells.IsCell[obj] AND CDProperties.GetObjectProp[obj, $border]#NIL THEN {
CDProperties.PutProp[obj, $border, NIL];
CDCells.SetBorder[obj, TRUE];
}
}
};
END;
ReadObject: PUBLIC PROC [] RETURNS [CD.Object] =
BEGIN
t: TokenIO.Token = TokenIO.ReadToken[];
IF t.kind=int THEN { -- instance
ins: INTNARROW[t.ref, REF INT]^;
RETURN [GetTableEntry[ins]]
};
TokenIO.ReadAgain;
RETURN [ReadObjectDefinition[]]
END;
setManually: INT ← 0; --used for saving old designs
specialForVersion4: BOOLFALSE;
ReadInstance: PUBLIC PROC [] RETURNS [CD.Instance] =
BEGIN
inst: CD.Instance;
location: CD.Position ← ReadPos[];
orientation: CD.Orientation ← CDIO.ReadOrientation[];
properties: CD.PropList ← ReadProperties[];
ob: CD.Object ← ReadObject[];
IF versionKey>=9 THEN --this is the current truth and normal case
inst ← NEW[CD.InstanceRep ← [
location: location,
orientation: orientation,
properties: properties,
ob: ob
]]
ELSE {
OldNewInstIX: PROC [ob: CD.Object←NIL, location: CD.Position←[0,0], orientation: CD.Orientation𡤀, selected: BOOLEANFALSE, properties: CD.PropList←NIL] RETURNS [CD.Instance] =
BEGIN
off: CD.Position = CDBasics.BaseOfRect[
CDOrient.MapRect[
itemInCell: CDOldInterestRects.InsideRect[ob],
cellSize: ob.size,
cellInstOrient: orientation,
cellInstPos: [0, 0]
]];
a: CD.Instance = NEW[CD.InstanceRep ← CD.InstanceRep[
ob: ob,
location: CDBasics.SubPoints[location, off],
orientation: orientation,
selected: selected,
properties: properties
]];
RETURN [a]
END;
IF versionKey>=8 THEN
inst ← NEW[CD.InstanceRep ← [
location: location,
orientation: orientation,
properties: properties,
ob: ob
]]
ELSE IF versionKey>=5 THEN
inst ← OldNewInstIX[ob: ob, location: location, orientation: orientation, properties: properties]
ELSE { --ancient cases
absoluteMode: BOOLTRUE;
IF versionKey<3 THEN absoluteMode←TRUE
ELSE IF versionKey=4 THEN {
IF specialForVersion4 THEN
IF ob.class.inDirectory THEN absoluteMode←TRUE ELSE absoluteMode←FALSE
ELSE absoluteMode←FALSE
}
ELSE IF versionKey=3 THEN {
IF ob.class.inDirectory THEN absoluteMode←TRUE ELSE absoluteMode←FALSE
};
IF setManually=1 THEN absoluteMode←TRUE
ELSE IF setManually=2 THEN absoluteMode←FALSE
ELSE IF setManually=3 THEN absoluteMode←ob.class.inDirectory;
IF absoluteMode THEN inst ← NEW[CD.InstanceRep ← [
location: location, orientation: orientation, properties: properties, ob: ob, selected: FALSE]]
ELSE inst ← OldNewInstIX[ob: ob, location: location,
orientation: orientation, properties: properties];
};
};
RETURN [inst];
END;
ReadInstanceList: PUBLIC PROC [] RETURNS [list: CD.InstanceList←NIL] =
BEGIN
num: INT = TokenIO.ReadInt[];
THROUGH [0..num) DO
list ← CONS[ReadInstance[], list];
ENDLOOP
END;
ReadPos: PUBLIC PROC [] RETURNS [p: CD.Position] =
BEGIN
p.x ← TokenIO.ReadInt[];
p.y ← TokenIO.ReadInt[];
END;
ReadRect: PUBLIC PROC [] RETURNS [r: CD.Rect] =
BEGIN
r.x1 ← TokenIO.ReadInt[];
r.y1 ← TokenIO.ReadInt[];
r.x2 ← TokenIO.ReadInt[];
r.y2 ← TokenIO.ReadInt[];
END;
ReadPushRec: PROC [] RETURNS [pr: CD.PushRec] =
BEGIN
token: TokenIO.Token ← TokenIO.ReadToken[];
dummy: CD.Object;
IF token.ref=$Nil THEN pr.mightReplace←NIL
ELSE {
TokenIO.ReadAgain[];
pr.mightReplace ← ReadInstance[];
};
dummy ← ReadObjectDefinition[];
pr.changed ← pr.indirectlyChanged ← TRUE;
pr.specific ← NARROW[dummy.specificRef, CD.CellPtr];
IF versionKey>=11 THEN {
pr.specific.dIr ← ReadRect[];
IF pr.specific.useDIr THEN pr.specific.ir ← pr.specific.dIr;
};
pr.dummyCell ← CDInstances.NewInst[ob: dummy];
END;
ReadLayer: PUBLIC PROC [] RETURNS [CD.Layer] =
BEGIN
key: ATOM ← TokenIO.ReadAtom[];
The layer keys have changed from ChipNDale 2.2 to ChipNDale 2.3. The following is a nasty hack to fix it. Note that this is only a translation of the leyer keys. It does not contemplate the conversion from whatever to the new comment layer
IF CDIO.VersionKey[]<=12 THEN-- New layer keys for CD 2.3
SELECT key FROM
$combined => key ← $undefLayer;
$highLightShade => key ← $shadeLayer;
$highLightError => key ← $errorLayer;
$backGround => key ← $backGround;
ENDCASE => NULL;
RETURN [CD.FetchLayer[designInReadOperation.technology, key]];
END;
IsOwner: PROC [ob: CD.Object, d: CD.Design] RETURNS [BOOL] = {
x: REF ~ (IF d=NIL THEN NIL ELSE d.reserved);
RETURN [ CDProperties.GetObjectProp[ob, $OwnerDesign]=x ];
};
ReadDesignData: PROC [] =
BEGIN
index, directoryCount: INT;
token: TokenIO.Token;
obj: CD.Object;
directoryCount ← TokenIO.ReadInt[];
AllocateTables[directoryCount+1];
FOR n: INT IN [1..directoryCount] DO
index ← TokenIO.ReadInt[];
obj ← ReadObject[];
SetTableEntry[index, obj];
IF versionKey=0 THEN {
token ← TokenIO.ReadToken[];
WHILE token.kind=rope DO
name: Rope.ROPE = NARROW[token.ref];
obx: INT = TokenIO.ReadInt[];
[] ← CDDirectory.Include[designInReadOperation, GetTableEntry[obx], name];
token ← TokenIO.ReadToken[];
ENDLOOP;
TokenIO.ReadAgain[];
}
ELSE IF obj.class.inDirectory THEN {
--hack to simplify some read procedures...
IF ~IsOwner[obj, designInReadOperation] THEN {
name: Rope.ROPE = CDDirectory.Name[obj];
[] ← CDDirectory.Include[designInReadOperation, obj, name];
}
}
ENDLOOP;
designInReadOperation.properties ← NEW[CD.PropList←ReadProperties[]];
--this overwrites an previous $FileVersion property read in the normal (wrong) way
CDProperties.PutDesignProp[designInReadOperation, $FileVersion, designVersionKey];
designInReadOperation.actual ← NIL;
DO
token ← TokenIO.ReadToken[];
IF token.ref#$Push THEN {
TokenIO.ReadAgain[];
EXIT;
};
designInReadOperation.actual ← CONS[ReadPushRec[], designInReadOperation.actual];
ENDLOOP;
token ← TokenIO.ReadToken[];
IF token.ref#$EndOfDesign THEN SIGNAL TokenIO.EncodingError;
END;
ReadDesign: PUBLIC ENTRY PROC [from: REFNIL, check: PROC [CD.Design] RETURNS [BOOL] ← NIL, wDir: Rope.ROPENIL] RETURNS [CD.Design] =
--from is either a IO.STREAM, a Rope.ROPE, or NIL
--check: (called if non NIL), is called after technology and design-name is initialized
--  read proceeds only if check returns TRUE
--returns NIL if design not read in successfully
--viewer is not opened
BEGIN
ENABLE UNWIND => {
indexTable ← NIL;
tableTable ← NIL;
designInReadOperation ← NIL;
};
design: CD.Design; -- is initialized before return only
-- all internal routines use designInReadOperation in place of design
DoReadDesign: INTERNAL PROC [check: PROC [CD.Design] RETURNS [BOOL]] =
-- result design returned in designInReadOperation
-- handles all the TokenIO business
BEGIN
ENABLE {
UNWIND => designInReadOperation ← NIL;
TokenIO.EncodingError => {
TerminalIO.WriteRope["** TokenIO encoding problem\n"];
REJECT;
};
RuntimeError.UNCAUGHT => {
TerminalIO.WriteRope["** problem while reading; abort or proceed\n"];
REJECT
};
};
DoWhileAttached: INTERNAL PROC [] =
--and always Release
BEGIN
ENABLE UNWIND => {
designInReadOperation ← NIL;
TokenIO.ReleaseReader[];
};
TechnologyCheck: INTERNAL PROC [] =
--Side-effect: if bad, designInReadOperation is set to NIL
BEGIN
ENABLE UNWIND => {designInReadOperation ← NIL};
dont: BOOL ← CDEvents.ProcessEvent[
ev: readEvent,
design: designInReadOperation,
x: NIL,
listenToDont: TRUE
].dont;
IF dont THEN {
designInReadOperation ← NIL;
TerminalIO.WriteRope["Technology rejects read\n"];
}
END;
VersionAndSealCheck: INTERNAL PROC [] =
BEGIN
--ChipNDale check
IF TokenIO.ReadInt[]#xChipndaleFile THEN {
TerminalIO.WriteRope["File is not a ChipNDale design\n"];
ERROR TokenIO.Error[other, "ChipNDale filekey"];
};
--version check
versionKey ← TokenIO.ReadInt[];
IF versionKey#xVersion THEN {
IF versionKey>xVersion THEN { -- too new
TerminalIO.WriteRope["design was written with newer chipndaleversion\n"];
TerminalIO.WriteRope["get a new ChipNDale version\n"];
ERROR TokenIO.Error[other, "ChipNDale versionkey"];
}
ELSE IF versionKey IN [10..xVersion] THEN { -- not new but dont tell it
NULL
}
ELSE IF versionKey IN [5..xVersion] THEN { -- not new but everything ok
TerminalIO.WriteRope["design was written with older chipndaleversion\n"];
}
ELSE IF versionKey=4 THEN { -- known problem versions
TerminalIO.WriteRope["********\n"];
TerminalIO.WriteRope["design was written with older chipndaleversion; filekey = 4\n"];
TerminalIO.WriteRope["Please convert also your other designs (by reading and subsequent writing)\n"];
TerminalIO.WriteRope["Check carefully the alignment of cells which have n-well\n"];
TerminalIO.WriteRope[" IF alignment is wrong THEN { try with a commandtool:\n"];
TerminalIO.WriteRope[" CD18InputToggle\n"];
TerminalIO.WriteRope[" }\n"];
TerminalIO.WriteRope["If the design looked bad, call Jacobi.pa, (I might help you, but also I'd like to know about the problem, and, whether the proposed fix helped)\n"];
TerminalIO.WriteRope["********\n"];
}
ELSE IF versionKey=3 THEN { -- known problem versions
TerminalIO.WriteRope["********\n"];
TerminalIO.WriteRope["design was written with older chipndaleversion; filekey = 3\n"];
TerminalIO.WriteRope["Please convert also your other designs (by reading and subsequent writing)\n"];
TerminalIO.WriteRope["Check carefully the alignment of cells which have n-well"];
TerminalIO.WriteRope["If the design looked bad, call Jacobi.pa, (I might help you, but also I'd like to know about the problem)\n"];
TerminalIO.WriteRope["********\n"];
}
ELSE IF versionKey IN [0..xVersion] THEN { -- not new but please convert
TerminalIO.WriteRope["********\n"];
TerminalIO.WriteRope["Design was written with older chipndaleversion\n"];
TerminalIO.WriteRope["Please convert also your other designs (by reading and subsequent writing)\n"];
TerminalIO.WriteRope["********\n"];
}
ELSE { -- too old
TerminalIO.WriteRope["design was written with older chipndaleversion\n"];
TerminalIO.WriteRope["This version is no more supported\n"];
ERROR TokenIO.Error[other, "ChipNDale versionkey"];
};
};
--seal check
IF versionKey>0 THEN {
IF TokenIO.ReadInt[]#-1 THEN {
TerminalIO.WriteRope["File had not been properly closed; has bad seal\n"];
ERROR TokenIO.Error[other, "file had not been properly closed"];
};
};
END;
ReadVersionKeys: PROC [design: CD.Design] =
BEGIN
IF versionKey>=7 THEN {
designVersionKey ← TokenIO.ReadRope[];
};
IF Rope.IsEmpty[designVersionKey] THEN
designVersionKey ← Convert.RopeFromTime[from: BasicTime.Now[], end: seconds];
CDProperties.PutDesignProp[design, $FileVersion, designVersionKey];
END;
ReadDesignName: PROC [] RETURNS [name: Rope.ROPE] =
BEGIN
name ← TokenIO.ReadRope[];
IF Rope.IsEmpty[name] THEN {
name ← FileNames.GetShortName[fileName, TRUE];
name ← Rope.Substr[name, 0, Rope.Index[name, 0, ".dale", FALSE]]
}
END;
-- DoWhileAttached
VersionAndSealCheck[];
technologyKey ← TokenIO.ReadAtom[];
technologyName ← TokenIO.ReadRope[];
technology ← CD.FetchTechnology[technologyKey];
IF technology=NIL THEN {
TerminalIO.WriteRopes["technology '", technologyName, "' not loaded\n"];
GOTO NotDoneAndRelease
};
designInReadOperation ← CDOps.CreateDesign[technology];
TechnologyCheck[];
IF designInReadOperation=NIL THEN GOTO NotDoneAndRelease;
designInReadOperation.name ← ReadDesignName[];
ReadVersionKeys[designInReadOperation]; --read before check, fixed again later
IF check#NIL THEN {
IF NOT check[designInReadOperation] THEN GOTO NotDoneAndRelease;
};
ReadDesignData[];
CDValue.Store[boundTo: designInReadOperation, key: $CDxFromFile, value: fileName];
CDValue.Store[boundTo: designInReadOperation, key: $CDxLastFile, value: fileName];
TokenIO.ReleaseReader[];
EXITS
NotDoneAndRelease => {
designInReadOperation ← NIL;
TokenIO.ReleaseReader[];
};
END;
-- DoReadDesign
technology: CD.Technology;
technologyKey: ATOM;
technologyName: Rope.ROPE;
designInReadOperation ← NIL;
TokenIO.AttachReader[binfile !
TokenIO.Error => {
r: Rope.ROPE ← "bad explanation";
IF ISTYPE[explanation, Rope.ROPE] THEN r←NARROW[explanation];
TerminalIO.WriteRopes[r, "... not attached\n"];
GOTO NotAttached
}
];
DoWhileAttached[];
EXITS
NotAttached => RETURN
END;
-- begin ReadDesign
iDidTheOpen: BOOLFALSE;
name: Rope.ROPE;
-- open file; assign fileName and binfile
IF wDir=NIL THEN wDir ← FileNames.CurrentWorkingDirectory[];
IF from#NIL AND ISTYPE[from, IO.STREAM] THEN {
fileName ← NIL;
binfile ← NARROW[from, IO.STREAM]
}
ELSE {
ReadName: PROC [wDir: Rope.ROPE] RETURNS [name: Rope.ROPE] = {
TerminalIO.WriteRope[Rope.Cat[" input file (", wDir, ")"]];
name ← TerminalIO.RequestRope[" > "];
};
IF from=NIL THEN name ← ReadName[wDir]
ELSE IF ISTYPE[from, Rope.ROPE] THEN {
name ← NARROW[from, Rope.ROPE];
IF Rope.IsEmpty[name] THEN name ← ReadName[wDir];
}
ELSE {
TerminalIO.WriteRope["ReadDesign does not support type of 'from' parameter\n"];
GOTO NotOpened;
};
fileName ← MakeName[name, "dale", wDir];
binfile ← FS.StreamOpen[fileName ! FS.Error =>
IF error.group # bug THEN {
TerminalIO.WriteRope[Rope.Cat[fileName, " not opened: ", error.explanation, "\n"]];
GOTO NotOpened;
}];
iDidTheOpen ← TRUE;
TerminalIO.WriteRope[Rope.Cat[fileName, " opened \n"]];
};
-- do the actual work
DoReadDesign[check];
design ← designInReadOperation;
-- finalize
designInReadOperation ← NIL;
indexTable ← NIL;
tableTable ← NIL;
IF iDidTheOpen THEN IO.Close[binfile];
[] ← CDEvents.ProcessEvent[ev: afterInputEvent, design: design, x: NIL, listenToDont: FALSE];
RETURN [design];
EXITS
NotOpened => {
indexTable ← NIL;
tableTable ← NIL;
designInReadOperation ← NIL;
TerminalIO.WriteRope["Read not done\n"];
RETURN [NIL];
}
END;
ReadOrientation: PUBLIC PROC [] RETURNS [orientation: CD.Orientation] =
BEGIN
i: INT = TokenIO.ReadInt[];
IF versionKey<=3 THEN {
IF i IN [0..15] THEN orientation ← i/4*2 + i MOD 2 ELSE SIGNAL TokenIO.EncodingError;
}
ELSE
IF i IN [0..7] THEN orientation ← i ELSE SIGNAL TokenIO.EncodingError
END;
-- Working directories ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
CheckWorkingDirectory: PROC [wDir: Rope.ROPE] RETURNS [slashWDir: Rope.ROPE] =
--if wDir is a directory, assign it to slashWDir
--else slashWDir ← nil
INLINE BEGIN
IF FileNames.IsADirectory[wDir] AND NOT FileNames.IsAPattern[wDir] THEN {
length: INT;
slashWDir ← FileNames.ConvertToSlashFormat[wDir];
length ← slashWDir.Length[];
IF slashWDir = wDir AND length > 0 AND slashWDir.Fetch[length - 1] = '/ THEN {
RETURN [slashWDir];
}
};
RETURN [NIL]
END;
SetWorkingDirectory: PUBLIC PROC [design: REF, wDir: Rope.ROPE] =
BEGIN
wDir ← CheckWorkingDirectory[wDir].slashWDir;
CDValue.Store[boundTo: design, key: $WorkingDirectory, value: wDir];
END;
wDirAtStart: Rope.ROPE = FileNames.CurrentWorkingDirectory[];
GetWorkingDirectory: PUBLIC PROC [design: REF] RETURNS [wDir: Rope.ROPENIL] =
BEGIN
WITH design SELECT FROM
des: CD.Design => {
WITH CDValue.Fetch[boundTo: design, key: $WorkingDirectory, propagation: global] SELECT FROM
r: Rope.ROPE => wDir ← CheckWorkingDirectory[r];
ENDCASE => NULL;
};
tech: CD.Technology => {
techName: Rope.ROPE ← tech.name;
IF techName=NIL THEN techName ← Atom.GetPName[tech.key];
wDir ← CheckWorkingDirectory[UserProfile.Token[
key: Rope.Cat["ChipNDale.", techName, ".BaseDirectory"],
default: NIL
]];
IF wDir=NIL THEN wDir ← GetWorkingDirectory[NIL];
IF wDir=NIL THEN wDir ← wDirAtStart;
};
ENDCASE => {
IF design=NIL THEN {
wDir ← CheckWorkingDirectory[
UserProfile.Token[key: "ChipNDale.BaseDirectory", default: NIL]];
IF wDir=NIL THEN wDir ← wDirAtStart;
};
};
END;
SetProcessWDir: PROC [wDir: Rope.ROPE] = {
[] ← List.PutAssoc[key: $WorkingDirectory, val: wDir, aList: ProcessProps.GetPropList[]];
};
UseWorkingDirectory: PUBLIC PROC [design: REF] RETURNS [wDir: Rope.ROPE] =
--set's it for the running process
--return's it
BEGIN
wDir ← GetWorkingDirectory[design];
IF wDir#NIL THEN SetProcessWDir[wDir]
ELSE wDir ← FileNames.CurrentWorkingDirectory[]
END;
TrailingChar: PROC [base: Rope.ROPE, char: CHAR] RETURNS [INT] = {
--position of last "char", only before '!, '], '>, '/ considered
len: INT ← Rope.Length[base];
pos: INT ← len;
WHILE pos > 0 DO
SELECT Rope.Fetch[base, pos ← pos - 1] FROM
char => RETURN [pos];
'!, '], '>, '/ => EXIT;
ENDCASE;
ENDLOOP;
RETURN [len];
};
MakeName: PUBLIC PROC [base: Rope.ROPE,
ext: Rope.ROPENIL, wDir: Rope.ROPENIL, modifier: Rope.ROPENIL] RETURNS [Rope.ROPE] =
BEGIN
bang: INT = TrailingChar[base, '!];
--remove version number
r: Rope.ROPE ← base.Substr[len: bang];
--include modifier
IF ~modifier.IsEmpty[] THEN r ← r.Concat[modifier];
--include extension
IF ~ext.IsEmpty[] AND (TrailingChar[r, '.]>=r.Length[]) THEN {
dot2: INT ← TrailingChar[ext, '.];
IF dot2>=ext.Length[] THEN r ← r.Cat[".", ext]
ELSE r ← r.Concat[ext.Substr[dot2]]
};
--include working directory
IF wDir#NIL THEN {
IF r.IsEmpty[] OR (r.Fetch[]#'/ AND r.Fetch[]#'[) THEN
r ← FileNames.Directory[wDir].Concat[r]
};
--put version number back
IF bang<Rope.Length[base] THEN {
r ← r.Concat[base.Substr[bang]]
};
RETURN [r]
END;
MakeShortName: PUBLIC PROC [design: CD.Design] RETURNS [name: Rope.ROPENIL] =
BEGIN
TrailingDot: PROC [base: Rope.ROPE] RETURNS [INT] = {
--position of last dot
len: INT ← Rope.Length[base];
pos: INT ← len;
WHILE pos > 0 DO
SELECT Rope.Fetch[base, pos ← pos - 1] FROM
'. => RETURN [pos];
'!, '], '>, '/ => EXIT;
ENDCASE;
ENDLOOP;
RETURN [len];
};
SuggestedModule: PROC [base: Rope.ROPE] RETURNS [Rope.ROPE] = {
--given a filename, suggests a modulename
len, dot: INT;
base ← FileNames.GetShortName[base];
len ← Rope.Length[base];
dot ← TrailingDot[base];
IF len>dot AND Rope.Equal[Rope.Substr[base, dot+1], "dale", FALSE] THEN
base ← Rope.Substr[base, 0, dot];
RETURN [base]
};
--MakeShortName
WITH CDValue.Fetch[boundTo: design, key: $CDxFromFile] SELECT FROM
r: Rope.ROPE => name ← SuggestedModule[r];
ENDCASE => NULL;
IF name=NIL THEN name ← design.name;
IF name=NIL THEN name ← "noname"
END;
NewDesignHasBeenCreated: CDEvents.EventProc =
-- PROC [event: REF, design: CD.Design, x: REF] --
--repaint captions and sometimes the contents
BEGIN
SetWorkingDirectory[design, FileNames.CurrentWorkingDirectory[]];
END;
CD18Input: Commander.CommandProc =
BEGIN
specialForVersion4 ← ~specialForVersion4;
IF specialForVersion4 THEN
cmd.out.PutRope["Fileformat: switch to old version of cd18\n"]
ELSE
cmd.out.PutRope["Fileformat: switch to last version of cd18\n"];
END;
-- Loader ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
GetEntry: PROC [fileName: Rope.ROPE, key: Rope.ROPE] RETURNS [entry: Rope.ROPE←NIL] =
BEGIN
found: BOOLFALSE;
OneLine: PROC [line: Rope.ROPE, key: Rope.ROPE] = {
stream: IO.STREAMIO.RIS[line];
keyFound: Rope.ROPEIO.GetID[stream];
IF Rope.Equal[keyFound, key] THEN {
found ← TRUE;
[] ← IO.SkipWhitespace[stream];
entry ← IO.GetLineRope[stream];
}
};
file: IO.STREAMFS.StreamOpen[fileName ! FS.Error => GOTO thatsIt];
WHILE ~found DO
line: Rope.ROPEIO.GetLineRope[file ! IO.EndOfStream => GOTO thatsIt];
IF ~Rope.IsEmpty[line] THEN
OneLine[line, key !
IO.EndOfStream => GOTO thatsIt;
IO.Error => {
TerminalIO.WriteF["**error reading entry file: %g line: %g\n", [rope[fileName]], [rope[line]]];
CONTINUE
};
];
ENDLOOP;
EXITS thatsIt => NULL;
END;
LoadEntry: PROC [key: Rope.ROPE, technology: CD.Technology←NIL, modifier: Rope.ROPENIL] =
BEGIN
wDir, entry, oldWDir, out: Rope.ROPE;
Fetch: PROC [mod: Rope.ROPE] = {
IF modifier#NIL THEN mod ← Rope.Cat[mod, "-", modifier];
mod ← CDIO.MakeName["ChipNDale-", "CDLoadList", wDir, mod];
entry ← GetEntry[mod, key];
};
searchPath: LIST OF Rope.ROPELIST[CDIO.GetWorkingDirectory[NIL], "///Commands/"];
IF technology#NIL THEN {
wDir ← CDIO.GetWorkingDirectory[technology];
searchPath ← CONS[wDir, searchPath];
Fetch[technology.name];
};
IF entry=NIL THEN {
wDir ← CDIO.GetWorkingDirectory[NIL];
Fetch["CD"];
};
IF entry=NIL THEN TerminalIO.WriteRopes["command line for ", key, " not found\n"]
ELSE {
cmd: Commander.Handle ← NEW[Commander.CommandObject ← [
out: TerminalIO.TOS[],
err: TerminalIO.TOS[],
in: IO.noInputStream,
propertyList: List.PutAssoc[key: $SearchRules, val: searchPath, aList: NIL]
]];
oldWDir ← FileNames.CurrentWorkingDirectory[];
SetProcessWDir[wDir];
TerminalIO.WriteRopes["tries to execute: ", entry, "\n"];
out ← CommandTool.DoCommandRope[commandLine: entry, parent: cmd].out;
TerminalIO.WriteRopes["\n{", out, "}\n"];
SetProcessWDir[oldWDir];
};
END;
-- Module Initialization ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
readEvent: CDEvents.EventRegistration = CDEvents.RegisterEventType[$ReadTechnologyPrivate];
afterInputEvent: CDEvents.EventRegistration = CDEvents.RegisterEventType[$AfterInput];
CDValue.RegisterKey[key: $WorkingDirectory];
CDEvents.RegisterEventProc[$CreateNewDesign, NewDesignHasBeenCreated];
--fix a problem in CD18
Commander.Register[
key: "///Commands/CD18InputToggle",
proc: CD18Input,
doc: "toggle input mode of cd18"
];
--hack hack, so I don't have to make an Interface change
CDProperties.PutAtomProp[$CDIOPrivate, $CDIOPrivate, NEW[PROC[Rope.ROPE, CD.Technology, Rope.ROPE]←LoadEntry]];
END.
Version history
versionKey 0
versionKey 1:
objects with children carry names
versionKey 2:
versionKey 3: June 15, 1984 3:46:13 pm PDT;
instances position is its innerrect; this allows to shrink or grow the nwell from cmos
versionKey 4: October 20, 1984 9:36:34 am PDT;
orientation changed
probably while lifetime of 4:
properties which are propertylists are automatically included
versionKey 5: December 14, 1984 10:07:59 am PST;
insiderect for cells no more done with properties; key is removed
versionKey 6: February 1, 1985 4:43:29 pm PST;
properties which are layers are automatically included
versionKey 7: March 26, 1985 12:33:22 pm PST;
file versionkey property included
versionKey 8: April 15, 1985 3:26:35 pm PST;
cd-coords base to file again...
cells get origin and interestrect
imports get interestrect
versionKey 9: May 29, 1985 7:51:45 pm PDT;
CD21
versionKey 10: May 29, 1985 7:51:45 pm PDT;
CD22
Atomicobject have the interest rect on the file
versionKey 11: May 29, 1985 7:51:45 pm PDT;
(CD22)
pushed records get the default interest rect
versionKey 12: January 28, 1986 2:23:27 pm PST;
(CD22)
default properties get $DefaultProperty key
versionKey 13: March 11, 1986 4:17:16 pm PST;
(CD23)
cells may have drawBorder field
gbb April 4, 1986 3:19:31 pm PST
The atoms for the keys of the technology independent layers have changed.
changes to: ReadLayer: if versionKey[]<=12 translate atoms.