CoreOpsImpl.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Barth, December 4, 1986 5:04:52 pm PST
Spreitzer, April 8, 1986 4:34:16 pm PST
Bertrand Serlet March 16, 1987 11:34:18 pm PST
Louis Monier May 1, 1986 4:44:41 pm PDT
Pradeep Sindhu February 24, 1986 6:48:20 pm PST
Mike Spreitzer November 18, 1986 2:30:07 pm PST
Last Edited by: Louis Monier January 16, 1987 1:16:31 pm PST
CoreOpsImpl:
CEDAR
PROGRAM
IMPORTS CedarProcess, CoreProperties, GList, HashTable, IO, ProcessProps, Rope, RopeList
EXPORTS CoreOps =
BEGIN OPEN Core, CoreOps;
Cell Types
CreateCellType:
PUBLIC
PROC [class: CellClass, public: WireSeq, data:
REF
ANY ←
NIL, name:
ROPE ←
NIL, props: Properties ←
NIL]
RETURNS [cellType: CellType] = {
cellType ← NEW [CellTypeRec ← [class: class, public: public, data: data, properties: props]];
IF name#NIL THEN cellType ← SetCellTypeName[cellType, name];
};
SetCellTypeName:
PUBLIC
PROC [cellType: CellType, name:
ROPE]
RETURNS [sameCellType: CellType] = {
CoreProperties.PutCellTypeProp[cellType, nameProp, name];
sameCellType ← cellType;
};
GetCellTypeName:
PUBLIC
PROC [cellType: CellType]
RETURNS [name:
ROPE ←
NIL] = {
name ← NARROW [CoreProperties.GetCellTypeProp[cellType, nameProp]];
};
InheritCellTypeName:
PUBLIC
PROC [cellType: CellType]
RETURNS [name:
ROPE ←
NIL] = {
DO
name ← NARROW [CoreProperties.GetCellTypeProp[cellType, nameProp]];
IF name#NIL OR NOT cellType.class.layersProps THEN EXIT;
cellType ← Recast[cellType];
ENDLOOP;
};
recastCacheProp:
ATOM ← CoreProperties.RegisterProperty[$CoreRecastCache];
Recast:
PUBLIC
PROC [me: CellType, fillCacheIfEmpty:
BOOL ←
TRUE]
RETURNS [new: CellType] = {
new ← NARROW[CoreProperties.GetCellTypeProp[me, recastCacheProp]];
IF new=
NIL
THEN {
IF me.class.recast=NIL THEN ERROR; -- Caller error. No recast proc on this class. Trap it here so that this comment is obvious to a user instead of getting an error window with a control fault in it.
new ← me.class.recast[me];
IF new#me AND fillCacheIfEmpty THEN CoreProperties.PutCellTypeProp[me, recastCacheProp, new];
};
};
RecastBindingTable:
PUBLIC
PROC [cellType: CellType]
RETURNS [table: HashTable.Table] = {
table ← NARROW [CoreProperties.GetCellTypeProp[cellType, $CoreRecastBindingTableCache]];
IF table=
NIL
THEN {
recasted: CellType ← Recast[cellType];
IF recasted#cellType
THEN {
table ← CreateBindingTable[cellType.public, recasted.public];
CoreProperties.PutCellTypeProp[cellType, $CoreRecastBindingTableCache, table];
};
};
};
ToBasic:
PUBLIC
PROC [cellType: Core.CellType]
RETURNS [basic: Core.CellType] = {
FOR basic ← cellType, Recast[basic] UNTIL basic.class.recast = NIL DO NULL ENDLOOP;
};
PrintCellType:
PUBLIC
PROC [cellType: CellType, out:
STREAM ←
NIL, indent:
NAT ← 0, level:
NAT ← 2] = {
classProc: REF PrintClassProc;
IF out=NIL THEN out ← NARROW [ProcessProps.GetProp[$CommanderHandle], Commander.Handle].out;
IO.PutF[out,
"\n\n%g: %g Cell Type",
[rope[GetCellTypeName[cellType]]],
[rope[cellType.class.name]]
];
IO.PutRope[out, "\nPublic wire:"];
PrintWire[cellType.public, out, indent+1, level];
IF (classProc ← NARROW [CoreProperties.GetProp[from: cellType.class.properties, prop: printClassProcProp]]) # NIL THEN classProc[cellType.data, out, indent, level];
CoreProperties.PrintProperties[props: cellType.properties, out: out, indent: indent, level: level];
};
PrintIndent:
PUBLIC
PROC [indent:
NAT, out:
STREAM, cr:
BOOL ←
TRUE] = {
IF cr
THEN {
IO.PutChar[out, IO.CR];
FOR i: NAT IN [0..indent) DO IO.PutRope[out, " "] ENDLOOP
}
ELSE IO.PutRope[out, ", "]
};
Wire Creation
CreateWire:
PUBLIC
PROC [elements: Wires ←
NIL, name:
ROPE ←
NIL, props: Properties ←
NIL]
RETURNS [wire: Wire] = {
size: NAT ← GList.Length[elements];
wire ← CreateWires[size, name, props];
size ← 0;
FOR c: Wires ← elements, c.rest
UNTIL c=
NIL
DO
wire[size] ← c.first;
size ← size + 1;
ENDLOOP;
};
CreateWires:
PUBLIC
PROC [size:
NAT, name:
ROPE ←
NIL, props: Properties ←
NIL]
RETURNS [wire: Wire] = {
wire ← NEW [WireRec[size]];
wire.properties ← props;
IF name#NIL THEN CoreProperties.PutWireProp[wire, nameProp, name];
};
SubrangeWire:
PUBLIC
PROC [wire: Wire, start, size:
NAT, name:
ROPE ←
NIL, props: Properties ←
NIL]
RETURNS [sub: Wire] = {
sub ← CreateWires[size, name, props];
FOR i:
NAT
IN [0 .. size)
DO
sub[i] ← wire[start+i];
ENDLOOP;
};
CopyWire:
PUBLIC
PROC [wire: Wire]
RETURNS [new: Wire] = {
Copy:
PROC [wire: Wire]
RETURNS [new: Wire] = {
IF (new ←
NARROW[HashTable.Fetch[table: visitTab, key: wire].value])=
NIL
THEN {
new ← CreateWires[size: wire.size, name: GetShortWireName[wire]];
IF NOT HashTable.Insert[table: visitTab, key: wire, value: new] THEN ERROR;
FOR i:
NAT
IN [0 .. wire.size)
DO
new[i] ← Copy[wire[i]];
ENDLOOP;
};
};
visitTab: HashTable.Table ← HashTable.Create[]; -- Wire to Wire
new ← IF wire=NIL THEN NIL ELSE Copy[wire];
};
UnionWire:
PUBLIC
PROC [wire1, wire2: Wire, name:
ROPE ←
NIL, props: Properties ←
NIL]
RETURNS [union: Wire] = {
union ← CreateWires[size: wire1.size+wire2.size, name: name, props: props];
FOR i: NAT IN [0 .. wire1.size) DO union[i] ← wire1[i] ENDLOOP;
FOR i: NAT IN [0 .. wire2.size) DO union[wire1.size+i] ← wire2[i] ENDLOOP;
};
Wire Enumeration
VisitWire:
PUBLIC
PROC [wire: Wire, eachWire: EachWireProc]
RETURNS [quit:
BOOL] = {
subWires: BOOL;
[subWires, quit] ← eachWire[wire];
IF quit OR NOT subWires THEN RETURN;
FOR i:
NAT
IN [0 .. wire.size)
DO
IF VisitWire[wire[i], eachWire] THEN RETURN [TRUE];
ENDLOOP;
quit ← FALSE;
};
VisitWireSeq:
PUBLIC
PROC [seq: WireSeq, eachWire: EachWireProc]
RETURNS [quit:
BOOL] = {
FOR i:
NAT
IN [0 .. seq.size)
DO
IF VisitWire[seq[i], eachWire] THEN RETURN [TRUE];
ENDLOOP;
quit ← FALSE;
};
VisitRootAtomics:
PUBLIC PROC [root: WireSeq, eachWire:
PROC [Wire]] = {
VisitAtomicWires:
PROC [wire: Wire] = {
IF wire.size=0
THEN eachWire[wire]
ELSE FOR i: NAT IN [0 .. wire.size) DO VisitAtomicWires[wire[i]] ENDLOOP;
};
FOR i: NAT IN [0 .. root.size) DO VisitAtomicWires[root[i]] ENDLOOP;
};
VisitBinding:
PUBLIC
PROC [actual, public: Wire, eachWirePair: EachWirePairProc]
RETURNS [quit:
BOOL] = {
subWires: BOOL;
IF actual.size#public.size THEN RETURN [TRUE]; -- wires do not conform
[subWires, quit] ← eachWirePair[actual, public];
IF quit OR NOT subWires THEN RETURN;
FOR i:
NAT
IN [0 .. actual.size)
DO
IF VisitBinding[actual[i], public[i], eachWirePair] THEN RETURN [TRUE];
ENDLOOP;
quit ← FALSE;
};
VisitBindingSeq:
PUBLIC
PROC [actual, public: WireSeq, eachWirePair: EachWirePairProc]
RETURNS [quit:
BOOL] = {
IF actual.size#public.size THEN RETURN [TRUE]; -- wires do not conform
FOR i:
NAT
IN [0 .. actual.size)
DO
IF VisitBinding[actual[i], public[i], eachWirePair] THEN RETURN [TRUE];
ENDLOOP;
quit ← FALSE;
};
Conform:
PUBLIC
PROC [actual, public: Wire]
RETURNS [
BOOL] = {
EachWirePair: EachWirePairProc = {};
RETURN [NOT VisitBinding[actual, public, EachWirePair]];
};
CorrectConform:
PUBLIC
PROC [actual, public: WireSeq]
RETURNS [
BOOL] = {
p2a: HashTable.Table = HashTable.Create[];
EachWirePair:
PROC [actualWire, publicWire: Wire]
RETURNS [subWires:
BOOL ←
TRUE, quit:
BOOL ←
FALSE]
--EachWirePairProc-- = {
found: BOOL;
ra: REF ANY;
[found, ra] ← HashTable.Fetch[p2a, publicWire];
subWires ← NOT found;
IF
NOT found
THEN {
IF NOT HashTable.Insert[p2a, publicWire, actualWire] THEN ERROR;
}
ELSE IF ra # actualWire THEN quit ← TRUE;
};
RETURN [NOT VisitBindingSeq[actual, public, EachWirePair]];
};
WireBits:
PUBLIC
PROC [wire: Wire]
RETURNS [bits:
NAT] = {
visitTab: HashTable.Table ← HashTable.Create[]; -- Wire to ATOM
CountBits:
PROC [wire: Wire]
RETURNS [bits:
NAT ← 0] = {
IF
NOT HashTable.Fetch[table: visitTab, key: wire].found
THEN {
IF wire.size=0 THEN bits ← 1
ELSE
FOR sub:
NAT
IN [0..wire.size)
DO
bits ← bits + CountBits[wire[sub]];
ENDLOOP;
IF NOT HashTable.Insert[table: visitTab, key: wire, value: $Counted] THEN ERROR;
};
};
bits ← CountBits[wire];
};
CreateBindingTable:
PUBLIC
PROC [wire1, wire2: Wire]
RETURNS [table: HashTable.Table] = {
AddInTable: EachWirePairProc = {[] ← HashTable.Store[table, actualWire, publicWire]};
table ← HashTable.Create[wire1.size];
[] ← VisitBinding[wire1, wire2, AddInTable];
};
Wire Naming
GetShortWireName:
PUBLIC
PROC [wire: Wire]
RETURNS [name:
ROPE ←
NIL] = {
name ← NARROW [CoreProperties.GetWireProp[wire, nameProp]];
};
SetShortWireName:
PUBLIC
PROC [wire: Wire, name:
ROPE]
RETURNS [sameWire: Wire] = {
CoreProperties.PutWireProp[wire, nameProp, name];
sameWire ← wire;
};
GetWireIndex:
PUBLIC
PROC [wire: Wire, name:
ROPE]
RETURNS [n:
INT ← -1] ~ {
FOR i:
NAT
IN [0..wire.size)
DO
IF Rope.Equal[name, GetShortWireName[wire[i]]] THEN RETURN [i];
ENDLOOP;
};
wireToNamesCacheProp:
ATOM ← CoreProperties.RegisterProperty[$CoreWireToNamesCache, CoreProperties.Props[[CoreProperties.propPrint, CoreProperties.PropDontPrint]]];
Association wire -> list of full names
nameToWireCacheProp:
ATOM ← CoreProperties.RegisterProperty[$CoreNameToWireCache, CoreProperties.Props[[CoreProperties.propPrint, CoreProperties.PropDontPrint]]];
Association full name -> wire
FullWireNames:
PRIVATE
PROC [root: Wire]
RETURNS [wireToNames, nameToWire: HashTable.Table] = {
SetName:
PUBLIC
PROC [wire: Wire, name:
ROPE] = {
names: LIST OF ROPE ← NARROW [HashTable.Fetch[wireToNames, wire].value];
previousWire: Wire ← NARROW [HashTable.Fetch[nameToWire, name].value];
IF name#
NIL
AND
NOT RopeList.Memb[names, name]
THEN {
names ← CONS [name, names];
[] ← HashTable.Store[wireToNames, wire, names];
};
IF name#NIL AND ~HashTable.Insert[nameToWire, name, wire] AND previousWire#wire THEN ERROR; -- two different wires have the same name relative to this root
FOR i:
NAT
IN [0 .. wire.size)
DO
short: ROPE ← GetShortWireName[wire[i]];
SetName[wire[i],
SELECT
TRUE
FROM
short=NIL => Index[name, i],
name=NIL => short,
ENDCASE => Rope.Cat[name, ".", short]];
ENDLOOP;
};
wireToNames ← NARROW [CoreProperties.GetWireProp[root, wireToNamesCacheProp]];
nameToWire ← NARROW [CoreProperties.GetWireProp[root, nameToWireCacheProp]];
IF wireToNames#NIL AND nameToWire#NIL THEN RETURN;
wireToNames ← HashTable.Create[WireBits[root]];
nameToWire ← HashTable.Create[WireBits[root], HashTable.RopeEqual, HashTable.HashRope];
SetName has GetShortWireName[wire] instead of NIL to make full names also work for wires in their own context, as in Sisyph.
SetName[root, GetShortWireName[root]];
CoreProperties.PutWireProp[root, wireToNamesCacheProp, wireToNames];
CoreProperties.PutWireProp[root, nameToWireCacheProp, nameToWire];
};
GetFullWireNames:
PUBLIC
PROC [root: WireSeq, wire: Wire]
RETURNS [names:
LIST
OF
ROPE ] = {
names ← NARROW [HashTable.Fetch[FullWireNames[root].wireToNames, wire].value];
};
GetFullWireName:
PUBLIC
PROC [root: WireSeq, wire: Wire]
RETURNS [name:
ROPE ←
NIL] = {
names: LIST OF ROPE ← GetFullWireNames[root, wire];
WHILE names#
NIL
DO
IF name=NIL OR (Rope.Fetch[name]='[ AND Rope.Fetch[names.first]#'[) OR Rope.Length[names.first]<Rope.Length[name] OR (Rope.Length[names.first]=Rope.Length[name] AND Rope.Compare[names.first, name]=less) THEN name ← names.first;
names ← names.rest;
ENDLOOP;
};
IsFullWireName:
PUBLIC
PROC [root: WireSeq, wire: Wire, name:
ROPE]
RETURNS [
BOOL] = {
RETURN [RopeList.Memb[GetFullWireNames[root, wire], name]]
};
FindWire:
PUBLIC
PROC [root: WireSeq, name:
ROPE]
RETURNS [wire: Wire ←
NIL] = {
wire ← NARROW [HashTable.Fetch[FullWireNames[root].nameToWire, name].value];
};
ParseWireName:
PUBLIC
PROC [name:
ROPE]
RETURNS [base:
ROPE, components:
LIST
OF
ROPE ←
NIL] = {
endBase: INT ← MIN [Rope.Index[name, 0, "."], Rope.Index[name, 0, "["]];
base ← Rope.Substr[name, 0, endBase];
name ← Rope.Substr[name, endBase];
WHILE Rope.Length[name]#0
DO
SELECT Rope.Fetch[name]
FROM
'[ => {
endBracket: INT ← Rope.Find[name, "]"];
IF endBracket=-1 THEN ERROR; -- malformed name
components ← CONS [Rope.Substr[name, 1, endBracket-1], components];
name ← Rope.Substr[name, endBracket+1];
};
'. => {
endField: INT ← MIN [Rope.Index[name, 1, "."], Rope.Index[name, 1, "["]];
components ← CONS [Rope.Substr[name, 1, endField-1], components];
name ← Rope.Substr[name, endField];
};
ENDCASE => ERROR; -- malformed name
ENDLOOP;
components ← RopeList.Reverse[components];
};
AllSimpleAtomics:
PROC [wire: Wire]
RETURNS [
BOOL ← TRUE] = {
FOR i:
NAT
IN [0 .. wire.size)
DO
IF wire[i].size#0 OR CoreProperties.HasPrintableProp[wire[i].properties] OR GetShortWireName[wire[i]]#NIL THEN RETURN [FALSE];
ENDLOOP;
};
PrintWire:
PUBLIC
PROC [wire: Wire, out:
STREAM ←
NIL, indent:
NAT ← 0, level:
NAT ← 2] = {
name: ROPE ← GetShortWireName[wire];
PrintAWire:
PROC [wire: Wire, indent:
NAT, level:
NAT, name:
ROPE, cr, firstWire:
BOOL, recur:
NAT] = {
CedarProcess.CheckAbort[];
PrintIndent[indent, out, cr OR firstWire];
IO.PutRope[out, name];
IF recur=1 AND Rope.Match["[*]", name] THEN out.PutF["(%g^)", IO.int[LOOPHOLE[wire]]];
IF wire.size#0 THEN IO.PutF[out, ", %g elements", IO.int[wire.size]];
CoreProperties.PrintProperties[props: wire.properties, out: out, indent: indent+1, cr: cr, level: level];
IF wire.size#0
AND (level=0
OR (recur#0
AND AllSimpleAtomics[wire]))
THEN IO.PutRope[out, " [...] "]
ELSE
FOR i:
NAT
IN [0 .. wire.size)
DO
subName: ROPE ← GetShortWireName[wire[i]];
IF subName=NIL THEN subName ← IO.PutFR["[%g]", IO.int[i]];
PrintAWire[wire[i], indent+1, level-1, subName, cr AND wire.size<=32, cr AND i=0, recur+1];
ENDLOOP;
};
IF out=NIL THEN out ← NARROW[ProcessProps.GetProp[$CommanderHandle], Commander.Handle].out;
PrintAWire[wire, indent, level, IF name#NIL THEN name ELSE "<no name>", TRUE, TRUE, 0];
};
FlushNameCaches:
PUBLIC
PROC [root: WireSeq] = {
CoreProperties.PutWireProp[root, wireToNamesCacheProp, NIL];
CoreProperties.PutWireProp[root, nameToWireCacheProp, NIL];
};
Wires Operations
Reverse:
PUBLIC
PROC [wires: Wires]
RETURNS [revWires: Wires ←
NIL] = {
revWires ← NARROW [GList.Reverse[wires]];
};
Delete:
PUBLIC
PROC [wires: Wires, wire: Wire]
RETURNS [newWires: Wires ←
NIL] = {
WHILE wires#
NIL
DO
IF wires.first#wire THEN newWires ← CONS [wires.first, newWires];
wires ← wires.rest;
ENDLOOP;
};
Member:
PUBLIC
PROC [wires: Wires, wire: Wire]
RETURNS [
BOOL] = {
RETURN [GList.Member[wire, wires]];
};
ParentWires:
PUBLIC
PROC [root, candidate: Wire]
RETURNS [parents:
LIST
OF Wire ←
NIL] = {
FindActual: EachWireProc = {
FOR i:
NAT
IN [0 .. wire.size)
DO
IF wire[i]=candidate AND NOT Member[parents, wire] THEN parents ← CONS [wire, parents];
ENDLOOP;
};
[] ← VisitWire[root, FindActual];
};
RecursiveMember:
PUBLIC
PROC [wire, candidate: Wire]
RETURNS [
BOOL] = {
FindActual: EachWireProc = {quit ← wire=candidate};
RETURN [VisitWire[wire, FindActual]];
};
Miscellaneous
brackets:
ARRAY [0 .. 32)
OF
ROPE = [
"[0]", "[1]", "[2]", "[3]", "[4]", "[5]", "[6]", "[7]", "[8]", "[9]",
"[10]", "[11]", "[12]", "[13]", "[14]", "[15]", "[16]", "[17]", "[18]", "[19]",
"[20]", "[21]", "[22]", "[23]", "[24]", "[25]", "[26]", "[27]", "[28]", "[29]",
"[30]", "[31]"];
Speed up hack for making new wire names
Index:
PUBLIC
PROC [rope:
ROPE, index:
NAT]
RETURNS [indexed:
ROPE] = {
RETURN [
IF index<32
THEN Rope.Concat[rope, brackets[index]] -- speed up hack!
ELSE Rope.Cat[rope, "[", IO.PutR1[IO.int[index]], "]"]
];
};
FixStupidRef:
PUBLIC
PROC [ref:
REF
ANY]
RETURNS [rope:
ROPE] = {
IF ref=NIL THEN RETURN [NIL];
rope ←
WITH ref
SELECT
FROM
r: REF TEXT => Rope.FromRefText[r],
r: ROPE => r,
ENDCASE => ERROR;
};
Print:
PUBLIC
PROC [ref:
REF, out:
STREAM ←
NIL, indent:
NAT ← 0, level:
NAT ← 2] = {
WITH ref
SELECT
FROM
wire: Wire => PrintWire[wire, out, indent, level];
wires: Wires =>
WHILE wires#
NIL
DO
PrintWire[wires.first, out, indent, level];
wires ← wires.rest;
ENDLOOP;
cellType: CellType => PrintCellType[cellType, out, indent, level];
ENDCASE => {
IF out=NIL THEN out ← NARROW [ProcessProps.GetProp[$CommanderHandle], Commander.Handle].out;
IO.PutRope[out, IF ref=NIL THEN "NIL\n" ELSE "*** CoreOps.Print Does not know how to print argument\n"];
};
};