|
|
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 - metrics - downloadIndex: T V
Length: 1247 (0x4df)
Types: TextFile
Names: »V«
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS
└─⟦91c658230⟧ »DATA«
└─⟦458657fb6⟧
└─⟦a5bbbb819⟧
└─⟦this⟧
└─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3
└─⟦fc9b38f02⟧ »DATA«
└─⟦9b46a407a⟧
└─⟦eec0a994f⟧
└─⟦this⟧
with Calendar;
package Accounting_Information is
type Iterator is private;
type Entry_Kind is (Session, -- Entry when a user logs out
Job); -- Entry for a user Job (after logout)
-- Iterator Routines
function Initialize (Accounting_Library : String := "!Machine.Accounting")
return Iterator;
-- Utilizes filenames of the form <Accounting_Library>.Activity_@
--
procedure Next (Iter : Iterator);
function Done (Iter : Iterator) return Boolean;
-- Information obtainable for each entry
function Kind (Iter : Iterator) return Entry_Kind;
function Username (Iter : Iterator) return String;
function Session (Iter : Iterator) return String;
function Login_Time (Iter : Iterator) return Calendar.Time;
function Logoff_Time (Iter : Iterator) return Calendar.Time;
function Login_Duration (Iter : Iterator) return Duration;
function Cpu_Used (Iter : Iterator) return Duration;
function Total_Disk_Io (Iter : Iterator) return Natural;
function Total_Jobs_Run (Iter : Iterator) return Natural;
function Image (Iter : Iterator) return String;
private
type Handle;
type Iterator is access Handle;
end Accounting_Information;