DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ B T ┃
Length: 4425 (0x1149) Types: TextFile Names: »B«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11 └─ ⟦129cab021⟧ »DATA« └─⟦this⟧ └─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04 └─ ⟦d65440be7⟧ »DATA« └─⟦this⟧
with Communications; with Files; with Interchange; with Mac_Files; with Mac_Types; with Mac_Text; with Osutils; with Rational_Error; with Talk_Utils; with Text_Io; use Text_Io; package body Create_R is package Create_F is procedure Is_Directory_In (Is_A_Directory : Boolean); procedure Create_Directories_In (Create_Them : Boolean); procedure Remote_File_In (Name : Mac_Text.Text); procedure Options_In (Options : Mac_Text.Text); procedure End_Create; end Create_F; package body Create_F is Err : Mac_Types.Oserr := Mac_Types.Noerr; Is_Directory : Boolean; Create_Directories : Boolean; procedure Is_Directory_In (Is_A_Directory : Boolean) is begin Err := Mac_Types.Noerr; Create_Directories := True; Is_Directory := Is_A_Directory; end Is_Directory_In; procedure Create_Directories_In (Create_Them : Boolean) is begin Create_Directories := Create_Them; end Create_Directories_In; procedure Remote_File_In (Name : Mac_Text.Text) is begin if Create_Directories then Err := Mac_Files.Create_Sub_Directories (Name); if Err /= Mac_Types.Noerr then return; end if; if Is_Directory then Err := Mac_Files.Create_Directory (Name); else Err := Mac_Files.Create_File (Name); end if; end if; end Remote_File_In; procedure Options_In (Options : Mac_Text.Text) is begin null; end Options_In; procedure End_Create is begin if Err /= Mac_Types.Noerr then Rational_Error.Raise_Mac_Error (Err); end if; end End_Create; end Create_F; procedure Read (A_Connection : in out Communications.Connection) is I : Mac_Types.Longint; B : Boolean; T : Mac_Text.Text (256); begin Put_Line ("create_r:read begin"); Interchange.Get_Int (A_Connection, I); if I /= Talk_Utils.F_Is_Directory then Rational_Error.Raise_Error (Rational_Error.Internal_Error); end if; Interchange.Get_Bool (A_Connection, B); Create_F.Is_Directory_In (B); Put ("create_r:is directory: "); Put_Line (Boolean'Image (B)); Interchange.Get_Int (A_Connection, I); if I /= Talk_Utils.F_Create_Dir then Rational_Error.Raise_Error (Rational_Error.Internal_Error); end if; Interchange.Get_Bool (A_Connection, B); Create_F.Create_Directories_In (B); Interchange.Get_Int (A_Connection, I); if I /= Talk_Utils.F_Remote_File then Rational_Error.Raise_Error (Rational_Error.Internal_Error); end if; Interchange.Get_Text (A_Connection, T); Create_F.Remote_File_In (T); Put ("create_r: file '"); for I in 1 .. Mac_Text.Length (T) loop Put (Character'Val (Mac_Types.Char'Pos (Mac_Text.Value (I, T)))); end loop; Put_Line ("'"); Interchange.Get_Int (A_Connection, I); if I /= Talk_Utils.F_Options then Rational_Error.Raise_Error (Rational_Error.Internal_Error); end if; Interchange.Get_Text (A_Connection, T); Create_F.Options_In (T); Interchange.Get_Int (A_Connection, I); if I /= Talk_Utils.F_Delimitor then Rational_Error.Raise_Error (Rational_Error.Internal_Error); end if; Interchange.Get_Int (A_Connection, I); if I /= Talk_Utils.R_Create then Rational_Error.Raise_Error (Rational_Error.Internal_Error); end if; Put_Line ("create_r:read end"); end Read; procedure Write (A_Connection : in out Communications.Connection) is begin Put_Line ("create_r:write begin"); begin Create_F.End_Create; exception when others => Rational_Error.Report (A_Connection, Talk_Utils.R_Create, Rational_Error.Get); end; Interchange.Put_Int (A_Connection, Talk_Utils.F_Delimitor); Interchange.Put_Int (A_Connection, Talk_Utils.R_Create); Put_Line ("create_r:write end"); end Write; end Create_R;