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 - download
Index: ┃ T V

⟦4ee8288b7⟧ TextFile

    Length: 2234 (0x8ba)
    Types: TextFile
    Names: »V«

Derivation

└─⟦5829e5ed5⟧ Bits:30000534 8mm tape, Rational 1000, RCI 2_0_5
    └─ ⟦c9a165082⟧ »DATA« 
        └─⟦c3895f76e⟧ 
            └─⟦this⟧ 

TextFile

with Bounded_String;
with Directory;
with Profile;
with Simple_Status;

pragma Private_Eyes_Only;
with Rcf_Imports;
package Import_Interface is
    type Import_Iterator is private;

    procedure Next (Imports : in out Import_Iterator);

    procedure Reset (Imports : in out Import_Iterator);

    function Value (Imports : Import_Iterator) return String;

    function Done (Imports : Import_Iterator) return Boolean;

    Done_Error : exception;

    procedure Get_Imports (For_View : String := "<CURSOR>";
                           Closure : Boolean := False;
                           Imports : out Directory.Object_Set.Iterator;
                           Condition : in out Simple_Status.Condition;
                           Response : Profile.Response_Profile := Profile.Get);
    -- Return For_View's imports.  If Closure = True, return the closure of
    -- imports.

    procedure Get_Remote_Imports
                 (For_View : String := "<CURSOR>";
                  Closure : Boolean := False;
                  Imports : in out Import_Iterator;
                  Condition : in out Simple_Status.Condition;
                  Response : Profile.Response_Profile := Profile.Get);
    -- Return remote imports for For_View.  If Closure = True, return the
    -- closure of remote imports.

    procedure Has_Static_Imports
                 (View : String := "<CURSOR>";
                  Result : out Boolean;
                  Condition : in out Simple_Status.Condition;
                  Response : Profile.Response_Profile := Profile.Get);
    -- This should be a function.  Return True if Imports_Are_Static.

    type Data_Array is array (Natural range <>) of Directory.Object;

    type Unit_List (Size : Natural) is
        record
            Condition : Simple_Status.Condition;
            Data : Data_Array (1 .. Size);
        end record;
    -- List of directory objects

    function Get_Referencers
                (For_View : Directory.Object; Closure : Boolean := False)
                return Unit_List;
    -- Return the referencers of a given view

    pragma Module_Name (4, 4139);
    pragma Bias_Key (32);

private
    type Import_Iterator is new Rcf_Imports.Import_Iterator;
end Import_Interface;