InstallerImpl.mesa
Copyright © 1984 by Xerox Corporation. All rights reserved.
Levin on January 12, 1984 3:49 pm
Russ Atkinson, July 16, 1984 8:33:58 pm PDT
Willie-Sue, July 30, 1984 3:56:10 pm PDT
DIRECTORY
Ascii USING [BS, ControlA, ControlQ, ControlW, ControlX, CR, DEL, Digit, Letter, SP],
BasicTime USING [GMT, nullGMT, Period],
Booting USING [RegisterProcs, RollbackProc, switches],
DefaultRemoteNames USING [DefaultNames, Get],
DFOperations USING [
BringOver, ChoiceInteraction, ChoiceResponse, Choices, DFInfoInteraction, FileInteraction, InfoInteraction, InteractionProc, YesNoInteraction, YesNoResponse],
DFUtilities USING [DateToRope],
FS USING [ComponentPositions, Copy, Error, ExpandName, FileInfo, StreamOpen],
GermSwap USING [Switch],
IdleExtras USING [IdleHandler, RegisterIdleHandler],
IO USING [
Close, EndOfStream, Error, GetChar, GetTime, GetTokenRope, EraseChar, IDProc, PutChar, PutF, PutFR, PutRope, rope, STREAM, time],
Process USING [SecondsToTicks],
Rope USING [Cat, Concat, Equal, Fetch, FromChar, Length, ROPE, Run, SkipTo, Substr],
SimpleTerminal USING [InputTimeout, SetInputTimeout, TurnOff, TurnOn],
SystemVersion USING [release],
Terminal USING [BlinkBWDisplay, Current],
UserCredentials USING [Get],
UserProfile USING [ListOfTokens, ProfileChanged];
InstallerImpl: CEDAR PROGRAM
IMPORTS
Ascii, BasicTime, Booting, DefaultRemoteNames, DFOperations, DFUtilities, FS, IdleExtras, IO, Process, Rope, SimpleTerminal, SystemVersion, Terminal, UserCredentials, UserProfile
= BEGIN OPEN DFOps: DFOperations, DFUtils: DFUtilities;
ROPE: TYPE = Rope.ROPE;
in, out: IO.STREAM;
User interaction stuff
GetChoice: PROC [c: REF DFOps.ChoiceInteraction] RETURNS [choice: NAT] = {
DO
default: ROPE = c.choices[choice ← c.default];
ans: ROPENIL;
firstChar: BOOLTRUE;
FlushVisible: PROC = {
r: ROPE = IF firstChar THEN default ELSE ans;
FOR i: INT DECREASING IN [0..r.Length[]) DO
out.EraseChar[r.Fetch[i]];
ENDLOOP;
ans ← NIL;
choice ← c.default;
firstChar ← FALSE;
};
THROUGH [0..2*depth) DO out.PutChar[Ascii.SP]; ENDLOOP;
out.PutRope[c.message]; out.PutChar[Ascii.SP];
out.PutRope[default];
DO
oldAns: ROPE = ans;
char: CHAR;
char ← in.GetChar[ ! SimpleTerminal.InputTimeout => {char ← Ascii.CR; CONTINUE}];
SELECT char FROM
Ascii.DEL => {out.PutRope[" XXX\N"]; GO TO startOver};
Ascii.CR => IF ans.Length[] = 0 THEN GO TO done;
Ascii.BS, Ascii.ControlA =>
IF firstChar THEN FlushVisible[]
ELSE
IF ans.Length[] > 0 THEN {
out.EraseChar[ans.Fetch[ans.Length[]-1]];
ans ← ans.Substr[len: ans.Length[]-1];
};
Ascii.ControlQ, Ascii.ControlW, Ascii.ControlX => FlushVisible[];
'? => {
out.PutRope[" XXX\NChoices are: "];
FOR i: NAT IN [0..c.choices.length) DO
IF i ~= 0 THEN out.PutRope[", "];
out.PutRope[c.choices[i]];
ENDLOOP;
out.PutChar[Ascii.CR];
IF c.explanations ~= NIL THEN
FOR i: NAT IN [0..c.explanations.length) DO
IF c.explanations[i] ~= NIL THEN {
out.PutRope[c.explanations[i]];
out.PutChar[Ascii.CR];
};
ENDLOOP;
GO TO startOver
};
ENDCASE => {
state: {notFound, found, ambiguous} ← notFound;
IF firstChar THEN FlushVisible[];
ans ← ans.Concat[Rope.FromChar[char]];
FOR i: NAT IN [0..c.choices.length) DO
IF ans.Equal[s2: c.choices[i].Substr[len: ans.Length[]], case: FALSE] THEN {
IF ans.Length[] = c.choices[i].Length[] THEN {choice ← i; state ← found; EXIT};
SELECT state FROM
notFound => {choice ← i; state ← found};
found => state ← ambiguous;
ENDCASE;
};
ENDLOOP;
SELECT state FROM
notFound => {
Terminal.BlinkBWDisplay[Terminal.Current[]];
ans ← oldAns;
};
found => {
out.PutRope[c.choices[choice].Substr[start: oldAns.Length[]]];
GO TO done
};
ambiguous => out.PutChar[c.choices[choice].Fetch[oldAns.Length[]]];
ENDCASE;
};
REPEAT
startOver => NULL;
ENDLOOP;
REPEAT
done => NULL;
ENDLOOP;
out.PutChar[Ascii.CR];
};
Confirm: PROC [message: ROPE, default: BOOLTRUE] RETURNS [BOOL] = {
c: REF DFOps.ChoiceInteraction = NEW[DFOps.ChoiceInteraction ← [
message: message,
choices: yesNo,
explanations: NIL,
default: default.ORD
]];
OpenTerminal[];
RETURN[VAL[GetChoice[c]]]
};
autoConfirm: BOOLTRUE;
depth: INT ← -1;
Interact: DFOps.InteractionProc = {
OpenTerminal[];
WITH interaction SELECT FROM
info: REF DFOps.InfoInteraction => {
prompt: BOOLTRUE;
THROUGH [0..2*depth) DO out.PutChar[Ascii.SP]; ENDLOOP;
SELECT info.class FROM
info => prompt ← FALSE;
warning => out.PutRope["Warning: "];
error => out.PutRope["Error: "];
abort => NULL;
ENDCASE;
out.PutRope[info.message];
out.PutChar[Ascii.CR];
IF prompt THEN {
IF Confirm["Shall I continue anyway?"] THEN RETURN;
out.PutRope["Giving up..."];
Die[];
};
};
info: REF DFOps.DFInfoInteraction => {
SELECT info.action FROM
start => {
depth ← depth.SUCC;
THROUGH [0..2*depth) DO out.PutChar[Ascii.SP]; ENDLOOP;
out.PutRope["BringOver of "];
out.PutRope[info.dfFile];
};
end => {
THROUGH [0..2*depth) DO out.PutChar[Ascii.SP]; ENDLOOP;
out.PutRope["End BringOver of "];
out.PutRope[info.dfFile];
depth ← depth.PRED;
};
abort => {
out.PutRope["BringOver of "];
out.PutRope[info.dfFile];
out.PutRope[" aborted"];
depth ← -1;
};
ENDCASE;
IF info.message ~= NIL THEN out.PutF[" (%g)", IO.rope[info.message]];
out.PutChar[Ascii.CR];
};
c: REF DFOps.ChoiceInteraction =>
IF c.blunder OR ~autoConfirm THEN
RETURN[response: NEW[DFOps.ChoiceResponse ← [GetChoice[c]]]];
yn: REF DFOps.YesNoInteraction =>
IF yn.blunder OR ~autoConfirm THEN {
c: REF DFOps.ChoiceInteraction = NEW[DFOps.ChoiceInteraction ← [
message: yn.message,
choices: ynqa,
explanations: NIL,
default: IF yn.default THEN YNQA.yes.ORD ELSE YNQA.no.ORD
]];
choice: YNQA = VAL[GetChoice[c]];
SELECT choice FROM
$yes => RETURN[response: NEW[DFOps.YesNoResponse ← [TRUE]]];
$no => RETURN[response: NEW[DFOps.YesNoResponse ← [FALSE]]];
$quit => {
abort ← TRUE;
abortMessageForLog ← "(requested by user)";
};
$all => {
autoConfirm ← TRUE;
RETURN[response: NEW[DFOps.YesNoResponse ← [TRUE]]]
};
ENDCASE;
};
file: REF DFOps.FileInteraction =>
IF autoConfirm THEN {
THROUGH [0..2*depth) DO out.PutChar[Ascii.SP]; ENDLOOP;
out.PutF["%g %g %g {%g}%g\N",
IO.rope[file.localFile],
IO.rope[
SELECT file.action FROM
$fetch => "<--", $store => "-->", $check => "<-->", ENDCASE => NIL],
IO.rope[file.remoteFile],
IO.rope[DFUtils.DateToRope[[$explicit, file.date]]],
IO.rope[
IF file.dateFormat = $explicit THEN NIL
ELSE IO.PutFR[" ('%g')",
SELECT file.dateFormat FROM
$greaterThan => [character['>]],
$notEqual => [rope["~="]],
ENDCASE => [null[]]
]
]
];
};
ENDCASE;
};
Rubout: ERROR = CODE;
GetID: PROC [default: ROPE, echo: BOOLTRUE] RETURNS [id: ROPE] = {
OPEN Ascii;
firstTime: BOOLTRUE;
c: CHAR;
EraseAll: PROC = {
IF echo THEN
FOR i: INT DECREASING IN [0..id.Length[]) DO out.EraseChar[id.Fetch[i]]; ENDLOOP;
id ← NIL;
};
Done: PROC [c: CHAR] RETURNS [BOOL] = INLINE {
IF firstTime THEN {
SELECT c FROM
ControlA, BS, ControlQ, ControlW, ControlX, CR, SP => NULL;
ENDCASE => EraseAll[];
firstTime ← FALSE;
};
RETURN[c = SP OR c = CR]
};
id ← default;
IF echo THEN out.PutRope[default];
c ← in.GetChar[ ! SimpleTerminal.InputTimeout => --RETURN--GO TO defaultReturn];
UNTIL Done[c] DO
SELECT c FROM
DEL => {out.PutRope[" XXX\N"]; ERROR Rubout};
ControlA, BS => {
len: INT ← id.Length[];
IF len > 0 THEN {
len ← len - 1;
IF echo THEN out.EraseChar[id.Fetch[len]];
id ← id.Substr[len: len];
};
};
ControlW, ControlQ => {
text to be backed up is of the form ...<non-alpha><alpha><non-alpha>, the <alpha> and following <non-alpha> are to be removed.
alpha: BOOLFALSE;
FOR i: INT DECREASING IN [0..id.Length[]) DO
ch: CHAR = id.Fetch[i];
SELECT TRUE FROM
Ascii.Letter[ch], Ascii.Digit[ch] => alpha ← TRUE;
alpha => {id ← id.Substr[len: i + 1]; EXIT};
ENDCASE;
IF echo THEN out.EraseChar[ch];
REPEAT
FINISHED => id ← NIL;
ENDLOOP;
};
ControlX => EraseAll[];
ENDCASE => {id ← id.Concat[Rope.FromChar[c]]; IF echo THEN out.PutChar[c]};
c ← in.GetChar[ ! SimpleTerminal.InputTimeout => RESUME];
ENDLOOP;
EXITS
defaultReturn => NULL;
};
Installation Stamp
The format of the installation stamp file is as follows:
Essentials: name and date of (remote) boot essentials file used <CR>
?(Profile: name and date of (remote) user profile used <CR>)
(UserDF: name and date of (remote) user-specified DF and date <CR>) ...
FileDesc: TYPE = RECORD [name: ROPENIL, date: BasicTime.GMT ← BasicTime.nullGMT];
DFList: TYPE = REF DFListObject;
DFListObject: TYPE = RECORD [head: LIST OF FileDesc ← NIL, tail: LIST OF FileDesc ← NIL];
systemID: ROPE = IO.PutFR["%g.%g.%g",
[cardinal[SystemVersion.release.major]],
[cardinal[SystemVersion.release.minor]],
[cardinal[SystemVersion.release.patch]]
];
systemID2: ROPE = IO.PutFR["%g.%g",
[cardinal[SystemVersion.release.major]],
[cardinal[SystemVersion.release.minor]]
];
stamp: FileDesc ← [];
longDialogue: BOOL ← Booting.switches[l];
development: BOOL;
Initialized by InitUserRelatedInfo. If TRUE, forces retrieval of BootEssentials every time we are fully booted.
haveEssentials: BOOLFALSE;
haveProfile: BOOLFALSE;
essentials: FileDesc ← [];
profile: FileDesc ← [];
RRA: the profile is both read from and written to the installation stamp, but our current algorithm for determining the validity of the loacl profile does NOT use this information. This makes it primarily useful for debugging.
profileDFList: DFList = NEW[DFListObject ← []];
newProfileDFList: DFList = NEW[DFListObject ← []];
ParseInstallationStamp: PROC = {
ForgetStamp[];
stamp ← TryFile[Rope.Concat["InstallationStamp.", systemID]].desc;
IF stamp.date ~= BasicTime.nullGMT THEN {
in: IO.STREAM = FS.StreamOpen[stamp.name ! FS.Error => GO TO noStamp];
GetFileDesc: PROC RETURNS [desc: FileDesc] = {
desc.name ← StripVersion[in.GetTokenRope[IO.IDProc].token];
desc.date ← in.GetTime[];
};
DO
ENABLE {
IO.EndOfStream, IO.Error => GO TO parsingProblem;
FS.Error => IF error.group = $user THEN GO TO parsingProblem ELSE REJECT;
};
itemName: ROPE = in.GetTokenRope[IO.IDProc ! IO.EndOfStream => EXIT].token;
SELECT TRUE FROM
itemName.Equal["Essentials"] =>
IF essentials.name = NIL THEN essentials ← GetFileDesc[]
ELSE GO TO parsingProblem;
itemName.Equal["Profile"] =>
IF profile.name = NIL THEN profile ← GetFileDesc[]
ELSE GO TO parsingProblem;
itemName.Equal["UserDF"] => AddToDFList[profileDFList, GetFileDesc[]];
itemName.Equal["User"] => {
This item is the LAST in the installation stamp
userInProfile: ROPE = in.GetTokenRope[IO.IDProc].token;
IF NOT Rope.Equal[user, userInProfile, FALSE] THEN {
The profile and profileDFList are both bogus, but the essentials may be OK.
profile ← [];
profileDFList^ ← [];
};
EXIT;
};
ENDCASE => GO TO parsingProblem;
REPEAT
parsingProblem => {in.Close[]; GO TO noStamp};
ENDLOOP;
in.Close[];
};
EXITS
noStamp => ForgetStamp[];
};
WriteStamp: PROC = {
out: IO.STREAM = FS.StreamOpen[StripVersion[stamp.name], $create
! FS.Error => GO TO noStamp];
PutFileDesc: PROC [head: ROPE, desc: FileDesc] = {
out.PutF["%g: %g %g\N",
IO.rope[head],
IO.rope[desc.name],
IO.rope[DFUtils.DateToRope[[$explicit, desc.date]]]
];
};
Note: If the stamp was originally missing or invalid and the user explicitly prohibited retrieval of boot essentials, 'essentials' will be garbage. In this case, we don't write a new "Essentials" entry, and the user will be hassled the next time he boots.
IF essentials.name ~= NIL AND essentials.date ~= BasicTime.nullGMT THEN
PutFileDesc["Essentials", essentials];
IF profile.name ~= NIL AND profile.date ~= BasicTime.nullGMT THEN
PutFileDesc["Profile", profile];
FOR l: LIST OF FileDesc ← newProfileDFList.head, l.rest UNTIL l = NIL DO
IF l.first.date ~= BasicTime.nullGMT THEN PutFileDesc["UserDF", l.first];
ENDLOOP;
out.PutF["User: %g\n", [rope[user]]];
We depend on the User item being written last!
out.Close[];
stamp ← [];
EXITS
noStamp => NULL;
};
ForgetStamp: PROC = {
essentials ← profile ← [];
profileDFList^ ← [];
};
FindBootEssentials: PROC = {
Upon return, if 'haveEssentials' is TRUE, the contents of 'essentials' are unpredictable. If 'haveEssentials' is FALSE, however, 'essentials' describes an extant file to which BringOver is to be applied.
IF longDialogue THEN
haveEssentials ←
Confirm["Shall I assume the local files essential for booting are current?", FALSE];
IF ~haveEssentials THEN {
name: ROPE = "BootEssentials.df";
desc: FileDesc ← TryFile[name, topPath].desc;
SELECT TRUE FROM
desc.date ~= BasicTime.nullGMT =>
haveEssentials ←
~ development AND
essentials.date = desc.date AND
essentials.name.Equal[StripVersion[desc.name], FALSE] AND
(~longDialogue OR ~Confirm[
desc.name.Concat[
" was brought over the last time; shall I do it again anyway?"],
TRUE
]);
ENDCASE =>
WHILE Confirm["Do you want to specify a DF file for booting essentials?"] DO
fileName: ROPE = FS.ExpandName[name, topPath].fullFName;
out.PutRope["DF file for booting essentials: "];
desc ← TryFile[GetID[fileName ! Rubout => LOOP]].desc;
IF desc.date = BasicTime.nullGMT
THEN out.PutRope["...not found\N"]
ELSE {out.PutChar[Ascii.CR]; EXIT};
REPEAT
FINISHED => {
out.PutRope["The files essential for booting can't be found. I give up.\N"];
Die[];
};
ENDLOOP;
essentials ← desc;
};
};
FindUserProfile: PROC = {
Upon return, if 'haveProfile' is TRUE, no profile change notification is required. If 'haveProfile' is FALSE, however, any necessary file retrieval has occurred and, if the fields of 'profile' do not have their default values, they describe a remote file to be included in the stamp. Profile change notification should occur after the BringOver of the boot essentials is completed, so that the system default profile can be mentioned therein and noticed at the proper time.
localDesc, remoteDesc: FileDesc;
attachedTo: ROPE;
[localDesc, attachedTo] ← TryFile[localProfile, homeDir];
remoteDesc ← TryFile[localProfile, userPath].desc;
profile ← [];
SELECT TRUE FROM
localDesc.date = BasicTime.nullGMT OR localDesc.date # remoteDesc.date => {
There is no personal profile on the local disk OR it has a different date from the default remote profile. The user gets the opportunity to specify one; if he chooses not to, the system default will be used (we assume the files essential for booting include a default profile).
installIfTimeout: BOOLTRUE;
IF localDesc.date#BasicTime.nullGMT AND remoteDesc.date#BasicTime.nullGMT AND
BasicTime.Period[remoteDesc.date, localDesc.date] > 0 THEN
{ OpenTerminal[];
out.PutF["Local profile is newer (%g) than remote version (%g)\n",
IO.time[localDesc.date], IO.time[remoteDesc.date]];
};
WHILE Confirm["Do you wish to install a personal profile?", installIfTimeout] DO
Loops until remote file is located or user decides against using one.
profileName: ROPEFS.ExpandName[localProfile, userPath].fullFName;
remote: FileDesc ← [];
out.PutRope[" Personal profile name: "];
remote ← TryFile[GetID[profileName ! Rubout => LOOP]].desc;
IF remote.date = BasicTime.nullGMT
THEN {
out.PutRope["...not found\N"];
installIfTimeout ← ~remote.name.Equal[profileName];
}
ELSE {
Copy the remote file to both local places for luck.
out.PutChar[Ascii.CR];
profile ← remote;
FS.Copy[
from: remote.name,
to: Rope.Concat[homeDir, localProfile],
keep: 2,
attach: TRUE];
EXIT
};
ENDLOOP;
};
ENDCASE => {
There is a local profile on the disk, and it matches the remote profile. So we trust the local profile.
haveProfile ← TRUE;
IF attachedTo ~= NIL THEN profile ← [attachedTo, localDesc.date];
};
};
BringOverUserDFs: PROC = {
dfNames: LIST OF ROPE ← UserProfile.ListOfTokens["Installation.BringOver"];
remoteNames: DefaultRemoteNames.DefaultNames = DefaultRemoteNames.Get[];
prevRelease: ROPE = remoteNames.previous;
prevReleaseLen: INT = Rope.Length[prevRelease];
IF longDialogue THEN
SELECT TRUE FROM
dfNames ~= NIL AND
Confirm["Shall I ignore the profile's list of DF files to bring over?", FALSE] =>
dfNames ← NIL;
profileDFList.head ~= NIL AND
Confirm["Shall I ignore DF files previously brought over?", FALSE] =>
profileDFList^ ← [];
ENDCASE;
newProfileDFList^ ← [];
FOR dfList: LIST OF ROPE ← dfNames, dfList.rest UNTIL dfList = NIL DO
desc: FileDesc = TryFile[dfList.first].desc;
IF Rope.Run[prevRelease, 0, desc.name, 0, FALSE] = prevReleaseLen THEN {
We should not bring over anything from the previous release, since that can screw up the local disk. This is a simple, conservative test, but who knows how well it will work?
out.PutF["%g {%g} was from the previous release and was ignored.\N",
IO.rope[desc.name],
IO.rope[DFUtils.DateToRope[[$explicit, desc.date]]]
];
LOOP;
};
IF InDFList[profileDFList, desc] THEN {
IF out ~= NIL THEN
out.PutF["%g {%g} previously brought over.\N",
IO.rope[desc.name],
IO.rope[DFUtils.DateToRope[[$explicit, desc.date]]]
];
AddToDFList[newProfileDFList, desc];
}
ELSE {
e, w: INT;
CheckAutoConfirm[desc.name];
[errors: e, warnings: w] ←
DFOps.BringOver[dfFile: desc.name, filter: [filterB: $public], interact: Interact];
IF e + w = 0 THEN AddToDFList[newProfileDFList, desc];
};
ENDLOOP;
};
InDFList: PROC [list: DFList, desc: FileDesc] RETURNS [BOOLFALSE] = {
FOR l: LIST OF FileDesc ← list.head, l.rest UNTIL l = NIL DO
IF l.first.date = desc.date AND
StripVersion[desc.name].Equal[StripVersion[l.first.name], FALSE] THEN RETURN[TRUE];
ENDLOOP;
};
AddToDFList: PROC [list: DFList, desc: FileDesc] = {
descL: LIST OF FileDesc = CONS[desc, NIL];
IF list.head = NIL THEN list.head ← descL ELSE list.tail.rest ← descL;
list.tail ← descL;
};
Miscellaneous
installedUser: ROPE ← NIL;
user: ROPE ← NIL;
localProfile: ROPE ← NIL;
userPath: ROPENIL;
topPath: ROPENIL;
homeDir: ROPE ← "///";
InitUserRelatedInfo: PROC = {
Strictly speaking we initialize more here than just the user related info, but it is a good place to initialize various flags and paths.
remoteNames: DefaultRemoteNames.DefaultNames = DefaultRemoteNames.Get[];
installedUser ← UserCredentials.Get[].name;
user ← installedUser.Substr[len: installedUser.SkipTo[skip: "."]];
localProfile ← user.Concat[".profile"];
userPath ← Rope.Cat[remoteNames.userHost, "<", user, ">", systemID2, ">"];
topPath ← Rope.Concat[remoteNames.current, "Top>"];
development ←
Booting.switches[d] OR
TryFile["Released.switch", topPath].desc.date = BasicTime.nullGMT;
};
OpenTerminal: PROC = {
IF in ~= NIL THEN RETURN;
[in, out] ← SimpleTerminal.TurnOn[];
out.PutChar[Ascii.CR];
};
CloseTerminal: PROC = {
IF in = NIL THEN RETURN;
SimpleTerminal.TurnOff[];
in ← out ← NIL;
};
TryFile: PROC [shortName, prefix: ROPENIL]
RETURNS [desc: FileDesc ← [], attachedTo: ROPENIL] = {
desc.name ← FS.ExpandName[name: shortName, wDir: prefix].fullFName;
[fullFName: desc.name, attachedTo: attachedTo, created: desc.date] ←
FS.FileInfo[name: desc.name ! FS.Error => CONTINUE];
};
StripVersion: PROC [old: ROPE] RETURNS [new: ROPE] = {
cp: FS.ComponentPositions;
[fullFName: new, cp: cp] ← FS.ExpandName[old];
new ← new.Substr[len: cp.ext.start+cp.ext.length];
};
CheckAutoConfirm: PROC [df: ROPE] = {
IF longDialogue AND autoConfirm THEN {
msg: ROPE =
Rope.Cat["Do you wish to confirm retrieval of each file from ", df, " individually?"];
autoConfirm ← ~Confirm[msg, FALSE];
};
};
Die: PROC = {DO ENDLOOP};
Main body
NewUser: Booting.RollbackProc = {
DoRealWork[TRUE];
};
IdleOver: IdleExtras.IdleHandler = {
When we come back from Idle and the user changes, then we get a user profile notification of rollBack even though we do not get a rollback notification from Booting (sigh). Therefore, we also register to do the real work on this event. However, since we can also change the user profile when doing the real work, we have to avoid recursion, which we do by calling with `fromProfile' = TRUE. Someday someone should get ambitious and fix all of this crap.
IF reason = becomingBusy THEN DoRealWork[TRUE];
};
working: BOOLFALSE;
DoRealWork: PROC [rolling: BOOLFALSE] = {
IF working THEN RETURN;
working ← TRUE;
haveEssentials ← haveProfile ← FALSE;
IF longDialogue AND ~Confirm["Long installation dialogue [confirm] "] THEN {
out.PutRope["(L-switch now cleared.)\N"];
longDialogue ← Booting.switches[l] ← FALSE;
};
IF ~longDialogue THEN SimpleTerminal.SetInputTimeout[Process.SecondsToTicks[30]];
InitUserRelatedInfo[];
ParseInstallationStamp[];
IF NOT rolling THEN FindBootEssentials[];
FindUserProfile[];
IF NOT haveEssentials AND NOT rolling THEN {
CheckAutoConfirm[essentials.name];
[] ← DFOps.BringOver[dfFile: essentials.name, interact: Interact, action: fetch];
};
BringOverUserDFs[];
WriteStamp[];
IF NOT haveProfile THEN {
This is the place where we note that the user profile has changed during rollback. Note that we do this AFTER we have brought over the user's DF files (if any) to make commands work better.
UserProfile.ProfileChanged[rollBack];
};
SimpleTerminal.SetInputTimeout[0];
CloseTerminal[];
working ← FALSE;
};
YNQA: TYPE = {yes, no, quit, all};
ynqa: REF DFOps.Choices = NEW[DFOps.Choices[YNQA.LAST.ORD.SUCC - YNQA.FIRST.ORD]];
yesNo: REF DFOps.Choices = NEW[DFOps.Choices[BOOL.LAST.ORD.SUCC - BOOL.FIRST.ORD]];
yesNo[BOOL.TRUE.ORD] ← "Yes";
yesNo[BOOL.FALSE.ORD] ← "No";
ynqa[YNQA.yes.ORD] ← "Yes";
ynqa[YNQA.no.ORD] ← "No";
ynqa[YNQA.quit.ORD] ← "Quit";
ynqa[YNQA.all.ORD] ← "All";
IF Booting.switches ~= [] THEN {
OpenTerminal[];
out.PutRope["\NBoot switches:"];
FOR sw: GermSwap.Switch IN GermSwap.Switch DO
IF Booting.switches[sw] THEN {
out.PutChar[Ascii.SP];
out.PutChar[VAL[(IF sw <= nine THEN '0 ELSE 'A-10)+sw.ORD]];
};
ENDLOOP;
out.PutChar[Ascii.CR];
};
DoRealWork[FALSE
! FS.Error => {
OpenTerminal[];
out.PutF["\NFatal FS Error: %g\N", IO.rope[error.explanation]];
Die[];
}
];
Booting.RegisterProcs[r: NewUser];
[] ← IdleExtras.RegisterIdleHandler[IdleOver];
END.