<> <> <> <> <> <> <<>> DIRECTORY Feedback, FeedbackTypes, FileNames, FS, GGFileOps, Imager, Interpress, IO, IPMaster, IPInterpreter, PFS, Rope, SystemNames; GGFileOpsImpl: CEDAR PROGRAM IMPORTS Feedback, FileNames, FS, Imager, Interpress, IO, IPMaster, IPInterpreter, PFS, Rope, SystemNames EXPORTS GGFileOps = BEGIN MsgRouter: TYPE = FeedbackTypes.MsgRouter; <> GetGenericFileName: PUBLIC PROC [opRope, fileName, wDir, defaultExt: Rope.ROPE, illegalExts: LIST OF Rope.ROPE, router: MsgRouter, emergency: BOOL _ FALSE] RETURNS [fullName: Rope.ROPE _ NIL, success: BOOL _ TRUE, versionSpecified: BOOL _ FALSE] = { cp: FS.ComponentPositions; extRope: Rope.ROPE; versionSpecified _ Rope.SkipTo[s: fileName, skip: "!"]#Rope.Length[fileName]; IF Rope.Equal[fileName, NIL] THEN { success _ FALSE; IF NOT emergency THEN Feedback.PutF[router, oneLiner, $Complaint, "%g failed: no file name specified", [rope[opRope]] ]; RETURN; }; [fullName, cp, ] _ FS.ExpandName[fileName, wDir ! FS.Error => { success _ FALSE; IF NOT emergency THEN Feedback.PutF[router, oneLiner, $Complaint, "%g failed: FS Error during name expansion of %g", [rope[opRope]], [rope[fileName]] ]; CONTINUE; } ]; IF NOT success THEN RETURN; extRope _ Rope.Substr[base: fullName, start: cp.ext.start, len: cp.ext.length]; FOR ropeList: LIST OF Rope.ROPE _ illegalExts, ropeList.rest UNTIL ropeList=NIL DO IF Rope.Equal[ropeList.first, extRope, FALSE] THEN { success _ FALSE; IF NOT emergency THEN Feedback.PutF[router, oneLiner, $Complaint, "%g failed: %g extension for %g files not allowed", [rope[opRope]], [rope[extRope]], [rope[defaultExt]] ]; RETURN; }; ENDLOOP; IF cp.ext.length=0 THEN fullName _ Rope.Cat[fullName, ".", defaultExt]; fullName _ FileNames.ResolveRelativePath[fullName]; }; FNameToGName: PUBLIC PROC [name: Rope.ROPE] RETURNS [Rope.ROPE] = { <> gHost, gDir: Rope.ROPE; IF Rope.Match["[]*", name] THEN { gHost _ Rope.Cat["[", SystemNames.MachineName[], "]"]; gDir _ Rope.Cat[gHost, "<", --File.GetVolumeName[File.SystemVolume[]],-- ">"]; IF Rope.Match["[]<>*", name] THEN RETURN [Rope.Replace[base: name, start: 0, len: 4, with: gDir]] ELSE RETURN [Rope.Replace[base: name, start: 0, len: 2, with: gHost]]; }; RETURN [name]; }; PeriodBreakProc: SAFE PROC [char: CHAR] RETURNS [IO.CharClass] = { SELECT char FROM '. => RETURN[sepr]; ENDCASE => RETURN[other]; }; FilenameMinusExtension: PUBLIC PROC [wholeName: Rope.ROPE] RETURNS [firstPart: Rope.ROPE] = { wholeStream: IO.STREAM _ IO.RIS[wholeName]; [firstPart, ----] _ IO.GetTokenRope[wholeStream, PeriodBreakProc]; }; <> GetInterpressFileName: PUBLIC PROC [opRope, ipName: Rope.ROPE, currentWDir: Rope.ROPE, router: MsgRouter] RETURNS [fullName: Rope.ROPE _ NIL, success: BOOL _ TRUE] = { [fullName, success, ----] _ GetGenericFileName[opRope, ipName, currentWDir, "ip", LIST["gargoyle", "script", "mesa", "tioga"], router]; }; GetGargoyleFileName: PUBLIC PROC [opRope, ggName: Rope.ROPE, currentWDir: Rope.ROPE, router: MsgRouter, emergency: BOOL _ FALSE] RETURNS [fullName: Rope.ROPE _ NIL, success: BOOL _ TRUE, versionSpecified: BOOL _ FALSE] = { [fullName, success, versionSpecified] _ GetGenericFileName[opRope, ggName, currentWDir, "gargoyle", LIST["ip", "interpress", "script", "mesa", "tioga"], router, emergency]; }; GetScriptFileName: PUBLIC PROC [opRope, scriptName: Rope.ROPE, currentWDir: Rope.ROPE, router: MsgRouter] RETURNS [fullName: Rope.ROPE _ NIL, success: BOOL _ TRUE] = { [fullName, success, ----] _ GetGenericFileName[opRope, scriptName, currentWDir, "script", LIST["gargoyle", "ip", "interpress", "mesa", "tioga"], router]; }; <> OpenInterpressOrComplain: PUBLIC PROC [opRope: Rope.ROPE, router: MsgRouter, fullName: Rope.ROPE] RETURNS [ipMaster: Interpress.Master, success: BOOL _ TRUE] = { LogIt: Interpress.LogProc = { Feedback.PutF[router, oneLiner, $Log, "%g: %g", [rope[opRope]], [rope[explanation]] ]; }; ipMaster _ Interpress.Open[fileName: fullName, log: LogIt ! IPInterpreter.Error => { -- raised if the file is non-existant Feedback.PutF[router, oneLiner, $Complaint, "%g failed: %g for %g", [rope[opRope]], [rope[explanation]], [rope[fullName]] ]; GOTO Quit; }; FS.Error => { Feedback.PutF[router, oneLiner, $Complaint, "%g failed: %g for %g", [rope[opRope]], [rope[error.explanation]], [rope[fullName]] ]; GOTO Quit; }; PFS.Error => { -- yuck: maybe Interpress.Open shouldn't raise either FS or PFS errors! Feedback.PutF[router, oneLiner, $Complaint, "%g failed: %g for %g", [rope[opRope]], [rope[error.explanation]], [rope[fullName]] ]; GOTO Quit; }; IPMaster.Error => { -- ErrorDesc: TYPE = RECORD[code: ATOM, explanation: ROPE] Feedback.PutF[router, oneLiner, $Complaint, "%g failed: %g for %g", [rope[opRope]], [rope[error.explanation]], [rope[fullName]] ]; GOTO Quit; }; -- need this even with LogProc#NIL Imager.Error => { -- ErrorDesc: TYPE = RECORD [code: ATOM, explanation: ROPE] Feedback.PutF[router, oneLiner, $Complaint, "%g failed: %g for %g", [rope[opRope]], [rope[error.explanation]], [rope[fullName]] ]; GOTO Quit; }; IO.Error, IO.EndOfStream => { Feedback.PutF[router, oneLiner, $Complaint, "%g failed: IO Stream Error for %g", [rope[opRope]], [rope[fullName]] ]; GOTO Quit; }; ]; IF ipMaster.pages=0 THEN { Feedback.PutF[router, oneLiner, $Complaint, "%g failed: zero pages in %g", [rope[opRope]], [rope[fullName]] ]; GOTO Quit; }; EXITS Quit => success _ FALSE; }; END.