DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400

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

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦d469aaf55⟧ Ada Source

    Length: 10240 (0x2800)
    Types: Ada Source
    Notes: 03_class, FILE, R1k_Segment, e3_tag, package body Document, seg_045811

Derivation

└─⟦8527c1e9b⟧ Bits:30000544 8mm tape, Rational 1000, Arrival backup of disks in PAM's R1000
    └─ ⟦cfc2e13cd⟧ »Space Info Vol 2« 
        └─⟦this⟧ 

E3 Source Code



with Text_Io, Filtre_D_Entree, Nos_Chaines;
package body Document is

    Ligne_Courante : Numeros_De_Lignes.Numero := 1;
    The_File : Text_Io.File_Type;

------------------------------------------------------------------------------

    procedure Open is
    begin
        Text_Io.Set_Input (Text_Io.Standard_Input);
    exception
        when others =>
            Text_Io.Put_Line ("Erreur open");
    end Open;

------------------------------------------------------------------------------

    procedure Close is
    begin
        Text_Io.Put_Line ("fin de programme");
--        Text_Io.Set_Input (Text_Io.Standard_Input);
    exception
        when others =>
            Text_Io.Put_Line ("Erreur Close");
    end Close;


------------------------------------------------------------------------------

    procedure Fopen (File_Name : in String) is
    begin
        Text_Io.Open (The_File, Text_Io.In_File, File_Name);
        Text_Io.Set_Input (The_File);
        Filtre_D_Entree.Purger;
    exception
        when others =>
            Text_Io.Put_Line ("Erreur Fopen");
    end Fopen;

------------------------------------------------------------------------------

    procedure Fclose is
    begin
        Text_Io.Close (The_File);
        Text_Io.Set_Input (Text_Io.Standard_Input);
    exception
        when others =>
            Text_Io.Put_Line ("Erreur Fclose");
    end Fclose;

------------------------------------------------------------------------------
    procedure File_Get (Le_Mot : out Mots.Mot;
                        Le_Numero : out Numeros_De_Lignes.Numero) is

        Caractere_Temporaire : Character;
        Mot_Temporaire : String (1 .. 80);
        Indice : Natural := 0;

        function "+" (X, Y : in Numeros_De_Lignes.Numero)
                     return Numeros_De_Lignes.Numero
            renames Numeros_De_Lignes."+";

    begin
        loop
            Filtre_D_Entree.File_Entrer (Caractere_Temporaire);
            case Caractere_Temporaire is
                when 'a' .. 'z' | 'A' .. 'Z' | '0' .. '9' | '_' =>
                    Indice := Indice + 1;
                    Mot_Temporaire (Indice) := Caractere_Temporaire;
                when Filtre_D_Entree.Termine_Fichier =>
                    raise Fin_De_Fichier;
                when Filtre_D_Entree.Termine_Page =>
                    null;
                when Filtre_D_Entree.Termine_Ligne =>
                    if Indice > 0 then
                        Mots.Creer (Le_Mot, Mot_Temporaire (1 .. Indice));
                        Le_Numero := Ligne_Courante + 1;
                        Ligne_Courante := Ligne_Courante + 1;
                        return;
                    end if;
                when others =>
                    if Indice > 0 then
                        Mots.Creer (Le_Mot, Mot_Temporaire (1 .. Indice));
                        Le_Numero := Ligne_Courante;
                        return;
                    end if;
            end case;
        end loop;
    exception
        when Text_Io.End_Error =>
            raise Fin_De_Fichier;
        when Constraint_Error =>
            raise Mot_Trop_Long;
    end File_Get;
    ---------------------------------------------------------------------------

    function En_Fin_De_Fichier return Boolean is
    begin
        return Text_Io.End_Of_File;
    end En_Fin_De_Fichier;

------------------------------------------------------------------------------
--procedure purger_mot_courant is
--begin
--  if mot_courant <= 4 then
--    mot_courant := 0;
--  end if;
--  Mot_Temporaire(1..80) := (others=>' ');
--  Mots.Creer (Le_Mot, Mot_Temporaire (1 .. Indice));
--end purger_mot_courant;

--    procedure Purger is
--    begin
--        Mot_Courant := 0;
--        Existe_Instruction := False;
--    end Purger;


------------------------------------------------------------------------------

    procedure Get (Table_Of_Word : out Mots.T_Tab_Commande;
                   Number_Of_Words : out Nombre_De_Mots.Numero) is separate;
end Document;


E3 Meta Data

    nblk1=9
    nid=9
    hdr6=a
        [0x00] rec0=22 rec1=00 rec2=01 rec3=01e
        [0x01] rec0=1d rec1=00 rec2=07 rec3=022
        [0x02] rec0=16 rec1=00 rec2=06 rec3=05c
        [0x03] rec0=20 rec1=00 rec2=05 rec3=02e
        [0x04] rec0=0a rec1=00 rec2=04 rec3=000
        [0x05] rec0=01 rec1=00 rec2=08 rec3=074
        [0x06] rec0=14 rec1=00 rec2=02 rec3=048
        [0x07] rec0=13 rec1=00 rec2=09 rec3=000
        [0x08] rec0=16 rec1=00 rec2=03 rec3=000
    tail 0x217475f9a864b64b61d67 0x42a00088462060003
Free Block Chain:
  0x9: 0000  00 02 02 80 80 06 30 20 74 68 65 6e 06 00 3d 20  ┆      0 then  = ┆
  0x2: 0000  00 08 03 fc 00 31 20 20 20 20 20 20 20 20 20 20  ┆     1          ┆
  0x8: 0000  00 03 00 70 80 30 65 6e 20 27 61 27 20 2e 2e 20  ┆   p 0en 'a' .. ┆
  0x3: 0000  00 00 00 6c 80 33 20 20 20 4d 6f 74 5f 54 65 6d  ┆   l 3   Mot_Tem┆