DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: B T

⟦a240b1ae5⟧ TextFile

    Length: 1205 (0x4b5)
    Types: TextFile
    Names: »B«

Derivation

└─⟦180fe333a⟧ Bits:30000405 8mm tape, Rational 1000, SW CATALOG, 10_20_0
└─⟦180fe333a⟧ Bits:30000537 8mm tape, Rational 1000, SW Catalog 10_20_0
    └─⟦5cb1d1d7f⟧ »DATA« 
        └─⟦3b1ee7bd8⟧ 
            └─⟦this⟧ 

TextFile

with Inquiry_Operations;
use Inquiry_Operations;
--  This subprogram acts as the 'main' routine of the portion
--  of the Benchmark system that deals with information
--  retrieval and user interaction.
procedure Report_Writer is
begin
    Initialize;     -- display greeting and helpful prompt
    loop
        case Request is
            when Collect_Command =>
                Collect_Files;
                -- set up statistics files
            when Select_Command =>
                Select_Attributes;
                -- customize display
            when List_Command =>
                List_Statistics;
                -- display statistics and database attributes
            when Save_Command =>
                Save_Statistics;
                -- display statistics and database attributes (to named file)
            when Print_Command =>
                Print_Files;
                -- dump contents of statistics files to screen
            when Help_Command =>
                Help_Prompt;
                -- display helpful prompt
            when Quit_Command =>
                Quit;
                exit;
                -- close files
        end case;
    end loop;
end Report_Writer;