1. --  (c) Copyright, Real-Time Innovations, $Date;: 2012-10-31 #$ 
  2. --  All rights reserved. 
  3. -- 
  4. --  No duplications, whole or partial, manual or electronic, may be made 
  5. --  without express written permission.  Any such copies, or 
  6. --  revisions thereof, must display this notice unaltered. 
  7. --  This code contains trade secrets of Real-Time Innovations, Inc. 
  8.  
  9. with Ada.Unchecked_Deallocation; 
  10.  
  11. with Ada.Calendar; 
  12. with Ada.Real_Time; 
  13. with Interfaces; 
  14. private with Interfaces.C; 
  15. with Interfaces.C.Strings; 
  16.  
  17. with DDS_Support; 
  18. with DDS_Support.Sequences_Generic; 
  19.  
  20. with System; 
  21.  
  22. private with RTIDDS.Low_Level.ndds_dds_c_dds_c_subscription_h; 
  23. with RTIDDS.Low_Level.ndds_dds_c_dds_c_publication_h; 
  24. with RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h; 
  25. private with RTIDDS.Low_Level.ndds_dds_c_dds_c_domain_h; 
  26. with RTIDDS.Low_Level.ndds_dds_c_dds_c_common_h; 
  27. with RTIDDS.Low_Level.ndds_dds_c_dds_c_flowcontroller_h; 
  28. with RTIDDS.Low_Level.ndds_ndds_config_c_h; 
  29. with RTIDDS.Low_Level.ndds_dds_c_dds_c_builtin_impl_h; 
  30. with RTIDDS.Low_Level.ndds_dds_c_dds_c_typecode_h; 
  31. with RTIDDS.Low_Level.ndds_dds_c_dds_c_typeobject_h; 
  32. with RTIDDS.Low_Level.ndds_pres_pres_common_impl_h; 
  33. with RTIDDS.Low_Level.ndds_osapi_osapi_hash_h; 
  34. with RTIDDS.Low_Level.ndds_dds_c_dds_c_topic_h; 
  35. with Ada.Finalization; 
  36. with RTIDDS.Low_Level.ndds_reda_reda_fastBuffer_h; 
  37. with RTIDDS.Low_Level.ndds_dds_c_dds_c_sqlfilter_h; 
  38. with RTIDDS.Low_Level.ndds_pres_pres_participant_h; 
  39. with RTIDDS.To_Chars_Ptr; 
  40. --  with Rtidds.Annotations; use Rtidds.Annotations; 
  41.  
  42. pragma Elaborate_All (DDS_Support.Sequences_Generic); 
  43.  
  44. --  <module name="DDSInfrastructureModule" actualName="Infrastructure Module">InfrastructureGroupDocs</module> 
  45. package DDS is 
  46.    use RTIDDS.Low_Level.ndds_ndds_config_c_h; 
  47.  
  48.  
  49.    --  Note that this package dependes heavely on the underlaying C implementation 
  50.    --  and will change when a full Ada implementation is avalible. 
  51.    -- 
  52.    --  Worth to notice is that erros from the underlaying midlleware is 
  53.    --  translated to exceptions, since there is no posibillity to ignore 
  54.    --  function returns in Ada. 
  55.    -- 
  56.    --  From osapi_types.h 
  57.    -- 
  58.  
  59.    Binding_Version : constant Standard.String := "5.10"; 
  60.  
  61.    --  ------------------------------------------------- 
  62.    --                 CDR Primitive Types 
  63.    --  ------------------------------------------------- 
  64.  
  65.    type    Short              is new Interfaces.C.short; 
  66.    --  <defgroup>CdrGroupDocs</defgroup> 
  67.    --  <dref>Short</dref> 
  68.  
  69.    type    Long               is new Interfaces.C.int; 
  70.    --  <dref>Long</dref> 
  71.  
  72.    subtype Integer  is Long; 
  73.    subtype Natural  is Integer range 0 .. Integer'Last; 
  74.    subtype Positive is Integer range 1 .. Integer'Last; 
  75.  
  76.    type Long_Long          is new Interfaces.Integer_64; 
  77.    --  <dref>LongLong</dref> 
  78.  
  79.    type Unsigned_Short     is new Interfaces.Unsigned_16; 
  80.    --  <dref>UnsignedShort</dref> 
  81.  
  82.    type Unsigned_Long      is new Interfaces.Unsigned_32; 
  83.    --  <dref>UnsignedLong</dref> 
  84.  
  85.    type Unsigned_Long_Long is new Interfaces.Unsigned_64; 
  86.    --  <dref>UnsignedLongLong</dref> 
  87.  
  88.    type Enum               is new Interfaces.Unsigned_32; 
  89.    --  <dref>CdrEnum</dref> 
  90.  
  91.    type Float           is new Interfaces.IEEE_Float_32; 
  92.    --  <dref>Float</dref> 
  93.  
  94.    type Double          is new Interfaces.IEEE_Float_64; 
  95.    --  <dref>Double</dref> 
  96.  
  97.    type Long_Double     is new Interfaces.IEEE_Extended_Float; 
  98.    --  <dref>LongDouble</dref> 
  99.  
  100.    subtype Char            is Standard.Character; 
  101.    --  <dref>Char</dref> 
  102.  
  103.    subtype Wchar           is Standard.Wide_Character; 
  104.    --  <dref>Wchar</dref> 
  105.  
  106.    subtype Octet           is Interfaces.Unsigned_8; 
  107.    --  <dref>Octet</dref> 
  108.  
  109.    type Octets is record 
  110.       Length : Integer; 
  111.       Value  : System.Address; 
  112.    end record with 
  113.      Convention => C; 
  114.    --  <dref>Octets</dref> 
  115.    --  <dref name="length">Octets_length</dref> 
  116.    --  <dref name="value">Octets_value</dref> 
  117.  
  118.    Null_Octets : constant Octets := (0, System.Null_Address); 
  119.    subtype Boolean         is Standard.Boolean; 
  120.    --  <dref>Boolean</dref> 
  121.  
  122.    --  subtype String          is Interfaces.C.Strings.chars_ptr; 
  123.  
  124.    type String  is limited record 
  125.       Data  : aliased Interfaces.C.Strings.chars_ptr := Interfaces.C.Strings.Null_Ptr; 
  126.       pragma Obsolescent (Data, "This is internal data and not to be referenced outside the DDS hierachy:" & 
  127.                             "use Operations on the whole record instead!"); 
  128.    end record with 
  129.      Convention => C; 
  130.    --  <dref>String</dref> 
  131.  
  132.    function Length (Item : String) return Natural; 
  133.    function "=" (L : DDS.String; R : Standard.String) return Standard.Boolean; 
  134.    function "=" (L : Standard.String; R : DDS.String) return Standard.Boolean; 
  135.    function "&" (L : DDS.String; R : Standard.String) return Standard.String; 
  136.    function "&" (L : Standard.String; R : DDS.String) return Standard.String; 
  137.  
  138.  
  139.  
  140.    type KeyedString is record 
  141.       Key   : DDS.String; 
  142.       Value : DDS.String; 
  143.    end record with 
  144.      Convention => C; 
  145.    --  <dref>KeyedString</dref> 
  146.    --  <dref name="key">KeyedString_key</dref> 
  147.    --  <dref name="value">KeyedString_value</dref> 
  148.  
  149.    type KeyedOctets is record 
  150.       Key    : DDS.String; 
  151.       Value  : Octets; 
  152.    end record with 
  153.      Convention => C; 
  154.    --  <dref>KeyedOctets</dref> 
  155.    --  <dref name="key">KeyedOctets_key</dref> 
  156.    --  <dref name="length">KeyedOctets_length</dref> 
  157.    --  <dref name="value">KeyedOctets_value</dref> 
  158.  
  159.  
  160.    NULL_STRING     : constant DDS.String := (Data => Interfaces.C.Strings.Null_Ptr); 
  161.  
  162.    type Wchars_Ptr is access all Standard.Wide_Character 
  163.       with Convention => C; 
  164.  
  165.    type Wide_String is limited record 
  166.       Data : Wchars_Ptr; 
  167.    end record with 
  168.      Convention => C; 
  169.  
  170.    --  <dref>Wstring</dref> 
  171.  
  172.    function WValue (Item : Wchars_Ptr) return Interfaces.C.char16_array; 
  173.    function "+" (Left : Wchars_Ptr; Right : Interfaces.C.size_t) return Wchars_Ptr; 
  174.    function Peek (From : Wchars_Ptr) return Standard.Wide_Character; 
  175.  
  176.    --  Pointers on the previous types 
  177.  
  178.    type    Short_Ptr              is access all Short; 
  179.    type    Long_Ptr               is access all Long; 
  180.    type    Long_Long_Ptr          is access all Long_Long; 
  181.    type    Unsigned_Short_Ptr     is access all Unsigned_Short; 
  182.    type    Unsigned_Long_Ptr      is access all Unsigned_Long; 
  183.    type    Unsigned_Long_Long_Ptr is access all Unsigned_Long_Long; 
  184.    type    Enum_Ptr               is access all Enum; 
  185.    type    Float_Ptr              is access all Float; 
  186.    type    Double_Ptr             is access all Double; 
  187.    type    Long_Double_Ptr        is access all Long_Double; 
  188.    type    Char_Ptr               is access all Char; 
  189.    type    Wchar_Ptr              is access all Wchar; 
  190.    type    Octet_Ptr              is access all Octet; 
  191.    type    Octets_Ptr             is access all Octets; 
  192.    type    Boolean_Ptr            is access all Boolean; 
  193.    type    String_Ptr             is access all String; 
  194.    type    KeyedString_Ptr        is access all KeyedString; 
  195.    type    KeyedOctets_Ptr        is access all KeyedOctets; 
  196.    type    Wide_String_Ptr        is access all Wide_String; 
  197.  
  198.    --  ... and deallocation method for each pointer type 
  199.  
  200.    procedure Deallocate is new Ada.Unchecked_Deallocation (Short, Short_Ptr); 
  201.    procedure Deallocate is new Ada.Unchecked_Deallocation (Long, Long_Ptr); 
  202.    procedure Deallocate is new Ada.Unchecked_Deallocation (Long_Long, Long_Long_Ptr); 
  203.    procedure Deallocate is new Ada.Unchecked_Deallocation (Unsigned_Short, Unsigned_Short_Ptr); 
  204.    procedure Deallocate is new Ada.Unchecked_Deallocation (Unsigned_Long, Unsigned_Long_Ptr); 
  205.    procedure Deallocate is new Ada.Unchecked_Deallocation (Unsigned_Long_Long, Unsigned_Long_Long_Ptr); 
  206.    procedure Deallocate is new Ada.Unchecked_Deallocation (Enum, Enum_Ptr); 
  207.    procedure Deallocate is new Ada.Unchecked_Deallocation (Float, Float_Ptr); 
  208.    procedure Deallocate is new Ada.Unchecked_Deallocation (Double, Double_Ptr); 
  209.    procedure Deallocate is new Ada.Unchecked_Deallocation (Long_Double, Long_Double_Ptr); 
  210.    procedure Deallocate is new Ada.Unchecked_Deallocation (Char, Char_Ptr); 
  211.    procedure Deallocate is new Ada.Unchecked_Deallocation (Wchar, Wchar_Ptr); 
  212.    procedure Deallocate is new Ada.Unchecked_Deallocation (Octet, Octet_Ptr); 
  213.    procedure Deallocate is new Ada.Unchecked_Deallocation (Boolean, Boolean_Ptr); 
  214.    procedure Deallocate is new Ada.Unchecked_Deallocation (String, String_Ptr); 
  215.    procedure Deallocate is new Ada.Unchecked_Deallocation (Wide_String, Wide_String_Ptr); 
  216.  
  217.    DOMAIN_ID_MAX : constant := 250; 
  218.  
  219.    type DomainId_T is new Long range 0 .. DOMAIN_ID_MAX 
  220.      with Default_Value => 0; 
  221.    --  <dref>DomainId_t</dref> 
  222.  
  223.    Default_Domain  : constant DomainId_T := 0; 
  224.  
  225.    -- 
  226.    --  From dds_c/dds_c_infrastructure.h 
  227.    -- 
  228.  
  229.    --  ------------------------------------------------- 
  230.    --                 CDR Primitive Types Array and Sequences 
  231.    --  ------------------------------------------------- 
  232.  
  233.    type Short_Array is array (Natural range <>) of aliased Short; 
  234.    procedure Initialize (Self  : in out Short); 
  235.    procedure Finalize (Self  : in out Short); 
  236.    procedure Copy (Dst : in out Short; Src : in Short); 
  237.    package Short_Seq is new DDS_Support.Sequences_Generic 
  238.      (Short, 
  239.       Short_Ptr, 
  240.       DDS.Natural, 
  241.       1, 
  242.       Short_Array); 
  243.    --  <defgroup>SequenceGroupDocs</defgroup> 
  244.    --  <dref>ShortSeq</dref> 
  245.  
  246.    type Long_Array is array (Natural range <>) of aliased Long; 
  247.    procedure Initialize (Self  : in out Long); 
  248.    procedure Finalize (Self  : in out Long); 
  249.    procedure Copy (Dst : in out Long; Src : in Long); 
  250.    package Long_Seq is new DDS_Support.Sequences_Generic 
  251.      (Long, 
  252.       Long_Ptr, 
  253.       DDS.Natural, 
  254.       1, 
  255.       Long_Array); 
  256.    --  <dref>LongSeq</dref> 
  257.  
  258.    type Long_Long_Array is array (Natural range <>) of aliased Long_Long; 
  259.  
  260.    procedure Initialize (Self  : in out Long_Long); 
  261.    procedure Finalize (Self  : in out Long_Long); 
  262.    procedure Copy (Dst : in out Long_Long; Src : in Long_Long); 
  263.    package Long_Long_Seq is new DDS_Support.Sequences_Generic 
  264.      (Long_Long, 
  265.       Long_Long_Ptr, 
  266.       DDS.Natural, 
  267.       1, 
  268.       Long_Long_Array); 
  269.    --  <dref>LongLongSeq</dref> 
  270.  
  271.    type Unsigned_Short_Array is array (Natural range <>) of aliased Unsigned_Short; 
  272.    procedure Initialize (Self  : in out Unsigned_Short); 
  273.    procedure Finalize (Self  : in out Unsigned_Short); 
  274.    procedure Copy (Dst : in out Unsigned_Short; Src : in Unsigned_Short); 
  275.    package Unsigned_Short_Seq is new DDS_Support.Sequences_Generic 
  276.      (Unsigned_Short, 
  277.       Unsigned_Short_Ptr, 
  278.       DDS.Natural, 
  279.       1, 
  280.       Unsigned_Short_Array); 
  281.    --  <dref>UnsignedShortSeq</dref> 
  282.  
  283.    type Unsigned_Long_Array is array (Natural range <>) of aliased Unsigned_Long; 
  284.    procedure Initialize (Self  : in out Unsigned_Long); 
  285.    procedure Finalize (Self  : in out Unsigned_Long); 
  286.    procedure Copy (Dst : in out Unsigned_Long; Src : in Unsigned_Long); 
  287.    package Unsigned_Long_Seq is new DDS_Support.Sequences_Generic 
  288.      (Unsigned_Long, 
  289.       Unsigned_Long_Ptr, 
  290.       DDS.Natural, 
  291.       1, 
  292.       Unsigned_Long_Array); 
  293.    --  <dref>UnsignedLongSeq</dref> 
  294.  
  295.    type Unsigned_Long_Long_Array is array (Natural range <>) of aliased Unsigned_Long_Long; 
  296.    procedure Initialize (Self  : in out Unsigned_Long_Long); 
  297.    procedure Finalize (Self  : in out Unsigned_Long_Long); 
  298.    procedure Copy (Dst : in out Unsigned_Long_Long; Src : in Unsigned_Long_Long); 
  299.    package Unsigned_Long_Long_Seq is new DDS_Support.Sequences_Generic 
  300.      (Unsigned_Long_Long, 
  301.       Unsigned_Long_Long_Ptr, 
  302.       DDS.Natural, 
  303.       1, 
  304.       Unsigned_Long_Long_Array); 
  305.    --  <dref>UnsignedLongLongSeq</dref> 
  306.  
  307.    type Enum_Array is array (Natural range <>) of aliased Enum; 
  308.    procedure Initialize (Self  : in out Enum); 
  309.    procedure Finalize (Self  : in out Enum); 
  310.    procedure Copy (Dst : in out Enum; Src : in Enum); 
  311.    package Enum_Seq is new DDS_Support.Sequences_Generic 
  312.      (Enum, 
  313.       Enum_Ptr, 
  314.       DDS.Natural, 
  315.       1, 
  316.       Enum_Array); 
  317.  
  318.    type Float_Array is array (Natural range <>) of aliased Float; 
  319.    procedure Initialize (Self  : in out Float); 
  320.    procedure Finalize (Self  : in out Float); 
  321.    procedure Copy (Dst : in out Float; Src : in Float); 
  322.    package Float_Seq is new DDS_Support.Sequences_Generic 
  323.      (Float, 
  324.       Float_Ptr, 
  325.       DDS.Natural, 
  326.       1, 
  327.       Float_Array); 
  328.    --  <dref>FloatSeq</dref> 
  329.  
  330.    type Double_Array is array (Natural range <>) of aliased Double; 
  331.    procedure Initialize (Self  : in out Double); 
  332.    procedure Finalize (Self  : in out Double); 
  333.    procedure Copy (Dst : in out Double; Src : in Double); 
  334.    package Double_Seq is new DDS_Support.Sequences_Generic 
  335.      (Double, 
  336.       Double_Ptr, 
  337.       DDS.Natural, 
  338.       1, 
  339.       Double_Array); 
  340.    --  <dref>DoubleSeq</dref> 
  341.  
  342.    type Long_Double_Array is array (Natural range <>) of aliased Long_Double; 
  343.    procedure Initialize (Self  : in out Long_Double); 
  344.    procedure Finalize (Self  : in out Long_Double); 
  345.    procedure Copy (Dst : in out Long_Double; Src : in Long_Double); 
  346.    package Long_Double_Seq is new DDS_Support.Sequences_Generic 
  347.      (Long_Double, 
  348.       Long_Double_Ptr, 
  349.       DDS.Natural, 
  350.       1, 
  351.       Long_Double_Array); 
  352.    --  <dref>LongDoubleSeq</dref> 
  353.  
  354.    type Char_Array is array (Natural range <>) of aliased Char; 
  355.    procedure Initialize (Self  : in out Char); 
  356.    procedure Finalize (Self  : in out Char); 
  357.    procedure Copy (Dst : in out Char; Src : in Char); 
  358.    package Char_Seq is new DDS_Support.Sequences_Generic 
  359.      (Char, 
  360.       Char_Ptr, 
  361.       DDS.Natural, 
  362.       1, 
  363.       Char_Array); 
  364.    --  <dref>CharSeq</dref> 
  365.  
  366.    type Wchar_Array is array (Natural range <>) of aliased Wchar; 
  367.    procedure Initialize (Self  : in out Wchar); 
  368.    procedure Finalize (Self  : in out Wchar); 
  369.    procedure Copy (Dst : in out Wchar; Src : in Wchar); 
  370.    package Wchar_Seq is new DDS_Support.Sequences_Generic 
  371.      (Wchar, 
  372.       Wchar_Ptr, 
  373.       DDS.Natural, 
  374.       1, 
  375.       Wchar_Array); 
  376.    --  <dref>WcharSeq</dref> 
  377.  
  378.    type Octet_Array is array (Natural range <>) of aliased Octet; 
  379.    pragma Convention (C, Octet_Array); 
  380.    procedure Initialize (Self  : in out Octet); 
  381.    procedure Finalize (Self  : in out Octet); 
  382.    procedure Copy (Dst : in out Octet; Src : in Octet); 
  383.    package Octet_Seq is new DDS_Support.Sequences_Generic 
  384.      (Octet, 
  385.       Octet_Ptr, 
  386.       DDS.Natural, 
  387.       1, 
  388.       Octet_Array); 
  389.    --  <dref>OctetSeq</dref> 
  390.  
  391.    function Octets_Of (Item : Octet_Array) return Octets is 
  392.      (Octets'(Length =>  Item'Length, Value => Item (Item'First)'Address)); 
  393.    function Octets_Of (Item : Octet_Seq.Sequence) return Octets is 
  394.      (Octets'(Length =>  Item.Length, Value => Item.Contiguous_Buffer.all'Address)); 
  395.  
  396.  
  397.    type Octets_Array is array (Natural range <>) of aliased Octets; 
  398.    pragma Convention (C, Octets_Array); 
  399.    procedure Initialize (Self : in out Octets); 
  400.    procedure Finalize (Self : in out Octets); 
  401.    procedure Copy (Dst : in out Octets; Src : in Octets); 
  402.    package Octets_Seq is new DDS_Support.Sequences_Generic 
  403.      (Octets, 
  404.       Octets_Ptr, 
  405.       DDS.Natural, 
  406.       1, 
  407.       Octets_Array); 
  408.    --  <dref>OctetsSeq</dref> 
  409.  
  410.    type Boolean_Array is array (Natural range <>) of aliased Boolean; 
  411.    procedure Initialize (Self  : in out Boolean); 
  412.    procedure Finalize (Self  : in out Boolean); 
  413.    procedure Copy (Dst : in out Boolean; Src : in Boolean); 
  414.    package Boolean_Seq is new DDS_Support.Sequences_Generic 
  415.      (Boolean, 
  416.       Boolean_Ptr, 
  417.       DDS.Natural, 
  418.       1, 
  419.       Boolean_Array); 
  420.    --  <dref>BooleanSeq</dref> 
  421.  
  422.    function To_DDS_String (Source : Standard.String) return DDS.String is 
  423.      (Data => RTIDDS.To_Chars_Ptr (Source)); 
  424.    function To_Standard_String (Source : DDS.String) return Standard.String; 
  425.  
  426.  
  427.    procedure Copy (Dst : in out DDS.String; Src : in Standard.String); 
  428.    procedure Copy (Dst : in out Standard.String; Src : in DDS.String); 
  429.    function "=" (L, R  : DDS.String) return Boolean; 
  430.  
  431.    type String_Array is array (Natural range <>) of aliased DDS.String; 
  432.    procedure Initialize (Self  : in out DDS.String); 
  433.    procedure Finalize (Self  : in out DDS.String); 
  434.    procedure Copy (Dst : in out DDS.String; Src : in DDS.String); 
  435.    package String_Seq is new DDS_Support.Sequences_Generic 
  436.      (DDS.String, 
  437.       String_Ptr, 
  438.       DDS.Natural, 
  439.       1, 
  440.       String_Array); 
  441.    --  <dref>StringSeq</dref> 
  442.  
  443.    function To_DDS_KeyedString (Key : Standard.String; Source : Standard.String) return DDS.KeyedString; 
  444.    function To_Standard_String (Source : DDS.KeyedString) return Standard.String; 
  445.    function Get_Key_From_KeyedString (Source : DDS.KeyedString) return Standard.String; 
  446.    function "=" (L, R  : DDS.KeyedString) return Boolean; 
  447.  
  448.    type KeyedString_Array is array (Natural range <>) of aliased DDS.KeyedString; 
  449.    procedure Initialize (Self  : in out DDS.KeyedString); 
  450.    procedure Finalize (Self  : in out DDS.KeyedString); 
  451.    procedure Copy (Dst : in out DDS.KeyedString; Src : in DDS.KeyedString); 
  452.    package KeyedString_Seq is new DDS_Support.Sequences_Generic 
  453.      (DDS.KeyedString, 
  454.       KeyedString_Ptr, 
  455.       DDS.Natural, 
  456.       1, 
  457.       KeyedString_Array); 
  458.    --  <dref>KeyedStringSeq</dref> 
  459.  
  460.    function KeyedString_Of (Value : DDS.String; Key : DDS.String) return KeyedString; 
  461.    function KeyedString_Of (Key : DDS.String) return KeyedString; 
  462.    function KeyedString_Of (Value : Standard.String; Key : Standard.String) return KeyedString; 
  463.    function KeyedString_Of (Key : Standard.String) return KeyedString; 
  464.    --  NOTE that the above functions does not do any copying of data 
  465.    --   They are just generation references. 
  466.  
  467.    type KeyedOctets_Array is array (Natural range <>) of aliased DDS.KeyedOctets; 
  468.    procedure Initialize (Self : in out DDS.KeyedOctets); 
  469.    procedure Finalize (Self : in out DDS.KeyedOctets); 
  470.    procedure Copy (Dst : in out DDS.KeyedOctets; Src : in DDS.KeyedOctets); 
  471.    package KeyedOctets_Seq is new DDS_Support.Sequences_Generic 
  472.      (DDS.KeyedOctets, 
  473.       KeyedOctets_Ptr, 
  474.       DDS.Natural, 
  475.       1, 
  476.       KeyedOctets_Array); 
  477.    --  <dref>KeyedOctetsSeq</dref> 
  478.  
  479.  
  480.  
  481.    function KeyedOctets_Of (Key : String; Value : Octets := Null_Octets) return KeyedOctets; 
  482.    function KeyedOctets_Of (Key : String; Value : Octet_Array) return KeyedOctets; 
  483.    function KeyedOctets_Of (Key : String; Value : Octet_Seq.Sequence) return KeyedOctets; 
  484.  
  485.    generic 
  486.       type Data_Type is private; 
  487.    function KeyedOctets_Of_Generic (Key : String; Value : Data_Type) return KeyedOctets; 
  488.  
  489.    function To_DDS_Wide_String (Source : Standard.Wide_String) return DDS.Wide_String; 
  490.    function To_Standard_Wide_String (Source : DDS.Wide_String) return Standard.Wide_String; 
  491.    procedure Copy (Dst : in out DDS.Wide_String; Src : in Standard.Wide_String); 
  492.    procedure Copy (Dst : in out Standard.Wide_String; Src : in DDS.Wide_String); 
  493.    function "=" (L, R  : DDS.Wide_String) return Boolean; 
  494.  
  495.    type Wide_String_Array is array (Natural range <>) of aliased DDS.Wide_String; 
  496.    procedure Initialize (Self  : in out DDS.Wide_String); 
  497.    procedure Finalize (Self  : in out DDS.Wide_String); 
  498.    procedure Copy (Dst : in out DDS.Wide_String; Src : in DDS.Wide_String); 
  499.    package Wide_String_Seq is new DDS_Support.Sequences_Generic 
  500.      (DDS.Wide_String, 
  501.       Wide_String_Ptr, 
  502.       DDS.Natural, 
  503.       1, 
  504.       Wide_String_Array); 
  505.    --  <dref>WstringSeq</dref> 
  506.  
  507.    --  ------------------------------------------------- 
  508.    --                 Time_t 
  509.    --  ------------------------------------------------- 
  510.  
  511.    type Time_T is record 
  512.       Sec     : Long := 0; 
  513.       Nanosec : Unsigned_Long := 0; 
  514.    end record with 
  515.      Convention => C; 
  516.    --  <defgroup>TimeSupportGroupDocs</defgroup> 
  517.    --  <dref>Time_t</dref> 
  518.    --  <dref name="Sec">TimeStamp_sec</dref> 
  519.    --  <dref name="Nanosec">TimeStamp_nanosec</dref> 
  520.  
  521.  
  522.    function "<" (L : Time_T; R : Time_T) return Boolean; 
  523.  
  524.    function ">" (L : Time_T; R : Time_T) return Boolean; 
  525.  
  526.    function "<=" (L : Time_T; R : Time_T) return Boolean; 
  527.  
  528.    function ">=" (L : Time_T; R : Time_T) return Boolean; 
  529.  
  530.    function "+" (L : Time_T; R : Time_T) return Time_T; 
  531.  
  532.    Time_Zero       : constant Time_T := (0, 0); 
  533.    --  <dref>Time_t_ZERO</dref> 
  534.  
  535.    TIME_INVALID_SEC : constant Long      := -1; 
  536.    --  <dref>Time_t_INVALID_SEC</dref> 
  537.  
  538.    TIME_INVALID_NSEC : constant Unsigned_Long      := 4_294_967_295; 
  539.    --  <dref>Time_t_INVALID_NSEC</dref> 
  540.  
  541.    Time_Invalid    : constant Time_T := (TIME_INVALID_SEC, TIME_INVALID_NSEC); 
  542.    --  <dref>Time_t_INVALID</dref> 
  543.  
  544.    function Time_Is_Zero 
  545.      (T : Time_T) 
  546.       return Boolean; 
  547.    --  <dref>Time_t_is_zero</dref> 
  548.  
  549.    function Time_Is_Invalid 
  550.      (T : Time_T) 
  551.       return Boolean; 
  552.    --  <dref>Time_t_is_invalid</dref> 
  553.  
  554.    function To_Time (T : Time_T) return Ada.Calendar.Time; 
  555.    function To_Time (T : Time_T) return Ada.Real_Time.Time; 
  556.    function To_Time_T (T : Ada.Calendar.Time) return Time_T; 
  557.    function To_Time_T (T : Ada.Real_Time.Time) return Time_T; 
  558.    --  ------------------------------------------------- 
  559.    --                 Duration_t 
  560.    --  ------------------------------------------------- 
  561.  
  562.    type Duration_T is record -- Default DURATION_ZERO 
  563.       Sec     : Long := 0; 
  564.       Nanosec : Unsigned_Long := 0; 
  565.    end record with 
  566.      Convention => C; 
  567.    --  <dref>Duration_t</dref> 
  568.    --  <dref name="Sec">TimeStamp_sec</dref> 
  569.    --  <dref name="Nanosec">TimeStamp_nanosec</dref> 
  570.  
  571.    DURATION_ZERO_SEC : constant Long := 0; 
  572.    --  <dref>Duration_t_ZERO_SEC</dref> 
  573.  
  574.    DURATION_ZERO_NSEC : constant Unsigned_Long := 0; 
  575.    --  <dref>Duration_t_ZERO_NSEC</dref> 
  576.  
  577.    DURATION_ZERO     : Duration_T := (DURATION_ZERO_SEC, DURATION_ZERO_NSEC); 
  578.    --  <dref>Duration_t_ZERO</dref> 
  579.  
  580.    DURATION_INFINITE_SEC : constant Long := 2_147_483_647; 
  581.    --  <dref>Duration_t_INFINITE_SEC</dref> 
  582.  
  583.    DURATION_INFINITE_NSEC : constant Unsigned_Long := 2_1474_83_647; 
  584.    --  <dref>Duration_t_INFINITE_NSEC</dref> 
  585.  
  586.    DURATION_INFINITE : constant Duration_T := 
  587.                          (DURATION_INFINITE_SEC, DURATION_INFINITE_NSEC); 
  588.    --  <dref>Duration_t_INFINITE</dref> 
  589.  
  590.    DURATION_AUTO_SEC : constant Long := 2_1474_83_647; 
  591.    --  <dref>Duration_t_AUTO_SEC</dref> 
  592.  
  593.    DURATION_AUTO_NSEC : constant Unsigned_Long := 0; 
  594.    --  <dref>Duration_t_AUTO_NSEC</dref> 
  595.  
  596.    DURATION_AUTO     : constant Duration_T := 
  597.                          (DURATION_AUTO_SEC, DURATION_AUTO_NSEC); 
  598.    --  <dref>Duration_t_AUTO</dref> 
  599.  
  600.    --  <dref>Duration_t_is_zero</dref> 
  601.    function Duration_Is_Zero 
  602.      (D : Duration_T) 
  603.       return Boolean; 
  604.  
  605.    --  <dref>Duration_t_is_infinite</dref> 
  606.    function Duration_Is_Infinite 
  607.      (D : Duration_T) 
  608.       return Boolean; 
  609.  
  610.    --  <dref>Duration_t_is_auto</dref> 
  611.    function Duration_Is_Auto 
  612.      (D : Duration_T) 
  613.       return Boolean; 
  614.  
  615.    function To_Duration (D : Duration_T) return Standard.Duration; 
  616.    function To_Duration_T (D : Standard.Duration) return Duration_T; 
  617.    --  <internal> 
  618.    --  Converts a standard.Duration to Duration_T and will raise 
  619.    --  Constraint error if the conversion is impossible except for the 
  620.    --  Value Duration'Last that will return "DURATION_INFINITE". 
  621.    --  </internal> 
  622.  
  623.    --  ------------------------------------------------- 
  624.    --                 InstanceHandle_t 
  625.    --  ------------------------------------------------- 
  626.  
  627.    type Builtin_Topic_Key_Type_Native is new Interfaces.Unsigned_32; 
  628.  
  629.    type InstanceHandle_T is new RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_InstanceHandle_t; 
  630.    --  <dref>InstanceHandle_t</dref> 
  631.  
  632.    Null_InstanceHandle_T : aliased constant InstanceHandle_T := InstanceHandle_T (RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_HANDLE_NIL); 
  633.    HANDLE_NIL      : aliased constant InstanceHandle_T := Null_InstanceHandle_T; 
  634.    --  <dref>InstanceHandle_t_NIL</dref> 
  635.  
  636.    type InstanceHandle_T_Access is access all InstanceHandle_T; 
  637.  
  638.    type InstanceHandle_T_Array is array (Natural range <>) of aliased InstanceHandle_T; 
  639.    procedure Initialize (Self  : in out InstanceHandle_T); 
  640.    procedure Finalize (Self  : in out InstanceHandle_T); 
  641.    procedure Copy (Dst : in out InstanceHandle_T; Src : in InstanceHandle_T); 
  642.    --    package InstanceHandle_Seq is new Ada.Containers.Vectors (Positive, InstanceHandle_T); 
  643.  
  644.    package InstanceHandle_Seq is new DDS_Support.Sequences_Generic 
  645.      (InstanceHandle_T, 
  646.       InstanceHandle_T_Access, 
  647.       DDS.Natural, 
  648.       1, 
  649.       InstanceHandle_T_Array); 
  650.    --  <dref>InstanceHandleSeq</dref> 
  651.  
  652.    --  <dref>InstanceHandle_t_equals</dref> 
  653.    function InstanceHandle_Equals 
  654.      (Self : not null access InstanceHandle_T; Other : not null access InstanceHandle_T) return Boolean; 
  655.  
  656.    --  <dref>InstanceHandle_t_is_nil</dref> 
  657.    function InstanceHandle_Is_Nil 
  658.      (Self : not null access InstanceHandle_T) return Boolean; 
  659.  
  660.    --  ------------------------------------------------- 
  661.    --                 Guid_t 
  662.    --  ------------------------------------------------- 
  663.    subtype GUID_T_Value_Array is  Octet_Array (0 .. 15); 
  664.    type Guid_T is record 
  665.       Value : aliased GUID_T_Value_Array := (others => 0); 
  666.    end record with 
  667.      Convention => C; 
  668.    --  <defgroup>GUIDSupportGroupDocs</defgroup> 
  669.    --  <dref>GUID_t</dref> 
  670.    --  <dref name="Value">GUID_t_value</dref> 
  671.  
  672.    type Guid_T_Access is access all Guid_T; 
  673.  
  674.    GUID_AUTO : aliased constant Guid_T := (Value => (others => 0)); 
  675.    --  <dref>GUID_t_AUTO</dref> 
  676.  
  677.    GUID_UNKNOWN : Guid_T renames GUID_AUTO; 
  678.    --  <dref>GUID_t_UNKNOWN</dref> 
  679.  
  680.    --  <dref>GUID_t_equals</dref> 
  681.    function Guid_Equals 
  682.      (Self  : not null Guid_T_Access; 
  683.       Other : not null Guid_T_Access) 
  684.       return Boolean; 
  685.  
  686.    --  <dref>GUID_t_compare</dref> 
  687.    function Guid_Compare 
  688.      (Self  : not null Guid_T_Access; 
  689.       Other : not null Guid_T_Access) 
  690.       return Boolean; 
  691.  
  692.    --  <dref>GUID_t_copy</dref> 
  693.    procedure Guid_Copy 
  694.      (Self  : Guid_T_Access; 
  695.       Other : Guid_T_Access); 
  696.  
  697.    pragma Import (C, Guid_Copy, "DDS_GUID_copy"); 
  698.  
  699.    procedure Guid_Print (Self   : Guid_T_Access; 
  700.                          Desc   : String; 
  701.                          Indent : Unsigned_Long); 
  702.  
  703.    pragma Import (C, Guid_Print, "DDS_GUID_print"); 
  704.  
  705.    procedure Guid_Zero (Self   : Guid_T_Access); 
  706.  
  707.    pragma Import (C, Guid_Zero, "DDS_GUID_zero"); 
  708.  
  709.    --  ------------------------------------------------- 
  710.    --                 SequenceNumber_t 
  711.    --  ------------------------------------------------- 
  712.  
  713.    type SequenceNumber_T is record 
  714.       High : aliased DDS.Long := 0; 
  715.       Low  : aliased DDS.Unsigned_Long := 0; 
  716.    end record with 
  717.      Convention => C; 
  718.    --  <defgroup>SequenceNumberSupportGroupDocs</defgroup> 
  719.    --  <dref>SequenceNumber_t</dref> 
  720.    --  <dref name="High">SequenceNumber_t_high</dref> 
  721.    --  <dref name="Low">SequenceNumber_t_low</dref> 
  722.  
  723.    type SequenceNumber_T_Access is access all  SequenceNumber_T; 
  724.  
  725.    SEQUENCE_NUMBER_UNKNOWN : constant  SequenceNumber_T := (High => -1, Low =>  4294967295); 
  726.    --  <dref>SequenceNumber_t_UNKNOWN</dref> 
  727.  
  728.    SEQUENCE_NUMBER_ZERO    : constant  SequenceNumber_T := (High =>  0, Low =>  0); 
  729.    --  <dref>SequenceNumber_t_ZERO</dref> 
  730.  
  731.  
  732.    SEQUENCE_NUMBER_MAX     : constant  SequenceNumber_T := (High =>  2147483647, Low =>  4294967295); 
  733.    --  <dref>SequenceNumber_t_MAX</dref> 
  734.  
  735.    AUTO_SEQUENCE_NUMBER    : constant SequenceNumber_T := (High => -1, Low =>  4294967295); 
  736.    --  <dref>SequenceNumber_t_AUTO</dref> 
  737.  
  738.  
  739.    function "-" (L, R : SequenceNumber_T) return SequenceNumber_T; 
  740.    function "+" (L, R : SequenceNumber_T) return SequenceNumber_T; 
  741.    function ">" (L, R : SequenceNumber_T) return Boolean; 
  742.    function "<" (L, R : SequenceNumber_T) return Boolean; 
  743.  
  744.    procedure Increment (Item : in out SequenceNumber_T); 
  745.    procedure Decrement (Item : in out SequenceNumber_T); 
  746.    function Image (Item : SequenceNumber_T) return Standard.String; 
  747.  
  748.    --  ------------------------------------------------- 
  749.    --                 OriginalWriterInfo_t 
  750.    --  ------------------------------------------------- 
  751.  
  752.    type OriginalWriterInfo_T is record 
  753.       Writer_Guid     : Guid_T; 
  754.       Sequence_Number : SequenceNumber_T; 
  755.    end record with 
  756.      Convention => C; 
  757.    --  <dref internal="true"></dref> 
  758.  
  759.  
  760.    --  ------------------------------------------------- 
  761.    --                 ReturnCode_t 
  762.    --  ------------------------------------------------- 
  763.  
  764.    ERROR                   : exception; 
  765.    --  <defgroup>ReturnCodeGroupDocs</defgroup> 
  766.    --  <dref>ReturnCode_t</dref> 
  767.    --  <dref>ReturnCode_t_RETCODE_ERROR</dref> 
  768.  
  769.    UNSUPPORTED             : exception; 
  770.    --  <dref>ReturnCode_t_RETCODE_UNSUPPORTED</dref> 
  771.  
  772.    BAD_PARAMETER           : exception; 
  773.    --  <dref>ReturnCode_t_RETCODE_BAD_PARAMETER</dref> 
  774.  
  775.    PRECONDITION_NOT_MET    : exception; 
  776.    --  <dref>ReturnCode_t_RETCODE_PRECONDITION_NOT_MET</dref> 
  777.  
  778.    OUT_OF_RESOURCES        : exception; 
  779.    --  <dref>ReturnCode_t_RETCODE_OUT_OF_RESOURCES</dref> 
  780.  
  781.    NOT_ENABLED             : exception; 
  782.    --  <dref>ReturnCode_t_RETCODE_NOT_ENABLED</dref> 
  783.  
  784.    IMMUTABLE_POLICY        : exception; 
  785.    --  <dref>ReturnCode_t_RETCODE_IMMUTABLE_POLICY</dref> 
  786.  
  787.    INCONSISTENT_POLICY     : exception; 
  788.    --  <dref>ReturnCode_t_RETCODE_INCONSISTENT_POLICY</dref> 
  789.  
  790.    ALREADY_DELETED         : exception; 
  791.    --  <dref>ReturnCode_t_RETCODE_ALREADY_DELETED</dref> 
  792.  
  793.    TIMEOUT                 : exception; 
  794.    --  <dref>ReturnCode_t_RETCODE_TIMEOUT</dref> 
  795.  
  796.    NO_DATA                 : exception; 
  797.    --  <dref>ReturnCode_t_RETCODE_NO_DATA</dref> 
  798.  
  799.    ILLEGAL_OPERATION       : exception; 
  800.    --  <dref>ReturnCode_t_RETCODE_ILLEGAL_OPERATION</dref> 
  801.  
  802.    NOT_ALLOWED_BY_SECURITY : exception; 
  803.    --  <dref>ReturnCode_t_RETCODE_NOT_ALLOWED_BY_SECURITY</dref> 
  804.  
  805.    type ReturnCode_T is 
  806.      (RETCODE_OK, 
  807.       --  Successful return. 
  808.       RETCODE_ERROR, 
  809.       --  Generic, unspecified error. 
  810.  
  811.       RETCODE_UNSUPPORTED, 
  812.       --  Unsupported operation. Can only returned by operations that are unsupported. 
  813.       RETCODE_BAD_PARAMETER, 
  814.       RETCODE_PRECONDITION_NOT_MET, 
  815.       RETCODE_OUT_OF_RESOURCES, 
  816.       RETCODE_NOT_ENABLED, 
  817.       RETCODE_IMMUTABLE_POLICY, 
  818.       RETCODE_INCONSISTENT_POLICY, 
  819.       RETCODE_ALREADY_DELETED, 
  820.       RETCODE_TIMEOUT, 
  821.       RETCODE_NO_DATA, 
  822.       RETCODE_ILLEGAL_OPERATION, 
  823.       RETCODE_NOT_ALLOWED_BY_SECURITY 
  824.      ); 
  825.  
  826.    pragma Convention (C, ReturnCode_T); 
  827.  
  828.    procedure Ret_Code_To_Exception (Code : ReturnCode_T; Message : Standard.String := ""); 
  829.  
  830.    --  ------------------------------------------------- 
  831.    --                 Status Types 
  832.    --  ------------------------------------------------- 
  833.  
  834.    type StatusKind is new Unsigned_Long; 
  835.    --  <dref>StatusKind</dref> 
  836.  
  837.    INCONSISTENT_TOPIC_STATUS         : constant StatusKind := 2#0000_0000_0000_0001#; 
  838.    --  <dref>StatusKind_INCONSISTENT_TOPIC_STATUS</dref> 
  839.  
  840.    OFFERED_DEADLINE_MISSED_STATUS    : constant StatusKind := 2#0000_0000_0000_0010#; 
  841.    --  <dref>StatusKind_OFFERED_DEADLINE_MISSED_STATUS</dref> 
  842.  
  843.    REQUESTED_DEADLINE_MISSED_STATUS  : constant StatusKind := 2#0000_0000_0000_0100#; 
  844.    --  <dref>StatusKind_REQUESTED_DEADLINE_MISSED_STATUS</dref> 
  845.  
  846.    OFFERED_INCOMPATIBLE_QOS_STATUS   : constant StatusKind := 2#0000_0000_0010_0000#; 
  847.    --  <dref>StatusKind_OFFERED_INCOMPATIBLE_QOS_STATUS</dref> 
  848.  
  849.    REQUESTED_INCOMPATIBLE_QOS_STATUS : constant StatusKind := 2#0000_0000_0100_0000#; 
  850.    --  <dref>StatusKind_REQUESTED_INCOMPATIBLE_QOS_STATUS</dref> 
  851.  
  852.    SAMPLE_LOST_STATUS                : constant StatusKind := 2#0000_0000_1000_0000#; 
  853.    --  <dref>StatusKind_SAMPLE_LOST_STATUS</dref> 
  854.  
  855.    SAMPLE_REJECTED_STATUS            : constant StatusKind := 2#0000_0001_0000_0000#; 
  856.    --  <dref>StatusKind_SAMPLE_REJECTED_STATUS</dref> 
  857.  
  858.    DATA_ON_READERS_STATUS            : constant StatusKind := 2#0000_0010_0000_0000#; 
  859.    --  <dref>StatusKind_DATA_ON_READERS_STATUS</dref> 
  860.  
  861.    DATA_AVAILABLE_STATUS             : constant StatusKind := 2#0000_0100_0000_0000#; 
  862.    --  <dref>StatusKind_DATA_AVAILABLE_STATUS</dref> 
  863.  
  864.    LIVELINESS_LOST_STATUS            : constant StatusKind := 2#0000_1000_0000_0000#; 
  865.    --  <dref>StatusKind_LIVELINESS_LOST_STATUS</dref> 
  866.  
  867.    LIVELINESS_CHANGED_STATUS         : constant StatusKind := 2#0001_0000_0000_0000#; 
  868.    --  <dref>StatusKind_LIVELINESS_CHANGED_STATUS</dref> 
  869.  
  870.    PUBLICATION_MATCH_STATUS          : constant StatusKind := 2#0010_0000_0000_0000#; 
  871.    --  <dref>StatusKind_PUBLICATION_MATCHED_STATUS</dref> 
  872.  
  873.    SUBSCRIPTION_MATCH_STATUS         : constant StatusKind := 2#0100_0000_0000_0000#; 
  874.    --  <dref>StatusKind_SUBSCRIPTION_MATCHED_STATUS</dref> 
  875.    pragma Warnings (Off); 
  876.    function "+" (Left, Right : StatusKind) return StatusKind renames "or"; 
  877.    pragma Warnings (On); 
  878.  
  879.    --   /* --- Begin extended statuses --- */ 
  880.    --   /* Previously, the "right"-most 24 bits of the StatusMask were reserved 
  881.    --    * for standard statuses, with the remaining 8 bits for extended statuses. 
  882.    --    Now, as of 4.5b, with more than 8 extended statuses, and with no "official" 
  883.    --    documented requirement of having only 8 bits, additional bits are being 
  884.    --    designated for extended statuses. 
  885.    --    */ 
  886.  
  887.    DATA_WRITER_APPLICATION_ACKNOWLEDGMENT_STATUS : constant StatusKind := 
  888.                                                      2#0000_0000_0100_0000_0000_0000_0000_0000#; 
  889.    --  <dref>StatusKind_DATA_WRITER_APPLICATION_ACKNOWLEDGMENT_STATUS</dref> 
  890.  
  891.    DATA_WRITER_INSTANCE_REPLACED_STATUS       : constant StatusKind := 
  892.                                                   2#0000_0000_1000_0000_0000_0000_0000_0000#; 
  893.    --  <dref>StatusKind_DATA_WRITER_INSTANCE_REPLACED_STATUS</dref> 
  894.  
  895.    RELIABLE_WRITER_CACHE_CHANGED_STATUS       : constant StatusKind := 
  896.                                                   2#0000_0001_0000_0000_0000_0000_0000_0000#; 
  897.    --  <dref>StatusKind_RELIABLE_WRITER_CACHE_CHANGED_STATUS</dref> 
  898.  
  899.    RELIABLE_READER_ACTIVITY_CHANGED_STATUS    : constant StatusKind := 
  900.                                                   2#0000_0010_0000_0000_0000_0000_0000_0000#; 
  901.    --  <dref>StatusKind_RELIABLE_READER_ACTIVITY_CHANGED_STATUS</dref> 
  902.  
  903.    DATA_WRITER_CACHE_STATUS                   : constant StatusKind := 
  904.                                                   2#0000_0100_0000_0000_0000_0000_0000_0000#; 
  905.    --  <dref>StatusKind_DATA_WRITER_CACHE_STATUS</dref> 
  906.  
  907.    DATA_WRITER_PROTOCOL_STATUS                : constant StatusKind := 
  908.                                                   2#0000_1000_0000_0000_0000_0000_0000_0000#; 
  909.    --  <dref>StatusKind_DATA_WRITER_PROTOCOL_STATUS</dref> 
  910.  
  911.    DATA_READER_CACHE_STATUS                   : constant StatusKind := 
  912.                                                   2#0001_0000_0000_0000_0000_0000_0000_0000#; 
  913.    --  <dref>StatusKind_DATA_READER_CACHE_STATUS</dref> 
  914.  
  915.    DATA_READER_PROTOCOL_STATUS                : constant StatusKind := 
  916.                                                   2#0010_0000_0000_0000_0000_0000_0000_0000#; 
  917.    --  <dref>StatusKind_DATA_READER_PROTOCOL_STATUS</dref> 
  918.  
  919.    DATA_WRITER_DESTINATION_UNREACHABLE_STATUS : constant StatusKind := 
  920.                                                   2#0100_0000_0000_0000_0000_0000_0000_0000#; 
  921.    --  <dref internal="true"></dref> 
  922.  
  923.    DATA_WRITER_SAMPLE_REMOVED_STATUS          : constant StatusKind := 
  924.                                                   2#1000_0000_0000_0000_0000_0000_0000_0000#; 
  925.    --  <dref internal="true"></dref> 
  926.  
  927.    subtype StatusMask is StatusKind; 
  928.    --  <defgroup>StatusKindGroupDocs</defgroup> 
  929.    --  <dref>StatusMask</dref> 
  930.    --  <dref>Shared_status_mask_description</dref> 
  931.  
  932.    STATUS_MASK_NONE : constant StatusMask := 2#0000_0000_0000_0000_0000_0000_0000_0000#; 
  933.    --  <dref>STATUS_MASK_NONE</dref> 
  934.  
  935.    STATUS_MASK_ALL  : constant StatusMask := 2#1111_1111_1111_1111_1111_1111_1111_1111#; 
  936.    --  <dref>STATUS_MASK_ALL</dref> 
  937.  
  938.    type StatusKind_Access is access constant StatusKind; 
  939.  
  940.    --  ------------------------------------------------- 
  941.    --                 Thread Settings 
  942.    --  ------------------------------------------------- 
  943.  
  944.    type ThreadSettings is new Unsigned_Long; 
  945.    --  <defgroup>ThreadSettingsGroupDocs</defgroup> 
  946.  
  947.    subtype ThreadSettingsKindMask is ThreadSettings; 
  948.    --  <dref>ThreadSettingsKindMask</dref> 
  949.  
  950.    THREAD_SETTINGS_OPTION_DEFAULT             : constant := 16#00#; 
  951.  
  952.    THREAD_SETTINGS_OPTION_FLOATING_POINT      : constant := 16#01#; 
  953.    --  <dref>ThreadSettingsKind</dref> 
  954.    --  <dref>ThreadSettingsKind_THREAD_SETTINGS_FLOATING_POINT</dref> 
  955.  
  956.    THREAD_SETTINGS_OPTION_STDIO               : constant := 16#02#; 
  957.    --  <dref>ThreadSettingsKind_THREAD_SETTINGS_STDIO</dref> 
  958.  
  959.    THREAD_SETTINGS_OPTION_REALTIME_PRIORITY   : constant := 16#08#; 
  960.  
  961.    --  <dref>ThreadSettingsKind_THREAD_SETTINGS_REALTIME_PRIORITY</dref> 
  962.  
  963.    THREAD_SETTINGS_OPTION_PRIORITY_ENFORCE    : constant := 16#10#; 
  964.    --  <dref>ThreadSettingsKind_THREAD_SETTINGS_PRIORITY_ENFORCE</dref> 
  965.  
  966.    THREAD_SETTINGS_OPTION_CANCEL_ASYNCHRONOUS : constant := 16#20#; 
  967.    --  <dref>ThreadSettingsKind_THREAD_SETTINGS_CANCEL_ASYNCHRONOUS</dref> 
  968.  
  969.    THREAD_SETTINGS_KIND_MASK_DEFAULT          : constant ThreadSettingsKindMask := 
  970.                                                   THREAD_SETTINGS_OPTION_DEFAULT; 
  971.    --  <dref>THREAD_SETTINGS_KIND_MASK_DEFAULT</dref> 
  972.  
  973.    type ThreadSettingsCpuRotationKind_T is new Unsigned_Long; 
  974.    --  <dref>ThreadSettingsCpuRotationKind</dref> 
  975.  
  976.    THREAD_SETTINGS_CPU_NO_ROTATION            : constant ThreadSettingsCpuRotationKind_T := 0; 
  977.    --  <dref>ThreadSettingsCpuRotationKind_THREAD_SETTINGS_CPU_NO_ROTATION</dref> 
  978.  
  979.    THREAD_SETTINGS_CPU_RR_ROTATION            : constant ThreadSettingsCpuRotationKind_T := 1; 
  980.    --  <dref>ThreadSettingsCpuRotationKind_THREAD_SETTINGS_CPU_RR_ROTATION</dref> 
  981.  
  982.    THREAD_SETTINGS_CPU_ROTATION_DEFAULT       : constant ThreadSettingsCpuRotationKind_T := 
  983.                                                   THREAD_SETTINGS_CPU_NO_ROTATION; 
  984.    --  <dref internal="true"></dref> 
  985.  
  986.    type ThreadSettings_T is record 
  987.       Mask         : aliased ThreadSettingsKindMask := THREAD_SETTINGS_OPTION_DEFAULT; 
  988.       Priority     : aliased Long := -9999999; 
  989.       Stack_Size   : aliased Long := -1; 
  990.       Cpu_List     : aliased Long_Seq.Sequence; 
  991.       Cpu_Rotation : aliased ThreadSettingsCpuRotationKind_T := THREAD_SETTINGS_CPU_ROTATION_DEFAULT; 
  992.    end record with 
  993.      Convention => C; 
  994.    --  <dref>ThreadSettings_t</dref> 
  995.    --  <dref name="Mask">ThreadSettings_t_mask</dref> 
  996.    --  <dref name="Priority">ThreadSettings_t_priority</dref> 
  997.    --  <dref name="Stack_Size">ThreadSettings_t_stack_size</dref> 
  998.    --  <dref name="Cpu_List">ThreadSettings_t_cpu_list</dref> 
  999.    --  <dref name="Cpu_Rotation">ThreadSettings_t_cpu_rotation</dref> 
  1000.  
  1001.    type ThreadSettings_T_Access is access all  ThreadSettings_T; 
  1002.  
  1003.    procedure ThreadSettings_T_Get_Default (Self  : not null ThreadSettings_T_Access); 
  1004.  
  1005.    pragma Import (C, ThreadSettings_T_Get_Default, "DDS_ThreadSettings_get_default"); 
  1006.  
  1007.    function ThreadSettings_T_Is_Equal 
  1008.      (Self  : not null ThreadSettings_T_Access; 
  1009.       Other : not null ThreadSettings_T_Access) 
  1010.       return Boolean; 
  1011.  
  1012.    --  ------------------------------------------------- 
  1013.    --                 QoS Types 
  1014.    --  ------------------------------------------------- 
  1015.  
  1016.    type QosPolicyId_T is new Unsigned_Long; 
  1017.    --  <defgroup>QosPoliciesGroupDocs</defgroup> 
  1018.    --  <dref>QosPolicyId_t</dref> 
  1019.  
  1020.    QOS_POLICY_COUNT : constant Long := 63; 
  1021.    --  <dref>QOS_POLICY_COUNT</dref> 
  1022.  
  1023.    INVALID_QOS_POLICY_ID : constant QosPolicyId_T := 0; 
  1024.    --  <dref>QosPolicyId_t_INVALID_QOS_POLICY_ID</dref> 
  1025.  
  1026.    USERDATA_QOS_POLICY_ID : constant QosPolicyId_T := 1; 
  1027.    --  <dref>QosPolicyId_t_USERDATA_QOS_POLICY_ID</dref> 
  1028.  
  1029.    DURABILITY_QOS_POLICY_ID : constant QosPolicyId_T := 2; 
  1030.    --  <dref>QosPolicyId_t_DURABILITY_QOS_POLICY_ID</dref> 
  1031.  
  1032.    PRESENTATION_QOS_POLICY_ID : constant QosPolicyId_T := 3; 
  1033.    --  <dref>QosPolicyId_t_PRESENTATION_QOS_POLICY_ID</dref> 
  1034.  
  1035.    DEADLINE_QOS_POLICY_ID : constant QosPolicyId_T := 4; 
  1036.    --  <dref>QosPolicyId_t_DEADLINE_QOS_POLICY_ID</dref> 
  1037.  
  1038.    LATENCYBUDGET_QOS_POLICY_ID : constant QosPolicyId_T := 5; 
  1039.    --  <dref>QosPolicyId_t_LATENCYBUDGET_QOS_POLICY_ID</dref> 
  1040.  
  1041.    OWNERSHIP_QOS_POLICY_ID : constant QosPolicyId_T := 6; 
  1042.    --  <dref>QosPolicyId_t_OWNERSHIP_QOS_POLICY_ID</dref> 
  1043.  
  1044.    OWNERSHIPSTRENGTH_QOS_POLICY_ID : constant QosPolicyId_T := 7; 
  1045.    --  <dref>QosPolicyId_t_OWNERSHIPSTRENGTH_QOS_POLICY_ID</dref> 
  1046.  
  1047.    LIVELINESS_QOS_POLICY_ID : constant QosPolicyId_T := 8; 
  1048.    --  <dref>QosPolicyId_t_LIVELINESS_QOS_POLICY_ID</dref> 
  1049.  
  1050.    TIMEBASEDFILTER_QOS_POLICY_ID : constant QosPolicyId_T := 9; 
  1051.    --  <dref>QosPolicyId_t_TIMEBASEDFILTER_QOS_POLICY_ID</dref> 
  1052.  
  1053.    PARTITION_QOS_POLICY_ID : constant QosPolicyId_T := 10; 
  1054.    --  <dref>QosPolicyId_t_PARTITION_QOS_POLICY_ID</dref> 
  1055.  
  1056.    RELIABILITY_QOS_POLICY_ID : constant QosPolicyId_T := 11; 
  1057.    --  <dref>QosPolicyId_t_RELIABILITY_QOS_POLICY_ID</dref> 
  1058.  
  1059.    DESTINATIONORDER_QOS_POLICY_ID : constant QosPolicyId_T := 12; 
  1060.    --  <dref>QosPolicyId_t_DESTINATIONORDER_QOS_POLICY_ID</dref> 
  1061.  
  1062.    HISTORY_QOS_POLICY_ID : constant QosPolicyId_T := 13; 
  1063.    --  <dref>QosPolicyId_t_HISTORY_QOS_POLICY_ID</dref> 
  1064.  
  1065.    RESOURCELIMITS_QOS_POLICY_ID : constant QosPolicyId_T := 14; 
  1066.    --  <dref>QosPolicyId_t_RESOURCELIMITS_QOS_POLICY_ID</dref> 
  1067.  
  1068.    ENTITYFACTORY_QOS_POLICY_ID : constant QosPolicyId_T := 15; 
  1069.    --  <dref>QosPolicyId_t_ENTITYFACTORY_QOS_POLICY_ID</dref> 
  1070.  
  1071.    WRITERDATALIFECYCLE_QOS_POLICY_ID : constant QosPolicyId_T := 16; 
  1072.    --  <dref>QosPolicyId_t_WRITERDATALIFECYCLE_QOS_POLICY_ID</dref> 
  1073.  
  1074.    READERDATALIFECYCLE_QOS_POLICY_ID : constant QosPolicyId_T := 17; 
  1075.    --  <dref>QosPolicyId_t_READERDATALIFECYCLE_QOS_POLICY_ID</dref> 
  1076.  
  1077.    TOPICDATA_QOS_POLICY_ID : constant QosPolicyId_T := 18; 
  1078.    --  <dref>QosPolicyId_t_TOPICDATA_QOS_POLICY_ID</dref> 
  1079.  
  1080.    GROUPDATA_QOS_POLICY_ID : constant QosPolicyId_T := 19; 
  1081.    --  <dref>QosPolicyId_t_GROUPDATA_QOS_POLICY_ID</dref> 
  1082.  
  1083.    TRANSPORTPRIORITY_QOS_POLICY_ID : constant QosPolicyId_T := 20; 
  1084.    --  <dref>QosPolicyId_t_TRANSPORTPRIORITY_QOS_POLICY_ID</dref> 
  1085.  
  1086.    LIFESPAN_QOS_POLICY_ID : constant QosPolicyId_T := 21; 
  1087.    --  <dref>QosPolicyId_t_LIFESPAN_QOS_POLICY_ID</dref> 
  1088.  
  1089.    DURABILITYSERVICE_QOS_POLICY_ID : constant QosPolicyId_T := 22; 
  1090.    --  <dref>QosPolicyId_t_DURABILITYSERVICE_QOS_POLICY_ID</dref> 
  1091.  
  1092.    DATA_REPRESENTATION_QOS_POLICY_ID : constant QosPolicyId_T := 23; 
  1093.    --  <dref>QosPolicyId_t_DATA_REPRESENTATION_QOS_POLICY_ID</dref> 
  1094.  
  1095.    TYPE_CONSISTENCY_ENFORCEMENT_QOS_POLICY_ID : constant QosPolicyId_T := 24; 
  1096.    --  <dref>QosPolicyId_t_TYPE_CONSISTENCY_ENFORCEMENT_QOS_POLICY_ID</dref> 
  1097.  
  1098.    DATATAG_QOS_POLICY_ID : constant QosPolicyId_T := 25; 
  1099.    --  <dref>QosPolicyId_t_DATATAG_QOS_POLICY_ID</dref> 
  1100.  
  1101.    WIREPROTOCOL_QOS_POLICY_ID : constant QosPolicyId_T := 1000; 
  1102.    --  <dref>QosPolicyId_t_WIREPROTOCOL_QOS_POLICY_ID</dref> 
  1103.  
  1104.    DISCOVERY_QOS_POLICY_ID : constant QosPolicyId_T := 1001; 
  1105.    --  <dref>QosPolicyId_t_DISCOVERY_QOS_POLICY_ID</dref> 
  1106.  
  1107.    DATAREADERRESOURCELIMITS_QOS_POLICY_ID : constant QosPolicyId_T := 1003; 
  1108.    --  <dref>QosPolicyId_t_DATAREADERRESOURCELIMITS_QOS_POLICY_ID</dref> 
  1109.  
  1110.    DATAWRITERRESOURCELIMITS_QOS_POLICY_ID : constant QosPolicyId_T := 1004; 
  1111.    --  <dref>QosPolicyId_t_DATAWRITERRESOURCELIMITS_QOS_POLICY_ID</dref> 
  1112.  
  1113.    DATAREADERPROTOCOL_QOS_POLICY_ID : constant QosPolicyId_T := 1005; 
  1114.    --  <dref>QosPolicyId_t_DATAREADERPROTOCOL_QOS_POLICY_ID</dref> 
  1115.  
  1116.    DATAWRITERPROTOCOL_QOS_POLICY_ID : constant QosPolicyId_T := 1006; 
  1117.    --  <dref>QosPolicyId_t_DATAWRITERPROTOCOL_QOS_POLICY_ID</dref> 
  1118.  
  1119.    DOMAINPARTICIPANTRESOURCELIMITS_QOS_POLICY_ID : constant QosPolicyId_T := 1007; 
  1120.    --  <dref>QosPolicyId_t_DOMAINPARTICIPANTRESOURCELIMITS_QOS_POLICY_ID</dref> 
  1121.  
  1122.    EVENT_QOS_POLICY_ID : constant QosPolicyId_T := 1008; 
  1123.    --  <dref>QosPolicyId_t_EVENT_QOS_POLICY_ID</dref> 
  1124.  
  1125.    DATABASE_QOS_POLICY_ID : constant QosPolicyId_T := 1009; 
  1126.    --  <dref>QosPolicyId_t_DATABASE_QOS_POLICY_ID</dref> 
  1127.  
  1128.    RECEIVERPOOL_QOS_POLICY_ID : constant QosPolicyId_T := 1010; 
  1129.    --  <dref>QosPolicyId_t_RECEIVERPOOL_QOS_POLICY_ID</dref> 
  1130.  
  1131.    DISCOVERYCONFIG_QOS_POLICY_ID : constant QosPolicyId_T := 1011; 
  1132.    --  <dref>QosPolicyId_t_DISCOVERYCONFIG_QOS_POLICY_ID</dref> 
  1133.  
  1134.    EXCLUSIVEAREA_QOS_POLICY_ID : constant QosPolicyId_T := 1012; 
  1135.    --  <dref>QosPolicyId_t_EXCLUSIVEAREA_QOS_POLICY_ID</dref> 
  1136.  
  1137.    USEROBJECT_QOS_POLICY_ID : constant QosPolicyId_T := 1013; 
  1138.    --  <dref internal="true">QosPolicyId_t_USEROBJECT_QOS_POLICY_ID</dref> 
  1139.  
  1140.    SYSTEMRESOURCELIMITS_QOS_POLICY_ID : constant QosPolicyId_T := 1014; 
  1141.    --  <dref>QosPolicyId_t_SYSTEMRESOURCELIMITS_QOS_POLICY_ID</dref> 
  1142.  
  1143.    TRANSPORTSELECTION_QOS_POLICY_ID : constant QosPolicyId_T := 1015; 
  1144.    --  <dref>QosPolicyId_t_TRANSPORTSELECTION_QOS_POLICY_ID</dref> 
  1145.  
  1146.    TRANSPORTUNICAST_QOS_POLICY_ID : constant QosPolicyId_T := 1016; 
  1147.    --  <dref>QosPolicyId_t_TRANSPORTUNICAST_QOS_POLICY_ID</dref> 
  1148.  
  1149.    TRANSPORTMULTICAST_QOS_POLICY_ID : constant QosPolicyId_T := 1017; 
  1150.    --  <dref>QosPolicyId_t_TRANSPORTMULTICAST_QOS_POLICY_ID</dref> 
  1151.  
  1152.    TRANSPORTBUILTIN_QOS_POLICY_ID : constant QosPolicyId_T := 1018; 
  1153.    --  <dref>QosPolicyId_t_TRANSPORTBUILTIN_QOS_POLICY_ID</dref> 
  1154.  
  1155.    TYPESUPPORT_QOS_POLICY_ID : constant QosPolicyId_T := 1019; 
  1156.    --  <dref>QosPolicyId_t_TYPESUPPORT_QOS_POLICY_ID</dref> 
  1157.  
  1158.    PROPERTY_QOS_POLICY_ID : constant QosPolicyId_T := 1020; 
  1159.    --  <dref>QosPolicyId_t_PROPERTY_QOS_POLICY_ID</dref> 
  1160.  
  1161.    PUBLISHMODE_QOS_POLICY_ID : constant QosPolicyId_T := 1021; 
  1162.    --  <dref>QosPolicyId_t_PUBLISHMODE_QOS_POLICY_ID</dref> 
  1163.  
  1164.    ASYNCHRONOUSPUBLISHER_QOS_POLICY_ID : constant QosPolicyId_T := 1022; 
  1165.    --  <dref>QosPolicyId_t_ASYNCHRONOUSPUBLISHER_QOS_POLICY_ID</dref> 
  1166.  
  1167.    ENTITYNAME_QOS_POLICY_ID : constant QosPolicyId_T := 1023; 
  1168.    --  <dref>QosPolicyId_t_ENTITYNAME_QOS_POLICY_ID</dref> 
  1169.  
  1170.    SERVICE_QOS_POLICY_ID : constant QosPolicyId_T := 1025; 
  1171.    --  <dref internal="true"></dref> 
  1172.  
  1173.    BATCH_QOS_POLICY_ID : constant QosPolicyId_T := 1026; 
  1174.    --  <dref>QosPolicyId_t_BATCH_QOS_POLICY_ID</dref> 
  1175.  
  1176.    PROFILE_QOS_POLICY_ID : constant QosPolicyId_T := 1027; 
  1177.    --  <dref>QosPolicyId_t_PROFILE_QOS_POLICY_ID</dref> 
  1178.  
  1179.    LOCATORFILTER_QOS_POLICY_ID : constant QosPolicyId_T := 1028; 
  1180.    --  <dref>QosPolicyId_t_LOCATORFILTER_QOS_POLICY_ID</dref> 
  1181.  
  1182.    MULTICHANNEL_QOS_POLICY_ID : constant QosPolicyId_T := 1029; 
  1183.    --  <dref>QosPolicyId_t_MULTICHANNEL_QOS_POLICY_ID</dref> 
  1184.  
  1185.    TRANSPORTENCAPSULATION_QOS_POLICY_ID : constant QosPolicyId_T := 1030; 
  1186.    --  <dref internal="true"></dref> 
  1187.  
  1188.    PUBLISHERPROTOCOL_QOS_POLICY_ID : constant QosPolicyId_T := 1031; 
  1189.    --  <dref internal="true"></dref> 
  1190.  
  1191.    SUBSCRIBERPROTOCOL_QOS_POLICY_ID : constant QosPolicyId_T := 1032; 
  1192.    --  <dref internal="true"></dref> 
  1193.  
  1194.    TOPICPROTOCOL_QOS_POLICY_ID : constant QosPolicyId_T := 1033; 
  1195.    --  <dref internal="true"></dref> 
  1196.  
  1197.    DOMAINPARTICIPANTPROTOCOL_QOS_POLICY_ID : constant QosPolicyId_T := 1034; 
  1198.    --  <dref internal="true"></dref> 
  1199.  
  1200.    AVAILABILITY_QOS_POLICY_ID : constant QosPolicyId_T := 1035; 
  1201.    --  <dref>QosPolicyId_t_AVAILABILITY_QOS_POLICY_ID</dref> 
  1202.  
  1203.    TRANSPORTMULTICASTMAPPING_QOS_POLICY_ID : constant QosPolicyId_T := 1036; 
  1204.    --  QosPolicyId_t_TRANSPORTMULTICASTMAPPING_QOS_POLICY_ID -- documentation removed in ifdoc 
  1205.  
  1206.    LOGGING_QOS_POLICY_ID : constant QosPolicyId_T := 1037; 
  1207.    --  <dref>QosPolicyId_t_LOGGING_QOS_POLICY_ID</dref> 
  1208.  
  1209.    TOPICQUERYDISPATCH_QOS_POLICY_ID : constant QosPolicyId_T := 1038; 
  1210.    --  <dref>QosPolicyId_t_TOPICQUERYDISPATCH_QOS_POLICY_ID</dref> 
  1211.  
  1212.    DATAWRITERTRANSFERMODE_QOS_POLICY_ID : constant QosPolicyId_T := 1039; 
  1213.    --  <dref>QosPolicyId_t_DATAWRITERTRANSFERMODE_QOS_POLICY_ID</dref> 
  1214.  
  1215.    type QosPolicyCount is record 
  1216.       Policy_Id : aliased QosPolicyId_T := INVALID_QOS_POLICY_ID; 
  1217.       Count     : aliased Long := 0; 
  1218.    end record with 
  1219.      Convention => C; 
  1220.    --  <dref>QosPolicyCount</dref> 
  1221.    --  <dref name="Policy_Id">QosPolicyCount_policy_id</dref> 
  1222.    --  <dref name="Count">QosPolicyCount_count</dref> 
  1223.  
  1224.    type QosPolicyCount_Access is access all QosPolicyCount; 
  1225.  
  1226.    type QosPolicyCount_Array is array (Natural range <>) of aliased QosPolicyCount; 
  1227.    procedure Initialize (Self  : in out QosPolicyCount); 
  1228.    procedure Finalize (Self  : in out QosPolicyCount); 
  1229.    procedure Copy (Dst : in out QosPolicyCount; Src : in QosPolicyCount); 
  1230.  
  1231.    package QosPolicyCount_Seq is new DDS_Support.Sequences_Generic 
  1232.      (QosPolicyCount, 
  1233.       QosPolicyCount_Access, 
  1234.       DDS.Natural, 
  1235.       1, 
  1236.       QosPolicyCount_Array); 
  1237.    --  <dref>QosPolicyCountSeq</dref> 
  1238.  
  1239.    --  ------------------------------------------------- 
  1240.    --                 Entity Types 
  1241.    --  ------------------------------------------------- 
  1242.  
  1243.    type EntityKind_T is (UNKNOWN_ENTITY_KIND, 
  1244.                          PARTICIPANT_ENTITY_KIND, 
  1245.                          PUBLISHER_ENTITY_KIND, 
  1246.                          SUBSCRIBER_ENTITY_KIND, 
  1247.                          TOPIC_ENTITY_KIND, 
  1248.                          DATAREADER_ENTITY_KIND, 
  1249.                          DATAWRITER_ENTITY_KIND); 
  1250.    pragma Annotate (EntityKind_T, Source, RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_EntityKind_t); 
  1251.  
  1252.    --  ------------------------------------------------- 
  1253.    --                 USER_DATA 
  1254.    --  ------------------------------------------------- 
  1255.  
  1256.    USERDATA_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("UserData"); 
  1257.    --  <defgroup>UserDataQosGroupDocs</defgroup> 
  1258.    --  <dref>USERDATA_QOS_POLICY_NAME</dref> 
  1259.  
  1260.    type UserDataQosPolicy is limited record 
  1261.       Value : aliased Octet_Seq.Sequence; 
  1262.    end record with 
  1263.      Convention => C; 
  1264.    --  <dref>UserDataQosPolicy</dref> 
  1265.    --  <dref name="Value">UserDataQosPolicy_value</dref> 
  1266.  
  1267.    --     USER_DATA_QOS_POLICY_DEFAULT : constant UserDataQosPolicy := 
  1268.    --                                      (Value => Octet_Seq.DEFAULT_SEQUENCE); 
  1269.  
  1270.    --  ------------------------------------------------- 
  1271.    --                 TOPIC_DATA 
  1272.    --  ------------------------------------------------- 
  1273.  
  1274.    TOPICDATA_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("TopicData"); 
  1275.    --  <defgroup>TopicDataQosGroupDocs</defgroup> 
  1276.    --  <dref>TOPICDATA_QOS_POLICY_NAME</dref> 
  1277.  
  1278.  
  1279.    type TopicDataQosPolicy is limited record 
  1280.       Value : aliased Octet_Seq.Sequence; 
  1281.    end record with 
  1282.      Convention => C; 
  1283.    --  <dref>TopicDataQosPolicy</dref> 
  1284.    --  <dref name="Value">TopicDataQosPolicy_value</dref> 
  1285.  
  1286.    --     TOPIC_DATA_QOS_POLICY_DEFAULT : constant TopicDataQosPolicy := 
  1287.    --                                       (Value => Octet_Seq.DEFAULT_SEQUENCE); 
  1288.  
  1289.    --  ------------------------------------------------- 
  1290.    --                 DATA_TAGS 
  1291.    --  ------------------------------------------------- 
  1292.  
  1293.    --  <defgroup>DataTagQosGroupDocs</defgroup> 
  1294.    type Tags_T is limited record 
  1295.       Name  : aliased DDS.String; 
  1296.       Value : aliased DDS.String; 
  1297.    end record with Convention => C; 
  1298.    --  <dref>Tags</dref> 
  1299.    --  <dref name="Name">Tags_T_name</dref> 
  1300.    --  <dref name="Value">Tags_T_value</dref> 
  1301.  
  1302.    type Tags_T_Access is access all Tags_T with Convention => C; 
  1303.    type Tags_T_Array is array 
  1304.      (Natural range <>) of aliased Tags_T; 
  1305.    procedure Initialize (Self  : in out Tags_T); 
  1306.    procedure Finalize (Self  : in out Tags_T); 
  1307.    procedure Copy (Dst : in out Tags_T; 
  1308.                    Src : in Tags_T); 
  1309.  
  1310.    package Tags_Seq is new DDS_Support.Sequences_Generic 
  1311.      (Tags_T, 
  1312.       Tags_T_Access, 
  1313.       DDS.Natural, 
  1314.       1, 
  1315.       Tags_T_Array); 
  1316.    --  <dref>TagSeq</dref> 
  1317.  
  1318.    type DataTagQosPolicy is limited record 
  1319.       Value : aliased Tags_Seq.Sequence; 
  1320.    end record with Convention => C; 
  1321.    --  <dref>DataTagQosPolicy</dref> 
  1322.    --  <dref name="Value">DataTags_tags</dref> 
  1323.  
  1324.    function Lookup_Tag 
  1325.       (Policy : in DataTagQosPolicy; 
  1326.        Name   : in DDS.String) return Tags_T_Access; 
  1327.    --  <dref name="lookup_tag">DataTagQosPolicyHelper_lookup_tag</dref> 
  1328.  
  1329.    procedure Assert_Tag 
  1330.       (Policy : in DataTagQosPolicy; 
  1331.        Name   : in DDS.String; 
  1332.        Value  : in DDS.String); 
  1333.    --  <dref name="assert_tag">DataTagQosPolicyHelper_assert_tag</dref> 
  1334.  
  1335.    procedure Add_Tag 
  1336.       (Policy : in DataTagQosPolicy; 
  1337.        Name   : in DDS.String; 
  1338.        Value  : in DDS.String); 
  1339.    --  <dref name="add_tag">DataTagQosPolicyHelper_add_tag</dref> 
  1340.  
  1341.    procedure Remove_Tag 
  1342.       (Policy : in DataTagQosPolicy; 
  1343.        Name   : in DDS.String); 
  1344.    --  <dref name="remove_tag">DataTagQosPolicyHelper_remove_tag</dref> 
  1345.  
  1346.    function Get_Number_Of_Tags 
  1347.       (Policy : in DataTagQosPolicy) return DDS.Long; 
  1348.    --  <dref name="get_number_of_tags">DataTagQosPolicyHelper_get_number_of_tags</dref> 
  1349.  
  1350.    --  ------------------------------------------------- 
  1351.    --                 GROUP_DATA 
  1352.    --  ------------------------------------------------- 
  1353.  
  1354.    GROUPDATA_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("GroupData"); 
  1355.    --  <defgroup>GroupDataQosGroupDocs</defgroup> 
  1356.    --  <dref>GROUPDATA_QOS_POLICY_NAME</dref> 
  1357.  
  1358.    type GroupDataQosPolicy is limited record 
  1359.       Value : aliased Octet_Seq.Sequence; 
  1360.    end record with 
  1361.      Convention => C; 
  1362.    --  <dref>GroupDataQosPolicy</dref> 
  1363.    --  <dref name="Value">GroupDataQosPolicy_value</dref> 
  1364.  
  1365.    --     GROUP_DATA_QOS_POLICY_DEFAULT : constant GroupDataQosPolicy := 
  1366.    --                                       (Value => Octet_Seq.DEFAULT_SEQUENCE); 
  1367.  
  1368.    --  ------------------------------------------------- 
  1369.    --                 TOPIC_PROTOCOL (eXtension QoS) 
  1370.    --  ------------------------------------------------- 
  1371.  
  1372.    TOPICPROTOCOL_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("TopicProtocol"); 
  1373.    --  <dref internal="true"></dref> 
  1374.  
  1375.  
  1376.    type TopicProtocolQosPolicy is limited record 
  1377.       Vendor_Specific_Entity : Boolean := False; 
  1378.    end record with 
  1379.      Convention => C; 
  1380.    --  <dref internal="true"></dref> 
  1381.  
  1382.    TOPIC_PROTOCOL_QOS_POLICY_DEFAULT : constant TopicProtocolQosPolicy := 
  1383.                                          (Vendor_Specific_Entity => False); 
  1384.    --  <dref internal="true"></dref> 
  1385.  
  1386.    --  ---------------------------------------------------------- 
  1387.    --                 DOMAIN_PARTICIPANT_PROTOCOL (eXtension QoS) 
  1388.    --  ---------------------------------------------------------- 
  1389.  
  1390.    DOMAINPARTICIPANTPROTOCOL_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("DomainParticipantProtocol"); 
  1391.    --  <dref internal="true"></dref> 
  1392.  
  1393.    type DomainParticipantProtocolQosPolicy is limited record 
  1394.       Vendor_Specific_Entity : Boolean := False; 
  1395.    end record with 
  1396.      Convention => C; 
  1397.    --  <dref internal="true"></dref> 
  1398.  
  1399.    DOMAIN_PARTICIPANT_PROTOCOL_QOS_POLICY_DEFAULT : constant DomainParticipantProtocolQosPolicy := 
  1400.                                                       (Vendor_Specific_Entity => False); 
  1401.    --  <dref internal="true"></dref> 
  1402.  
  1403.    --  ------------------------------------------------- 
  1404.    --                 DURABILITY 
  1405.    --  ------------------------------------------------- 
  1406.  
  1407.    DURABILITY_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("Durability"); 
  1408.    --  <defgroup>DurabilityQosGroupDocs</defgroup> 
  1409.    --  <dref>DURABILITY_QOS_POLICY_NAME</dref> 
  1410.  
  1411.    type DurabilityQosPolicyKind is new Unsigned_Long; 
  1412.    --  <dref>DurabilityQosPolicyKind</dref> 
  1413.  
  1414.    VOLATILE_DURABILITY_QOS : constant DurabilityQosPolicyKind := 0; 
  1415.    --  <dref>DurabilityQosPolicyKind_VOLATILE_DURABILITY_QOS</dref> 
  1416.  
  1417.    TRANSIENT_LOCAL_DURABILITY_QOS : constant DurabilityQosPolicyKind := 1; 
  1418.    --  <dref>DurabilityQosPolicyKind_TRANSIENT_LOCAL_DURABILITY_QOS</dref> 
  1419.  
  1420.    TRANSIENT_DURABILITY_QOS : constant DurabilityQosPolicyKind := 2; 
  1421.    --  <dref>DurabilityQosPolicyKind_TRANSIENT_DURABILITY_QOS</dref> 
  1422.  
  1423.    PERSISTENT_DURABILITY_QOS : constant DurabilityQosPolicyKind := 3; 
  1424.    --  <dref>DurabilityQosPolicyKind_PERSISTENT_DURABILITY_QOS</dref> 
  1425.  
  1426.    type DurabilityQosPolicy is record 
  1427.       Kind                 : aliased DurabilityQosPolicyKind := VOLATILE_DURABILITY_QOS; 
  1428.       Direct_Communication : aliased DDS.Boolean := True; 
  1429.    end record with 
  1430.      Convention => C; 
  1431.    --  <dref>DurabilityQosPolicy</dref> 
  1432.    --  <dref name="Kind">DurabilityQosPolicy_kind</dref> 
  1433.    --  <dref name="Direct_Communication">DurabilityQosPolicy_direct_communication</dref> 
  1434.  
  1435.  
  1436.    DURABILITY_QOS_POLICY_DEFAULT : constant DurabilityQosPolicy := 
  1437.                                      (Kind                 => VOLATILE_DURABILITY_QOS, 
  1438.                                       Direct_Communication => True); 
  1439.    --  <dref internal="true"></dref> 
  1440.  
  1441.    --  ------------------------------------------------- 
  1442.    --                 PRESENTATION 
  1443.    --  ------------------------------------------------- 
  1444.  
  1445.    PRESENTATION_QOS_POLICY_NAME  : constant DDS.String := To_DDS_String ("Presentation"); 
  1446.    --  <defgroup>PresentationQosGroupDocs</defgroup> 
  1447.    --  <dref>PRESENTATION_QOS_POLICY_NAME</dref> 
  1448.  
  1449.    type PresentationQosPolicyAccessScopeKind is new Unsigned_Long; 
  1450.    --  <dref>PresentationQosPolicyAccessScopeKind</dref> 
  1451.  
  1452.    INSTANCE_PRESENTATION_QOS : constant PresentationQosPolicyAccessScopeKind := 0; 
  1453.    --  <dref>PresentationQosPolicyAccessScopeKind_INSTANCE_PRESENTATION_QOS</dref> 
  1454.  
  1455.    TOPIC_PRESENTATION_QOS : constant PresentationQosPolicyAccessScopeKind := 1; 
  1456.    --  <dref>PresentationQosPolicyAccessScopeKind_TOPIC_PRESENTATION_QOS</dref> 
  1457.  
  1458.    GROUP_PRESENTATION_QOS : constant PresentationQosPolicyAccessScopeKind := 2; 
  1459.    --  <dref>PresentationQosPolicyAccessScopeKind_GROUP_PRESENTATION_QOS</dref> 
  1460.  
  1461.    HIGHEST_OFFERED_PRESENTATION_QOS : constant PresentationQosPolicyAccessScopeKind := 3; 
  1462.    --  <dref>PresentationQosPolicyAccessScopeKind_HIGHEST_OFFERED_PRESENTATION_QOS</dref> 
  1463.  
  1464.    type PresentationQosPolicy  is record 
  1465.       Access_Scope    : aliased PresentationQosPolicyAccessScopeKind := INSTANCE_PRESENTATION_QOS; 
  1466.       Coherent_Access : aliased DDS.Boolean := False; 
  1467.       Ordered_Access  : aliased DDS.Boolean := False; 
  1468.    end record with 
  1469.      Convention => C; 
  1470.    --  <dref>PresentationQosPolicy</dref> 
  1471.    --  <dref name="Access_Scope">PresentationQosPolicy_access_scope</dref> 
  1472.    --  <dref name="Coherent_Access">PresentationQosPolicy_coherent_access</dref> 
  1473.    --  <dref name="Ordered_Access">PresentationQosPolicy_ordered_access</dref> 
  1474.  
  1475.  
  1476.    PRESENTATION_QOS_POLICY_DEFAULT : constant PresentationQosPolicy := 
  1477.                                        (INSTANCE_PRESENTATION_QOS, 
  1478.                                         False, 
  1479.                                         False); 
  1480.    --  <dref internal="true"></dref> 
  1481.  
  1482.    --  ------------------------------------------------- 
  1483.    --                 DEADLINE 
  1484.    --  ------------------------------------------------- 
  1485.  
  1486.    DEADLINE_QOS_POLICY_NAME        : constant DDS.String := To_DDS_String ("Deadline"); 
  1487.    --  <defgroup>DeadlineQosGroupDocs</defgroup> 
  1488.    --  <dref>DEADLINE_QOS_POLICY_NAME</dref> 
  1489.  
  1490.    type DeadlineQosPolicy is record 
  1491.       Period : aliased Duration_T :=  DURATION_INFINITE; 
  1492.    end record with 
  1493.      Convention => C; 
  1494.    --  <dref>DeadlineQosPolicy</dref> 
  1495.    --  <dref name="Period">DeadlineQosPolicy_period</dref> 
  1496.  
  1497.  
  1498.    DEADLINE_QOS_POLICY_DEFAULT : constant DeadlineQosPolicy := 
  1499.                                    (Period => DURATION_INFINITE); 
  1500.    --  <dref internal="true"></dref> 
  1501.  
  1502.    --  ------------------------------------------------- 
  1503.    --                 LATENCY_BUDGET 
  1504.    --  ------------------------------------------------- 
  1505.  
  1506.    LATENCYBUDGET_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("LatencyBudget"); 
  1507.    --  <defgroup>LatencyBudgetQosGroupDocs</defgroup> 
  1508.    --  <dref>LATENCYBUDGET_QOS_POLICY_NAME</dref> 
  1509.  
  1510.    type LatencyBudgetQosPolicy is record 
  1511.       Duration : aliased Duration_T := DURATION_ZERO; 
  1512.    end record with 
  1513.      Convention => C; 
  1514.    --  <dref>LatencyBudgetQosPolicy</dref> 
  1515.    --  <dref name="Duration">LatencyBudgetQosPolicy_duration</dref> 
  1516.  
  1517.  
  1518.    LATENCY_BUDGET_QOS_POLICY_DEFAULT : constant LatencyBudgetQosPolicy := 
  1519.                                          (Duration => DURATION_ZERO); 
  1520.    --  <dref internal="true"></dref> 
  1521.  
  1522.    --  ------------------------------------------------- 
  1523.    --                 OWNERSHIP 
  1524.    --  ------------------------------------------------- 
  1525.  
  1526.    OWNERSHIP_QOS_POLICY_NAME         : constant DDS.String := To_DDS_String ("Ownership"); 
  1527.    --  <defgroup>OwnershipQosGroupDocs</defgroup> 
  1528.    --  <dref>OWNERSHIP_QOS_POLICY_NAME</dref> 
  1529.  
  1530.    type OwnershipQosPolicyKind is new Unsigned_Long; 
  1531.    --  <dref>OwnershipQosPolicyKind</dref> 
  1532.  
  1533.    SHARED_OWNERSHIP_QOS : constant OwnershipQosPolicyKind := 0; 
  1534.    --  <dref>OwnershipQosPolicyKind_SHARED_OWNERSHIP_QOS</dref> 
  1535.  
  1536.    EXCLUSIVE_OWNERSHIP_QOS : constant OwnershipQosPolicyKind := 1; 
  1537.    --  <dref>OwnershipQosPolicyKind_EXCLUSIVE_OWNERSHIP_QOS</dref> 
  1538.  
  1539.    type OwnershipQosPolicy is record 
  1540.       Kind : aliased OwnershipQosPolicyKind := SHARED_OWNERSHIP_QOS; 
  1541.    end record with 
  1542.      Convention => C; 
  1543.    --  <dref>OwnershipQosPolicy</dref> 
  1544.    --  <dref name="Kind">OwnershipQosPolicy_kind</dref> 
  1545.  
  1546.  
  1547.    OWNERSHIP_QOS_POLICY_DEFAULT : constant OwnershipQosPolicy := 
  1548.                                     (Kind => SHARED_OWNERSHIP_QOS); 
  1549.    --  <dref internal="true"></dref> 
  1550.  
  1551.    --  ------------------------------------------------- 
  1552.    --                 OWNERSHIP_STRENGTH 
  1553.    --  ------------------------------------------------- 
  1554.  
  1555.    OWNERSHIPSTRENGTH_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("OwnershipStrength"); 
  1556.    --  <defgroup>OwnershipStrengthQosGroupDocs</defgroup> 
  1557.    --  <dref>OWNERSHIPSTRENGTH_QOS_POLICY_NAME</dref> 
  1558.  
  1559.    type OwnershipStrengthQosPolicy is record 
  1560.       Value : aliased Long := 0; 
  1561.    end record with 
  1562.      Convention => C; 
  1563.    --  <dref>OwnershipStrengthQosPolicy</dref> 
  1564.    --  <dref name="Value">OwnershipStrengthQosPolicy_value</dref> 
  1565.  
  1566.  
  1567.    OWNERSHIP_STRENGTH_QOS_POLICY_DEFAULT : constant OwnershipStrengthQosPolicy := 
  1568.                                              (Value => 0); 
  1569.    --  <dref internal="true"></dref> 
  1570.  
  1571.    --  ------------------------------------------------- 
  1572.    --                 LIVELINESS 
  1573.    --  ------------------------------------------------- 
  1574.  
  1575.    LIVELINESS_QOS_POLICY_NAME            : constant DDS.String := To_DDS_String ("Liveliness"); 
  1576.    --  <defgroup>LivelinessQosGroupDocs</defgroup> 
  1577.    --  <dref>LIVELINESS_QOS_POLICY_NAME</dref> 
  1578.  
  1579.    type LivelinessQosPolicyKind is new Unsigned_Long; 
  1580.    --  <dref>LivelinessQosPolicyKind</dref> 
  1581.  
  1582.    AUTOMATIC_LIVELINESS_QOS : constant LivelinessQosPolicyKind := 0; 
  1583.    --  <dref>LivelinessQosPolicyKind_AUTOMATIC_LIVELINESS_QOS</dref> 
  1584.  
  1585.    MANUAL_BY_PARTICIPANT_LIVELINESS_QOS : constant LivelinessQosPolicyKind := 1; 
  1586.    --  <dref>LivelinessQosPolicyKind_MANUAL_BY_PARTICIPANT_LIVELINESS_QOS</dref> 
  1587.  
  1588.    MANUAL_BY_TOPIC_LIVELINESS_QOS : constant LivelinessQosPolicyKind := 2; 
  1589.    --  <dref>LivelinessQosPolicyKind_MANUAL_BY_TOPIC_LIVELINESS_QOS</dref> 
  1590.  
  1591.    type LivelinessQosPolicy is record 
  1592.       Kind                          : aliased LivelinessQosPolicyKind := AUTOMATIC_LIVELINESS_QOS; 
  1593.       Lease_Duration                : aliased Duration_T := DURATION_INFINITE; 
  1594.       Assertions_Per_Lease_Duration : aliased Long := 3; 
  1595.    end record with 
  1596.      Convention => C; 
  1597.    --  <dref>LivelinessQosPolicy</dref> 
  1598.    --  <dref name="Kind">LivelinessQosPolicy_kind</dref> 
  1599.    --  <dref name="Lease_Duration">LivelinessQosPolicy_lease_duration</dref> 
  1600.    --  <dref name="Assertions_Per_Lease_Duration">LivelinessQosPolicy_assertions_per_lease_duration</dref> 
  1601.  
  1602.  
  1603.    LIVELINESS_QOS_POLICY_DEFAULT : constant LivelinessQosPolicy := 
  1604.                                      (Kind                          => AUTOMATIC_LIVELINESS_QOS, 
  1605.                                       Lease_Duration                => DURATION_INFINITE, 
  1606.                                       Assertions_Per_Lease_Duration => 3); 
  1607.    --  <dref internal="true"></dref> 
  1608.  
  1609.    --  ------------------------------------------------- 
  1610.    --                 TIME_BASED_FILTER 
  1611.    --  ------------------------------------------------- 
  1612.  
  1613.    TIMEBASEDFILTER_QOS_POLICY_NAME : constant DDS.String  := To_DDS_String ("TimeBasedFilter"); 
  1614.    --  <defgroup>TimeBasedFilterQosGroupDocs</defgroup> 
  1615.    --  <dref>TIMEBASEDFILTER_QOS_POLICY_NAME</dref> 
  1616.  
  1617.    type TimeBasedFilterQosPolicy is record 
  1618.       Minimum_Separation : aliased Duration_T :=  DURATION_ZERO; 
  1619.    end record with 
  1620.      Convention => C; 
  1621.    --  <dref>TimeBasedFilterQosPolicy</dref> 
  1622.    --  <dref name="Minimum_Separation">TimeBasedFilterQosPolicy_minimum_separation</dref> 
  1623.  
  1624.    TIME_BASED_FILTER_QOS_POLICY_DEFAULT : constant  TimeBasedFilterQosPolicy := 
  1625.                                             (Minimum_Separation => DURATION_ZERO); 
  1626.    --  <dref internal="true"></dref> 
  1627.  
  1628.    --  ------------------------------------------------- 
  1629.    --                 PARTITION 
  1630.    --  ------------------------------------------------- 
  1631.  
  1632.    PARTITION_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("Partition"); 
  1633.    --  <defgroup>PartitionQosGroupDocs</defgroup> 
  1634.    --  <dref>PARTITION_QOS_POLICY_NAME</dref> 
  1635.  
  1636.    type PartitionQosPolicy is record 
  1637.       Name : aliased String_Seq.Sequence; 
  1638.    end record with 
  1639.      Convention => C; 
  1640.    --  <dref>PartitionQosPolicy</dref> 
  1641.    --  <dref name="Name">PartitionQosPolicy_name</dref> 
  1642.  
  1643.    --     PARTITION_QOS_POLICY_DEFAULT : constant PartitionQosPolicy := 
  1644.    --                                      (Name => String_Seq.DEFAULT_SEQUENCE); 
  1645.  
  1646.    --  ------------------------------------------------- 
  1647.    --                 RELIABILITY 
  1648.    --  ------------------------------------------------- 
  1649.  
  1650.    RELIABILITY_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("Reliability"); 
  1651.    --  <defgroup>ReliabilityQosGroupDocs</defgroup> 
  1652.    --  <dref>RELIABILITY_QOS_POLICY_NAME</dref> 
  1653.  
  1654.    type ReliabilityQosPolicyKind is new Unsigned_Long; 
  1655.    --  <dref>ReliabilityQosPolicyKind</dref> 
  1656.  
  1657.    BEST_EFFORT_RELIABILITY_QOS : constant ReliabilityQosPolicyKind := 0; 
  1658.    --  <dref>ReliabilityQosPolicyKind_BEST_EFFORT_RELIABILITY_QOS</dref> 
  1659.  
  1660.    RELIABLE_RELIABILITY_QOS : constant ReliabilityQosPolicyKind := 1; 
  1661.    --  <dref>ReliabilityQosPolicyKind_RELIABLE_RELIABILITY_QOS</dref> 
  1662.  
  1663.    type ReliabilityQosPolicyAcknowledgmentModeKind is new Unsigned_Long; 
  1664.    --  <dref>ReliabilityQosPolicyAcknowledgmentModeKind</dref> 
  1665.  
  1666.    PROTOCOL_ACKNOWLEDGMENT_MODE : constant ReliabilityQosPolicyAcknowledgmentModeKind := 0; 
  1667.    --  <dref>ReliabilityQosPolicyAcknowledgmentModeKind_PROTOCOL_ACKNOWLEDGMENT_MODE</dref> 
  1668.  
  1669.    APPICATION_AUTO_ACKNOWLEDGMENT_MODE : constant ReliabilityQosPolicyAcknowledgmentModeKind := 1; 
  1670.    --  <dref>ReliabilityQosPolicyAcknowledgmentModeKind_APPLICATION_AUTO_ACKNOWLEDGMENT_MODE</dref> 
  1671.  
  1672.    APPICATION_ORDERED_ACKNOWLEDGMENT_MODE : constant ReliabilityQosPolicyAcknowledgmentModeKind := 2; 
  1673.    --  <dref>ReliabilityQosPolicyAcknowledgmentModeKind_APPLICATION_ORDERED_ACKNOWLEDGMENT_MODE</dref> 
  1674.  
  1675.    APPICATION_EXPLICIT_ACKNOWLEDGMENT_MODE : constant ReliabilityQosPolicyAcknowledgmentModeKind := 3; 
  1676.    --  <dref>ReliabilityQosPolicyAcknowledgmentModeKind_APPLICATION_EXPLICIT_ACKNOWLEDGMENT_MODE</dref> 
  1677.  
  1678.    type ReliabilityQosPolicy is record 
  1679.       Kind                : aliased ReliabilityQosPolicyKind := BEST_EFFORT_RELIABILITY_QOS; 
  1680.       Max_Blocking_Time   : aliased Duration_T := (0, 100_000_000); 
  1681.       Acknowledgment_Kind : aliased ReliabilityQosPolicyAcknowledgmentModeKind := PROTOCOL_ACKNOWLEDGMENT_MODE; 
  1682.    end record with 
  1683.      Convention => C; 
  1684.    --  <dref>ReliabilityQosPolicy</dref> 
  1685.    --  <dref name="Kind">ReliabilityQosPolicy_kind</dref> 
  1686.    --  <dref name="Max_Blocking_Time">ReliabilityQosPolicy_max_blocking_time</dref> 
  1687.    --  <dref name="Acknowledgment_Kind">ReliabilityQosPolicy_acknowledgment_kind</dref> 
  1688.  
  1689.    RELIABILITY_QOS_POLICY_DEFAULT : constant ReliabilityQosPolicy := 
  1690.                                       (BEST_EFFORT_RELIABILITY_QOS, (0, 100_000_000), PROTOCOL_ACKNOWLEDGMENT_MODE); 
  1691.    --  <dref internal="true"></dref> 
  1692.  
  1693.    --  ------------------------------------------------- 
  1694.    --                 DESTINATION_ORDER 
  1695.    --  ------------------------------------------------- 
  1696.  
  1697.    DESTINATIONORDER_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("DestinationOrder"); 
  1698.    --  <defgroup>DestinationOrderQosGroupDocs</defgroup> 
  1699.    --  <dref>DESTINATIONORDER_QOS_POLICY_NAME</dref> 
  1700.  
  1701.    type DestinationOrderQosPolicyKind is new Unsigned_Long; 
  1702.    --  <dref>DestinationOrderQosPolicyKind</dref> 
  1703.  
  1704.    BY_RECEPTION_TIMESTAMP_DESTINATIONORDER_QOS : constant DestinationOrderQosPolicyKind := 0; 
  1705.    --  <dref>DestinationOrderQosPolicyKind_BY_RECEPTION_TIMESTAMP_DESTINATIONORDER_QOS</dref> 
  1706.  
  1707.    BY_SOURCE_TIMESTAMP_DESTINATIONORDER_QOS : constant DestinationOrderQosPolicyKind := 1; 
  1708.    --  <dref>DestinationOrderQosPolicyKind_BY_SOURCE_TIMESTAMP_DESTINATIONORDER_QOS</dref> 
  1709.  
  1710.    type DestinationOrderQosPolicyScopeKind is new Unsigned_Long; 
  1711.    --  <dref internal="true">DestinationOrderQosPolicyScopeKind</dref> 
  1712.  
  1713.    INSTANCE_SCOPE_DESTINATIONORDER_QOS : constant DestinationOrderQosPolicyScopeKind := 0; 
  1714.    --  <dref internal="true">DestinationOrderQosPolicyScopeKind_INSTANCE_SCOPE_DESTINATIONORDER_QOS</dref> 
  1715.  
  1716.    TOPIC_SCOPE_DESTINATIONORDER_QOS : constant DestinationOrderQosPolicyScopeKind := 1; 
  1717.    --  <dref internal="true">DestinationOrderQosPolicyScopeKind_TOPIC_SCOPE_DESTINATIONORDER_QOS</dref> 
  1718.  
  1719.    type DestinationOrderQosPolicy is record 
  1720.       Kind                       : aliased DestinationOrderQosPolicyKind := BY_RECEPTION_TIMESTAMP_DESTINATIONORDER_QOS; 
  1721.       Scope                      : aliased DestinationOrderQosPolicyScopeKind := INSTANCE_SCOPE_DESTINATIONORDER_QOS; 
  1722.       Source_Timestamp_Tolerance : aliased Duration_T := DURATION_ZERO; 
  1723.    end record; 
  1724.    --  <dref>DestinationOrderQosPolicy</dref> 
  1725.    --  <dref name="Kind">DestinationOrderQosPolicy_kind</dref> 
  1726.    --  <dref internal="true" name="Scope">DestinationOrderQosPolicy_scope</dref> 
  1727.    --  <dref name="source_timestamp_tolerance">DestinationOrderQosPolicy_source_timestamp_tolerance</dref> 
  1728.  
  1729.    pragma Convention (C, DestinationOrderQosPolicy); 
  1730.  
  1731.    DESTINATION_ORDER_QOS_POLICY_DEFAULT : constant DestinationOrderQosPolicy := 
  1732.                                             (BY_RECEPTION_TIMESTAMP_DESTINATIONORDER_QOS, 
  1733.                                              INSTANCE_SCOPE_DESTINATIONORDER_QOS, 
  1734.                                              DURATION_ZERO); 
  1735.    --  <dref internal="true"></dref> 
  1736.  
  1737.    --  ------------------------------------------------- 
  1738.    --                 HISTORY 
  1739.    --  ------------------------------------------------- 
  1740.  
  1741.    HISTORY_QOS_POLICY_NAME              : constant DDS.String := To_DDS_String ("History"); 
  1742.    --  <defgroup>HistoryQosGroupDocs</defgroup> 
  1743.    --  <dref>HISTORY_QOS_POLICY_NAME</dref> 
  1744.  
  1745.    type HistoryQosPolicyKind is new Unsigned_Long; 
  1746.    --  <dref>HistoryQosPolicyKind</dref> 
  1747.  
  1748.    KEEP_LAST_HISTORY_QOS                : constant HistoryQosPolicyKind := 0; 
  1749.    --  <dref>HistoryQosPolicyKind_KEEP_LAST_HISTORY_QOS</dref> 
  1750.  
  1751.    KEEP_ALL_HISTORY_QOS                 : constant HistoryQosPolicyKind := 1; 
  1752.    --  <dref>HistoryQosPolicyKind_KEEP_ALL_HISTORY_QOS</dref> 
  1753.  
  1754.    type RefilterQosPolicyKind is new Unsigned_Long; 
  1755.    --  <dref>RefilterQosPolicyKind</dref> 
  1756.  
  1757.    NONE_REFILTER_QOS                    : constant RefilterQosPolicyKind := 0; 
  1758.    --  <dref>RefilterQosPolicyKind_NONE_REFILTER_QOS</dref> 
  1759.  
  1760.    ALL_REFILTER_QOS                     : constant RefilterQosPolicyKind := 1; 
  1761.    --  <dref>RefilterQosPolicyKind_ALL_REFILTER_QOS</dref> 
  1762.  
  1763.    ON_DEMAND_REFILTER_QOS               : constant RefilterQosPolicyKind := 2; 
  1764.    --  <dref>RefilterQosPolicyKind_ON_DEMAND_REFILTER_QOS</dref> 
  1765.  
  1766.    type HistoryQosPolicy is record 
  1767.       Kind     : aliased HistoryQosPolicyKind := KEEP_LAST_HISTORY_QOS; 
  1768.       Depth    : aliased Long := 1; 
  1769.       Refilter : aliased RefilterQosPolicyKind := NONE_REFILTER_QOS; 
  1770.    end record with 
  1771.      Convention => C; 
  1772.    --  <dref>HistoryQosPolicy</dref> 
  1773.    --  <dref name="Kind">HistoryQosPolicy_kind</dref> 
  1774.    --  <dref name="Depth">HistoryQosPolicy_depth</dref> 
  1775.    --  <dref name="Refilter">HistoryQosPolicy_refilter</dref> 
  1776.  
  1777.    HISTORY_QOS_POLICY_DEFAULT           : constant HistoryQosPolicy := 
  1778.                                             (KEEP_LAST_HISTORY_QOS, 
  1779.                                              1, 
  1780.                                              NONE_REFILTER_QOS); 
  1781.    --  <dref internal="true"></dref> 
  1782.  
  1783.    --  ------------------------------------------------- 
  1784.    --                 LENGTH_UNLIMITED 
  1785.    --  ------------------------------------------------- 
  1786.  
  1787.    LENGTH_UNLIMITED                     : constant Long  := -1; 
  1788.    --  <dref>LENGTH_UNLIMITED</dref> 
  1789.  
  1790.    --  ------------------------------------------------- 
  1791.    --                 DURABILITY_SERVICE 
  1792.    --  ------------------------------------------------- 
  1793.  
  1794.    DURABILITYSERVICE_QOS_POLICY_NAME    : constant DDS.String := To_DDS_String ("DurabilityService"); 
  1795.    --  <defgroup>DurabilityServiceQosGroupDocs</defgroup> 
  1796.    --  <dref>DURABILITY_QOS_POLICY_NAME</dref> 
  1797.  
  1798.    type DurabilityServiceQosPolicy is record 
  1799.       Service_Cleanup_Delay    : aliased Duration_T := DURATION_ZERO; 
  1800.       History_Kind             : aliased HistoryQosPolicyKind := KEEP_LAST_HISTORY_QOS; 
  1801.       History_Depth            : aliased Long := 1; 
  1802.       Max_Samples              : aliased Long := LENGTH_UNLIMITED; 
  1803.       Max_Instances            : aliased Long := LENGTH_UNLIMITED; 
  1804.       Max_Samples_Per_Instance : aliased Long := LENGTH_UNLIMITED; 
  1805.    end record with 
  1806.      Convention => C; 
  1807.    --  <dref>DurabilityServiceQosPolicy</dref> 
  1808.    --  <dref name="Service_Cleanup_Delay">DurabilityServiceQosPolicy_service_cleanup_delay</dref> 
  1809.    --  <dref name="History_Kind">DurabilityServiceQosPolicy_history_kind</dref> 
  1810.    --  <dref name="History_Depth">DurabilityServiceQosPolicy_history_depth</dref> 
  1811.    --  <dref name="Max_Samples">DurabilityServiceQosPolicy_max_samples</dref> 
  1812.    --  <dref name="Max_Instances">DurabilityServiceQosPolicy_max_instances</dref> 
  1813.    --  <dref name="Max_Samples_Per_Instance">DurabilityServiceQosPolicy_max_samples_per_instance</dref> 
  1814.  
  1815.  
  1816.    DURABILITY_SERVICE_QOS_POLICY_DEFAULT : constant DurabilityServiceQosPolicy := 
  1817.                                              (DURATION_ZERO, 
  1818.                                               KEEP_LAST_HISTORY_QOS, 
  1819.                                               1, 
  1820.                                               LENGTH_UNLIMITED, 
  1821.                                               LENGTH_UNLIMITED, 
  1822.                                               LENGTH_UNLIMITED); 
  1823.    --  <dref internal="true"></dref> 
  1824.  
  1825.    --  ------------------------------------------------- 
  1826.    --                 RESOURCE_LIMITS 
  1827.    --  ------------------------------------------------- 
  1828.  
  1829.    RESOURCELIMITS_QOS_POLICY_NAME        : constant DDS.String := To_DDS_String ("ResourceLimits"); 
  1830.    --  <defgroup>ResourceLimitsQosGroupDocs</defgroup> 
  1831.    --  <dref>RESOURCELIMITS_QOS_POLICY_NAME</dref> 
  1832.  
  1833.    type ResourceLimitsQosPolicy is record 
  1834.       Max_Samples              : aliased Long := LENGTH_UNLIMITED; 
  1835.       Max_Instances            : aliased Long := LENGTH_UNLIMITED; 
  1836.       Max_Samples_Per_Instance : aliased Long := LENGTH_UNLIMITED; 
  1837.       Initial_Samples          : aliased Long := 32; 
  1838.       Initial_Instances        : aliased Long := 32; 
  1839.       Instance_Hash_Buckets    : aliased Long := 32; 
  1840.    end record; 
  1841.    --  <dref>ResourceLimitsQosPolicy</dref> 
  1842.    --  <dref name="Max_Samples">ResourceLimitsQosPolicy_max_samples</dref> 
  1843.    --  <dref name="Max_Instances">ResourceLimitsQosPolicy_max_instances</dref> 
  1844.    --  <dref name="Max_Samples_Per_Instance">ResourceLimitsQosPolicy_max_samples_per_instance</dref> 
  1845.    --  <dref name="Initial_Samples">ResourceLimitsQosPolicy_initial_samples</dref> 
  1846.    --  <dref name="Initial_Instances">ResourceLimitsQosPolicy_initial_instances</dref> 
  1847.    --  <dref name="Instance_Hash_Buckets">ResourceLimitsQosPolicy_instance_hash_buckets</dref> 
  1848.  
  1849.    pragma Convention (C, ResourceLimitsQosPolicy); 
  1850.  
  1851.    RESOURCE_LIMITS_QOS_POLICY_DEFAULT : constant ResourceLimitsQosPolicy := 
  1852.                                           (LENGTH_UNLIMITED, 
  1853.                                            LENGTH_UNLIMITED, 
  1854.                                            LENGTH_UNLIMITED, 
  1855.                                            32, 
  1856.                                            32, 
  1857.                                            32); 
  1858.    --  <dref internal="true"></dref> 
  1859.  
  1860.    --  ------------------------------------------------- 
  1861.    --                 TRANSPORT_PRIORITY 
  1862.    --  ------------------------------------------------- 
  1863.  
  1864.    TRANSPORTPRIORITY_QOS_POLICY_NAME  : constant DDS.String := To_DDS_String ("TransportPriority"); 
  1865.    --  <defgroup>TransportPriorityQosGroupDocs</defgroup> 
  1866.    --  <dref>TRANSPORTPRIORITY_QOS_POLICY_NAME</dref> 
  1867.  
  1868.    type TransportPriorityQosPolicy is record 
  1869.       Value : aliased Long := 0; 
  1870.    end record with 
  1871.      Convention => C; 
  1872.    --  <dref>TransportPriorityQosPolicy</dref> 
  1873.    --  <dref name="Value">TransportPriorityQosPolicy_value</dref> 
  1874.  
  1875.    TRANSPORT_PRIORITY_QOS_POLICY_DEFAULT : constant TransportPriorityQosPolicy := 
  1876.                                              (Value => 0); 
  1877.    --  <dref internal="true"></dref> 
  1878.  
  1879.    --  ------------------------------------------------- 
  1880.    --                 LIFESPAN 
  1881.    --  ------------------------------------------------- 
  1882.  
  1883.    LIFESPAN_QOS_POLICY_NAME              : constant DDS.String := To_DDS_String ("Lifespan"); 
  1884.    --  <defgroup>LifespanQosGroupDocs</defgroup> 
  1885.    --  <dref>LIFESPAN_QOS_POLICY_NAME</dref> 
  1886.  
  1887.    type LifespanQosPolicy is record 
  1888.       Duration : aliased Duration_T := DURATION_INFINITE; 
  1889.    end record with 
  1890.      Convention => C; 
  1891.    --  <dref>LifespanQosPolicy</dref> 
  1892.    --  <dref name="Duration">LifespanQosPolicy_duration</dref> 
  1893.  
  1894.  
  1895.    LIFESPAN_QOS_POLICY_DEFAULT        : constant LifespanQosPolicy := 
  1896.                                           (Duration => DURATION_INFINITE); 
  1897.    --  <dref internal="true"></dref> 
  1898.  
  1899.    --  ------------------------------------------------- 
  1900.    --                 WRITER_DATA_LIFECYCLE 
  1901.    --  ------------------------------------------------- 
  1902.  
  1903.    WRITERDATALIFECYCLE_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("WriterDataLifecycle"); 
  1904.    --  <defgroup>WriterDataLifecycleQosGroupDocs</defgroup> 
  1905.    --  <dref>WRITERDATALIFECYCLE_QOS_POLICY_NAME</dref> 
  1906.  
  1907.    type WriterDataLifecycleQosPolicy is record 
  1908.       Autodispose_Unregistered_Instances     : aliased DDS.Boolean := True; 
  1909.       Autopurge_Unregistered_Instances_Delay : aliased DDS.Duration_T := DURATION_INFINITE; 
  1910.       Autopurge_Disposed_Instances_Delay     : aliased DDS.Duration_T := DURATION_INFINITE; 
  1911.    end record with 
  1912.      Convention => C; 
  1913.    --  <dref>WriterDataLifecycleQosPolicy</dref> 
  1914.    --  <dref name="Autodispose_Unregistered_Instances">WriterDataLifecycleQosPolicy_autodispose_unregistered_instances</dref> 
  1915.    --  <dref name="Autopurge_Unregistered_Instances_Delay">WriterDataLifecycleQosPolicy_autopurge_unregistered_instances_delay</dref> 
  1916.    --  <dref name="Autopurge_Disposed_Instances_Delay">WriterDataLifecycleQosPolicy_autopurge_disposed_instances_delay</dref> 
  1917.  
  1918.    WRITER_DATA_LIFECYCLE_QOS_POLICY_DEFAULT : constant WriterDataLifecycleQosPolicy := 
  1919.                                                 (Autodispose_Unregistered_Instances     => True, 
  1920.                                                  Autopurge_Unregistered_Instances_Delay => DURATION_INFINITE, 
  1921.                                                  Autopurge_Disposed_Instances_Delay     => DURATION_INFINITE); 
  1922.    --  <dref internal="true"></dref> 
  1923.  
  1924.    --  ------------------------------------------------- 
  1925.    --                 READER_DATA_LIFECYCLE 
  1926.    --  ------------------------------------------------- 
  1927.  
  1928.    READERDATALIFECYCLE_QOS_POLICY_NAME      : constant DDS.String := To_DDS_String ("ReaderDataLifecycle"); 
  1929.    --  <defgroup>ReaderDataLifecycleQosGroupDocs</defgroup> 
  1930.    --  <dref>READERDATALIFECYCLE_QOS_POLICY_NAME</dref> 
  1931.  
  1932.    type ReaderDataLifecycleQosPolicy is record 
  1933.       Autopurge_Nowriter_Samples_Delay   : aliased Duration_T := DURATION_INFINITE; 
  1934.       Autopurge_Disposed_Samples_Delay   : aliased Duration_T := DURATION_INFINITE; 
  1935.       Autopurge_Disposed_Instances_Delay : aliased Duration_T := DURATION_INFINITE; 
  1936.    end record with 
  1937.      Convention => C; 
  1938.    --  <dref>ReaderDataLifecycleQosPolicy</dref> 
  1939.    --  <dref name="Autopurge_Nowriter_Samples_Delay">ReaderDataLifecycleQosPolicy_autopurge_nowriter_samples_delay</dref> 
  1940.    --  <dref name="Autopurge_Disposed_Samples_Delay">ReaderDataLifecycleQosPolicy_autopurge_disposed_samples_delay</dref> 
  1941.    --  <dref name="Autopurge_Disposed_Instances_Delay">ReaderDataLifecycleQosPolicy_autopurge_disposed_instances_delay</dref> 
  1942.  
  1943.    READER_DATA_LIFECYCLE_QOS_POLICY_DEFAULT : constant ReaderDataLifecycleQosPolicy := 
  1944.                                                 (Autopurge_Nowriter_Samples_Delay   => DURATION_INFINITE, 
  1945.                                                  Autopurge_Disposed_Samples_Delay   => DURATION_INFINITE, 
  1946.                                                  Autopurge_Disposed_Instances_Delay => DURATION_INFINITE); 
  1947.    --  <dref internal="true"></dref> 
  1948.  
  1949.    --  ------------------------------------------------- 
  1950.    --                 ENTITY_FACTORY 
  1951.    --  ------------------------------------------------- 
  1952.  
  1953.    ENTITYFACTORY_QOS_POLICY_NAME            : constant DDS.String := To_DDS_String ("EntityFactory"); 
  1954.    --  <defgroup>EntityFactoryQosGroupDocs</defgroup> 
  1955.    --  <dref>ENTITYFACTORY_QOS_POLICY_NAME</dref> 
  1956.  
  1957.    type EntityFactoryQosPolicy is record 
  1958.       Autoenable_Created_Entities : aliased DDS.Boolean := True; 
  1959.    end record with 
  1960.      Convention => C; 
  1961.    --  <dref>EntityFactoryQosPolicy</dref> 
  1962.    --  <dref name="Autoenable_Created_Entities">EntityFactoryQosPolicy_autoenable_created_entities</dref> 
  1963.  
  1964.    ENTITY_FACTORY_QOS_POLICY_DEFAULT  : constant EntityFactoryQosPolicy := 
  1965.                                           (Autoenable_Created_Entities => True); 
  1966.    --  <dref internal="true"></dref> 
  1967.  
  1968.    --  ------------------------------------------------- 
  1969.    --                 EXTENDED QOS SUPPORT 
  1970.    --  ------------------------------------------------- 
  1971.  
  1972.    --!!! 
  1973.    --!!! RTI DDS Extensions 
  1974.    --!!! 
  1975.  
  1976.    --  ------------------------------------------------- 
  1977.    --                 AllocationSettings_t 
  1978.    --  ------------------------------------------------- 
  1979.  
  1980.    type AllocationSettings_T is record 
  1981.       Initial_Count     : aliased Long := 0; 
  1982.       Max_Count         : aliased Long := 0; 
  1983.       Incremental_Count : aliased Long := 0; 
  1984.    end record with 
  1985.      Convention => C; 
  1986.    --  <defgroup>ExtendedQosSupportGroupDocs</defgroup> 
  1987.    --  <dref>AllocationSettings_t</dref> 
  1988.    --  <dref name="Initial_Count">AllocationSettings_t_initial_count</dref> 
  1989.    --  <dref name="Max_Count">AllocationSettings_t_max_count</dref> 
  1990.    --  <dref name="Incremental_Count">AllocationSettings_t_incremental_count</dref> 
  1991.  
  1992.    AllocationSettings_T_AUTO : constant AllocationSettings_T := ( 
  1993.       Initial_Count     => RTIDDS.Low_Level.ndds_reda_reda_fastBuffer_h.REDA_FAST_BUFFER_POOL_AUTO, 
  1994.       Max_Count         => RTIDDS.Low_Level.ndds_reda_reda_fastBuffer_h.REDA_FAST_BUFFER_POOL_AUTO, 
  1995.       Incremental_Count => RTIDDS.Low_Level.ndds_reda_reda_fastBuffer_h.REDA_FAST_BUFFER_POOL_AUTO); 
  1996.  
  1997.    type  AllocationSettings_T_Access is access all  AllocationSettings_T; 
  1998.  
  1999.    function "+" (Left, Right : aliased AllocationSettings_T) return AllocationSettings_T; 
  2000.  
  2001.    --  ------------------------------------------------- 
  2002.    --                 RtpsReliableReaderProtocol_t 
  2003.    --  ------------------------------------------------- 
  2004.  
  2005.    type RtpsReliableReaderProtocol_T is record 
  2006.       Min_Heartbeat_Response_Delay       : aliased Duration_T := (0, 0); 
  2007.       Max_Heartbeat_Response_Delay       : aliased Duration_T := (0, 500_000_000); 
  2008.       Heartbeat_Suppression_Duration     : aliased Duration_T := (0, 62_500_000); 
  2009.       Nack_Period                        : aliased Duration_T := (5, 0); 
  2010.       Receive_Window_Size                : aliased Long := 256; 
  2011.       Round_Trip_Time                    : aliased Duration_T := (0, 0); 
  2012.       App_Ack_Period                     : aliased Duration_T := (5, 0); 
  2013.       Min_App_Ack_Response_Keep_Duration : aliased Duration_T := (0, 0); 
  2014.       Samples_Per_App_Ack                : aliased Long := 1; 
  2015.    end record with Convention => C; 
  2016.    --  <dref>RtpsReliableReaderProtocol_t</dref> 
  2017.    --  <dref name="Min_Heartbeat_Response_Delay">RtpsReliableReaderProtocol_t_min_heartbeat_response_delay</dref> 
  2018.    --  <dref name="Max_Heartbeat_response_Delay">RtpsReliableReaderProtocol_t_max_heartbeat_response_delay</dref> 
  2019.    --  <dref name="Heartbeat_Suppression_Duration">RtpsReliableReaderProtocol_t_heartbeat_suppression_duration</dref> 
  2020.    --  <dref name="Nack_Period">RtpsReliableReaderProtocol_t_nack_period</dref> 
  2021.    --  <dref name="Receive_Window_Size">RtpsReliableReaderProtocol_t_receive_window_size</dref> 
  2022.    --  <dref name="Round_Trip_Time">RtpsReliableReaderProtocol_t_round_trip_time</dref> 
  2023.    --  <dref name="App_Ack_Period">RtpsReliableReaderProtocol_t_app_ack_period</dref> 
  2024.    --  <dref name="Min_App_Ack_Response_Keep_Duration">RtpsReliableReaderProtocol_t_min_app_ack_response_keep_duration</dref> 
  2025.    --  <dref name="Samples_Per_App_Ack">RtpsReliableReaderProtocol_t_samples_per_app_ack</dref> 
  2026.  
  2027.    RTPS_RELIABLE_READER_PROTOCOL_DEFAULT : aliased constant RtpsReliableReaderProtocol_T := 
  2028.                                              (Min_Heartbeat_Response_Delay       => (0, 0), 
  2029.                                               Max_Heartbeat_Response_Delay       => (0, 500_000_000), 
  2030.                                               Heartbeat_Suppression_Duration     => (0, 62_500_000), 
  2031.                                               Nack_Period                        => (5, 0), 
  2032.                                               Receive_Window_Size                => 256, 
  2033.                                               Round_Trip_Time                    => (0, 0), 
  2034.                                               App_Ack_Period                     => (5, 0), 
  2035.                                               Min_App_Ack_Response_Keep_Duration => (0, 0), 
  2036.                                               Samples_Per_App_Ack                => 1); 
  2037.    --  <dref internal="true"></dref> 
  2038.  
  2039.    RTPS_RELIABLE_READER_PROTOCOL_DISCOVERY_CONFIG_DEFAULT : 
  2040.    aliased  constant RtpsReliableReaderProtocol_T := (Min_Heartbeat_Response_Delay       => (0, 0), 
  2041.                                                       Max_Heartbeat_Response_Delay       => (0, 0), 
  2042.                                                       Heartbeat_Suppression_Duration     => (0, 62_500_000), 
  2043.                                                       Nack_Period                        => (5, 0), 
  2044.                                                       Receive_Window_Size                => 256, 
  2045.                                                       Round_Trip_Time                    => (0, 0), 
  2046.                                                       App_Ack_Period                     => (5, 0), 
  2047.                                                       Min_App_Ack_Response_Keep_Duration => (0, 0), 
  2048.                                                       Samples_Per_App_Ack                => 1); 
  2049.    --  <dref internal="true"></dref> 
  2050.  
  2051.    RTPS_PARTICIPANT_MESSAGE_READER_DISCOVERY_CONFIG_DEFAULT : 
  2052.    aliased constant RtpsReliableReaderProtocol_T := (Min_Heartbeat_Response_Delay       => (0, 0), 
  2053.                                                      Max_Heartbeat_Response_Delay       => (0, 0), 
  2054.                                                      Heartbeat_Suppression_Duration     => (0, 62_500_000), 
  2055.                                                      Nack_Period                        => (5, 0), 
  2056.                                                      Receive_Window_Size                => 256, 
  2057.                                                      Round_Trip_Time                    => (0, 0), 
  2058.                                                      App_Ack_Period                     => (5, 0), 
  2059.                                                      Min_App_Ack_Response_Keep_Duration => (0, 0), 
  2060.                                                      Samples_Per_App_Ack                => 1); 
  2061.    --  <dref internal="true"></dref> 
  2062.  
  2063.    --  ------------------------------------------------- 
  2064.    --                 RtpsReliableWriterProtocol_t 
  2065.    --  ------------------------------------------------- 
  2066.  
  2067.    type RtpsReliableWriterProtocol_T is record -- RTPS_RELIABLE_WRITER_PROTOCOL_DEFAULT is default 
  2068.       Low_Watermark                                                     : aliased Long := 0; 
  2069.       High_Watermark                                                    : aliased Long := 1; 
  2070.       Heartbeat_Period                                                  : aliased Duration_T := (3, 0); 
  2071.       Fast_Heartbeat_Period                                             : aliased Duration_T := (3, 0); 
  2072.       Late_Joiner_Heartbeat_Period                                      : aliased Duration_T := (3, 0); 
  2073.       Virtual_Heartbeat_Period                                          : aliased Duration_T := DURATION_INFINITE; 
  2074.       Samples_Per_Virtual_Heartbeat                                     : aliased Long := -1; 
  2075.       Max_Heartbeat_Retries                                             : aliased Long := 10; 
  2076.       Inactivate_Nonprogressing_Readers                                 : aliased Boolean := False; 
  2077.       Heartbeats_Per_Max_Samples                                        : aliased Long := 8; 
  2078.       Min_Nack_Response_Delay                                           : aliased Duration_T := (0, 0); 
  2079.       Max_Nack_Response_Delay                                           : aliased Duration_T := (0, 200_000_000); 
  2080.       Nack_Suppression_Duration                                         : aliased Duration_T := (0, 0); 
  2081.       Max_Bytes_Per_Nack_Response                                       : aliased Long := 131072; 
  2082.       Disable_Positive_Acks_Min_Sample_Keep_Duration                    : aliased Duration_T := (0, 1_000_000); 
  2083.       Disable_Positive_Acks_Max_Sample_Keep_Duration                    : aliased Duration_T := (1, 0); 
  2084.       Disable_Positive_Acks_Sample_Min_Separation                       : aliased Duration_T := (0, 1_000_000); 
  2085.       Disable_Positive_Acks_Enable_Adaptive_Sample_Keep_Duration        : aliased Boolean := True; 
  2086.       Disable_Positive_Acks_Enable_Spin_Wait                            : aliased Boolean := False; 
  2087.       Disable_Positive_Acks_Decrease_Sample_Keep_Duration_Factor        : aliased Long := 0; 
  2088.       Disable_Positive_Acks_Increase_Sample_Keep_Duration_Factor        : aliased Long := 3; 
  2089.       Min_Send_Window_Size                                              : aliased Long := 32; 
  2090.       Max_Send_Window_Size                                              : aliased Long := 256; 
  2091.       Send_Window_Update_Period                                         : aliased Duration_T := (3, 0); 
  2092.       Send_Window_Increase_Factor                                       : aliased Long := 105; 
  2093.       Send_Window_Decrease_Factor                                       : aliased Long := 70; 
  2094.       Enable_Multicast_Periodic_Heartbeat                               : aliased Boolean := False; 
  2095.       Multicast_Resend_Threshold                                        : aliased Long := 2; 
  2096.    end record with 
  2097.      Convention => C; 
  2098.    --  <dref>RtpsReliableWriterProtocol_t</dref> 
  2099.    --  <dref name="low_watermark">RtpsReliableWriterProtocol_t_low_watermark</dref> 
  2100.    --  <dref name="high_watermark">RtpsReliableWriterProtocol_t_high_watermark</dref> 
  2101.    --  <dref name="heartbeat_period">RtpsReliableWriterProtocol_t_heartbeat_period</dref> 
  2102.    --  <dref name="fast_heartbeat_period">RtpsReliableWriterProtocol_t_fast_heartbeat_period</dref> 
  2103.    --  <dref name="late_joiner_heartbeat_period">RtpsReliableWriterProtocol_t_late_joiner_heartbeat_period</dref> 
  2104.    --  <dref name="virtual_heartbeat_period">RtpsReliableWriterProtocol_t_virtual_heartbeat_period</dref> 
  2105.    --  <dref name="samples_per_virtual_heartbeat">RtpsReliableWriterProtocol_t_samples_per_virtual_heartbeat</dref> 
  2106.    --  <dref name="max_heartbeat_retries">RtpsReliableWriterProtocol_t_max_heartbeat_retries</dref> 
  2107.    --  <dref name="inactivate_nonprogresing_readers">RtpsReliableWriterProtocol_t_inactivate_nonprogressing_readers</dref> 
  2108.    --  <dref name="heartbeats_per_max_samples">RtpsReliableWriterProtocol_t_heartbeats_per_max_samples</dref> 
  2109.    --  <dref name="min_nack_response_delay">RtpsReliableWriterProtocol_t_min_nack_response_delay</dref> 
  2110.    --  <dref name="max_nack_response_delay">RtpsReliableWriterProtocol_t_max_nack_response_delay</dref> 
  2111.    --  <dref name="nack_suppression_duration">RtpsReliableWriterProtocol_t_nack_suppression_duration</dref> 
  2112.    --  <dref name="max_bytes_per_nack_response">RtpsReliableWriterProtocol_t_max_bytes_per_nack_response</dref> 
  2113.    --  <dref name="disable_positive_acks_min_sample_keep_duration">RtpsReliableWriterProtocol_t_disable_positive_acks_min_sample_keep_duration</dref> 
  2114.    --  <dref name="disable_positive_acks_max_sample_keep_duration">RtpsReliableWriterProtocol_t_disable_positive_acks_max_sample_keep_duration</dref> 
  2115.    --  <dref internal="true" name="disable_positive_acks_sample_min_separation">RtpsReliableWriterProtocol_t_disable_positive_acks_sample_min_separation</dref> 
  2116.    --  <dref name="disable_positive_acks_enable_adaptive_sample_keep_duration">RtpsReliableWriterProtocol_t_disable_positive_acks_enable_adaptive_sample_keep_duration</dref> 
  2117.    --  <dref name="disable_positive_acks_enable_spin_wait">RtpsReliableWriterProtocol_t_disable_positive_acks_enable_spin_wait</dref> 
  2118.    --  <dref name="disable_positive_acks_decrease_sample_keep_duration_factor">RtpsReliableWriterProtocol_t_disable_positive_acks_decrease_sample_keep_duration_factor</dref> 
  2119.    --  <dref name="disable_positive_acks_increase_sample_keep_duration_factor">RtpsReliableWriterProtocol_t_disable_positive_acks_increase_sample_keep_duration_factor</dref> 
  2120.    --  <dref name="min_send_window_size">RtpsReliableWriterProtocol_t_min_send_window_size</dref> 
  2121.    --  <dref name="max_send_window_size">RtpsReliableWriterProtocol_t_max_send_window_size</dref> 
  2122.    --  <dref name="send_window_update_period">RtpsReliableWriterProtocol_t_send_window_update_period</dref> 
  2123.    --  <dref name="send_window_increase_factor">RtpsReliableWriterProtocol_t_send_window_increase_factor</dref> 
  2124.    --  <dref name="send_window_decrease_factor">RtpsReliableWriterProtocol_t_send_window_decrease_factor</dref> 
  2125.    --  <dref name="enable_multicast_periodic_heartbeat">RtpsReliableWriterProtocol_t_enable_multicast_periodic_heartbeat</dref> 
  2126.    --  <dref name="multicast_resend_threshold">RtpsReliableWriterProtocol_t_multicast_resend_threshold</dref> 
  2127.  
  2128.    --  for RtpsReliableWriterProtocol_T'Alignment use 8; 
  2129.    --  pragma Annotate (RtpsReliableWriterProtocol_T, Source => RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_RtpsReliableWriterProtocol_t); 
  2130.  
  2131.    RTPS_RELIABLE_WRITER_PROTOCOL_DEFAULT : 
  2132.    constant RtpsReliableWriterProtocol_T := (Low_Watermark                                                    => 0, 
  2133.                                              High_Watermark                                                   => 1, 
  2134.                                              Heartbeat_Period                                                 => (3, 0), 
  2135.                                              Fast_Heartbeat_Period                                            => (3, 0), 
  2136.                                              Late_Joiner_Heartbeat_Period                                     => (3, 0), 
  2137.                                              Virtual_Heartbeat_Period                                         => DURATION_INFINITE, 
  2138.                                              Samples_Per_Virtual_Heartbeat                                    => -1, 
  2139.                                              Max_Heartbeat_Retries                                            => 10, 
  2140.                                              Inactivate_Nonprogressing_Readers                                => False, 
  2141.                                              Heartbeats_Per_Max_Samples                                       => 8, 
  2142.                                              Min_Nack_Response_Delay                                          => (0, 0), 
  2143.                                              Max_Nack_Response_Delay                                          => (0, 200_000_000), 
  2144.                                              Nack_Suppression_Duration                                        => (0, 0), 
  2145.                                              Max_Bytes_Per_Nack_Response                                      => 131072, 
  2146.                                              Disable_Positive_Acks_Min_Sample_Keep_Duration                   => (0, 1_000_000), 
  2147.                                              Disable_Positive_Acks_Max_Sample_Keep_Duration                   => (1, 0), 
  2148.                                              Disable_Positive_Acks_Sample_Min_Separation                      => (0, 100_000), 
  2149.                                              Disable_Positive_Acks_Enable_Adaptive_Sample_Keep_Duration       => True, 
  2150.                                              Disable_Positive_Acks_Enable_Spin_Wait                           => False, 
  2151.                                              Disable_Positive_Acks_Decrease_Sample_Keep_Duration_Factor       => 0, 
  2152.                                              Disable_Positive_Acks_Increase_Sample_Keep_Duration_Factor       => 3, 
  2153.                                              Min_Send_Window_Size                                             => 32, 
  2154.                                              Max_Send_Window_Size                                             => 256, 
  2155.                                              Send_Window_Update_Period                                        => (3, 0), 
  2156.                                              Send_Window_Increase_Factor                                      => 105, 
  2157.                                              Send_Window_Decrease_Factor                                      => 70, 
  2158.                                              Enable_Multicast_Periodic_Heartbeat                              => False, 
  2159.                                              Multicast_Resend_Threshold                                       => 2 
  2160.                                             ); 
  2161.    --  <dref internal="true"></dref> 
  2162.  
  2163.    RTPS_RELIABLE_WRITER_PROTOCOL_DISCOVERY_CONFIG_DEFAULT  : 
  2164.    constant RtpsReliableWriterProtocol_T := (Low_Watermark                                                      => 0, 
  2165.                                              High_Watermark                                                     => 1, 
  2166.                                              Heartbeat_Period                                                   => (3, 0), 
  2167.                                              Fast_Heartbeat_Period                                              => (3, 0), 
  2168.                                              Late_Joiner_Heartbeat_Period                                       => (3, 0), 
  2169.                                              Virtual_Heartbeat_Period                                           => DURATION_INFINITE, 
  2170.                                              Samples_Per_Virtual_Heartbeat                                      => -1, 
  2171.                                              Max_Heartbeat_Retries                                              => 10, 
  2172.                                              Inactivate_Nonprogressing_Readers                                  => False, 
  2173.                                              Heartbeats_Per_Max_Samples                                         => 8, 
  2174.                                              Min_Nack_Response_Delay                                            => (0, 0), 
  2175.                                              Max_Nack_Response_Delay                                            => (0, 0), 
  2176.                                              Nack_Suppression_Duration                                          => (0, 0), 
  2177.                                              Max_Bytes_Per_Nack_Response                                        => 131072, 
  2178.                                              Disable_Positive_Acks_Min_Sample_Keep_Duration                     => (0, 1_000_000), 
  2179.                                              Disable_Positive_Acks_Max_Sample_Keep_Duration                     => (1, 0), 
  2180.                                              Disable_Positive_Acks_Sample_Min_Separation                        => (0, 100_000), 
  2181.                                              Disable_Positive_Acks_Enable_Adaptive_Sample_Keep_Duration         => True, 
  2182.                                              Disable_Positive_Acks_Enable_Spin_Wait                             => False, 
  2183.                                              Disable_Positive_Acks_Decrease_Sample_Keep_Duration_Factor         => 95, 
  2184.                                              Disable_Positive_Acks_Increase_Sample_Keep_Duration_Factor         => 150, 
  2185.                                              Min_Send_Window_Size                                               => -1, 
  2186.                                              Max_Send_Window_Size                                               => -1, 
  2187.                                              Send_Window_Update_Period                                          => (3, 0), 
  2188.                                              Send_Window_Increase_Factor                                        => 105, 
  2189.                                              Send_Window_Decrease_Factor                                        => 50, 
  2190.                                              Enable_Multicast_Periodic_Heartbeat                                => False, 
  2191.                                              Multicast_Resend_Threshold                                         => 2 
  2192.                                             ); 
  2193.    --  <dref internal="true"></dref> 
  2194.  
  2195.    RTPS_PARTICIPANT_MESSAGE_WRITER_DISCOVERY_CONFIG_DEFAULT  : 
  2196.    constant RtpsReliableWriterProtocol_T := (Low_Watermark                                                      => 0, 
  2197.                                              High_Watermark                                                     => 1, 
  2198.                                              Heartbeat_Period                                                   => (1, 0), 
  2199.                                              Fast_Heartbeat_Period                                              => (1, 0), 
  2200.                                              Late_Joiner_Heartbeat_Period                                       => (1, 0), 
  2201.                                              Virtual_Heartbeat_Period                                           => DURATION_INFINITE, 
  2202.                                              Samples_Per_Virtual_Heartbeat                                      => -1, 
  2203.                                              Max_Heartbeat_Retries                                              => 10, 
  2204.                                              Inactivate_Nonprogressing_Readers                                  => False, 
  2205.                                              Heartbeats_Per_Max_Samples                                         => 1, 
  2206.                                              Min_Nack_Response_Delay                                            => (0, 0), 
  2207.                                              Max_Nack_Response_Delay                                            => (0, 0), 
  2208.                                              Nack_Suppression_Duration                                          => (0, 0), 
  2209.                                              Max_Bytes_Per_Nack_Response                                        => 9216, 
  2210.                                              Disable_Positive_Acks_Min_Sample_Keep_Duration                     => (0, 1_000_000), 
  2211.                                              Disable_Positive_Acks_Max_Sample_Keep_Duration                     => (1, 0), 
  2212.                                              Disable_Positive_Acks_Sample_Min_Separation                        => (0, 100_000), 
  2213.                                              Disable_Positive_Acks_Enable_Adaptive_Sample_Keep_Duration         => True, 
  2214.                                              Disable_Positive_Acks_Enable_Spin_Wait                             => False, 
  2215.                                              Disable_Positive_Acks_Decrease_Sample_Keep_Duration_Factor         => 95, 
  2216.                                              Disable_Positive_Acks_Increase_Sample_Keep_Duration_Factor         => 150, 
  2217.                                              Min_Send_Window_Size                                               => -1, 
  2218.                                              Max_Send_Window_Size                                               => -1, 
  2219.                                              Send_Window_Update_Period                                          => (1, 0), 
  2220.                                              Send_Window_Increase_Factor                                        => 105, 
  2221.                                              Send_Window_Decrease_Factor                                        => 50, 
  2222.                                              Enable_Multicast_Periodic_Heartbeat                                => False, 
  2223.                                              Multicast_Resend_Threshold                                         => 2 
  2224.                                             ); 
  2225.    --  <dref internal="true"></dref> 
  2226.  
  2227.    --  ------------------------------------------------- 
  2228.    --                 UserObjectSettings_t 
  2229.    --  ------------------------------------------------- 
  2230.  
  2231.    type UserObjectSettings_T is record 
  2232.       Size      : aliased Long := 0; 
  2233.       Alignment : aliased Long := 0; 
  2234.    end record with 
  2235.      Convention => C; 
  2236.    --  <dref internal="true">UserObjectSettings_t</dref> 
  2237.    --  <dref internal="true" name="Size">UserObjectSettings_t_size</dref> 
  2238.    --  <dref internal="true" name="Alignment">UserObjectSettings_t_alignment</dref> 
  2239.  
  2240.    --  ------------------------------------------------- 
  2241.    --                 TransportUnicastSettings_t 
  2242.    --  ------------------------------------------------- 
  2243.  
  2244.    type TransportUnicastSettings_T is record 
  2245.       Transports   : aliased String_Seq.Sequence; 
  2246.       Receive_Port : aliased Long := 0; 
  2247.    end record with 
  2248.      Convention => C; 
  2249.    --  <defgroup>TransportUnicastSettingsGroupDocs</defgroup> 
  2250.    --  <dref>TransportUnicastSettings_t</dref> 
  2251.    --  <dref name="Transport">TransportUnicastSettings_t_transports</dref> 
  2252.    --  <dref name="Receive_Port">TransportUnicastSettings_t_receive_port</dref> 
  2253.  
  2254.    type TransportUnicastSettings_T_Access is access all TransportUnicastSettings_T; 
  2255.    type TransportUnicastSettings_T_Array is array 
  2256.      (Natural range <>) of aliased TransportUnicastSettings_T; 
  2257.    procedure Initialize (Self  : in out TransportUnicastSettings_T); 
  2258.    procedure Finalize (Self  : in out TransportUnicastSettings_T); 
  2259.    procedure Copy (Dst : in out TransportUnicastSettings_T; 
  2260.                    Src : in TransportUnicastSettings_T); 
  2261.  
  2262.    package TransportUnicastSettings_Seq is new DDS_Support.Sequences_Generic 
  2263.      (TransportUnicastSettings_T, 
  2264.       TransportUnicastSettings_T_Access, 
  2265.       DDS.Natural, 
  2266.       1, 
  2267.       TransportUnicastSettings_T_Array); 
  2268.    --  <dref>TransportUnicastSettingsSeq</dref> 
  2269.  
  2270.    --  ------------------------------------------------- 
  2271.    --                 TransportMulticastSettings_t 
  2272.    --  ------------------------------------------------- 
  2273.  
  2274.    type TransportMulticastSettings_T is record 
  2275.       Transports      : DDS.String_Seq.Sequence; 
  2276.       Receive_Address : DDS.String; 
  2277.       Receive_Port    : Long := 0; 
  2278.    end record with 
  2279.      Convention => C; 
  2280.    --  <defgroup>TransportMulticastSettingsGroupDocs</defgroup> 
  2281.    --  <dref>TransportMulticastSettings_t</dref> 
  2282.    --  <dref name="Transports">TransportMulticastSettings_t_transports</dref> 
  2283.    --  <dref name="Receive_Address">TransportMulticastSettings_t_receive_address</dref> 
  2284.    --  <dref name="Receive_Port">TransportMulticastSettings_t_receive_port</dref> 
  2285.  
  2286.    --     TRANSPORT_MULTICAST_LOCATORS_DEFAULT : constant TransportMulticastSettings_T := 
  2287.    --       (Transports => DDS.String_Seq.DEFAULT_SEQUENCE, 
  2288.    --        Receive_Address => DDS.NULL_STRING, 
  2289.    --        Receive_Port => 0); 
  2290.  
  2291.    type TransportMulticastSettings_T_Access is access all TransportMulticastSettings_T; 
  2292.    type TransportMulticastSettings_T_Array is array 
  2293.      (Natural range <>) of aliased TransportMulticastSettings_T; 
  2294.    procedure Initialize (Self  : in out TransportMulticastSettings_T); 
  2295.    procedure Finalize (Self  : in out TransportMulticastSettings_T); 
  2296.    procedure Copy (Dst : in out TransportMulticastSettings_T; 
  2297.                    Src : in TransportMulticastSettings_T); 
  2298.  
  2299.    package TransportMulticastSettings_Seq is new DDS_Support.Sequences_Generic 
  2300.      (TransportMulticastSettings_T, 
  2301.       TransportMulticastSettings_T_Access, 
  2302.       DDS.Natural, 
  2303.       1, 
  2304.       TransportMulticastSettings_T_Array); 
  2305.    --  <dref>TransportMulticastSettingsSeq</dref> 
  2306.  
  2307.    --  ------------------------------------------------- 
  2308.    --             TransportMulticastMappingFunction_t 
  2309.    --  ------------------------------------------------- 
  2310.  
  2311.    type TransportMulticastMappingFunction_T is record 
  2312.       Dll             : DDS.String; 
  2313.       Function_Name   : DDS.String; 
  2314.    end record with 
  2315.      Convention => C; 
  2316.    --  <defgroup>TransportMulticastMappingGroupDocs</defgroup> 
  2317.    --  <dref>TransportMulticastMappingFunction_t</dref> 
  2318.    --  <dref name="dll">TransportMulticastMappingFunction_t_dll</dref> 
  2319.    --  <dref name="function_name">TransportMulticastMappingFunction_t_function_name</dref> 
  2320.  
  2321.    --   TRANSPORT_MULTICAST_MAPPING_FUNCTION_DEFAULT : constant TransportMulticastMappingFunction_T := 
  2322.    --                                          (dll => DDS.NULL_STRING, 
  2323.    --                                          function_name => DDS.NULL_STRING); 
  2324.  
  2325.  
  2326.    --  ------------------------------------------------- 
  2327.    --              TransportMulticastMapping_t 
  2328.    ----------------------------------------------------- 
  2329.  
  2330.    type TransportMulticastMapping_T is record 
  2331.       Addresses          : DDS.String; 
  2332.       Topic_Expression   : DDS.String; 
  2333.       Mapping_Function   : TransportMulticastMappingFunction_T; 
  2334.    end record with 
  2335.      Convention => C; 
  2336.    --  <dref>TransportMulticastMapping_t</dref> 
  2337.    --  <dref name="addresses">TransportMulticastMapping_t_addresses</dref> 
  2338.    --  <dref name="topic_expression">TransportMulticastMapping_t_topic_expression</dref> 
  2339.    --  <dref name="mapping_function">TransportMulticastMapping_t_mapping_function</dref> 
  2340.  
  2341.    --   TRANSPORT_MULTICAST_MAPPING_DEFAULT : constant TransportMulticastMapping_T := 
  2342.    --                              (addresses          => DDS.NULL_STRING, 
  2343.    --                              topic_expression   => DDS.NULL_STRING, 
  2344.    --                              mapping_function   => TRANSPORT_MULTICAST_MAPPING_FUNCTION_DEFAULT); 
  2345.  
  2346.    type TransportMulticastMapping_T_Access is access all TransportMulticastMapping_T; 
  2347.    type TransportMulticastMapping_T_Array is array 
  2348.      (Natural range <>) of aliased TransportMulticastMapping_T; 
  2349.    procedure Initialize (Self  : in out TransportMulticastMapping_T); 
  2350.    procedure Finalize (Self  : in out TransportMulticastMapping_T); 
  2351.    procedure Copy (Dst : in out TransportMulticastMapping_T; 
  2352.                    Src : in TransportMulticastMapping_T); 
  2353.  
  2354.    package TransportMulticastMapping_Seq is new DDS_Support.Sequences_Generic 
  2355.      (TransportMulticastMapping_T, 
  2356.       TransportMulticastMapping_T_Access, 
  2357.       DDS.Natural, 
  2358.       1, 
  2359.       TransportMulticastMapping_T_Array); 
  2360.    --  <dref>TransportMulticastMappingSeq</dref> 
  2361.  
  2362.  
  2363.    --  ------------------------------------------------- 
  2364.    --                 TransportEncapsulationSettings 
  2365.    --  ------------------------------------------------- 
  2366.  
  2367.    type EncapsulationId_T is new Unsigned_Short; 
  2368.    --  <defgroup internal="true">TransportEncapsulationSettingsGroupDocs</defgroup> 
  2369.    --  <dref internal="true">EncapsulationId_t</dref> 
  2370.  
  2371.    type EncapsulationId_T_Access is access all EncapsulationId_T; 
  2372.    type EncapsulationId_T_Array is array 
  2373.      (Natural range <>) of aliased EncapsulationId_T; 
  2374.    procedure Initialize (Self  : in out EncapsulationId_T); 
  2375.    procedure Finalize (Self  : in out EncapsulationId_T); 
  2376.    procedure Copy (Dst : in out EncapsulationId_T; 
  2377.                    Src : in EncapsulationId_T); 
  2378.  
  2379.    package EncapsulationId_Seq is new DDS_Support.Sequences_Generic 
  2380.      (EncapsulationId_T, 
  2381.       EncapsulationId_T_Access, 
  2382.       DDS.Natural, 
  2383.       1, 
  2384.       EncapsulationId_T_Array); 
  2385.    --  <dref internal="true">EncapsulationIdSeq</dref> 
  2386.  
  2387.    ENCAPSULATION_ID_CDR_BE : constant EncapsulationId_T := 0; 
  2388.    --  <dref internal="true">ENCAPSULATION_ID_CDR_BE</dref> 
  2389.  
  2390.    ENCAPSULATION_ID_CDR_LE : constant EncapsulationId_T := 1; 
  2391.    --  <dref internal="true">ENCAPSULATION_ID_CDR_LE</dref> 
  2392.  
  2393.    ENCAPSULATION_ID_CDR_NATIVE : constant EncapsulationId_T := System.Bit_Order'Pos (System.Default_Bit_Order); 
  2394.    --  <dref internal="true">ENCAPSULATION_ID_CDR_NATIVE</dref> 
  2395.  
  2396.    ENCAPSULATION_ID_CDR2_BE : constant EncapsulationId_T := 0; 
  2397.    --  <dref internal="true">ENCAPSULATION_ID_CDR2_BE</dref> 
  2398.  
  2399.    ENCAPSULATION_ID_CDR2_LE : constant EncapsulationId_T := 1; 
  2400.    --  <dref internal="true">ENCAPSULATION_ID_CDR2_LE</dref> 
  2401.  
  2402.    ENCAPSULATION_ID_CDR2_NATIVE : constant EncapsulationId_T := System.Bit_Order'Pos (System.Default_Bit_Order); 
  2403.    --  <dref internal="true">ENCAPSULATION_ID_CDR2_NATIVE</dref> 
  2404.  
  2405.    ENCAPSULATION_ID_SHMEM_REF_PLAIN : EncapsulationId_T := 16#C000#; 
  2406.    --  <dref internal="true">ENCAPSULATION_ID_SHMEM_REF_PLAIN</dref> 
  2407.  
  2408.    ENCAPSULATION_ID_SHMEM_REF_FLAT_DATA : EncapsulationId_T := 16#C001#; 
  2409.    --  <dref internal="true">ENCAPSULATION_ID_SHMEM_REF_FLAT_DATA</dref> 
  2410.  
  2411.    type TransportEncapsulationSettings_T is record 
  2412.       Transports     : aliased DDS.String_Seq.Sequence; 
  2413.       Encapsulations : aliased EncapsulationId_Seq.Sequence; 
  2414.    end record with 
  2415.      Convention => C; 
  2416.    --  <dref internal="true">TransportEncapsulationSettings_t</dref> 
  2417.    --  <dref internal="true" name="Transports">TransportEncapsulationSettings_t_transports</dref> 
  2418.    --  <dref internal="true" name="Encapsulations">TransportEncapsulationSettings_t_encapsulations</dref> 
  2419.  
  2420.    --     TRANSPORT_ENCAPSULATION_SETTINGS_DEFAULT : constant TransportEncapsulationSettings_T := 
  2421.    --                   (Transports => DDS.String_Seq.DEFAULT_SEQUENCE, 
  2422.    --                Encapsulations => EncapsulationId_Seq.DEFAULT_SEQUENCE); 
  2423.  
  2424.    type TransportEncapsulationSettings_T_Access is access all TransportEncapsulationSettings_T; 
  2425.    type TransportEncapsulationSettings_T_Array is array 
  2426.      (Natural range <>) of aliased TransportEncapsulationSettings_T; 
  2427.    procedure Initialize (Self  : in out TransportEncapsulationSettings_T); 
  2428.    procedure Finalize (Self  : in out TransportEncapsulationSettings_T); 
  2429.    procedure Copy (Dst : in out TransportEncapsulationSettings_T; 
  2430.                    Src : in TransportEncapsulationSettings_T); 
  2431.  
  2432.    package TransportEncapsulationSettings_Seq is new DDS_Support.Sequences_Generic 
  2433.      (TransportEncapsulationSettings_T, 
  2434.       TransportEncapsulationSettings_T_Access, 
  2435.       DDS.Natural, 
  2436.       1, 
  2437.       TransportEncapsulationSettings_T_Array); 
  2438.    --  <dref internal="true">TransportEncapslationSettingsSeq</dref> 
  2439.  
  2440.    --  ------------------------------------------------- 
  2441.    --                 DATA_REPRESENTATION 
  2442.    --  ------------------------------------------------- 
  2443.  
  2444.    type DataRepresentationId_T is new RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_DataRepresentationId_t 
  2445.       with Convention => C; 
  2446.    --  <defgroup>DataRepresentationQosGroupDocs</defgroup> 
  2447.    --  <dref>DataRepresentationId_t</dref> 
  2448.  
  2449.    XCDR_DATA_REPRESENTATION : aliased constant DataRepresentationId_T := 
  2450.       DataRepresentationId_T (RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_XCDR_DATA_REPRESENTATION); 
  2451.  
  2452.    XML_DATA_REPRESENTATION  : aliased constant DataRepresentationId_T := 
  2453.       DataRepresentationId_T (RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_XML_DATA_REPRESENTATION); 
  2454.  
  2455.    XCDR2_DATA_REPRESENTATION : aliased constant DataRepresentationId_T := 
  2456.       DataRepresentationId_T (RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_XCDR2_DATA_REPRESENTATION); 
  2457.  
  2458.    AUTO_DATA_REPRESENTATION : aliased constant DataRepresentationId_T := 
  2459.       DataRepresentationId_T (RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_XCDR2_DATA_REPRESENTATION); 
  2460.  
  2461.    type DataRepresentationId_T_Access is access all DataRepresentationId_T; 
  2462.    type DataRepresentationId_T_Array is array 
  2463.      (Natural range <>) of aliased DataRepresentationId_T; 
  2464.    procedure Initialize (Self : in out DataRepresentationId_T); 
  2465.    procedure Finalize   (Self : in out DataRepresentationId_T); 
  2466.    procedure Copy (Dst : in out DataRepresentationId_T; 
  2467.                    Src : in DataRepresentationId_T); 
  2468.  
  2469.    package DataRepresentationId_Seq is new DDS_Support.Sequences_Generic 
  2470.      (DataRepresentationId_T, 
  2471.       DataRepresentationId_T_Access, 
  2472.       DDS.Natural, 
  2473.       1, 
  2474.       DataRepresentationId_T_Array); 
  2475.    --  <dref>DataRepresentationIdSeq</dref> 
  2476.  
  2477.    type DataRepresentationQosPolicy is limited record 
  2478.       Value : aliased DataRepresentationId_Seq.Sequence; 
  2479.    end record with 
  2480.       Convention => C; 
  2481.    --  <dref>DataRepresentationQosPolicy</dref> 
  2482.    --  <dref name="Value">DataRepresentationQosPolicy_value</dref> 
  2483.  
  2484.    function Contains 
  2485.       (Policy : in DataRepresentationQosPolicy; 
  2486.        Id     : in DataRepresentationId_T) return Standard.Boolean; 
  2487.    --  <dref internal="true">DataRepresentationQosPolicy_contains</dref> 
  2488.  
  2489.    function Equals 
  2490.       (Left, Right : in DataRepresentationQosPolicy) return Standard.Boolean; 
  2491.    --  <dref internal="true">DataRepresentationQosPolicy_equals</dref> 
  2492.  
  2493.    function "=" 
  2494.       (Left, Right : in DataRepresentationQosPolicy) return Standard.Boolean 
  2495.       renames Equals; 
  2496.    --  <dref internal="true">DataRepresentationQosPolicy_equals</dref> 
  2497.  
  2498.    function Get_Native_Encapsulation 
  2499.       (Id : in DataRepresentationId_T) return EncapsulationId_T; 
  2500.    pragma Import (C, Get_Native_Encapsulation, "DDS_DataRepresentationQosPolicy_getNativeEncapsulation"); 
  2501.    --  <dref>DataRepresentationQosPolicy_getNativeEncapsulation</dref> 
  2502.  
  2503.  
  2504.    --  -------------------------------------------------- 
  2505.    --                 TRANSPORT_SELECTION (eXtension QoS) 
  2506.    --  -------------------------------------------------- 
  2507.  
  2508.    TRANSPORTSELECTION_QOS_POLICY_NAME : constant DDS.String  := To_DDS_String ("TransportSelection"); 
  2509.    --  <defgroup>TransportSelectionQosGroupDocs</defgroup> 
  2510.    --  <dref>TRANSPORTSELECTION_QOS_POLICY_NAME</dref> 
  2511.  
  2512.    type TransportSelectionQosPolicy is record 
  2513.       Enabled_Transports : aliased DDS.String_Seq.Sequence; 
  2514.    end record with 
  2515.      Convention => C; 
  2516.    --  <dref>TransportSelectionQosPolicy</dref> 
  2517.    --  <dref name="Enabled_Transports">TransportSelectionQosPolicy_enabled_transports</dref> 
  2518.  
  2519.    --     TRANSPORT_SELECTION_QOS_POLICY_DEFAULT : constant TransportSelectionQosPolicy := 
  2520.    --                                                (Enabled_Transports => DDS.String_Seq.DEFAULT_SEQUENCE); 
  2521.  
  2522.    --  -------------------------------------------------- 
  2523.    --                 TRANSPORT_UNICAST (eXtension QoS) 
  2524.    --  -------------------------------------------------- 
  2525.  
  2526.    TRANSPORTUNICAST_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("TransportUnicast"); 
  2527.    --  <defgroup>TransportUnicastQosGroupDocs</defgroup> 
  2528.    --  <dref>TRANSPORTUNICAST_QOS_POLICY_NAME</dref> 
  2529.  
  2530.    type TransportUnicastQosPolicy is record 
  2531.       Value :  TransportUnicastSettings_Seq.Sequence; 
  2532.    end record with 
  2533.      Convention => C; 
  2534.    --  <dref>TransportUnicastQosPolicy</dref> 
  2535.    --  <dref name="Value">TransportUnicastQosPolicy_value</dref> 
  2536.  
  2537.    --     TRANSPORT_UNICAST_QOS_POLICY_DEFAULT : constant TransportUnicastQosPolicy := 
  2538.    --                                              (Value => TransportUnicastSettings_Seq.DEFAULT_SEQUENCE); 
  2539.  
  2540.    --  -------------------------------------------------- 
  2541.    --                 TRANSPORT_MULTICAST (eXtension QoS) 
  2542.    --  -------------------------------------------------- 
  2543.  
  2544.    TRANSPORTMULTICAST_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("TransportMulticast"); 
  2545.    --  <defgroup>TransportMulticastQosGroupDocs</defgroup> 
  2546.    --  <dref>TRANSPORTMULTICAST_QOS_POLICY_NAME</dref> 
  2547.  
  2548.    type TransportMulticastQosPolicyKind is new Unsigned_Long; 
  2549.    --  <dref>TransportMulticastQosPolicyKind</dref> 
  2550.  
  2551.    AUTOMATIC_TRANSPORT_MULTICAST_QOS : constant TransportMulticastQosPolicyKind := 0; 
  2552.    --  <dref>TransportMulticastQosPolicyKind_AUTOMATIC_TRANSPORT_MULTICAST_QOS</dref> 
  2553.  
  2554.    UNICAST_ONLY_TRANSPORT_MULTICAST_QOS : constant TransportMulticastQosPolicyKind := 1; 
  2555.    --  <dref>TransportMulticastQosPolicyKind_UNICAST_ONLY_TRANSPORT_MULTICAST_QOS</dref> 
  2556.  
  2557.  
  2558.    type TransportMulticastQosPolicy is record 
  2559.       Value : TransportMulticastSettings_Seq.Sequence; 
  2560.       Kind  : TransportMulticastQosPolicyKind := AUTOMATIC_TRANSPORT_MULTICAST_QOS; 
  2561.    end record with 
  2562.      Convention => C; 
  2563.    --  <dref>TransportMulticastQosPolicy</dref> 
  2564.    --  <dref name="Value">TransportMulticastQosPolicy_value</dref> 
  2565.    --  <dref name="Kind">TransportMulticastQosPolicy_kind</dref> 
  2566.  
  2567.    --     TRANSPORT_MULTICAST_QOS_POLICY_DEFAULT : constant TransportMulticastQosPolicy := 
  2568.    --                                                (Value => TransportMulticastSettings_Seq.DEFAULT_SEQUENCE); 
  2569.    -- 
  2570.  
  2571.    --  ------------------------------------------------------ 
  2572.    --                 TRANSPORT_MULTICAST_MAPPING (eXtension QoS) 
  2573.    --  ------------------------------------------------------ 
  2574.  
  2575.    TRANSPORTMULTICASTMAPPING_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("TransportMulticastMapping"); 
  2576.    --  <defgroup>TransportMulticastMappingQosGroupDocs</defgroup> 
  2577.    --  <dref>TRANSPORTMULTICASTMAPPING_QOS_POLICY_NAME</dref> 
  2578.  
  2579.    type TransportMulticastMappingQosPolicy is record 
  2580.       Value : TransportMulticastMapping_Seq.Sequence; 
  2581.    end record with 
  2582.      Convention => C; 
  2583.    --  <dref>TransportMulticastMappingQosPolicy</dref> 
  2584.    --  <dref name="Value">TransportMulticastMappingQosPolicy_value</dref> 
  2585.  
  2586.    --  TRANSPORT_MULTICAST_MAPPING_QOS_POLICY_DEFAULT : constant TransportMulticastMappingQosPolicy := 
  2587.    --                                      (Value => TransportMulticastMapping_Seq.DEFAULT_SEQUENCE); 
  2588.  
  2589.  
  2590.    --  ------------------------------------------------------ 
  2591.    --                 TRANSPORT_ENCAPSULATION (eXtension QoS) 
  2592.    --  ------------------------------------------------------ 
  2593.  
  2594.    TRANSPORTENCAPSULATION_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("TransportEncapsulation"); 
  2595.    --  <defgroup internal="true">TransportEncapsulationQosGroupDocs</defgroup> 
  2596.    --  <dref internal="true">TRANSPORTENCAPSULATION_QOS_POLICY_NAME</dref> 
  2597.  
  2598.    type TransportEncapsulationQosPolicy is record 
  2599.       Value : aliased TransportEncapsulationSettings_Seq.Sequence; 
  2600.    end record with 
  2601.      Convention => C; 
  2602.    --  <dref internal="true">TransportEncapsulationQosPolicy</dref> 
  2603.    --  <dref internal="true" name="Value">TransportEncapsulationQosPolicy_value</dref> 
  2604.  
  2605.    --     TRANSPORT_ENCAPSULATION_QOS_POLICY_DEFAULT : constant TransportEncapsulationQosPolicy := 
  2606.    --                   (Value => TransportEncapsulationSettings_Seq.DEFAULT_SEQUENCE); 
  2607.  
  2608.    --  ------------------------------------------------------ 
  2609.    --                 DISCOVERY (eXtension QoS) 
  2610.    --  ------------------------------------------------------ 
  2611.  
  2612.    DISCOVERY_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("Discovery"); 
  2613.    --  <defgroup>DiscoveryQosGroupDocs</defgroup> 
  2614.    --  <dref>DISCOVERY_QOS_POLICY_NAME</dref> 
  2615.    --  <defgroup>NDDS_DISCOVERY_PEERS</defgroup> 
  2616.  
  2617.    type DiscoveryQosPolicy is record 
  2618.       Enabled_Transports                          : aliased String_Seq.Sequence; 
  2619.       Initial_Peers                               : aliased String_Seq.Sequence; 
  2620.       Multicast_Receive_Addresses                 : aliased String_Seq.Sequence; 
  2621.       Metatraffic_Transport_Priority              : aliased Long := 0; 
  2622.       Accept_Unknown_Peers                        : aliased DDS.Boolean := True; 
  2623.       Enable_Endpoint_Discovery                   : aliased DDS.Boolean := True; 
  2624.    end record with 
  2625.      Convention => C; 
  2626.    --  <dref>DiscoveryQosPolicy</dref> 
  2627.    --  <dref name="Enabled_Transports">DiscoveryQosPolicy_enabled_transports</dref> 
  2628.    --  <dref name="Initial_Peers">DiscoveryQosPolicy_initial_peers</dref> 
  2629.    --  <dref name="Multicast_Receive_Addresses">DiscoveryQosPolicy_multicast_receive_addresses</dref> 
  2630.    --  <dref name="Metatraffic_Transport_Priority">DiscoveryQosPolicy_metatraffic_transport_priority</dref> 
  2631.    --  <dref name="Accept_Unknown_Peers">DiscoveryQosPolicy_accept_unknown_peers</dref> 
  2632.    --  <dref name="Enable_Endpoint_Discovery">DiscoveryQosPolicy_enable_endpoint_discovery</dref> 
  2633.  
  2634.    --     DISCOVERY_QOS_POLICY_DEFAULT : constant  DiscoveryQosPolicy := 
  2635.    --                                      (Enabled_Transports             => String_Seq.DEFAULT_SEQUENCE, 
  2636.    --                                       Initial_Peers                  => String_Seq.DEFAULT_SEQUENCE, 
  2637.    --                                       Multicast_Receive_Addresses    => String_Seq.DEFAULT_SEQUENCE, 
  2638.    --                                       Metatraffic_Transport_Priority => 0, 
  2639.    --                                       Accept_Unknown_Peers           => TRUE, 
  2640.    --                                       Spare1                         => False, 
  2641.    --                                       Spare2                         => False, 
  2642.    --                                       Spare3                         => False); 
  2643.  
  2644.    --  ------------------------------------------------------ 
  2645.    --                 Discovery_ParticipantInformation 
  2646.    --  ------------------------------------------------------ 
  2647.  
  2648.    type Discovery_ParticipantInformation is record 
  2649.       Participant_Discovery_Id         : aliased Long := 0; 
  2650.       Participant_Discovery_Version    : aliased Long := 0; 
  2651.       Participant_Discovery_Vendor_Id  : aliased Long := 0; 
  2652.       Participant_Discovery_Parameters : aliased Octet_Seq.Sequence; 
  2653.    end record with 
  2654.      Convention => C; 
  2655.    --  <dref internal="true">Discovery_ParticipantInformation</dref> 
  2656.    --  <dref internal="true" name="Participant_Discovery_Id">Discovery_ParticipantInformation_participant_discovery_id</dref> 
  2657.    --  <dref internal="true" name="Participant_Discovery_Version">Discovery_ParticipantInformation_participant_discovery_version</dref> 
  2658.    --  <dref internal="true" name="Participant_Discovery_Vendor_Id">Discovery_ParticipantInformation_participant_discovery_vendor_id</dref> 
  2659.    --  <dref internal="true" name="Participant_Discovery_Parameters">Discovery_ParticipantInformation_participant_parameters</dref> 
  2660.  
  2661.    type Discovery_ParticipantInformation_Access is access all Discovery_ParticipantInformation; 
  2662.    type Discovery_ParticipantInformation_Array is array 
  2663.      (Natural range <>) of aliased Discovery_ParticipantInformation; 
  2664.    procedure Initialize (Self  : in out Discovery_ParticipantInformation); 
  2665.    procedure Finalize (Self  : in out Discovery_ParticipantInformation); 
  2666.    procedure Copy (Dst : in out Discovery_ParticipantInformation; 
  2667.                    Src : in Discovery_ParticipantInformation); 
  2668.  
  2669.    package Discovery_ParticipantInformationSeq is new DDS_Support.Sequences_Generic 
  2670.      (Discovery_ParticipantInformation, 
  2671.       Discovery_ParticipantInformation_Access, 
  2672.       DDS.Natural, 
  2673.       1, 
  2674.       Discovery_ParticipantInformation_Array); 
  2675.    --  <dref internal="true">Discovery_ParticipantInformationSeq</dref> 
  2676.  
  2677.    --  ------------------------------------------------------ 
  2678.    --                 Discovery_EndpointInformation 
  2679.    --  ------------------------------------------------------ 
  2680.  
  2681.    type Discovery_EndpointInformation is record 
  2682.       Endpoint_Discovery_Id         : aliased Long := 0; 
  2683.       Endpoint_Discovery_Version    : aliased Long := 0; 
  2684.       Endpoint_Discovery_Vendor_Id  : aliased Long := 0; 
  2685.       Endpoint_Discovery_Parameters : aliased Octet_Seq.Sequence; 
  2686.    end record with 
  2687.      Convention => C; 
  2688.    --  <dref internal="true">Discovery_EndpointInformation</dref> 
  2689.    --  <dref internal="true" name="Endpoint_Discovery_Id">Discovery_EndpointInformation_participant_discovery_id</dref> 
  2690.    --  <dref internal="true" name="Endpoint_Discovery_Version">Discovery_EndpointInformation_participant_discovery_version</dref> 
  2691.    --  <dref internal="true" name="Endpoint_Discovery_Vendor_Id">Discovery_EndpointInformation_participant_discovery_vendor_id</dref> 
  2692.    --  <dref internal="true" name="Endpoint_Discovery_Parameters">Discovery_EndpointInformation_participant_parameters</dref> 
  2693.  
  2694.    type Discovery_EndpointInformation_Access is access all Discovery_EndpointInformation; 
  2695.    type Discovery_EndpointInformation_Array is array 
  2696.      (Natural range <>) of aliased Discovery_EndpointInformation; 
  2697.    procedure Initialize (Self  : in out Discovery_EndpointInformation); 
  2698.    procedure Finalize (Self  : in out Discovery_EndpointInformation); 
  2699.    procedure Copy (Dst : in out Discovery_EndpointInformation; 
  2700.                    Src : in Discovery_EndpointInformation); 
  2701.  
  2702.    package Discovery_EndpointInformationSeq is new DDS_Support.Sequences_Generic 
  2703.      (Discovery_EndpointInformation, 
  2704.       Discovery_EndpointInformation_Access, 
  2705.       DDS.Natural, 
  2706.       1, 
  2707.       Discovery_EndpointInformation_Array); 
  2708.    --  <dref internal="true">Discovery_EndpointInformationSeq</dref> 
  2709.  
  2710.    --  ------------------------------------------------------ 
  2711.    --                 TRANSPORTBUILTIN (eXtension QoS) 
  2712.    --  ------------------------------------------------------ 
  2713.  
  2714.    TRANSPORTBUILTIN_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("TransportBuiltin"); 
  2715.    --  <defgroup>TransportBuiltinQosGroupDocs</defgroup> 
  2716.    --  <dref>TRANSPORTBUILTIN_QOS_POLICY_NAME</dref> 
  2717.  
  2718.    type TransportBuiltinKind is new Unsigned_Long; 
  2719.    --  <dref>TransportBuiltinKind</dref> 
  2720.  
  2721.    TRANSPORTBUILTIN_UDPv4 : constant TransportBuiltinKind := 2 ** 0; 
  2722.    --  <dref>TransportBuiltinKind_TRANSPORTBUILTIN_UDPv4</dref> 
  2723.  
  2724.    TRANSPORTBUILTIN_SHMEM : constant TransportBuiltinKind := 2 ** 1; 
  2725.    --  <dref>TransportBuiltinKind_TRANSPORTBUILTIN_SHMEM</dref> 
  2726.  
  2727.    TRANSPORTBUILTIN_INTRA : constant TransportBuiltinKind := 2 ** 2; 
  2728.    --  <dref internal="true">TransportBuiltinKind_TRANSPORTBUILTIN_INTRA</dref> 
  2729.  
  2730.    TRANSPORTBUILTIN_UDPv6 : constant TransportBuiltinKind := 2 ** 3; 
  2731.    --  <dref>TransportBuiltinKind_TRANSPORTBUILTIN_UDPv6</dref> 
  2732.  
  2733.    TRANSPORTBUILTIN_INTRA_ALIAS : constant DDS.String := To_DDS_String ("builtin.intra"); 
  2734.    --  <dref internal="true">TransportBuiltinKind_INTRA_ALIAS</dref> 
  2735.  
  2736.    TRANSPORTBUILTIN_SHMEM_ALIAS : constant DDS.String := To_DDS_String ("builtin.shmem"); 
  2737.    --  <dref>TransportBuiltinKind_SHMEM_ALIAS</dref> 
  2738.  
  2739.  
  2740.    TRANSPORTBUILTIN_UDPv4_ALIAS : constant DDS.String := To_DDS_String ("builtin.udpv4"); 
  2741.    --  <dref>TransportBuiltinKind_UDPv4_ALIAS</dref> 
  2742.  
  2743.  
  2744.    TRANSPORTBUILTIN_UDPv6_ALIAS : constant DDS.String := To_DDS_String ("builtin.udpv"); 
  2745.    --  <dref>TransportBuiltinKind_UDPv6_ALIAS</dref> 
  2746.  
  2747.  
  2748.    subtype TransportBuiltinKindMask is TransportBuiltinKind; 
  2749.    --  <dref>TransportBuiltinKindMask</dref> 
  2750.  
  2751.    TRANSPORTBUILTIN_MASK_NONE : constant TransportBuiltinKindMask := 0; 
  2752.    --  <dref>TransportBuiltinKindMask_NONE</dref> 
  2753.  
  2754.    TRANSPORTBUILTIN_MASK_DEFAULT : constant TransportBuiltinKindMask := 
  2755.                                      (TRANSPORTBUILTIN_UDPv4 or TRANSPORTBUILTIN_SHMEM); 
  2756.    --  <dref>TransportBuiltinKindMask_DEFAULT</dref> 
  2757.  
  2758.    TRANSPORTBUILTIN_MASK_ALL  : constant TransportBuiltinKindMask := 16#FFFF_FFFF#; 
  2759.    --  <dref>TransportBuiltinKindMask_ALL</dref> 
  2760.  
  2761.    type TransportBuiltinQosPolicy is record 
  2762.       Mask : TransportBuiltinKindMask; 
  2763.    end record with 
  2764.      Convention => C; 
  2765.    --  <dref>TransportBuiltinQosPolicy</dref> 
  2766.    --  <dref name="Mask">TransportBuiltinQosPolicy_mask</dref> 
  2767.  
  2768.    TRANSPORT_BUILTIN_QOS_POLICY_DEFAULT : constant TransportBuiltinQosPolicy := 
  2769.                                             (Mask => TRANSPORTBUILTIN_MASK_DEFAULT); 
  2770.    --  <dref internal="true"></dref> 
  2771.  
  2772.    --  ------------------------------------------------------ 
  2773.    --                 WIRE_PROTOCOL (eXtension QoS) 
  2774.    --  ------------------------------------------------------ 
  2775.  
  2776.    type RtpsWellKnownPorts_T is record 
  2777.       Port_Base                     : aliased Long := 7400; 
  2778.       Domain_Id_Gain                : aliased Long := 10; 
  2779.       Participant_Id_Gain           : aliased Long := 1000; 
  2780.       Builtin_Multicast_Port_Offset : aliased Long := 2; 
  2781.       Builtin_Unicast_Port_Offset   : aliased Long := 0; 
  2782.       User_Multicast_Port_Offset    : aliased Long := 1; 
  2783.       User_Unicast_Port_Offset      : aliased Long := 3; 
  2784.    end record with 
  2785.      Convention => C; 
  2786.    --  <defgroup>WireProtocolQosGroupDocs</defgroup> 
  2787.    --  <dref>RtpsWellKnownPorts_t</dref> 
  2788.    --  <dref name="Port_Base">RtpsWellKnownPorts_t_port_base</dref> 
  2789.    --  <dref name="Domain_Id_Gain">RtpsWellKnownPorts_t_domain_id_gain</dref> 
  2790.    --  <dref name="Participant_Id_Gain">RtpsWellKnownPorts_t_participant_id_gain</dref> 
  2791.    --  <dref name="Builtin_Multicast_Port_Offset">RtpsWellKnownPorts_t_builtin_multicast_port_offset</dref> 
  2792.    --  <dref name="Builtin_Unicast_Port_Offset">RtpsWellKnownPorts_t_builtin_unicast_port_offset</dref> 
  2793.    --  <dref name="User_Multicast_Port_Offset">RtpsWellKnownPorts_t_user_multicast_port_offset</dref> 
  2794.    --  <dref name="User_Unicast_Port_Offset">RtpsWellKnownPorts_t_user_unicast_port_offset</dref> 
  2795.  
  2796.    RTI_BACKWARDS_COMPATIBLE_RTPS_WELL_KNOWN_PORTS : constant RtpsWellKnownPorts_T 
  2797.      := (Port_Base                     =>  7400, 
  2798.          Domain_Id_Gain                =>  10, 
  2799.          Participant_Id_Gain           =>  1000, 
  2800.          Builtin_Multicast_Port_Offset =>  2, 
  2801.          Builtin_Unicast_Port_Offset   =>  0, 
  2802.          User_Multicast_Port_Offset    =>  1, 
  2803.          User_Unicast_Port_Offset      =>  3); 
  2804.    --  <dref>RTI_BACKWARDS_COMPATIBLE_RTPS_WELL_KNOWN_PORTS</dref> 
  2805.  
  2806.    INTEROPERABLE_RTPS_WELL_KNOWN_PORTS : constant RtpsWellKnownPorts_T 
  2807.      := (Port_Base                     =>  7400, 
  2808.          Domain_Id_Gain                =>  250, 
  2809.          Participant_Id_Gain           =>  2, 
  2810.          Builtin_Multicast_Port_Offset =>  0, 
  2811.          Builtin_Unicast_Port_Offset   =>  10, 
  2812.          User_Multicast_Port_Offset    =>  1, 
  2813.          User_Unicast_Port_Offset      =>  11); 
  2814.    --  <dref>INTEROPERABLE_RTPS_WELL_KNOWN_PORTS</dref> 
  2815.  
  2816.  
  2817.    RTPS_WELL_KNOWN_PORTS_DEFAULT : constant RtpsWellKnownPorts_T := 
  2818.                                      (Port_Base                     => 7400, 
  2819.                                       Domain_Id_Gain                => 10, 
  2820.                                       Participant_Id_Gain           => 1000, 
  2821.                                       Builtin_Multicast_Port_Offset => 2, 
  2822.                                       Builtin_Unicast_Port_Offset   => 0, 
  2823.                                       User_Multicast_Port_Offset    => 1, 
  2824.                                       User_Unicast_Port_Offset      => 3); 
  2825.    --  <dref internal="true"></dref> 
  2826.  
  2827.    type RtpsReservedPortKind is new Unsigned_Long; 
  2828.    --  <dref>RtpsReservedPortKind</dref> 
  2829.  
  2830.    RTPS_RESERVED_PORT_BUILTIN_UNICAST   : constant RtpsReservedPortKind := 2#0001#; 
  2831.    --  <dref>RtpsReservedPortKind_BUILTIN_UNICAST</dref> 
  2832.  
  2833.    RTPS_RESERVED_PORT_BUILTIN_MULTICAST : constant RtpsReservedPortKind := 2#0010#; 
  2834.    --  <dref>RtpsReservedPortKind_BUILTIN_MULTICAST</dref> 
  2835.  
  2836.    RTPS_RESERVED_PORT_USER_UNICAST      : constant RtpsReservedPortKind := 2#0100#; 
  2837.    --  <dref>RtpsReservedPortKind_USER_UNICAST</dref> 
  2838.  
  2839.    RTPS_RESERVED_PORT_USER_MULTICAST    : constant RtpsReservedPortKind := 2#1000#; 
  2840.    --  <dref>RtpsReservedPortKind_USER_MULTICAST</dref> 
  2841.  
  2842.    subtype RtpsReservedPortKindMask is RtpsReservedPortKind; 
  2843.    --  <dref>RtpsReservedPortKindMask</dref> 
  2844.  
  2845.    RTPS_RESERVED_PORT_MASK_DEFAULT : constant RtpsReservedPortKindMask := 
  2846.                                        (RTPS_RESERVED_PORT_BUILTIN_UNICAST or RTPS_RESERVED_PORT_BUILTIN_MULTICAST or 
  2847.                                                                             RTPS_RESERVED_PORT_USER_UNICAST); 
  2848.    --  <dref>RTPS_RESERVED_PORT_MASK_DEFAULT</dref> 
  2849.  
  2850.    RTPS_RESERVED_PORT_MASK_NONE  : constant RtpsReservedPortKindMask := 0; 
  2851.    --  <dref>RTPS_RESERVED_PORT_MASK_NONE</dref> 
  2852.  
  2853.    RTPS_RESERVED_PORT_MASK_ALL   : constant RtpsReservedPortKindMask := 16#FFFF_FFFF#; 
  2854.    --  <dref>RTPS_RESERVED_PORT_MASK_ALL</dref> 
  2855.  
  2856.    WIREPROTOCOL_QOS_POLICY_NAME  : constant DDS.String := To_DDS_String ("WireProtocol"); 
  2857.    --  <dref>WIREPROTOCOL_QOS_POLICY_NAME</dref> 
  2858.  
  2859.  
  2860.    type WireProtocolQosPolicyAutoKind is new Unsigned_Long; 
  2861.    --  <dref>WireProtocolQosPolicyAutoKind</dref> 
  2862.  
  2863.    RTPS_AUTO_ID_FROM_IP : constant WireProtocolQosPolicyAutoKind := 0; 
  2864.    --  <dref>WireProtocolQosPolicyAutoKind_RTPS_AUTO_ID_FROM_IP</dref> 
  2865.  
  2866.    RTPS_AUTO_ID_FROM_MAC : constant WireProtocolQosPolicyAutoKind := 1; 
  2867.    --  <dref>WireProtocolQosPolicyAutoKind_RTPS_AUTO_ID_FROM_MAC</dref> 
  2868.  
  2869.    RTPS_AUTO_ID    : constant Unsigned_Long := 0; 
  2870.  
  2871.    type WireProtocolQosPolicy is record 
  2872.       Participant_Id          : aliased Long := -1; 
  2873.       Rtps_Host_Id            : aliased Unsigned_Long := RTPS_AUTO_ID; 
  2874.       Rtps_App_Id             : aliased Unsigned_Long := RTPS_AUTO_ID; 
  2875.       Rtps_Instance_Id        : aliased Unsigned_Long := RTPS_AUTO_ID; 
  2876.       Rtps_Well_Known_Ports   : aliased RtpsWellKnownPorts_T := RTPS_WELL_KNOWN_PORTS_DEFAULT; 
  2877.       Rtps_Reserved_Port_Mask : aliased Long := 0; 
  2878.       Rtps_Auto_Id_Kind       : aliased WireProtocolQosPolicyAutoKind := RTPS_AUTO_ID_FROM_IP; 
  2879.       Compute_Crc             : aliased Boolean := False; 
  2880.       Check_Crc               : aliased Boolean := False; 
  2881.    end record with 
  2882.      Convention => C; 
  2883.    --  <dref>WireProtocolQosPolicy</dref> 
  2884.    --  <dref name="Participant_Id">WireProtocolQosPolicy_participant_id</dref> 
  2885.    --  <dref name="Rtps_Host_Id">WireProtocolQosPolicy_rtps_host_id</dref> 
  2886.    --  <dref name="Rtps_App_Id">WireProtocolQosPolicy_rtps_app_id</dref> 
  2887.    --  <dref name="Rtps_Instance_Id">WireProtocolQosPolicy_rtps_instance_id</dref> 
  2888.    --  <dref name="Rtps_Well_Known_Ports">WireProtocolQosPolicy_rtps_well_known_ports</dref> 
  2889.    --  <dref name="rtps_reserved_port_mask">WireProtocolQosPolicy_rtps_reserved_port_mask</dref> 
  2890.    --  <dref name="rtps_auto_id_kind">WireProtocolQosPolicy_rtps_auto_id_kind</dref> 
  2891.  
  2892.    --  <dref>WireProtocolQosPolicy_RTPS_AUTO_ID</dref> 
  2893.  
  2894.    WIRE_PROTOCOL_QOS_POLICY_DEFAULT : constant WireProtocolQosPolicy := 
  2895.                                         (Participant_Id          => -1, -- Automatic 
  2896.                                          Rtps_Host_Id            => RTPS_AUTO_ID, 
  2897.                                          Rtps_App_Id             => RTPS_AUTO_ID, 
  2898.                                          Rtps_Instance_Id        => RTPS_AUTO_ID, 
  2899.                                          Rtps_Well_Known_Ports   => RTPS_WELL_KNOWN_PORTS_DEFAULT, 
  2900.                                          Rtps_Reserved_Port_Mask => 2#0000_0000_0000_0000#, 
  2901.                                          Rtps_Auto_Id_Kind       => RTPS_AUTO_ID_FROM_IP, 
  2902.                                          Compute_Crc             => False, 
  2903.                                          Check_Crc               => False); 
  2904.    --  <dref internal="true"></dref> 
  2905.  
  2906.    --  ------------------------------------------------------ 
  2907.    --                 Locator_t 
  2908.    --  ------------------------------------------------------ 
  2909.  
  2910.    LOCATOR_ADDRESS_LENGTH_MAX  : constant Unsigned_Long := 16; 
  2911.    --  <dref>Locator_t_ADDRESS_LENGTH_MAX</dref> 
  2912.  
  2913.    type Locator_Address_Array_T is array (0 .. LOCATOR_ADDRESS_LENGTH_MAX - 1) of Octet; 
  2914.  
  2915.    type Locator_T is record 
  2916.       Kind           : aliased Long := 0; 
  2917.       Port           : aliased Unsigned_Long := 0; 
  2918.       Address        : aliased Locator_Address_Array_T := (others => 0); 
  2919.       Encapsulations : aliased EncapsulationId_Seq.Sequence; 
  2920.    end record with 
  2921.      Convention => C; 
  2922.    --  <dref>Locator_t</dref> 
  2923.    --  <dref name="Kind">Locator_t_kind</dref> 
  2924.    --  <dref name="Port">Locator_t_port</dref> 
  2925.    --  <dref name="Address">Locator_t_address</dref> 
  2926.    --  <dref internal="true" name="Encapsulations">Locator_t_encapsulations</dref> 
  2927.  
  2928.    type Locator_T_Access is access all Locator_T; 
  2929.    type Locator_T_Array is array (Natural range <>) of aliased Locator_T; 
  2930.    procedure Initialize (Self  : in out Locator_T); 
  2931.    procedure Finalize (Self  : in out Locator_T); 
  2932.    procedure Copy (Dst : in out Locator_T; Src : in Locator_T); 
  2933.  
  2934.    package Locator_Seq is new DDS_Support.Sequences_Generic 
  2935.      (Locator_T, 
  2936.       Locator_T_Access, 
  2937.       DDS.Natural, 
  2938.       1, 
  2939.       Locator_T_Array); 
  2940.    --  <dref>LocatorSeq</dref> 
  2941.  
  2942.    LOCATOR_INVALID : constant Locator_T := 
  2943.                        (Kind           => -1, 
  2944.                         Port           => 0, 
  2945.                         Address        => (others => 00), 
  2946.                         Encapsulations => EncapsulationId_Seq.DEFAULT_SEQUENCE); 
  2947.    --  <dref>Locator_t_INVALID</dref> 
  2948.  
  2949.    LOCATOR_KIND_INVALID : constant Long := -1; 
  2950.    --  <dref>Locator_t_KIND_INVALID</dref> 
  2951.  
  2952.    LOCATOR_PORT_INVALID : constant Unsigned_Long := 0; 
  2953.    --  <dref>Locator_t_PORT_INVALID</dref> 
  2954.  
  2955.    LOCATOR_ADDRESS_INVALID : constant Locator_Address_Array_T := (others => 0); 
  2956.    --  <dref>Locator_t_ADDRESS_INVALID</dref> 
  2957.  
  2958.    LOCATOR_KIND_ANY : constant Long := 0; 
  2959.    --  <dref internal="true">Locator_t_KIND_ANY</dref> 
  2960.  
  2961.    LOCATOR_KIND_UDPv4 : constant Long := 1; 
  2962.    --  <dref>Locator_t_KIND_UDPv4</dref> 
  2963.  
  2964.  
  2965.    LOCATOR_KIND_SHMEM  : constant Long := 2; 
  2966.    --  <dref>Locator_t_KIND_SHMEM</dref> 
  2967.  
  2968.    LOCATOR_KIND_INTRA  : constant Long := 3; 
  2969.    --  <dref internal="true">Locator_t_KIND_INTRA</dref> 
  2970.  
  2971.    LOCATOR_KIND_UDPv6 : constant Long := 5; 
  2972.    --  <dref>Locator_t_KIND_UDPv6</dref> 
  2973.  
  2974.    LOCATOR_KIND_DTLS : constant Long := 6; 
  2975.    --  <dref internal="true">Locator_t_KIND_DTLS</dref> 
  2976.  
  2977.    LOCATOR_KIND_WAN : constant Long := 7; 
  2978.    --  <dref internal="true">Locator_t_KIND_WAN</dref> 
  2979.  
  2980.    LOCATOR_KIND_TCPV4_LAN : constant Long := 8; 
  2981.    --  <dref internal="true">Locator_t_KIND_TCPV4_LAN</dref> 
  2982.  
  2983.    LOCATOR_KIND_TCPV4_WAN : constant Long := 9; 
  2984.    --  <dref internal="true">Locator_t_KIND_TCPV4_WAN</dref> 
  2985.  
  2986.    LOCATOR_KIND_TLSV4_LAN : constant Long := 10; 
  2987.    --  <dref internal="true">Locator_t_KIND_TLSV4_LAN</dref> 
  2988.  
  2989.    LOCATOR_KIND_TLSV4_WAN : constant Long := 11; 
  2990.    --  <dref internal="true">Locator_t_KIND_TLSV4_WAN</dref> 
  2991.  
  2992.    LOCATOR_KIND_RESERVED : constant Long := 1000; 
  2993.    --  <dref internal>Locator_t_KIND_RESERVED</dref> 
  2994.  
  2995.    --  ------------------------------------------------------ 
  2996.    --                 ProtocolVersion_t 
  2997.    --  ------------------------------------------------------ 
  2998.  
  2999.    type ProtocolVersion_T  is record 
  3000.       Major : aliased Octet := 0; 
  3001.       Minor : aliased Octet := 0; 
  3002.    end record with 
  3003.      Convention => C; 
  3004.    --  <dref>ProtocolVersion_t</dref> 
  3005.    --  <dref name="Major">ProtocolVersion_t_major</dref> 
  3006.    --  <dref name="Minor">ProtocolVersion_t_minor</dref> 
  3007.  
  3008.    PROTOCOL_VERSION_DEFAULT : constant ProtocolVersion_T := 
  3009.                                 (Major => 0, 
  3010.                                  Minor => 0); 
  3011.    --  <dref internal="true"></dref> 
  3012.  
  3013.    PROTOCOLVERSION_1_0      : constant ProtocolVersion_T := 
  3014.                                 (Major => 1, 
  3015.                                  Minor => 0); 
  3016.    --  <dref>ProtocolVersion_t_PROTOCOLVERSION_1_0</dref> 
  3017.  
  3018.    PROTOCOLVERSION_1_1      : constant ProtocolVersion_T := 
  3019.                                 (Major => 1, 
  3020.                                  Minor => 1); 
  3021.    --  <dref>ProtocolVersion_t_PROTOCOLVERSION_1_1</dref> 
  3022.  
  3023.    PROTOCOLVERSION_1_2      : constant ProtocolVersion_T := 
  3024.                                 (Major => 1, 
  3025.                                  Minor => 2); 
  3026.    --  <dref>ProtocolVersion_t_PROTOCOLVERSION_1_2</dref> 
  3027.  
  3028.    PROTOCOLVERSION_2_0      : constant ProtocolVersion_T := 
  3029.                                 (Major => 2, 
  3030.                                  Minor => 0); 
  3031.    --  <dref>ProtocolVersion_t_PROTOCOLVERSION_2_0</dref> 
  3032.  
  3033.    PROTOCOLVERSION_2_1      : constant ProtocolVersion_T := 
  3034.                                 (Major => 2, 
  3035.                                  Minor => 1); 
  3036.    --  <dref>ProtocolVersion_t_PROTOCOLVERSION_2_1</dref> 
  3037.  
  3038.    PROTOCOLVERSION          : constant ProtocolVersion_T := 
  3039.                                 (Major => 2, 
  3040.                                  Minor => 1); 
  3041.    --  <dref>ProtocolVersion_t_PROTOCOLVERSION</dref> 
  3042.  
  3043.    --  ------------------------------------------------------ 
  3044.    --                 Version_t 
  3045.    --  ------------------------------------------------------ 
  3046.  
  3047.    VENDOR_ID_LENGTH_MAX     : constant := 2; 
  3048.    --  <dref>VendorId_t_LENGTH_MAX</dref> 
  3049.  
  3050.    type VendorId_Array_T is array (0 .. VENDOR_ID_LENGTH_MAX - 1) of Octet; 
  3051.  
  3052.    type VendorId_T is record 
  3053.       VendorId : aliased VendorId_Array_T := (others => 0); 
  3054.    end record with 
  3055.      Convention => C; 
  3056.    --  <dref>VendorId_t</dref> 
  3057.    --  <dref name="VendorId">VendorId_t_vendorId</dref> 
  3058.  
  3059.    VENDOR_ID_DEFAULT : constant  VendorId_T := (VendorId => (0, 0)); 
  3060.    --  <dref internal="true"></dref> 
  3061.  
  3062.    VENDORID_UNKNOWN  : constant  VendorId_T := (VendorId => (0, 0)); 
  3063.    --  <dref internal="true"></dref> 
  3064.  
  3065.    --  ------------------------------------------------------ 
  3066.    --                 ProductVersion_t 
  3067.    --  ------------------------------------------------------ 
  3068.  
  3069.    type ProductVersion_T is record 
  3070.       Major    : aliased Char := Char (ASCII.NUL); 
  3071.       Minor    : aliased Char := Char (ASCII.NUL); 
  3072.       Release  : aliased Char := '0'; 
  3073.       Revision : aliased Char := Char (ASCII.NUL); 
  3074.    end record with 
  3075.      Convention => C; 
  3076.    --  <dref>ProductVersion_t</dref> 
  3077.    --  <dref name="Major">ProductVersion_t_major</dref> 
  3078.    --  <dref name="Minor">ProductVersion_t_minor</dref> 
  3079.    --  <dref name="Release">ProductVersion_t_release</dref> 
  3080.    --  <dref name="Revision">ProductVersion_t_revision</dref> 
  3081.  
  3082.    PRODUCTVERSION_UNKNOWN : constant ProductVersion_T := 
  3083.                               (Major    => Char (ASCII.NUL), 
  3084.                                Minor    => Char (ASCII.NUL), 
  3085.                                Release  => '0', 
  3086.                                Revision => Char (ASCII.NUL)); 
  3087.    --  <dref>ProductVersion_t_UNKNOWN</dref> 
  3088.  
  3089.    --  ---------------------------------------------------------- 
  3090.    --                 DATA_READER_RESOURCE_LIMITS (eXtension QoS) 
  3091.    --  ---------------------------------------------------------- 
  3092.  
  3093.    DATAREADERRESOURCELIMITS_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("DataReaderResourceLimits"); 
  3094.    --  <defgroup>DataReaderResourceLimitsQosGroupDocs</defgroup> 
  3095.    --  <dref>DATAREADERRESOURCELIMITS_QOS_POLICY_NAME</dref> 
  3096.  
  3097.    type DataReaderResourceLimitsQosPolicy is record 
  3098.       Max_Remote_Writers                          : aliased Long := -1; 
  3099.       Max_Remote_Writers_Per_Instance             : aliased Long := -1; 
  3100.       Max_Samples_Per_Remote_Writer               : aliased Long := -1; 
  3101.       Max_Infos                                   : aliased Long := -1; 
  3102.       Initial_Remote_Writers                      : aliased Long := 2; 
  3103.       Initial_Remote_Writers_Per_Instance         : aliased Long := 2; 
  3104.       Initial_Infos                               : aliased Long := 32; 
  3105.       Initial_Outstanding_Reads                   : aliased Long := 2; 
  3106.       Max_Outstanding_Reads                       : aliased Long := -1; 
  3107.       Max_Samples_Per_Read                        : aliased Long := 1024; 
  3108.       Disable_Fragmentation_Support               : aliased DDS.Boolean := False; 
  3109.       Max_Fragmented_Samples                      : aliased Long := 1024; 
  3110.       Initial_Fragmented_Samples                  : aliased Long := 4; 
  3111.       Max_Fragmented_Samples_Per_Remote_Writer    : aliased Long := 256; 
  3112.       Max_Fragments_Per_Sample                    : aliased Long := 512; 
  3113.       Dynamically_Allocate_Fragmented_Samples     : aliased DDS.Boolean := False; 
  3114.       Max_Total_Instances                         : aliased Long := 32; 
  3115.       Max_Remote_Virtual_Writers                  : aliased Long := -1; 
  3116.       Initial_Remote_Virtual_Writers              : aliased Long := 2; 
  3117.       Max_Remote_Virtual_Writers_Per_Instance     : aliased Long := -1; 
  3118.       Initial_Remote_Virtual_Writers_Per_Instance : aliased Long := 2; 
  3119.       Max_Remote_Writers_Per_Sample               : aliased Long := 3; 
  3120.       Max_Query_Condition_Filters                 : aliased Long := 4; 
  3121.       Max_App_Ack_Response_Length                 : aliased Long := 1; 
  3122.       Keep_Minimum_State_For_Instances            : aliased DDS.Boolean := True; 
  3123.       Initial_Topic_Queries                       : aliased Long := 1; 
  3124.       Max_Topic_Queries                           : aliased Long := -1; 
  3125.       Shmem_Ref_Transfer_Mode_Attached_Segment_Allocation : aliased AllocationSettings_T := AllocationSettings_T_AUTO; 
  3126.    end record with 
  3127.      Convention => C; 
  3128.    --  <dref>DataReaderResourceLimitsQosPolicy</dref> 
  3129.    --  <dref name="Max_Remote_Writers">DataReaderResourceLimitsQosPolicy_max_remote_writers</dref> 
  3130.    --  <dref name="Max_Remote_Writers_Per_Instance">DataReaderResourceLimitsQosPolicy_max_remote_writers_per_instance</dref> 
  3131.    --  <dref name="Max_Samples_Per_Remote_Writer">DataReaderResourceLimitsQosPolicy_max_samples_per_remote_writer</dref> 
  3132.    --  <dref name="Max_Infos">DataReaderResourceLimitsQosPolicy_max_infos</dref> 
  3133.    --  <dref name="Initial_Remote_Writers">DataReaderResourceLimitsQosPolicy_initial_remote_writers</dref> 
  3134.    --  <dref name="Initial_Remote_Writers_Per_Instance">DataReaderResourceLimitsQosPolicy_initial_remote_writers_per_instance</dref> 
  3135.    --  <dref name="Initial_Infos">DataReaderResourceLimitsQosPolicy_initial_infos</dref> 
  3136.    --  <dref name="Initial_Outstanding_Reads">DataReaderResourceLimitsQosPolicy_initial_outstanding_reads</dref> 
  3137.    --  <dref name="Max_Outstanding_Reads">DataReaderResourceLimitsQosPolicy_max_outstanding_reads</dref> 
  3138.    --  <dref name="Max_Samples_Per_Read">DataReaderResourceLimitsQosPolicy_max_samples_per_read</dref> 
  3139.    --  <dref name="Disable_Fragmentation_Support">DataReaderResourceLimitsQosPolicy_disable_fragmentation_support</dref> 
  3140.    --  <dref name="Max_Fragmented_Samples">DataReaderResourceLimitsQosPolicy_max_fragmented_samples</dref> 
  3141.    --  <dref name="Initial_Fragmented_Samples">DataReaderResourceLimitsQosPolicy_initial_fragmented_samples</dref> 
  3142.    --  <dref name="Max_Fragmented_Samples_Per_Remote_Writer">DataReaderResourceLimitsQosPolicy_max_fragmented_samples_per_remote_writer</dref> 
  3143.    --  <dref name="Max_Fragments_Per_Samples">DataReaderResourceLimitsQosPolicy_max_fragments_per_sample</dref> 
  3144.    --  <dref name="Dynamically_Allocate_Fragmented_Samples">DataReaderResourceLimitsQosPolicy_dynamically_allocate_fragmented_samples</dref> 
  3145.    --  <dref name="Max_Total_Instances">DataReaderResourceLimitsQosPolicy_max_total_instances</dref> 
  3146.    --  <dref name="Max_Remote_Virtual_Writers">DataReaderResourceLimitsQosPolicy_max_remote_virtual_writers</dref> 
  3147.    --  <dref name="Initial_Remote_Virtual_Writers">DataReaderResourceLimitsQosPolicy_initial_remote_virtual_writers</dref> 
  3148.    --  <dref name="Max_Remote_Virtual_Writers_Per_Instance">DataReaderResourceLimitsQosPolicy_max_remote_virtual_writers_per_instance</dref> 
  3149.    --  <dref name="Initial_Remote_Virtual_Writers_Per_Instance">DataReaderResourceLimitsQosPolicy_initial_remote_virtual_writers_per_instance</dref> 
  3150.    --  <dref name="Max_Remote_Writers_Per_Sample">DataReaderResourceLimitsQosPolicy_max_remote_writers_per_sample</dref> 
  3151.    --  <dref name="Max_Query_Condition_Filters">DataReaderResourceLimitsQosPolicy_max_query_condition_filters</dref> 
  3152.    --  <dref name="Max_App_Ack_Response_Length">DataReaderResourceLimitsQosPolicy_max_app_ack_response_length</dref> 
  3153.    --  <dref name="Keep_Minimum_State_For_Instances">DataReaderResourceLimitsQosPolicy_keep_minimum_state_for_instances</dref> 
  3154.    --  <dref internal="true" name="Initial_Topic_Queries">DataReaderResourceLimitsQosPolicy_initial_topic_queries</dref> 
  3155.    --  <dref internal="true" name="Max_Topic_Queries">DataReaderResourceLimitsQosPolicy_max_topic_queries</dref> 
  3156.    --  <dref internal="true" name="Shmem_Ref_Transfer_Mode_Attached_Segment_Allocation">DataReaderResourceLimitsQosPolicy_shmem_ref_transfer_mode_attached_segment_allocation</dref> 
  3157.  
  3158.    AUTO_MAX_TOTAL_INSTANCES : constant Long := 0; 
  3159.    --  <dref>AUTO_MAX_TOTAL_INSTANCES</dref> 
  3160.  
  3161.    DATA_READER_RESOURCE_LIMITS_QOS_POLICY_DEFAULT :   constant DataReaderResourceLimitsQosPolicy := 
  3162.                                                       (Max_Remote_Writers                          => -1, 
  3163.                                                        Max_Remote_Writers_Per_Instance             => -1, 
  3164.                                                        Max_Samples_Per_Remote_Writer               => -1, 
  3165.                                                        Max_Infos                                   => -1, 
  3166.                                                        Initial_Remote_Writers                      =>  2, 
  3167.                                                        Initial_Remote_Writers_Per_Instance         => 2, 
  3168.                                                        Initial_Infos                               => 32, 
  3169.                                                        Initial_Outstanding_Reads                   => 2, 
  3170.                                                        Max_Outstanding_Reads                       =>  -1, 
  3171.                                                        Max_Samples_Per_Read                        =>  1024, 
  3172.                                                        Disable_Fragmentation_Support               =>  False, 
  3173.                                                        Max_Fragmented_Samples                      =>  1024, 
  3174.                                                        Initial_Fragmented_Samples                  =>  4, 
  3175.                                                        Max_Fragmented_Samples_Per_Remote_Writer    =>  256, 
  3176.                                                        Max_Fragments_Per_Sample                    =>  512, 
  3177.                                                        Dynamically_Allocate_Fragmented_Samples     => False, 
  3178.                                                        Max_Total_Instances                         => 32, 
  3179.                                                        Max_Remote_Virtual_Writers                  => -1, 
  3180.                                                        Initial_Remote_Virtual_Writers              => 2, 
  3181.                                                        Max_Remote_Virtual_Writers_Per_Instance     => -1, 
  3182.                                                        Initial_Remote_Virtual_Writers_Per_Instance => 2, 
  3183.                                                        Max_Remote_Writers_Per_Sample               => 3, 
  3184.                                                        Max_Query_Condition_Filters                 => 4, 
  3185.                                                        Max_App_Ack_Response_Length                 => 1, 
  3186.                                                        Keep_Minimum_State_For_Instances            => True, 
  3187.                                                        Initial_Topic_Queries                       => 1, 
  3188.                                                        Max_Topic_Queries                           => -1, 
  3189.                                                        Shmem_Ref_Transfer_Mode_Attached_Segment_Allocation => AllocationSettings_T_AUTO); 
  3190.    --  <dref internal="true"></dref> 
  3191.  
  3192.    --  ---------------------------------------------------------- 
  3193.    --                 DATA_WRITER_RESOURCE_LIMITS (eXtension QoS) 
  3194.    --  ---------------------------------------------------------- 
  3195.  
  3196.    DATAWRITERRESOURCELIMITS_QOS_POLICY_NAME       : constant DDS.String := To_DDS_String ("DataWriterResourceLimits"); 
  3197.    --  <defgroup>DataWriterResourceLimitsQosGroupDocs</defgroup> 
  3198.    --  <dref>DATAWRITERRESOURCELIMITS_QOS_POLICY_NAME</dref> 
  3199.  
  3200.    type DataWriterResourceLimitsInstanceReplacementKind is new Unsigned_Long; 
  3201.    --  <dref>DataWriterResourceLimitsInstanceReplacementKind</dref> 
  3202.  
  3203.    UNREGISTERED_INSTANCE_REPLACEMENT : constant DataWriterResourceLimitsInstanceReplacementKind := 0; 
  3204.    --  <dref>DataWriterResourceLimitsInstanceReplacementKind_UNREGISTERED_INSTANCE_REPLACEMENT</dref> 
  3205.  
  3206.    ALIVE_INSTANCE_REPLACEMENT : constant DataWriterResourceLimitsInstanceReplacementKind := 1; 
  3207.    --  <dref>DataWriterResourceLimitsInstanceReplacementKind_ALIVE_INSTANCE_REPLACEMENT</dref> 
  3208.  
  3209.    DISPOSED_INSTANCE_REPLACEMENT : constant DataWriterResourceLimitsInstanceReplacementKind := 2; 
  3210.    --  <dref>DataWriterResourceLimitsInstanceReplacementKind_DISPOSED_INSTANCE_REPLACEMENT</dref> 
  3211.  
  3212.    ALIVE_THEN_DISPOSED_INSTANCE_REPLACEMENT : constant DataWriterResourceLimitsInstanceReplacementKind := 3; 
  3213.    --  <dref>DataWriterResourceLimitsInstanceReplacementKind_ALIVE_THEN_DISPOSED_INSTANCE_REPLACEMENT</dref> 
  3214.  
  3215.    DISPOSED_THEN_ALIVE_INSTANCE_REPLACEMENT : constant DataWriterResourceLimitsInstanceReplacementKind := 4; 
  3216.    --  <dref>DataWriterResourceLimitsInstanceReplacementKind_DISPOSED_THEN_ALIVE_INSTANCE_REPLACEMENT</dref> 
  3217.  
  3218.    ALIVE_OR_DISPOSED_INSTANCE_REPLACEMENT : constant DataWriterResourceLimitsInstanceReplacementKind := 5; 
  3219.    --  <dref>DataWriterResourceLimitsInstanceReplacementKind_ALIVE_OR_DISPOSED_INSTANCE_REPLACEMENT</dref> 
  3220.  
  3221.    type DataWriterResourceLimitsQosPolicy is record 
  3222.       Initial_Concurrent_Blocking_Threads : aliased DDS.Long := 1; 
  3223.       Max_Concurrent_Blocking_Threads     : aliased DDS.Long := -1; 
  3224.       Max_Remote_Reader_Filters           : aliased DDS.Long := 32; 
  3225.       Initial_Batches                     : aliased DDS.Long := 8; 
  3226.       Max_Batches                         : aliased DDS.Long := -1; 
  3227.       Cookie_Max_Length                   : aliased DDS.Long := -1; 
  3228.       Instance_Replacement                : aliased DataWriterResourceLimitsInstanceReplacementKind := UNREGISTERED_INSTANCE_REPLACEMENT; 
  3229.       Replace_Empty_Instances             : aliased DDS.Boolean := False; 
  3230.       Autoregister_Instances              : aliased DDS.Boolean := False; 
  3231.       Initial_Virtual_Writers             : aliased DDS.Long :=  1; 
  3232.       Max_Virtual_Writers                 : aliased DDS.Long := -1; 
  3233.       Max_Remote_Readers                  : aliased DDS.Long := -1; 
  3234.       Max_App_Ack_Remote_Readers          : aliased DDS.Long := -1; 
  3235.       Initial_Active_Topic_Queries        : aliased DDS.Long :=  1; 
  3236.       Max_Topic_Queries                   : aliased DDS.Long := -1; 
  3237.       Writer_Loaned_Sample_Allocation     : aliased AllocationSettings_T := AllocationSettings_T_AUTO; 
  3238.       Initialize_Writer_Loaned_Sample     : aliased DDS.Boolean := False; 
  3239.    end record with Convention => C; 
  3240.    --  <dref>DataWriterResourceLimitsQosPolicy</dref> 
  3241.    --  <dref name="Initial_Concurrent_Blocking_Threads">DataWriterResourceLimitsQosPolicy_initial_concurrent_blocking_threads</dref> 
  3242.    --  <dref name="Max_Concurrent_Blocking_Threads">DataWriterResourceLimitsQosPolicy_max_concurrent_blocking_threads</dref> 
  3243.    --  <dref name="Max_Remote_Reader_Filters">DataWriterResourceLimitsQosPolicy_max_remote_reader_filters</dref> 
  3244.    --  <dref name="Initial_Batches">DataWriterResourceLimitsQosPolicy_initial_batches</dref> 
  3245.    --  <dref name="Max_Batches">DataWriterResourceLimitsQosPolicy_max_batches</dref> 
  3246.    --  <dref name="Cookie_Max_Length">DataWriterResourceLimitsQosPolicy_cookie_max_length</dref> 
  3247.    --  <dref name="Instance_Replacement">DataWriterResourceLimitsQosPolicy_instance_replacement</dref> 
  3248.    --  <dref name="Replace_Empty_Instances">DataWriterResourceLimitsQosPolicy_replace_empty_instances</dref> 
  3249.    --  <dref name="Autoregister_Instances">DataWriterResourceLimitsQosPolicy_autoregister_instances</dref> 
  3250.    --  <dref name="Initial_Virtual_Writers">DataWriterResourceLimitsQosPolicy_initial_virtual_writers</dref> 
  3251.    --  <dref name="Max_Virtual_Writers">DataWriterResourceLimitsQosPolicy_max_virtual_writers</dref> 
  3252.    --  <dref name="Max_Remote_Readers">DataWriterResourceLimitsQosPolicy_max_remote_readers</dref> 
  3253.    --  <dref name="Max_App_Ack_Remote_Readers">DataWriterResourceLimitsQosPolicy_max_app_ack_remote_readers</dref> 
  3254.    --  <dref internal="true" name="Initial_Active_Topic_Queries">DataWriterResourceLimitsQosPolicy_initial_active_topic_queries</dref> 
  3255.    --  <dref internal="true" name="Max_Topic_Queries">DataWriterResourceLimitsQosPolicy_max_topic_queries</dref> 
  3256.    --  <dref internal="true" name="Writer_Loaned_Sample_Allocation">DataWriterResourceLimitsQosPolicy_writer_loaned_sample_allocation</dref> 
  3257.    --  <dref internal="true" name="Initialize_Writer_Loaned_Sample">DataWriterResourceLimitsQosPolicy_initialize_writer_loaned_sample</dref> 
  3258.  
  3259.    DATA_WRITER_RESOURCE_LIMITS_QOS_POLICY_DEFAULT : constant DataWriterResourceLimitsQosPolicy := 
  3260.                                                       (Initial_Concurrent_Blocking_Threads => 1, 
  3261.                                                        Max_Concurrent_Blocking_Threads     => -1, 
  3262.                                                        Max_Remote_Reader_Filters           => 32, 
  3263.                                                        Initial_Batches                     => 8, 
  3264.                                                        Max_Batches                         => -1, 
  3265.                                                        Cookie_Max_Length                   => -1, 
  3266.                                                        Instance_Replacement                => UNREGISTERED_INSTANCE_REPLACEMENT, 
  3267.                                                        Replace_Empty_Instances             => False, 
  3268.                                                        Autoregister_Instances              => False, 
  3269.                                                        Initial_Virtual_Writers             =>  1, 
  3270.                                                        Max_Virtual_Writers                 => -1, 
  3271.                                                        Max_Remote_Readers                  => -1, 
  3272.                                                        Max_App_Ack_Remote_Readers          => -1, 
  3273.                                                        Initial_Active_Topic_Queries        =>  1, 
  3274.                                                        Max_Topic_Queries                   => -1, 
  3275.                                                        Writer_Loaned_Sample_Allocation     => AllocationSettings_T_AUTO, 
  3276.                                                        Initialize_Writer_Loaned_Sample     => False); 
  3277.    --  <dref internal="true"></dref> 
  3278.  
  3279.    --  ---------------------------------------------------------- 
  3280.    --                 SERVICE (eXtension QoS) 
  3281.    --  ---------------------------------------------------------- 
  3282.  
  3283.    SERVICE_QOS_POLICY_NAME                        : constant DDS.String := To_DDS_String ("Service"); 
  3284.    --  <defgroup>ServiceQosGroupDocs</defgroup> 
  3285.    --  <dref internal="true">SERVICE_QOS_POLICY_NAME</dref> 
  3286.  
  3287.    type ServiceQosPolicyKind is new Unsigned_Long; 
  3288.    --  <dref>ServiceQosPolicyKind</dref> 
  3289.  
  3290.    NO_SERVICE_QOS : constant ServiceQosPolicyKind := 0; 
  3291.    --  <dref>ServiceQosPolicyKind_NO_SERVICE_QOS</dref> 
  3292.  
  3293.    PERSISTENCE_SERVICE_QOS : constant ServiceQosPolicyKind := 1; 
  3294.    --  <dref>ServiceQosPolicyKind_PERSISTENCE_SERVICE_QOS</dref> 
  3295.  
  3296.    QUEUING_SERVICE_QOS : constant ServiceQosPolicyKind := 2; 
  3297.    --  <dref>ServiceQosPolicyKind_QUEUING_SERVICE_QOS</dref> 
  3298.  
  3299.    ROUTING_SERVICE_QOS : constant ServiceQosPolicyKind := 3; 
  3300.    --  <dref>ServiceQosPolicyKind_ROUTING_SERVICE_QOS</dref> 
  3301.  
  3302.    RECORDING_SERVICE_QOS : constant ServiceQosPolicyKind := 4; 
  3303.    --  <dref>ServiceQosPolicyKind_RECORDING_SERVICE_QOS</dref> 
  3304.  
  3305.    REPLAY_SERVICE_QOS : constant ServiceQosPolicyKind := 5; 
  3306.    --  <dref>ServiceQosPolicyKind_REPLAY_SERVICE_QOS</dref> 
  3307.  
  3308.    DATABASE_INTEGRATION_SERVICE_QOS : constant ServiceQosPolicyKind := 6; 
  3309.    --  <dref>ServiceQosPolicyKind_DATABASE_INTEGRATION_SERVICE_QOS</dref> 
  3310.  
  3311.    DDS_WEB_INTEGRATION_SERVICE_QOS : constant ServiceQosPolicyKind := 7; 
  3312.    --  <dref>ServiceQosPolicyKind_WEB_INTEGRATION_SERVICE_QOS</dref> 
  3313.  
  3314.    type ServiceQosPolicy is record 
  3315.       Kind : ServiceQosPolicyKind; 
  3316.    end record  with Convention => C; 
  3317.    --  <dref>ServiceQosPolicy</dref> 
  3318.    --  <dref name="Kind">ServiceQosPolicy_kind</dref> 
  3319.  
  3320.    SERVICE_QOS_POLICY_DEFAULT : constant ServiceQosPolicy := 
  3321.                                   (Kind => NO_SERVICE_QOS); 
  3322.    --  <dref internal="true"></dref> 
  3323.  
  3324.    --  ---------------------------------------------------------- 
  3325.    --                 PUBLISHER_PROTOCOL (eXtension QoS) 
  3326.    --  ---------------------------------------------------------- 
  3327.  
  3328.    PUBLISHERPROTOCOL_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("PublisherProtocol"); 
  3329.    --  <defgroup internal="true">PublisherProtocolQosGroupDocs</defgroup> 
  3330.    --  <dref internal="true">PUBLISHERPROTOCOL_QOS_POLICY_NAME</dref> 
  3331.  
  3332.    type PublisherProtocolQosPolicy is record 
  3333.       Vendor_Specific_Entity : DDS.Boolean := False; 
  3334.    end record with Convention => C; 
  3335.    --  <dref internal="true">PublisherProtocolQosPolicy</dref> 
  3336.    --  <dref internal="true" name="vendor_specific_entity"a>PublisherProtocolQosPolicy_vendor_specific_entity</dref> 
  3337.  
  3338.    PUBLISHER_PROTOCOL_QOS_POLICY_DEFAULT : constant PublisherProtocolQosPolicy := 
  3339.                                              (Vendor_Specific_Entity => False); 
  3340.    --  <dref internal="true"></dref> 
  3341.  
  3342.    --  ---------------------------------------------------------- 
  3343.    --                 SUBSCRIBER_PROTOCOL (eXtension QoS) 
  3344.    --  ---------------------------------------------------------- 
  3345.  
  3346.    SUBSCRIBERPROTOCOL_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("SubscriberProtocol"); 
  3347.    --  <defgroup internal="true">SubscriberProtocolQosGroupDocs</defgroup> 
  3348.    --  <dref internal="true">SUBSCRIBERPROTOCOL_QOS_POLICY_NAME</dref> 
  3349.  
  3350.    type SubscriberProtocolQosPolicy is record 
  3351.       Vendor_Specific_Entity : DDS.Boolean := False; 
  3352.    end record with Convention => C; 
  3353.    --  <dref internal="true">SubscriberProtocolQosPolicy</dref> 
  3354.    --  <dref internal="true" name="vendor_specific_entity"a>SubscriberProtocolQosPolicy_vendor_specific_entity</dref> 
  3355.  
  3356.  
  3357.    SUBSCRIBER_PROTOCOL_QOS_POLICY_DEFAULT : constant SubscriberProtocolQosPolicy := 
  3358.                                               (Vendor_Specific_Entity => False); 
  3359.    --  <dref internal="true"></dref> 
  3360.  
  3361.    --  ---------------------------------------------------------- 
  3362.    --                 DATAREADER_PROTOCOL (eXtension QoS) 
  3363.    --  ---------------------------------------------------------- 
  3364.  
  3365.    DATAREADERPROTOCOL_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("DataReaderProtocol"); 
  3366.    --  <defgroup>DataReaderProtocolQosGroupDocs</defgroup> 
  3367.    --  <dref>DATAREADERPROTOCOL_QOS_POLICY_NAME</dref> 
  3368.  
  3369.    type DataReaderProtocolQosPolicy is record 
  3370.       Virtual_Guid                                : aliased Guid_T; 
  3371.       Rtps_Object_Id                              : aliased Unsigned_Long := RTPS_AUTO_ID; 
  3372.       Expects_Inline_Qos                          : aliased DDS.Boolean := False; 
  3373.       Disable_Positive_Acks                       : aliased DDS.Boolean := False; 
  3374.       Propagate_Dispose_Of_Unregistered_Instances : aliased DDS.Boolean := False; 
  3375.       Propagate_Unregister_Of_Disposed_Instances  : aliased DDS.Boolean := False; 
  3376.       Rtps_Reliable_Reader                        : aliased RtpsReliableReaderProtocol_T := RTPS_RELIABLE_READER_PROTOCOL_DEFAULT; 
  3377.       Vendor_Specific_Entity                      : aliased DDS.Boolean := False; 
  3378.       Meta_Entity                                 : aliased DDS.Boolean := False; 
  3379.    end record with Convention => C; 
  3380.    --  <dref>DataReaderProtocolQosPolicy</dref> 
  3381.    --  <dref name="Virtual_Guid">DataReaderProtocolQosPolicy_virtual_guid</dref> 
  3382.    --  <dref name="Rtps_Object_Id">DataReaderProtocolQosPolicy_rtps_object_id</dref> 
  3383.    --  <dref name="Expects_Inline_Qos">DataReaderProtocolQosPolicy_expects_inline_qos</dref> 
  3384.    --  <dref name="disable_positive_acks">DataReaderProtocolQosPolicy_disable_positive_acks</dref> 
  3385.    --  <dref name="propagate_dispose_of_unregistered_instances">DataReaderProtocolQosPolicy_propagate_dispose_of_unregistered_instances</dref> 
  3386.    --  <dref name="propagate_unregister_of_disposed_instances">DataReaderProtocolQosPolicy_propagate_unregister_of_disposed_instances</dref> 
  3387.    --  <dref name="Rtps_Reliable_Reader">DataReaderProtocolQosPolicy_rtps_reliable_reader</dref> 
  3388.    --  <dref internal="true" name="vendor_specific_entity">DataReaderProtocolQosPolicy_vendor_specific_entity</dref> 
  3389.    --  <dref internal="true" name="Meta_Entity">DataReaderProtocolQosPolicy_Meta_Entity</dref> 
  3390.  
  3391.    DATA_READER_PROTOCOL_QOS_POLICY_DEFAULT : constant DataReaderProtocolQosPolicy := 
  3392.                                                (Virtual_Guid                                => (Value => (others => 0)), 
  3393.                                                 Rtps_Object_Id                              => RTPS_AUTO_ID, 
  3394.                                                 Expects_Inline_Qos                          => False, 
  3395.                                                 Disable_Positive_Acks                       => False, 
  3396.                                                 Propagate_Dispose_Of_Unregistered_Instances => False, 
  3397.                                                 Propagate_Unregister_Of_Disposed_Instances  => False, 
  3398.                                                 Rtps_Reliable_Reader                        => RTPS_RELIABLE_READER_PROTOCOL_DEFAULT, 
  3399.                                                 Vendor_Specific_Entity                      => False, 
  3400.                                                 Meta_Entity                                 => False); 
  3401.    --  <dref internal="true"></dref> 
  3402.  
  3403.    --  ---------------------------------------------------------- 
  3404.    --                 DATAWRITER_PROTOCOL (eXtension QoS) 
  3405.    --  ---------------------------------------------------------- 
  3406.  
  3407.    DATAWRITERPROTOCOL_QOS_POLICY_NAME      : constant DDS.String := To_DDS_String ("DataWriterProtocol"); 
  3408.    --  <defgroup>DataWriterProtocolQosGroupDocs</defgroup> 
  3409.    --  <dref>DATAWRITERPROTOCOL_QOS_POLICY_NAME</dref> 
  3410.  
  3411.    type DataWriterProtocolQosPolicy is record 
  3412.       Virtual_Guid                       : aliased Guid_T; 
  3413.       Rtps_Object_Id                     : aliased Unsigned_Long := RTPS_AUTO_ID; 
  3414.       Push_On_Write                      : aliased DDS.Boolean := False; 
  3415.       Disable_Positive_Acks              : aliased DDS.Boolean := False; 
  3416.       Disable_Inline_Keyhash             : aliased DDS.Boolean := False; 
  3417.       Serialize_Key_With_Dispose         : aliased DDS.Boolean := False; 
  3418.       Propagate_App_Ack_With_No_Response : aliased DDS.Boolean := True; 
  3419.       Rtps_Reliable_Writer               : aliased RtpsReliableWriterProtocol_T := RTPS_RELIABLE_WRITER_PROTOCOL_DEFAULT; 
  3420.       Initial_Virtual_Sequence_Number    : aliased DDS.SequenceNumber_T := (-2147483648, 16#FFFF_FFFF#); 
  3421.       Vendor_Specific_Entity             : aliased DDS.Boolean := False; 
  3422.    end record with Convention => C; 
  3423.    --  <dref>DataWriterProtocolQosPolicy</dref> 
  3424.    --  <dref name="Virtual_Guid">DataWriterProtocolQosPolicy_virtual_guid</dref> 
  3425.    --  <dref name="Rtps_Object_Id">DataWriterProtocolQosPolicy_rtps_object_id</dref> 
  3426.    --  <dref name="Push_On_Write">DataWriterProtocolQosPolicy_push_on_write</dref> 
  3427.    --  <dref name="Disable_Positive_Acks">DataWriterProtocolQosPolicy_disable_positive_acks</dref> 
  3428.    --  <dref name="Disable_Inline_Keyhash">DataWriterProtocolQosPolicy_disable_inline_keyhash</dref> 
  3429.    --  <dref name="Serialize_Key_With_Dispose">DataWriterProtocolQosPolicy_serialize_key_with_dispose</dref> 
  3430.    --  <dref name="Propagate_App_Ack_With_No_Response">DataWriterProtocolQosPolicy_propagate_app_ack_with_no_response</dref> 
  3431.    --  <dref name="Rtps_Reliable_Writer">DataWriterProtocolQosPolicy_rtps_reliable_writer</dref> 
  3432.    --  <dref name="Initial_Virtual_Sequence_Number">DataWriterProtocolQosPolicy_initial_virtual_sequence_number</dref> 
  3433.    --  <dref internal="true" name="Vendor_Specific_Entity">DataWriterProtocolQosPolicy_vendor_specific_entity</dref> 
  3434.  
  3435.    DATA_WRITER_PROTOCOL_QOS_POLICY_DEFAULT : constant DataWriterProtocolQosPolicy := 
  3436.                                                (Virtual_Guid                       => (Value => (others => 0)), 
  3437.                                                 Rtps_Object_Id                     => RTPS_AUTO_ID, 
  3438.                                                 Push_On_Write                      => True, 
  3439.                                                 Disable_Positive_Acks              => False, 
  3440.                                                 Disable_Inline_Keyhash             => False, 
  3441.                                                 Serialize_Key_With_Dispose         => False, 
  3442.                                                 Propagate_App_Ack_With_No_Response => True, 
  3443.                                                 Rtps_Reliable_Writer               => RTPS_RELIABLE_WRITER_PROTOCOL_DEFAULT, 
  3444.                                                 Initial_Virtual_Sequence_Number    => (-2147483648, 16#FFFF_FFFF#), 
  3445.                                                 Vendor_Specific_Entity             => False); 
  3446.    --  <dref internal="true"></dref> 
  3447.  
  3448.    --  ---------------------------------------------------------- 
  3449.    --                 SYSTEM_RESOURCE_LIMITS (eXtension QoS) 
  3450.    --  ---------------------------------------------------------- 
  3451.  
  3452.    SYSTEMRESOURCELIMITS_QOS_POLICY_NAME    : constant DDS.String := To_DDS_String ("SystemResourceLimits"); 
  3453.    --  <defgroup>SystemResourceLimitsQosGroupDocs</defgroup> 
  3454.    --  <dref>SYSTEMRESOURCELIMITS_QOS_POLICY_NAME</dref> 
  3455.  
  3456.    type SystemResourceLimitsQosPolicy is record 
  3457.       Max_Objects_Per_Thread : Long := 1024; 
  3458.    end record with Convention => C; 
  3459.    --  <dref>SystemResourceLimitsQosPolicy</dref> 
  3460.    --  <dref name="Max_Objects_Per_Thread">SystemResourceLimitsQosPolicy_max_objects_per_thread</dref> 
  3461.  
  3462.    SYSTEM_RESOURCE_LIMITS_QOS_POLICY_DEFAULT : constant SystemResourceLimitsQosPolicy := 
  3463.                                                  (Max_Objects_Per_Thread => 1024); 
  3464.    --  <dref internal="true"></dref> 
  3465.  
  3466.    --  ---------------------------------------------------------- 
  3467.    --                 DOMAIN_PARTICIPANT_RESOURCE_LIMITS (eXtension QoS) 
  3468.    --  ---------------------------------------------------------- 
  3469.  
  3470.    DOMAINPARTICIPANTRESOURCELIMITS_QOS_POLICY_NAME :  constant DDS.String := To_DDS_String ("DomainParticipantResourceLimits"); 
  3471.    --  <defgroup>DomainParticipantResourceLimitsQosGroupDocs</defgroup> 
  3472.    --  <dref>DOMAINPARTICIPANTRESOURCELIMITS_QOS_POLICY_NAME</dref> 
  3473.  
  3474.    DomainParticipantResourceLimitsQosPolicy_MATCH_INIT : constant DDS.Long := 32; 
  3475.  
  3476.    type DomainParticipantResourceLimitsIgnoredEntityReplacementKind is new Unsigned_Long; 
  3477.    --  <dref>DomainParticipantResourceLimitsIgnoredEntityReplacementKind</dref> 
  3478.  
  3479.    NO_REPLACEMENT_IGNORED_ENTITY_REPLACEMENT : 
  3480.    constant DomainParticipantResourceLimitsIgnoredEntityReplacementKind := 0; 
  3481.    --  <dref>DomainParticipantResourceLimitsIgnoredEntityReplacementKind_NO_REPLACEMENT_IGNORED_ENTITY_REPLACEMENT</dref> 
  3482.  
  3483.    DDS_NOT_ALIVE_FIRST_IGNORED_ENTITY_REPLACEMENT : 
  3484.    constant DomainParticipantResourceLimitsIgnoredEntityReplacementKind := 1; 
  3485.    --  <dref>DomainParticipantResourceLimitsIgnoredEntityReplacementKind_NOT_ALIVE_FIRST_IGNORED_ENTITY_REPLACEMENT</dref> 
  3486.  
  3487.    type DomainParticipantResourceLimitsQosPolicy is record 
  3488.       Local_Writer_Allocation                               : aliased AllocationSettings_T := (16, -1, -1); 
  3489.       Local_Reader_Allocation                               : aliased AllocationSettings_T := (16, -1, -1); 
  3490.       Local_Publisher_Allocation                            : aliased AllocationSettings_T := (4, -1, -1); 
  3491.       Local_Subscriber_Allocation                           : aliased AllocationSettings_T := (4, -1, -1); 
  3492.       Local_Topic_Allocation                                : aliased AllocationSettings_T := (16, -1, -1); 
  3493.       Remote_Writer_Allocation                              : aliased AllocationSettings_T := (64, -1, -1); 
  3494.       Remote_Reader_Allocation                              : aliased AllocationSettings_T := (64, -1, -1); 
  3495.       Remote_Participant_Allocation                         : aliased AllocationSettings_T := (16, -1, -1); 
  3496.       Matching_Writer_Reader_Pair_Allocation                : aliased AllocationSettings_T := (DomainParticipantResourceLimitsQosPolicy_MATCH_INIT, -1, -1); 
  3497.       Matching_Reader_Writer_Pair_Allocation                : aliased AllocationSettings_T := (DomainParticipantResourceLimitsQosPolicy_MATCH_INIT, -1, -1); 
  3498.       Ignored_Entity_Allocation                             : aliased AllocationSettings_T := (8, -1, -1); 
  3499.       Content_Filtered_Topic_Allocation                     : aliased AllocationSettings_T := (4, -1, -1); 
  3500.       Content_Filter_Allocation                             : aliased AllocationSettings_T := (4, -1, -1); 
  3501.       Read_Condition_Allocation                             : aliased AllocationSettings_T := (4, -1, -1); 
  3502.       Query_Condition_Allocation                            : aliased AllocationSettings_T := (4, -1, -1); 
  3503.       Outstanding_Asynchronous_Sample_Allocation            : aliased AllocationSettings_T := (64, -1, -1); 
  3504.       Flow_Controller_Allocation                            : aliased AllocationSettings_T := (4, -1, -1); 
  3505.       Local_Writer_Hash_Buckets                             : aliased Long := 4; 
  3506.       Local_Reader_Hash_Buckets                             : aliased Long := 4; 
  3507.       Local_Publisher_Hash_Buckets                          : aliased Long := 1; 
  3508.       Local_Subscriber_Hash_Buckets                         : aliased Long := 1; 
  3509.       Local_Topic_Hash_Buckets                              : aliased Long := 4; 
  3510.       Remote_Writer_Hash_Buckets                            : aliased Long := 16; 
  3511.       Remote_Reader_Hash_Buckets                            : aliased Long := 16; 
  3512.       Remote_Participant_Hash_Buckets                       : aliased Long := 4; 
  3513.       Matching_Writer_Reader_Pair_Hash_Buckets              : aliased Long := 32; 
  3514.       Matching_Reader_Writer_Pair_Hash_Buckets              : aliased Long := 32; 
  3515.       Ignored_Entity_Hash_Buckets                           : aliased Long := 1; 
  3516.       Content_Filtered_Topic_Hash_Buckets                   : aliased Long := 1; 
  3517.       Content_Filter_Hash_Buckets                           : aliased Long := 1; 
  3518.       Flow_Controller_Hash_Buckets                          : aliased Long := 1; 
  3519.       Max_Gather_Destinations                               : aliased Long := 8; 
  3520.       Participant_User_Data_Max_Length                      : aliased Long := 256; 
  3521.       Inter_Participant_Data_Max_Length                     : aliased Long := 256; 
  3522.       Topic_Data_Max_Length                                 : aliased Long := 256; 
  3523.       Publisher_Group_Data_Max_Length                       : aliased Long := 256; 
  3524.       Subscriber_Group_Data_Max_Length                      : aliased Long := 256; 
  3525.       Writer_User_Data_Max_Length                           : aliased Long := 256; 
  3526.       Reader_User_Data_Max_Length                           : aliased Long := 256; 
  3527.       Max_Partitions                                        : aliased Long := 64; 
  3528.       Max_Partition_Cumulative_Characters                   : aliased Long := 256; 
  3529.       Default_Partition_Matches_All                         : aliased Boolean := False; 
  3530.       Allow_No_Partitions                                   : aliased Boolean := False; 
  3531.       Type_Code_Max_Serialized_Length                       : aliased Long := 0; 
  3532.       Type_Object_Max_Serialized_Length                     : aliased Long := 8192; 
  3533.       Serialized_Type_Object_Dynamic_Allocation_Threshold   : aliased Long := 8192; 
  3534.       Type_Object_Max_Deserialized_Length                   : aliased Long := -1; 
  3535.       Deserialized_Type_Object_Dynamic_Allocation_Threshold : aliased Long := 4096; 
  3536.       Contentfilter_Property_Max_Length                     : aliased Long := 256; 
  3537.       Channel_Seq_Max_Length                                : aliased Long := 32; 
  3538.       Channel_Filter_Expression_Max_Length                  : aliased Long := 256; 
  3539.       Participant_Property_List_Max_Length                  : aliased Long := 32; 
  3540.       Participant_Property_String_Max_Length                : aliased Long := 4096; 
  3541.       Writer_Property_List_Max_Length                       : aliased Long := 32; 
  3542.       Writer_Property_String_Max_Length                     : aliased Long := 1024; 
  3543.       Reader_Property_List_Max_Length                       : aliased Long := 32; 
  3544.       Reader_Property_String_Max_Length                     : aliased Long := 1024; 
  3545.       Plugin_Info_Parameter_Max_Length                      : aliased Long := 265; 
  3546.       Max_Endpoint_Groups                                   : aliased Long := 32; 
  3547.       Max_Endpoint_Group_Cumulative_Characters              : aliased Long := 1024; 
  3548.       Transport_Info_List_Max_Length                        : aliased Long := 12; 
  3549.       Ignored_Entity_Replacement_Kind                       : aliased DomainParticipantResourceLimitsIgnoredEntityReplacementKind 
  3550.         := NO_REPLACEMENT_IGNORED_ENTITY_REPLACEMENT; 
  3551.       Remote_Topic_Query_Allocation                         : aliased AllocationSettings_T := (1, -1, -1); 
  3552.       Remote_Topic_Query_Hash_Buckets                       : aliased Long := 1; 
  3553.       Writer_Data_Tag_List_Max_Length                       : aliased Long := 0; 
  3554.       Writer_Data_Tag_String_Max_Length                     : aliased Long := 0; 
  3555.       Reader_Data_Tag_List_Max_Length                       : aliased Long := 0; 
  3556.       Reader_Data_Tag_String_Max_Length                     : aliased Long := 0; 
  3557.       Shmem_Ref_Transfer_Mode_Max_Segments                  : aliased Unsigned_Long 
  3558.         := RTIDDS.Low_Level.ndds_pres_pres_participant_h.PRES_SHMEM_REF_TRANSFER_MODE_MAX_SEGMENTS; 
  3559.    end record with Convention => C; 
  3560.    --  <dref>DomainParticipantResourceLimitsQosPolicy</dref> 
  3561.    --  <dref name="local_writer_allocation">DomainParticipantResourceLimitsQosPolicy_local_writer_allocation</dref> 
  3562.    --  <dref name="local_reader_allocation">DomainParticipantResourceLimitsQosPolicy_local_reader_allocation</dref> 
  3563.    --  <dref name="local_publisher_allocation">DomainParticipantResourceLimitsQosPolicy_local_publisher_allocation</dref> 
  3564.    --  <dref name="local_subscriber_allocation">DomainParticipantResourceLimitsQosPolicy_local_subscriber_allocation</dref> 
  3565.    --  <dref name="local_topic_allocation">DomainParticipantResourceLimitsQosPolicy_local_topic_allocation</dref> 
  3566.    --  <dref name="remote_writer_allocation">DomainParticipantResourceLimitsQosPolicy_remote_writer_allocation</dref> 
  3567.    --  <dref name="remote_reader_allocation">DomainParticipantResourceLimitsQosPolicy_remote_reader_allocation</dref> 
  3568.    --  <dref name="remote_partiicpant_allocation">DomainParticipantResourceLimitsQosPolicy_remote_participant_allocation</dref> 
  3569.    --  <dref name="matching_writer_reader_pair_allocation">DomainParticipantResourceLimitsQosPolicy_matching_writer_reader_pair_allocation</dref> 
  3570.    --  <dref name="matching_reader_writer_pair_allocation">DomainParticipantResourceLimitsQosPolicy_matching_reader_writer_pair_allocation</dref> 
  3571.    --  <dref name="ignored_entity_allocation">DomainParticipantResourceLimitsQosPolicy_ignored_entity_allocation</dref> 
  3572.    --  <dref name="content_filtered_topic_allocation">DomainParticipantResourceLimitsQosPolicy_content_filtered_topic_allocation</dref> 
  3573.    --  <dref name="content_filter_allocation">DomainParticipantResourceLimitsQosPolicy_content_filter_allocation</dref> 
  3574.    --  <dref name="read_condition_allocation">DomainParticipantResourceLimitsQosPolicy_read_condition_allocation</dref> 
  3575.    --  <dref name="query_condition_allocation">DomainParticipantResourceLimitsQosPolicy_query_condition_allocation</dref> 
  3576.    --  <dref name="outstanding_asynchronous_sample_allocation">DomainParticipantResourceLimitsQosPolicy_outstanding_asynchronous_sample_allocation</dref> 
  3577.    --  <dref name="flow_controller_allocation">DomainParticipantResourceLimitsQosPolicy_flow_controller_allocation</dref> 
  3578.    --  <dref name="local_writer_hash_buckets">DomainParticipantResourceLimitsQosPolicy_local_writer_hash_buckets</dref> 
  3579.    --  <dref name="local_reader_hash_buckets">DomainParticipantResourceLimitsQosPolicy_local_reader_hash_buckets</dref> 
  3580.    --  <dref name="local_publisher_hash_buckets">DomainParticipantResourceLimitsQosPolicy_local_publisher_hash_buckets</dref> 
  3581.    --  <dref name="local_subscriber_hash_buckets">DomainParticipantResourceLimitsQosPolicy_local_subscriber_hash_buckets</dref> 
  3582.    --  <dref name="local_topic_hash_buckets">DomainParticipantResourceLimitsQosPolicy_local_topic_hash_buckets</dref> 
  3583.    --  <dref name="remote_writer_hash_buckets">DomainParticipantResourceLimitsQosPolicy_remote_writer_hash_buckets</dref> 
  3584.    --  <dref name="remote_reader_hash_buckets">DomainParticipantResourceLimitsQosPolicy_remote_reader_hash_buckets</dref> 
  3585.    --  <dref name="remote_participant_hash_buckets">DomainParticipantResourceLimitsQosPolicy_remote_participant_hash_buckets</dref> 
  3586.    --  <dref name="matching_writer_reader_pair_hash_buckets">DomainParticipantResourceLimitsQosPolicy_matching_writer_reader_pair_hash_buckets</dref> 
  3587.    --  <dref name="matching_reader_writer_pair_hash_buckets">DomainParticipantResourceLimitsQosPolicy_matching_reader_writer_pair_hash_buckets</dref> 
  3588.    --  <dref name="ignored_entity_hash_buckets">DomainParticipantResourceLimitsQosPolicy_ignored_entity_hash_buckets</dref> 
  3589.    --  <dref name="content_filtered_topic_hash_buckets">DomainParticipantResourceLimitsQosPolicy_content_filtered_topic_hash_buckets</dref> 
  3590.    --  <dref name="content_filter_hash_buckets">DomainParticipantResourceLimitsQosPolicy_content_filter_hash_buckets</dref> 
  3591.    --  <dref name="flow_controller_hash_buckets">DomainParticipantResourceLimitsQosPolicy_flow_controller_hash_buckets</dref> 
  3592.    --  <dref name="max_gather_destinations">DomainParticipantResourceLimitsQosPolicy_max_gather_destinations</dref> 
  3593.    --  <dref name="participant_user_data_max_length">DomainParticipantResourceLimitsQosPolicy_participant_user_data_max_length</dref> 
  3594.    --  <dref internal="true" name="inter_participant_data_max_length">DomainParticipantResourceLimitsQosPolicy_inter_participant_data_max_length</dref> 
  3595.    --  <dref name="topic_data_max_length">DomainParticipantResourceLimitsQosPolicy_topic_data_max_length</dref> 
  3596.    --  <dref name="publisher_group_data_max_length">DomainParticipantResourceLimitsQosPolicy_publisher_group_data_max_length</dref> 
  3597.    --  <dref name="subscriber_group_data_max_length">DomainParticipantResourceLimitsQosPolicy_subscriber_group_data_max_length</dref> 
  3598.    --  <dref name="writer_user_data_max_length">DomainParticipantResourceLimitsQosPolicy_writer_user_data_max_length</dref> 
  3599.    --  <dref name="reader_user_data_max_length">DomainParticipantResourceLimitsQosPolicy_reader_user_data_max_length</dref> 
  3600.    --  <dref name="max_partitions">DomainParticipantResourceLimitsQosPolicy_max_partitions</dref> 
  3601.    --  <dref name="max_partition_cumulative_characters">DomainParticipantResourceLimitsQosPolicy_max_partition_cumulative_characters</dref> 
  3602.    --  <dref internal="true" name="default_partition_matches_all">DomainParticipantResourceLimitsQosPolicy_default_partition_matches_all</dref> 
  3603.    --  <dref internal="true" name="allow_no_partitions">DomainParticipantResourceLimitsQosPolicy_allow_no_partitions</dref> 
  3604.    --  <dref name="type_code_max_serialized_length">DomainParticipantResourceLimitsQosPolicy_type_code_max_serialized_length</dref> 
  3605.    --  <dref name="Type_Object_Max_Serialized_Length">DomainParticipantResourceLimitsQosPolicy_type_object_max_serialized_length</dref> 
  3606.    --  <dref internal="true" name="Serialized_Type_Object_Dynamic_Allocation_Threshold">DomainParticipantResourceLimitsQosPolicy_serialized_type_object_dynamic_allocation_threshold</dref> 
  3607.    --  <dref name="Type_Object_Max_Deserialized_Length">DomainParticipantResourceLimitsQosPolicy_type_object_max_deserialized_length</dref> 
  3608.    --  <dref name="Deserialized_Type_Object_Dynamic_Allocation_Threshold">DomainParticipantResourceLimitsQosPolicy_deserialized_type_object_dynamic_allocation_threshold</dref> 
  3609.    --  <dref name="contentfilter_property_max_length">DomainParticipantResourceLimitsQosPolicy_contentfilter_property_max_length</dref> 
  3610.    --  <dref name="channel_seq_max_length">DomainParticipantResourceLimitsQosPolicy_channel_seq_max_length</dref> 
  3611.    --  <dref name="channel_filter_expression_max_length">DomainParticipantResourceLimitsQosPolicy_channel_filter_expression_max_length</dref> 
  3612.    --  <dref name="participant_property_list_max_length">DomainParticipantResourceLimitsQosPolicy_participant_property_list_max_length</dref> 
  3613.    --  <dref name="participant_property_string_max_length">DomainParticipantResourceLimitsQosPolicy_participant_property_string_max_length</dref> 
  3614.    --  <dref name="writer_property_list_max_length">DomainParticipantResourceLimitsQosPolicy_writer_property_list_max_length</dref> 
  3615.    --  <dref name="writer_property_string_max_length">DomainParticipantResourceLimitsQosPolicy_writer_property_string_max_length</dref> 
  3616.    --  <dref name="reader_property_list_max_length">DomainParticipantResourceLimitsQosPolicy_reader_property_list_max_length</dref> 
  3617.    --  <dref name="reader_property_string_max_length">DomainParticipantResourceLimitsQosPolicy_reader_property_string_max_length</dref> 
  3618.    --  <dref internal="true" name="plugin_info_parameter_max_length">DomainParticipantResourceLimitsQosPolicy_plugin_info_parameter_max_length</dref> 
  3619.    --  <dref name="max_endpoint_groups">DomainParticipantResourceLimitsQosPolicy_max_endpoint_groups</dref> 
  3620.    --  <dref name="max_endpoint_group_cumulative_characters">DomainParticipantResourceLimitsQosPolicy_max_endpoint_group_cumulative_characters</dref> 
  3621.    --  <dref name="transport_info_list_max_length">DomainParticipantResourceLimitsQosPolicy_transport_info_list_max_length</dref> 
  3622.    --  <dref name="ignored_entity_replacement_kind">DomainParticipantResourceLimitsQosPolicy_ignored_entity_replacement_kind</dref> 
  3623.    --  <dref internal="true" name="Remote_Topic_Query_Allocation">DomainParticipantResourceLimitsQosPolicy_remote_topic_query_allocation</dref> 
  3624.    --  <dref internal="true" name="Remote_Topic_Query_Hash_Buckets">DomainParticipantResourceLimitsQosPolicy_remote_topic_query_hash_buckets</dref> 
  3625.    --  <dref internal="true" name="Writer_Data_Tag_List_Max_Length">DomainParticipantResourceLimitsQosPolicy_writer_data_tag_list_max_length</dref> 
  3626.    --  <dref internal="true" name="Writer_Data_Tag_String_Max_Length">DomainParticipantResourceLimitsQosPolicy_writer_data_tag_string_max_length</dref> 
  3627.    --  <dref internal="true" name="Reader_Data_Tag_List_Max_Length">DomainParticipantResourceLimitsQosPolicy_reader_data_tag_list_max_length</dref> 
  3628.    --  <dref internal="true" name="Reader_Data_Tag_String_Max_Length">DomainParticipantResourceLimitsQosPolicy_reader_data_tag_string_max_length</dref> 
  3629.    --  <dref internal="true" name="Shmem_Ref_Transfer_Mode_Max_Segments">DomainParticipantResourceLimitsQosPolicy_shmem_ref_transfer_mode_max_segments</dref> 
  3630.  
  3631.    DOMAIN_PARTICIPANT_RESOURCE_LIMITS_QOS_POLICY_DEFAULT : 
  3632.    constant DomainParticipantResourceLimitsQosPolicy := 
  3633.                                                              (Local_Writer_Allocation                               => (16, -1, -1), 
  3634.                                                               Local_Reader_Allocation                               => (16, -1, -1), 
  3635.                                                               Local_Publisher_Allocation                            => (4, -1, -1), 
  3636.                                                               Local_Subscriber_Allocation                           => (4, -1, -1), 
  3637.                                                               Local_Topic_Allocation                                => (16, -1, -1), 
  3638.                                                               Remote_Writer_Allocation                              => (64, -1, -1), 
  3639.                                                               Remote_Reader_Allocation                              => (64, -1, -1), 
  3640.                                                               Remote_Participant_Allocation                         => (16, -1, -1), 
  3641.                                                               Matching_Writer_Reader_Pair_Allocation                => 
  3642.                                                                 (DomainParticipantResourceLimitsQosPolicy_MATCH_INIT, -1, -1), 
  3643.                                                               Matching_Reader_Writer_Pair_Allocation                => 
  3644.                                                                 (DomainParticipantResourceLimitsQosPolicy_MATCH_INIT, -1, -1), 
  3645.                                                               Ignored_Entity_Allocation                             => (8, -1, -1), 
  3646.                                                               Content_Filtered_Topic_Allocation                     => (4, -1, -1), 
  3647.                                                               Content_Filter_Allocation                             => (4, -1, -1), 
  3648.                                                               Read_Condition_Allocation                             => (4, -1, -1), 
  3649.                                                               Query_Condition_Allocation                            => (4, -1, -1), 
  3650.                                                               Outstanding_Asynchronous_Sample_Allocation            => (64, -1, -1), 
  3651.                                                               Flow_Controller_Allocation                            => (4, -1, -1), 
  3652.                                                               Local_Writer_Hash_Buckets                             => 4, 
  3653.                                                               Local_Reader_Hash_Buckets                             => 4, 
  3654.                                                               Local_Publisher_Hash_Buckets                          => 1, 
  3655.                                                               Local_Subscriber_Hash_Buckets                         => 1, 
  3656.                                                               Local_Topic_Hash_Buckets                              => 4, 
  3657.                                                               Remote_Writer_Hash_Buckets                            => 16, 
  3658.                                                               Remote_Reader_Hash_Buckets                            => 16, 
  3659.                                                               Remote_Participant_Hash_Buckets                       => 4, 
  3660.                                                               Matching_Writer_Reader_Pair_Hash_Buckets              => 32, 
  3661.                                                               Matching_Reader_Writer_Pair_Hash_Buckets              => 32, 
  3662.                                                               Ignored_Entity_Hash_Buckets                           => 1, 
  3663.                                                               Content_Filtered_Topic_Hash_Buckets                   => 1, 
  3664.                                                               Content_Filter_Hash_Buckets                           => 1, 
  3665.                                                               Flow_Controller_Hash_Buckets                          => 1, 
  3666.                                                               Max_Gather_Destinations                               => 8, 
  3667.                                                               Participant_User_Data_Max_Length                      => 256, 
  3668.                                                               Inter_Participant_Data_Max_Length                     => 256, 
  3669.                                                               Topic_Data_Max_Length                                 => 256, 
  3670.                                                               Publisher_Group_Data_Max_Length                       => 256, 
  3671.                                                               Subscriber_Group_Data_Max_Length                      => 256, 
  3672.                                                               Writer_User_Data_Max_Length                           => 256, 
  3673.                                                               Reader_User_Data_Max_Length                           => 256, 
  3674.                                                               Max_Partitions                                        => 64, 
  3675.                                                               Max_Partition_Cumulative_Characters                   => 256, 
  3676.                                                               Default_Partition_Matches_All                         => False, 
  3677.                                                               Allow_No_Partitions                                   => False, 
  3678.                                                               Type_Code_Max_Serialized_Length                       => 0, 
  3679.                                                               Type_Object_Max_Serialized_Length                     => 8192, 
  3680.                                                               Serialized_Type_Object_Dynamic_Allocation_Threshold   => 8192, 
  3681.                                                               Type_Object_Max_Deserialized_Length                   => -1, 
  3682.                                                               Deserialized_Type_Object_Dynamic_Allocation_Threshold => 4096, 
  3683.                                                               Contentfilter_Property_Max_Length                     => 256, 
  3684.                                                               Channel_Seq_Max_Length                                => 32, 
  3685.                                                               Channel_Filter_Expression_Max_Length                  => 256, 
  3686.                                                               Participant_Property_List_Max_Length                  => 32, 
  3687.                                                               Participant_Property_String_Max_Length                => 1024, 
  3688.                                                               Writer_Property_List_Max_Length                       => 32, 
  3689.                                                               Writer_Property_String_Max_Length                     => 1024, 
  3690.                                                               Reader_Property_List_Max_Length                       => 32, 
  3691.                                                               Reader_Property_String_Max_Length                     => 1024, 
  3692.                                                               Plugin_Info_Parameter_Max_Length                      => 256, 
  3693.                                                               Max_Endpoint_Groups                                   => 32, 
  3694.                                                               Max_Endpoint_Group_Cumulative_Characters              => 1024, 
  3695.                                                               Transport_Info_List_Max_Length                        => 12, 
  3696.                                                               Ignored_Entity_Replacement_Kind                       => NO_REPLACEMENT_IGNORED_ENTITY_REPLACEMENT, 
  3697.                                                               Remote_Topic_Query_Allocation                         => (1, -1, -1), 
  3698.                                                               Remote_Topic_Query_Hash_Buckets                       => 1, 
  3699.                                                               Writer_Data_Tag_List_Max_Length                       => 0, 
  3700.                                                               Writer_Data_Tag_String_Max_Length                     => 0, 
  3701.                                                               Reader_Data_Tag_List_Max_Length                       => 0, 
  3702.                                                               Reader_Data_Tag_String_Max_Length                     => 0, 
  3703.                                                               Shmem_Ref_Transfer_Mode_Max_Segments                  => RTIDDS.Low_Level.ndds_pres_pres_participant_h.PRES_SHMEM_REF_TRANSFER_MODE_MAX_SEGMENTS); 
  3704.    --  <dref internal="true"></dref> 
  3705.  
  3706.  
  3707.    --  ---------------------------------------------------------- 
  3708.    --                 EVENT (eXtension QoS) 
  3709.    --  ---------------------------------------------------------- 
  3710.  
  3711.    EVENT_QOS_POLICY_NAME                                 : constant DDS.String := To_DDS_String ("Event"); 
  3712.    --  <defgroup>EventQosGroupDocs</defgroup> 
  3713.    --  <dref>EVENT_QOS_POLICY_NAME</dref> 
  3714.  
  3715.    type EventQosPolicy is record 
  3716.       Thread        : aliased ThreadSettings_T; 
  3717.       Initial_Count : aliased Long := 256; 
  3718.       Max_Count     : aliased Long := -1; 
  3719.    end record with Convention => C; 
  3720.    --  <dref>EventQosPolicy</dref> 
  3721.    --  <dref name="Thread">EventQosPolicy_thread</dref> 
  3722.    --  <dref name="Initial_Count">EventQosPolicy_initial_count</dref> 
  3723.    --  <dref name="Max_Count">EventQosPolicy_max_count</dref> 
  3724.  
  3725.    --        EVENT_QOS_POLICY_DEFAULT : constant EventQosPolicy := 
  3726.    --                                     (Thread        => THREAD_SETTINGS_DEFAULT, 
  3727.    --                                      Initial_Count => 256, 
  3728.    --                                      Max_Count     => -1); 
  3729.  
  3730.    --  ---------------------------------------------------------- 
  3731.    --                 DATABASE (eXtension QoS) 
  3732.    --  ---------------------------------------------------------- 
  3733.  
  3734.    DATABASE_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("Database"); 
  3735.    --  <defgroup>DatabaseQosGroupDocs</defgroup> 
  3736.    --  <dref>DATABASE_QOS_POLICY_NAME</dref> 
  3737.  
  3738.    type DatabaseQosPolicy is record 
  3739.       Thread                      : aliased ThreadSettings_T; 
  3740.       Shutdown_Timeout            : aliased Duration_T := (15, 0); 
  3741.       Cleanup_Period              : aliased Duration_T := (61, 0); 
  3742.       Shutdown_Cleanup_Period     : aliased Duration_T := (1, 0); 
  3743.       Initial_Records             : aliased Long := 1024; 
  3744.       Max_Skiplist_Level          : aliased Long := 7; 
  3745.       Table_Allocation_Block_Size : aliased Long := 48; 
  3746.       Max_Weak_References         : aliased Long := -1; 
  3747.       Initial_Weak_References     : aliased Long := 2049; 
  3748.    end record with Convention => C; 
  3749.    --  <dref>DatabaseQosPolicy</dref> 
  3750.    --  <dref name="Thread">DatabaseQosPolicy_thread</dref> 
  3751.    --  <dref name="Shutdown_Timeout">DatabaseQosPolicy_shutdown_timeout</dref> 
  3752.    --  <dref name="Cleanup_Period">DatabaseQosPolicy_cleanup_period</dref> 
  3753.    --  <dref name="Shutdown_Cleanup_Period">DatabaseQosPolicy_shutdown_cleanup_period</dref> 
  3754.    --  <dref name="Initial_Records">DatabaseQosPolicy_initial_records</dref> 
  3755.    --  <dref name="Max_Skiplist_Level">DatabaseQosPolicy_max_skiplist_level</dref> 
  3756.    --  <dref internal="true" name="Table_Allocation_Block_Sizee">DatabaseQosPolicy_table_allocation_block_size</dref> 
  3757.    --  <dref name="Max_Weak_References">DatabaseQosPolicy_max_weak_references</dref> 
  3758.    --  <dref name="Initial_Weak_References">DatabaseQosPolicy_initial_weak_references</dref> 
  3759.  
  3760.    --     DATABASE_QOS_POLICY_DEFAULT :  constant DatabaseQosPolicy := 
  3761.    --                                     (Thread                      => THREAD_SETTINGS_DEFAULT, 
  3762.    --                                      Shutdown_Timeout            => (15, 0), 
  3763.    --                                      Cleanup_Period              => (61, 0), 
  3764.    --                                      Shutdown_Cleanup_Period     => (1, 0), 
  3765.    --                                      Initial_Records             => 1024, 
  3766.    --                                      Max_Skiplist_Level          => 7, 
  3767.    --                                      Table_Allocation_Block_Size => 48, 
  3768.    --                                      Max_Weak_References         => -1, 
  3769.    --                                      Initial_Weak_References     => 2049); 
  3770.  
  3771.    --  ---------------------------------------------------------- 
  3772.    --                 RECEIVER_POOL (eXtension QoS) 
  3773.    --  ---------------------------------------------------------- 
  3774.  
  3775.    RECEIVERPOOL_QOS_POLICY_NAME : DDS.String := To_DDS_String ("ReceiverPool"); 
  3776.    --  <defgroup>ReceiverPoolQosGroupDocs</defgroup> 
  3777.    --  <dref>RECEIVERPOOL_QOS_POLICY_NAME</dref> 
  3778.  
  3779.    ReceiverPoolQosPolicy_MAX_RECEIVE_THREADS_DEFAULT : constant Long := -1; 
  3780.  
  3781.    type ReceiverPoolQosPolicy is record 
  3782.       Thread                  : aliased ThreadSettings_T; 
  3783.       Initial_Receive_Threads : aliased Long := 4; 
  3784.       Max_Receive_Threads     : aliased Long := ReceiverPoolQosPolicy_MAX_RECEIVE_THREADS_DEFAULT; 
  3785.       Buffer_Size             : aliased Long := 9216; 
  3786.       Buffer_Alignment        : aliased Long := 16; 
  3787.       Is_Timestamp_Enabled    : aliased DDS.Boolean := True; 
  3788.    end record with Convention => C; 
  3789.    --  <dref>ReceiverPoolQosPolicy</dref> 
  3790.    --  <dref name="Thread">ReceiverPoolQosPolicy_thread</dref> 
  3791.    --  <dref internal="true" name="Initial_Receive_Threads">ReceiverPoolQosPolicy_initial_receive_threads</dref> 
  3792.    --  <dref internal="true" name="Max_Receive_Threads">ReceiverPoolQosPolicy_max_receive_threads</dref> 
  3793.    --  <dref name="Buffer_Size">ReceiverPoolQosPolicy_buffer_size</dref> 
  3794.    --  <dref name="Buffer_Alignment">ReceiverPoolQosPolicy_buffer_alignment</dref> 
  3795.    --  <dref internal="true" name="Is_Timestamp_Enabled">ReceiverPoolQosPolicy_is_timestamp_enabled</dref> 
  3796.  
  3797.  
  3798.    --     RECEIVER_POOL_QOS_POLICY_DEFAULT : constant ReceiverPoolQosPolicy := 
  3799.    --                                          (Thread                  => THREAD_SETTINGS_DEFAULT, 
  3800.    --                                           Initial_Receive_Threads => 4, 
  3801.    --                                           Max_Receive_Threads     => ReceiverPoolQosPolicy_MAX_RECEIVE_THREADS_DEFAULT, 
  3802.    --                                           Buffer_Size             => 9216, 
  3803.    --                                           Buffer_Alignment        => 16, 
  3804.    --                                           Is_Timestamp_Enabled    => TRUE); 
  3805.  
  3806.    --  ---------------------------------------------------------- 
  3807.    --                  BuiltinTopicReaderResourceLimits_t 
  3808.    --  ---------------------------------------------------------- 
  3809.  
  3810.    type BuiltinTopicReaderResourceLimits_T is record 
  3811.       Initial_Samples                          : aliased Long := 64; 
  3812.       Max_Samples                              : aliased Long := -1; 
  3813.       Initial_Infos                            : aliased Long := 64; 
  3814.       Max_Infos                                : aliased Long := -1; 
  3815.       Initial_Outstanding_Reads                : aliased Long := 2; 
  3816.       Max_Outstanding_Reads                    : aliased Long := -1; 
  3817.       Max_Samples_Per_Read                     : aliased Long := 1024; 
  3818.       Disable_Fragmentation_Support            : aliased DDS.Boolean := False; 
  3819.       Max_Fragmented_Samples                   : aliased Long := 1024; 
  3820.       Initial_Fragmented_Samples               : aliased Long := 4; 
  3821.       Max_Fragmented_Samples_Per_Remote_Writer : aliased Long := 256; 
  3822.       Max_Fragments_Per_Sample                 : aliased Long := 512; 
  3823.       Dynamically_Allocate_Fragmented_Samples  : aliased DDS.Boolean := False; 
  3824.    end record with Convention => C; 
  3825.    --  <dref>BuiltinTopicReaderResourceLimits_t</dref> 
  3826.    --  <dref name="Initial_Samples">BuiltinTopicReaderResourceLimits_t_initial_samples</dref> 
  3827.    --  <dref name="Max_Samples">BuiltinTopicReaderResourceLimits_t_max_samples</dref> 
  3828.    --  <dref name="Initial_Infos">BuiltinTopicReaderResourceLimits_t_initial_infos</dref> 
  3829.    --  <dref name="Max_Infos">BuiltinTopicReaderResourceLimits_t_max_infos</dref> 
  3830.    --  <dref name="Initial_Outstanding_Reads">BuiltinTopicReaderResourceLimits_t_initial_outstanding_reads</dref> 
  3831.    --  <dref name="Max_Outstanding_Reads">BuiltinTopicReaderResourceLimits_t_max_outstanding_reads</dref> 
  3832.    --  <dref name="Max_Samples_Per_Read">BuiltinTopicReaderResourceLimits_t_max_samples_per_read</dref> 
  3833.    --  <dref name="Disable_Fragmentation_Support">BuiltinTopicReaderResourceLimits_t_disable_fragmentation_support</dref> 
  3834.    --  <dref name="Max_Fragmented_Samples">BuiltinTopicReaderResourceLimits_t_max_fragmented_samples</dref> 
  3835.    --  <dref name="Initial_Fragmented_Samples">BuiltinTopicReaderResourceLimits_t_initial_fragmented_samples</dref> 
  3836.    --  <dref name="Max_Fragmented_Samples_Per_Remote_Writer">BuiltinTopicReaderResourceLimits_t_max_fragmented_samples_per_remote_writer</dref> 
  3837.    --  <dref name="Max_Fragments_Per_Sample">BuiltinTopicReaderResourceLimits_t_max_fragments_per_sample</dref> 
  3838.    --  <dref name="Dynamically_allocate_Fragmented_Samples">BuiltinTopicReaderResourceLimits_t_dynamically_allocate_fragmented_samples</dref> 
  3839.  
  3840.    BUILTIN_TOPIC_READER_RESOURCE_LIMITS_DEFAULT : constant BuiltinTopicReaderResourceLimits_T := 
  3841.                                                     (Initial_Samples                          => 64, 
  3842.                                                      Max_Samples                              => -1, 
  3843.                                                      Initial_Infos                            => 64, 
  3844.                                                      Max_Infos                                => -1, 
  3845.                                                      Initial_Outstanding_Reads                => 2, 
  3846.                                                      Max_Outstanding_Reads                    => -1, 
  3847.                                                      Max_Samples_Per_Read                     => 1024, 
  3848.                                                      Disable_Fragmentation_Support            => False, 
  3849.                                                      Max_Fragmented_Samples                   => 1024, 
  3850.                                                      Initial_Fragmented_Samples               => 4, 
  3851.                                                      Max_Fragmented_Samples_Per_Remote_Writer => 256, 
  3852.                                                      Max_Fragments_Per_Sample                 => 512, 
  3853.                                                      Dynamically_Allocate_Fragmented_Samples  => False); 
  3854.    --  <dref internal="true"></dref> 
  3855.  
  3856.    BUILTIN_TOPIC_KEY_TYPE_NATIVE_LENGTH         : constant := 4; 
  3857.    --  <dref internal="true"></dref> 
  3858.  
  3859.    type  BuiltinTopicKey_Array_T is array 
  3860.      (0 .. BUILTIN_TOPIC_KEY_TYPE_NATIVE_LENGTH - 1) of Builtin_Topic_Key_Type_Native; 
  3861.  
  3862.    type BuiltinTopicKey_T is record 
  3863.       Value : BuiltinTopicKey_Array_T := (others => 0); 
  3864.    end record with Convention => C; 
  3865.    --  <defgroup>BuiltInTopicCommonGroupDocs</defgroup> 
  3866.    --  <dref>BuiltinTopicKey_t</dref> 
  3867.    --  <dref name="Value">BuiltinTopicKey_t_value</dref> 
  3868.  
  3869.    type BuiltinTopicKey_T_Access is access all BuiltinTopicKey_T; 
  3870.  
  3871.    BuiltinTopicKey_T_INITIALIZER : constant BuiltinTopicKey_T := 
  3872.                                      (Value => (0, 0, 0, 0)); 
  3873.    --  <dref internal="true"></dref> 
  3874.  
  3875.    function BuiltinTopicKey_Equals (A : in BuiltinTopicKey_T_Access; 
  3876.                                     B : in BuiltinTopicKey_T_Access) 
  3877.                                     return DDS.Boolean; 
  3878.    --  <dref internal="true"></dref> 
  3879.  
  3880.    --  ---------------------------------------------------------- 
  3881.    --                  PUBLISHMODE (eXtension QoS) 
  3882.    --  ---------------------------------------------------------- 
  3883.  
  3884.    PUBLISHMODE_QOS_POLICY_NAME   : constant DDS.String := To_DDS_String ("PublishMode"); 
  3885.    --  <defgroup>PublishModeQosGroupDocs</defgroup> 
  3886.    --  <dref>PUBLISHMODE_QOS_POLICY_NAME</dref> 
  3887.  
  3888.    type PublishModeQosPolicyKind is new Unsigned_Long; 
  3889.    --  <dref>PublishModeQosPolicyKind</dref> 
  3890.  
  3891.    SYNCHRONOUS_PUBLISH_MODE_QOS  : constant PublishModeQosPolicyKind := 0; 
  3892.    --  <dref>PublishModeQosPolicyKind_SYNCHRONOUS_PUBLISH_MODE_QOS</dref> 
  3893.  
  3894.    ASYNCHRONOUS_PUBLISH_MODE_QOS : constant PublishModeQosPolicyKind := 1; 
  3895.    --  <dref>PublishModeQosPolicyKind_ASYNCHRONOUS_PUBLISH_MODE_QOS</dref> 
  3896.  
  3897.    PUBLICATION_PRIORITY_UNDEFINED : constant Long := 0; 
  3898.    --  <dref>PUBLICATION_PRIORITY_UNDEFINED</dref> 
  3899.  
  3900.    PUBLICATION_PRIORITY_AUTOMATIC : constant Long := -1; 
  3901.    --  <dref>PUBLICATION_PRIORITY_AUTOMATIC</dref> 
  3902.  
  3903.    type PublishModeQosPolicy is record 
  3904.       Kind                 : aliased PublishModeQosPolicyKind := SYNCHRONOUS_PUBLISH_MODE_QOS; 
  3905.       Flow_Controller_Name : aliased DDS.String; 
  3906.       Priority             : aliased Long := PUBLICATION_PRIORITY_UNDEFINED; 
  3907.    end record with Convention => C; 
  3908.    --  <dref>PublishModeQosPolicy</dref> 
  3909.    --  <dref name="Kind">PublishModeQosPolicy_kind</dref> 
  3910.    --  <dref name="Flow_Controller_Name">PublishModeQosPolicy_flow_controller_name</dref> 
  3911.    --  <dref name="Priority">PublishModeQosPolicy_priority</dref> 
  3912.  
  3913.    PUBLISH_MODE_QOS_POLICY_DEFAULT : constant PublishModeQosPolicy := 
  3914.                                        (Kind                      => SYNCHRONOUS_PUBLISH_MODE_QOS, 
  3915.                                         Flow_Controller_Name      => (Data => DDS.NULL_STRING.Data), 
  3916.                                         Priority                  => PUBLICATION_PRIORITY_UNDEFINED 
  3917.                                        ); 
  3918.    --  <dref internal="true"></dref> 
  3919.  
  3920.    --  ---------------------------------------------------------- 
  3921.    --                  DISCOVERY_CONFIG (eXtension QoS) 
  3922.    --  ---------------------------------------------------------- 
  3923.  
  3924.    DISCOVERYCONFIG_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("DiscoveryConfig"); 
  3925.    --  <defgroup>DiscoveryConfigQosGroupDocs</defgroup> 
  3926.    --  <dref>DISCOVERYCONFIG_QOS_POLICY_NAME</dref> 
  3927.  
  3928.    type DiscoveryConfigBuiltinPluginKind is new DDS.Unsigned_Long; 
  3929.    --  <dref>DiscoveryConfigBuiltinPluginKind</dref> 
  3930.  
  3931.    subtype DiscoveryConfigBuiltinPluginKindMask is  DiscoveryConfigBuiltinPluginKind; 
  3932.    --  <dref>DiscoveryConfigBuiltinPluginKindMask</dref> 
  3933.  
  3934.    DISCOVERYCONFIG_BUILTIN_SPDP  : constant  DiscoveryConfigBuiltinPluginKindMask := 2#0001#; 
  3935.    --  <dref internal="true">DiscoveryConfigBuiltinPluginKind_DISCOVERYCONFIG_BUILTIN_SPDP</dref> 
  3936.  
  3937.    DISCOVERYCONFIG_BUILTIN_SEDP  : constant  DiscoveryConfigBuiltinPluginKindMask := 2#0010#; 
  3938.    --  <dref internal="true">DiscoveryConfigBuiltinPluginKind_DISCOVERYCONFIG_BUILTIN_SEDP</dref> 
  3939.  
  3940.    DISCOVERYCONFIG_BUILTIN_SDP   : constant  DiscoveryConfigBuiltinPluginKindMask := 
  3941.                                      (DISCOVERYCONFIG_BUILTIN_SPDP or DISCOVERYCONFIG_BUILTIN_SEDP); 
  3942.    --  <dref>DiscoveryConfigBuiltinPluginKind_DISCOVERYCONFIG_BUILTIN_SDP</dref> 
  3943.  
  3944.    DISCOVERYCONFIG_BUILTIN_EDS   : constant  DiscoveryConfigBuiltinPluginKindMask := 2#0100#; 
  3945.    --  <dref internal="true">DiscoveryConfigBuiltinPluginKind_DISCOVERYCONFIG_BUILTIN_EDS</dref> 
  3946.  
  3947.    DISCOVERYCONFIG_BUILTIN_PLUGIN_MASK_ALL     : 
  3948.    constant  DiscoveryConfigBuiltinPluginKindMask := 16#EFFF#; 
  3949.    --  <dref>DISCOVERYCONFIG_BUILTIN_PLUGIN_MASK_ALL</dref> 
  3950.  
  3951.    DISCOVERYCONFIG_BUILTIN_PLUGIN_MASK_NONE    : 
  3952.    constant  DiscoveryConfigBuiltinPluginKindMask := 0; 
  3953.    --  <dref>DISCOVERYCONFIG_BUILTIN_PLUGIN_MASK_NONE</dref> 
  3954.  
  3955.    DISCOVERYCONFIG_BUILTIN_PLUGIN_MASK_DEFAULT : 
  3956.    constant  DiscoveryConfigBuiltinPluginKindMask := DISCOVERYCONFIG_BUILTIN_SDP; 
  3957.    --  <dref>DISCOVERYCONFIG_BUILTIN_PLUGIN_MASK_DEFAULT</dref> 
  3958.  
  3959.    type DiscoveryPluginPromiscuityKind is new Unsigned_Long; 
  3960.    --  <dref internal="true">DiscoveryPluginPromiscouityKind</dref> 
  3961.  
  3962.    DISCOVERYPLUGIN_DISCOVER_MATCHING_REMOTE_ENTITIES_PROMISCUITY : constant DiscoveryPluginPromiscuityKind := 1; 
  3963.    --  <dref internal="true">DiscoveryPluginPromiscouityKind_DISCOVERYPLUGIN_DISCOVER_MATCHING_REMOTE_ENTITIES_PROMISCUITY</dref> 
  3964.  
  3965.    DISCOVERYPLUGIN_DISCOVER_ALL_REMOTE_ENTITIES_PROMISCUITY : constant DiscoveryPluginPromiscuityKind := 16#FFFF#; 
  3966.    --  <dref internal="true">DiscoveryPluginPromiscouityKind_DISCOVERYPLUGIN_DISCOVER_ALL_REMOTE_ENTITIES_PROMISCUITY</dref> 
  3967.  
  3968.    type RemoteParticipantPurgeKind is new Unsigned_Long; 
  3969.    --  <dref>RemoteParticipantPurgeKind</dref> 
  3970.  
  3971.    LIVELINESS_BASED_REMOTE_PARTICIPANT_PURGE : constant RemoteParticipantPurgeKind := 0; 
  3972.    --  <dref>RemoteParticipantPurgeKind_LIVELINESS_BASED_REMOTE_PARTICIPANT_PURGE</dref> 
  3973.  
  3974.    NO_REMOTE_PARTICIPANT_PURGE   : constant RemoteParticipantPurgeKind := 1; 
  3975.    --  <dref>RemoteParticipantPurgeKind_NO_REMOTE_PARTICIPANT_PURGE</dref> 
  3976.  
  3977.    type DiscoveryBuiltinReaderFragmentationResourceLimits_T is record 
  3978.       Disable_Fragmentation_Support            : aliased DDS.Boolean := False; 
  3979.       Max_Fragmented_Samples                   : aliased Long := 1024; 
  3980.       Initial_Fragmented_Samples               : aliased Long := 4; 
  3981.       Max_Fragmented_Samples_Per_Remote_Writer : aliased Long := 256; 
  3982.       Max_Fragments_Per_Sample                 : aliased Long := 512; 
  3983.       Dynamically_Allocate_Fragmented_Samples  : aliased DDS.Boolean := False; 
  3984.    end record with Convention => C; 
  3985.    --  <dref internal="true">DiscoveryBuiltinReaderFragmentationResourceLimits_t</dref> 
  3986.    --  <dref internal="true" name="Disable_Fragmentation_Support">DiscoveryBuiltinReaderFragmentationResourceLimits_t_disable_fragmentation_support</dref> 
  3987.    --  <dref internal="true" name="Max_Fragmented_Samples">DiscoveryBuiltinReaderFragmentationResourceLimits_t_max_fragmented_samples</dref> 
  3988.    --  <dref internal="true" name="Initial_Fragmented_Samples">DiscoveryBuiltinReaderFragmentationResourceLimits_t_initial_fragmented_samples</dref> 
  3989.    --  <dref internal="true" name="Max_Fragmented_Per_Samples_Per_Remote_Writer">DiscoveryBuiltinReaderFragmentationResourceLimits_t_max_fragmented_per_samples_per_remote_writer</dref> 
  3990.    --  <dref internal="true" name="Max_Fragments_Per_Sample">DiscoveryBuiltinReaderFragmentationResourceLimits_t_max_fragments_per_sample</dref> 
  3991.    --  <dref internal="true" name="Dynamically_Allocate_Fragmented_Samples">DiscoveryBuiltinReaderFragmentationResourceLimits_t_dynamically_allocate_fragmented_samples</dref> 
  3992.  
  3993.  
  3994.    DISCOVERY_BUILTIN_READER_FRAGMENTATION_RESOURCE_LIMITS_DEFAULT : constant DiscoveryBuiltinReaderFragmentationResourceLimits_T := 
  3995.                                                                       (Disable_Fragmentation_Support            => False, 
  3996.                                                                        Max_Fragmented_Samples                   => 1024, 
  3997.                                                                        Initial_Fragmented_Samples               => 4, 
  3998.                                                                        Max_Fragmented_Samples_Per_Remote_Writer => 256, 
  3999.                                                                        Max_Fragments_Per_Sample                 => 512, 
  4000.                                                                        Dynamically_Allocate_Fragmented_Samples  => False); 
  4001.    --  <dref internal="true"></dref> 
  4002.  
  4003.    --  ---------------------------------------------------------- 
  4004.    --                  TYPESUPPORT (eXtension QoS) 
  4005.    --  ---------------------------------------------------------- 
  4006.  
  4007.    TYPESUPPORT_QOS_POLICY_NAME                                    : constant DDS.String := To_DDS_String ("TypeSupport"); 
  4008.    --  <defgroup>TypeSupportQosGroupDocs</defgroup> 
  4009.    --  <dref>TYPESUPPORT_QOS_POLICY_NAME</dref> 
  4010.  
  4011.    type CdrPaddingKind is 
  4012.      (ZERO_CDR_PADDING, 
  4013.       NOT_SET_CDR_PADDING, 
  4014.       AUTO_CDR_PADDING); 
  4015.    pragma Convention (C, CdrPaddingKind); 
  4016.    --  <dref>CdrPaddingKind</dref> 
  4017.    --  <dref name="ZERO_CDR_PADDING">CdrPaddingKind_ZERO_CDR_PADDING</dref> 
  4018.    --  <dref name="NOT_SET_CDR_PADDING">CdrPaddingKind_NOT_SET_CDR_PADDING</dref> 
  4019.    --  <dref name="AUTO_CDR_PADDING">CdrPaddingKind_AUTO_CDR_PADDING</dref> 
  4020.  
  4021.  
  4022.    type TypeSupportQosPolicy is record 
  4023.       Plugin_Data      : aliased DDS_Support.Void_Ptr; 
  4024.       Cdr_Padding_Kind : aliased CdrPaddingKind; 
  4025.    end record with Convention => C; 
  4026.    --  <dref>TypeSupportQosPolicy</dref> 
  4027.    --  <dref name="Plugin_Data">TypeSupportQosPolicy_plugin_data</dref> 
  4028.    --  <dref name="cdr_padding_kind">TypeSupportQosPolicy_cdr_padding_kind</dref> 
  4029.  
  4030.    TYPESUPPORT_QOS_POLICY_DEFAULT : constant TypeSupportQosPolicy := 
  4031.                                       (Plugin_Data      => System.Null_Address, 
  4032.                                        Cdr_Padding_Kind => AUTO_CDR_PADDING); 
  4033.    --  <dref internal="true"></dref> 
  4034.  
  4035.    --  ---------------------------------------------------------- 
  4036.    --                  ASYNCHRONOUS_PUBLISHER (eXtension QoS) 
  4037.    --  ---------------------------------------------------------- 
  4038.  
  4039.    type ThreadBlockingKind is new Unsigned_Long; 
  4040.    --  <defgroup>AsynchronousPublisherQosGroupDocs</defgroup> 
  4041.    --  <dref internal="true">ThreadBlockingKind</dref> 
  4042.  
  4043.    SEMAPHORE_BLOCKING_KIND       : constant ThreadBlockingKind := 0; 
  4044.    --  <dref internal="true">ThreadBlockingKind_SEMAPHORE_BLOCKING_KIND</dref> 
  4045.  
  4046.    SPIN_BLOCKING_KIND            : constant ThreadBlockingKind := 1; 
  4047.    --  <dref internal="true">ThreadBlockingKind_SPIN_BLOCKING_KIND</dref> 
  4048.  
  4049.    ASYNCHRONOUSPUBLISHER_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("AsynchronousPublisher"); 
  4050.    --  <dref>ASYNCHRONOUSPUBLISHER_QOS_POLICY_NAME</dref> 
  4051.  
  4052.    type AsynchronousPublisherQosPolicy is record 
  4053.       Disable_Asynchronous_Write       : aliased DDS.Boolean := False; 
  4054.       Thread                           : aliased ThreadSettings_T; 
  4055.       Disable_Asynchronous_Batch       : aliased Boolean  := False; 
  4056.       Asynchronous_Batch_Thread        : aliased ThreadSettings_T; 
  4057.       Asynchronous_Batch_Blocking_Kind : aliased ThreadBlockingKind := 0; 
  4058.       Disable_Topic_Query_Publication  : aliased DDS.Boolean := False; 
  4059.       Topic_Query_Publication_Thread   : aliased ThreadSettings_T; 
  4060.    end record with Convention => C; 
  4061.    --  <dref>AsynchronousPublisherQosPolicy</dref> 
  4062.    --  <dref name="Disable_Asynchronous_Write">AsynchronousPublisherQosPolicy_disable_asynchronous_write</dref> 
  4063.    --  <dref name="Thread">AsynchronousPublisherQosPolicy_thread</dref> 
  4064.    --  <dref name="disable_asynchronous_batch">AsynchronousPublisherQosPolicy_disable_asynchronous_batch</dref> 
  4065.    --  <dref internal="true" name="asynchronous_batch_blocking_kind">AsynchronousPublisherQosPolicy_asynchronous_batch_blocking_kind</dref> 
  4066.    --  <dref internal="true" name="Disable_Topic_Query_Publication">AsynchronousPublisherQosPolicy_disable_topic_query_publication</dref> 
  4067.    --  <dref internal="true" name="Topic_Query_Publication_Thread">AsynchronousPublisherQosPolicy_topic_query_publication_thread</dref> 
  4068.  
  4069.  
  4070.    --     ASYNCHRONOUS_PUBLISHER_QOS_POLICY_DEFAULT : constant AsynchronousPublisherQosPolicy := 
  4071.    --                                                   (Disable_Asynchronous_Write       => FALSE, 
  4072.    --                                                    Thread                           => THREAD_SETTINGS_DEFAULT, 
  4073.    --                                                    disable_asynchronous_batch       => False, 
  4074.    --                                                    asynchronous_batch_thread        => THREAD_SETTINGS_DEFAULT, 
  4075.    --                                                    asynchronous_batch_blocking_kind => 0); 
  4076.  
  4077.  
  4078.    type DiscoveryConfigQosPolicy is record 
  4079.       Participant_Liveliness_Lease_Duration                  : aliased Duration_T := (100, 0); 
  4080.       Participant_Liveliness_Assert_Period                   : aliased Duration_T := (30, 0); 
  4081.       Remote_Participant_Purge_Kind                          : aliased RemoteParticipantPurgeKind := LIVELINESS_BASED_REMOTE_PARTICIPANT_PURGE; 
  4082.       Max_Liveliness_Loss_Detection_Period                   : aliased Duration_T := (60, 0); 
  4083.       Initial_Participant_Announcements                      : aliased Long := 5; 
  4084.       Min_Initial_Participant_Announcement_Period            : aliased Duration_T := (1, 0); 
  4085.       Max_Initial_Participant_Announcement_Period            : aliased Duration_T := (1, 0); 
  4086.       Participant_Reader_Resource_Limits                     : aliased BuiltinTopicReaderResourceLimits_T := BUILTIN_TOPIC_READER_RESOURCE_LIMITS_DEFAULT; 
  4087.       Publication_Reader                                     : aliased RtpsReliableReaderProtocol_T := RTPS_RELIABLE_READER_PROTOCOL_DISCOVERY_CONFIG_DEFAULT; 
  4088.       Publication_Reader_Resource_Limits                     : aliased BuiltinTopicReaderResourceLimits_T; 
  4089.       Subscription_Reader                                    : aliased RtpsReliableReaderProtocol_T; 
  4090.       Subscription_Reader_Resource_Limits                    : aliased BuiltinTopicReaderResourceLimits_T; 
  4091.       Publication_Writer                                     : aliased RtpsReliableWriterProtocol_T; 
  4092.       Publication_Writer_Data_Lifecycle                      : aliased WriterDataLifecycleQosPolicy; 
  4093.       Subscription_Writer                                    : aliased RtpsReliableWriterProtocol_T; 
  4094.       Subscription_Writer_Data_Lifecycle                     : aliased WriterDataLifecycleQosPolicy; 
  4095.       Endpoint_Plugin_Redundancy_Level                       : aliased Long; 
  4096.       Builtin_Discovery_Plugins                              : aliased DiscoveryConfigBuiltinPluginKindMask; 
  4097.       Participant_Message_Reader_Reliability_Kind            : aliased ReliabilityQosPolicyKind; 
  4098.       Participant_Message_Reader                             : aliased RtpsReliableReaderProtocol_T; 
  4099.       Participant_Message_Writer                             : aliased RtpsReliableWriterProtocol_T; 
  4100.       Publication_Writer_Publish_Mode                        : aliased PublishModeQosPolicy; 
  4101.       Subscription_Writer_Publish_Mode                       : aliased PublishModeQosPolicy; 
  4102.       Asynchronous_Publisher                                 : aliased AsynchronousPublisherQosPolicy; 
  4103.       Default_Domain_Announcement_Period                     : aliased Duration_T; 
  4104.       Ignore_Default_Domain_Announcements                    : aliased Boolean; 
  4105.       Service_Request_Writer                                 : aliased RtpsReliableWriterProtocol_T; 
  4106.       Service_Request_Writer_Data_Lifecycle                  : aliased WriterDataLifecycleQosPolicy; 
  4107.       Service_Request_Writer_Publish_Mode                    : aliased PublishModeQosPolicy; 
  4108.       Service_Request_Reader                                 : aliased RtpsReliableReaderProtocol_T; 
  4109.       Locator_Reachability_Assert_Period                     : aliased Duration_T; 
  4110.       Locator_Reachability_Lease_Duration                    : aliased Duration_T; 
  4111.       Locator_Reachability_Change_Detection_Period           : aliased Duration_T; 
  4112.       Secure_Volatile_Writer_Publish_Mode                    : aliased PublishModeQosPolicy; 
  4113.       Endpoint_Type_Object_LB_Serialization_Threshold        : aliased Long; 
  4114.       --- <<Private data>> 
  4115.       Sedp_Rely_On_Spdp_Only                                 : aliased Boolean; 
  4116.       Publication_Writer_Latency_Budget                      : aliased LatencyBudgetQosPolicy; 
  4117.       Publication_Writer_Push_On_Write                       : aliased Boolean; 
  4118.       Subscription_Writer_Latency_Budget                     : aliased LatencyBudgetQosPolicy; 
  4119.       Subscription_Writer_Push_On_Write                      : aliased Boolean; 
  4120.       Participant_State_Writer                               : aliased RtpsReliableWriterProtocol_T; 
  4121.       Participant_State_Writer_Latency_Budget                : aliased LatencyBudgetQosPolicy; 
  4122.       Participant_State_Writer_Push_On_Write                 : aliased Boolean; 
  4123.       Participant_State_Writer_Publish_Mode                  : aliased PublishModeQosPolicy; 
  4124.       Participant_Proxy_Reader                               : aliased RtpsReliableReaderProtocol_T; 
  4125.       Participant_Proxy_Reader_Fragmentation_Resource_Limits : aliased DiscoveryBuiltinReaderFragmentationResourceLimits_T; 
  4126.       Plugin_Promiscuity_Kind                                : aliased DiscoveryPluginPromiscuityKind; 
  4127.    end record with Convention => C; 
  4128.    --  <dref>DiscoveryConfigQosPolicy</dref> 
  4129.    --  <dref name="participant_liveliness_lease_duration">DiscoveryConfigQosPolicy_participant_liveliness_lease_duration</dref> 
  4130.    --  <dref name="participant_liveliness_assert_period">DiscoveryConfigQosPolicy_participant_liveliness_assert_period</dref> 
  4131.    --  <dref name="remote_participant_purge_kind">DiscoveryConfigQosPolicy_remote_participant_purge_kind</dref> 
  4132.    --  <dref name="max_liveliness_loss_detection_period">DiscoveryConfigQosPolicy_max_liveliness_loss_detection_period</dref> 
  4133.    --  <dref name="initial_participant_announcements">DiscoveryConfigQosPolicy_initial_participant_announcements</dref> 
  4134.    --  <dref name="min_initial_participant_announcement_period">DiscoveryConfigQosPolicy_min_initial_participant_announcement_period</dref> 
  4135.    --  <dref name="max_initial_participant_announcement_period">DiscoveryConfigQosPolicy_max_initial_participant_announcement_period</dref> 
  4136.    --  <dref name="participant_reader_resource_limits">DiscoveryConfigQosPolicy_participant_reader_resource_limits</dref> 
  4137.    --  <dref name="publication_reader">DiscoveryConfigQosPolicy_publication_reader</dref> 
  4138.    --  <dref name="publication_reader_resource_limits">DiscoveryConfigQosPolicy_publication_reader_resource_limits</dref> 
  4139.    --  <dref name="subscription_reader">DiscoveryConfigQosPolicy_subscription_reader</dref> 
  4140.    --  <dref name="subscription_reader_resource_limits">DiscoveryConfigQosPolicy_subscription_reader_resource_limits</dref> 
  4141.    --  <dref name="publication_writer">DiscoveryConfigQosPolicy_publication_writer</dref> 
  4142.    --  <dref name="publication_writer_data_lifecycle">DiscoveryConfigQosPolicy_publication_writer_data_lifecycle</dref> 
  4143.    --  <dref name="subscription_writer">DiscoveryConfigQosPolicy_subscription_writer</dref> 
  4144.    --  <dref name="subscription_writer_data_lifecycle">DiscoveryConfigQosPolicy_subscription_writer_data_lifecycle</dref> 
  4145.    --  <dref internal="true" name="endpoint_plugin_redundancy_level">DiscoveryConfigQosPolicy_endpoint_plugin_redundancy_level</dref> 
  4146.    --  <dref name="Builtin_Discovery_Plugins">DiscoveryConfigQosPolicy_builtin_discovery_plugins</dref> 
  4147.    --  <dref name="Participant_Message_Reader_Reliability_Kind">DiscoveryConfigQosPolicy_participant_message_reader_reliability_kind</dref> 
  4148.    --  <dref name="participant_message_reader">DiscoveryConfigQosPolicy_participant_message_reader</dref> 
  4149.    --  <dref name="participant_message_writer">DiscoveryConfigQosPolicy_participant_message_writer</dref> 
  4150.    --  <dref name="Publication_Writer_Publish_Mode">DiscoveryConfigQosPolicy_publication_writer_publish_mode</dref> 
  4151.    --  <dref name="Subscription_Writer_Publish_Mode">DiscoveryConfigQosPolicy_subscription_writer_publish_mode</dref> 
  4152.    --  <dref name="Asynchronous_Publisher">DiscoveryConfigQosPolicy_asynchronous_publisher</dref> 
  4153.    --  <dref name="default_domain_announcement_period">DiscoveryConfigQosPolicy_default_domain_announcement_period</dref> 
  4154.    --  <dref name="ignore_default_domain_announcements">DiscoveryConfigQosPolicy_ignore_default_domain_announcements</dref> 
  4155.    --  <dref internal="true" name="Service_Request_Writer_Data_Lifecycle">DiscoveryConfigQosPolicy_Service_Request_Writer_Data_Lifecycle</dref> 
  4156.    --  <dref internal="true" name="Service_Request_Writer_Publish_Mode">DiscoveryConfigQosPolicy_Service_Request_Writer_Publish_Mode</dref> 
  4157.    --  <dref internal="true" name="Service_Request_Reader">DiscoveryConfigQosPolicy_Service_Request_Reader</dref> 
  4158.    --  <dref internal="true" name="Locator_Reachability_Assert_Period">DiscoveryConfigQosPolicy_Locator_Reachability_Assert_Period </dref> 
  4159.    --  <dref internal="true" name="Locator_Reachability_Lease_Duration">DiscoveryConfigQosPolicy_Locator_Reachability_Lease_Duration</dref> 
  4160.    --  <dref internal="true" name="Locator_Reachability_Change_Detection_Period">DiscoveryConfigQosPolicy_Locator_Reachability_Change_Detection_Period</dref> 
  4161.    --  <dref internal="true" name="Secure_Volatile_Writer_Publish_Mode">DiscoveryConfigQosPolicy_secure_volatile_writer_publish_mode</dref> 
  4162.    --  <dref internal="true" name="Endpoint_Type_Object_LB_Serialization_Threshold">DiscoveryConfigQosPolicy_Endpoint_Type_Object_LB_Serialization_Threshold</dref> 
  4163.    --  <dref internal="true" name="sedp_rely_on_spdp_only">DiscoveryConfigQosPolicy_publication_sedp_rely_on_spdp_only</dref> 
  4164.    --  <dref internal="true" name="publication_writer_latency_budget">DiscoveryConfigQosPolicy_publication_writer_latency_budget</dref> 
  4165.    --  <dref internal="true" name="publication_writer_push_on_write">DiscoveryConfigQosPolicy_publication_writer_push_on_write</dref> 
  4166.    --  <dref internal="true" name="subscription_writer_latency_budget">DiscoveryConfigQosPolicy_subscription_writer_latency_budget</dref> 
  4167.    --  <dref internal="true" name="subscription_writer_push_on_write">DiscoveryConfigQosPolicy_subscription_writer_push_on_write</dref> 
  4168.    --  <dref internal="true" name="participant_state_writer">DiscoveryConfigQosPolicy_participant_state_writer</dref> 
  4169.    --  <dref internal="true" name="participant_state_writer_latency_budget">DiscoveryConfigQosPolicy_participant_state_writer_latency_budget</dref> 
  4170.    --  <dref internal="true" name="participant_state_writer_push_on_write">DiscoveryConfigQosPolicy_participant_state_writer_push_on_write</dref> 
  4171.    --  <dref internal="true" name="participant_state_writer_publish_mode">DiscoveryConfigQosPolicy_participant_state_writer_publish_mode</dref> 
  4172.    --  <dref internal="true" name="participant_proxy_reader">DiscoveryConfigQosPolicy_participant_proxy_reader</dref> 
  4173.    --  <dref internal="true" name="participant_proxy_reader_fragmentation_resource_limits">DiscoveryConfigQosPolicy_participant_proxy_reader_fragmentation_resource_limits</dref> 
  4174.    --  <dref internal="true" name="plugin_promiscuity_kind">DiscoveryConfigQosPolicy_plugin_promiscuity_kind</dref> 
  4175.  
  4176.  
  4177.    --   DISCOVERY_CONFIG_QOS_POLICY_DEFAULT : constant DiscoveryConfigQosPolicy := 
  4178.    --                                           (participant_liveliness_lease_duration                  => (100, 0), 
  4179.    --                                            participant_liveliness_assert_period                   => (30, 0), 
  4180.    --                                            remote_participant_purge_kind                          => LIVELINESS_BASED_REMOTE_PARTICIPANT_PURGE, 
  4181.    --                                            max_liveliness_loss_detection_period                   => (60, 0), 
  4182.    --                                            initial_participant_announcements                      => 5, 
  4183.    --                                            min_initial_participant_announcement_period            => (1, 0), 
  4184.    --                                            max_initial_participant_announcement_period            => (1, 0), 
  4185.    --                                            participant_reader_resource_limits                     => 
  4186.    --                                              BUILTIN_TOPIC_READER_RESOURCE_LIMITS_DEFAULT, 
  4187.    --                                            publication_reader                                     => 
  4188.    --                                              RTPS_RELIABLE_READER_PROTOCOL_DISCOVERY_CONFIG_DEFAULT, 
  4189.    --                                            publication_reader_resource_limits                     => 
  4190.    --                                              BUILTIN_TOPIC_READER_RESOURCE_LIMITS_DEFAULT, 
  4191.    --                                            subscription_reader                                    => 
  4192.    --                                              RTPS_RELIABLE_READER_PROTOCOL_DISCOVERY_CONFIG_DEFAULT, 
  4193.    --                                            subscription_reader_resource_limits                    => 
  4194.    --                                              BUILTIN_TOPIC_READER_RESOURCE_LIMITS_DEFAULT, 
  4195.    --                                            publication_writer                                     => 
  4196.    --                                              RTPS_RELIABLE_WRITER_PROTOCOL_DISCOVERY_CONFIG_DEFAULT, 
  4197.    --                                            publication_writer_data_lifecycle                      => 
  4198.    --                                              WRITER_DATA_LIFECYCLE_QOS_POLICY_DEFAULT, 
  4199.    --                                            subscription_writer                                    => 
  4200.    --                                              RTPS_RELIABLE_WRITER_PROTOCOL_DISCOVERY_CONFIG_DEFAULT, 
  4201.    --                                            subscription_writer_data_lifecycle                     => 
  4202.    --                                              WRITER_DATA_LIFECYCLE_QOS_POLICY_DEFAULT, 
  4203.    --                                            endpoint_plugin_redundancy_level                       => -1, 
  4204.    --                                            Builtin_Discovery_Plugins                              => 
  4205.    --                                              DISCOVERYCONFIG_BUILTIN_PLUGIN_MASK_DEFAULT, 
  4206.    --                                            participant_message_reader                             => 
  4207.    --                                              RTPS_PARTICIPANT_MESSAGE_READER_DISCOVERY_CONFIG_DEFAULT, 
  4208.    --                                            participant_message_writer                             => 
  4209.    --                                              RTPS_PARTICIPANT_MESSAGE_WRITER_DISCOVERY_CONFIG_DEFAULT, 
  4210.    --                                            Publication_Writer_Publish_mode                        => 
  4211.    --                                               (Kind                      => PUBLISH_MODE_QOS_POLICY_DEFAULT.Kind, 
  4212.    --                                                Flow_Controller_Name      => (data => PUBLISH_MODE_QOS_POLICY_DEFAULT.Flow_Controller_Name.data), 
  4213.    --                                                Priority                  => PUBLISH_MODE_QOS_POLICY_DEFAULT.Priority), 
  4214.    --                                            Subscription_Writer_Publish_mode                       => 
  4215.    --                                               (Kind                      => PUBLISH_MODE_QOS_POLICY_DEFAULT.Kind, 
  4216.    --                                                Flow_Controller_Name      => (data => PUBLISH_MODE_QOS_POLICY_DEFAULT.Flow_Controller_Name.data), 
  4217.    --                                                Priority                  => PUBLISH_MODE_QOS_POLICY_DEFAULT.Priority), 
  4218.    --                                            Asynchronous_Publisher                                 => 
  4219.    --                                                (Disable_Asynchronous_Write => FALSE, 
  4220.    --                                                 Thread                     => ( 
  4221.    --                                 (Mask         => THREAD_SETTINGS_OPTION_DEFAULT, 
  4222.    --                                  Priority     => Long (RTIDDS.Osapi_Thread.PRIORITY_DEFAULT), 
  4223.    --                                  Stack_Size   => Long (RTIDDS.Osapi_Thread.STACK_SIZE_DEFAULT), 
  4224.    --                                  Cpu_List     => DDS.Long_Seq.DEFAULT_SEQUENCE, 
  4225.    --                                  Cpu_Rotation => THREAD_SETTINGS_CPU_ROTATION_DEFAULT)), 
  4226.    --                                                 disable_asynchronous_batch => False, 
  4227.    --                                                 asynchronous_batch_thread  => ( 
  4228.    --                                 (Mask         => THREAD_SETTINGS_OPTION_DEFAULT, 
  4229.    --                                  Priority     => Long (RTIDDS.Osapi_Thread.PRIORITY_DEFAULT), 
  4230.    --                                  Stack_Size   => Long (RTIDDS.Osapi_Thread.STACK_SIZE_DEFAULT), 
  4231.    --                                  Cpu_List     => DDS.Long_Seq.DEFAULT_SEQUENCE, 
  4232.    --                                  Cpu_Rotation => THREAD_SETTINGS_CPU_ROTATION_DEFAULT)), 
  4233.    --                                                 asynchronous_batch_blocking_kind => 0), 
  4234.    --                                            --   /***************** HIDDEN FROM USER ********************************/ 
  4235.    --                                            sedp_rely_on_spdp_only                                 => False, 
  4236.    --                                            publication_writer_latency_budget                      => 
  4237.    --                                              LATENCY_BUDGET_QOS_POLICY_DEFAULT, 
  4238.    --                                            publication_writer_push_on_write                       => True, 
  4239.    --                                            subscription_writer_latency_budget                     => 
  4240.    --                                              LATENCY_BUDGET_QOS_POLICY_DEFAULT, 
  4241.    --                                            subscription_writer_push_on_write                      => True, 
  4242.    --                                            participant_state_writer 
  4243.    --                                                                                                   => RTPS_RELIABLE_WRITER_PROTOCOL_DISCOVERY_CONFIG_DEFAULT, 
  4244.    --                                            participant_state_writer_latency_budget                => 
  4245.    --                                              LATENCY_BUDGET_QOS_POLICY_DEFAULT, 
  4246.    --                                            participant_state_writer_push_on_write                 => True, 
  4247.    --                                            participant_state_writer_publish_mode                  => 
  4248.    --                                               (Kind                      => PUBLISH_MODE_QOS_POLICY_DEFAULT.Kind, 
  4249.    --                                                Flow_Controller_Name      => (data => PUBLISH_MODE_QOS_POLICY_DEFAULT.Flow_Controller_Name.data), 
  4250.    --                                                Priority                  => PUBLISH_MODE_QOS_POLICY_DEFAULT.Priority), 
  4251.    --                                            participant_proxy_reader                               => 
  4252.    --                                              RTPS_RELIABLE_READER_PROTOCOL_DISCOVERY_CONFIG_DEFAULT, 
  4253.    --                                            participant_proxy_reader_fragmentation_resource_limits => 
  4254.    --                                              DISCOVERY_BUILTIN_READER_FRAGMENTATION_RESOURCE_LIMITS_DEFAULT, 
  4255.    --                                            plugin_promiscuity_kind                                => 
  4256.    --                                              DISCOVERYPLUGIN_DISCOVER_MATCHING_REMOTE_ENTITIES_PROMISCUITY); 
  4257.    --  <dref internal="true"></dref> 
  4258.  
  4259.    --  ---------------------------------------------------------- 
  4260.    --                  USEROBJECT (eXtension QoS) 
  4261.    --  ---------------------------------------------------------- 
  4262.  
  4263.    USEROBJECT_QOS_POLICY_NAME    : constant DDS.String := To_DDS_String ("UserObject"); 
  4264.    --  <defgroup internal="true">UserObjectQosGroupDocs</defgroup> 
  4265.    --  <dref internal="true">USEROBJECT_QOS_POLICY_NAME</dref> 
  4266.  
  4267.    type UserObjectQosPolicy is record 
  4268.       Participant_User_Object            : aliased UserObjectSettings_T; 
  4269.       Topic_User_Object                  : aliased UserObjectSettings_T; 
  4270.       Content_Filtered_Topic_User_Object : aliased UserObjectSettings_T; 
  4271.       Publisher_User_Object              : aliased UserObjectSettings_T; 
  4272.       Data_Writer_User_Object            : aliased UserObjectSettings_T; 
  4273.       Subscriber_User_Object             : aliased UserObjectSettings_T; 
  4274.       Data_Reader_User_Object            : aliased UserObjectSettings_T; 
  4275.       Read_Condition_User_Object         : aliased UserObjectSettings_T; 
  4276.       Query_Condition_User_Object        : aliased UserObjectSettings_T; 
  4277.       Index_Condition_User_Object        : aliased UserObjectSettings_T; 
  4278.       Flow_Controller_User_Object        : aliased UserObjectSettings_T; 
  4279.    end record with Convention => C; 
  4280.    --  <dref internal="true">UserObjectQosPolicy</dref> 
  4281.    --  <dref internal="true" name="Participant_User_Object">UserObjectQosPolicy_participant_user_object</dref> 
  4282.    --  <dref internal="true" name="Topic_User_Object">UserObjectQosPolicy_topic_user_object</dref> 
  4283.    --  <dref internal="true" name="Content_Filtered_Topic_User_Object">UserObjectQosPolic_content_filtered_topic_user_object</dref> 
  4284.    --  <dref internal="true" name="Publisher_User_Object">UserObjectQosPolicy_publisher_user_object</dref> 
  4285.    --  <dref internal="true" name="Data_Writer_User_Object">UserObjectQosPolicy_data_writer_user_object</dref> 
  4286.    --  <dref internal="true" name="Subscriber_User_Object">UserObjectQosPolicy_subscriber_user_object</dref> 
  4287.    --  <dref internal="true" name="Data_Reader_User_Object">UserObjectQosPolicy_data_reader_user_object</dref> 
  4288.    --  <dref internal="true" name="Read_Condition_User_Object">UserObjectQosPolicy_read_condition_user_object</dref> 
  4289.    --  <dref internal="true" name="Query_Condition_User_Object">UserObjectQosPolicy_query_condition_user_object</dref> 
  4290.    --  <dref internal="true" name="Index_Condition_User_Object">UserObjectQosPolicy_index_condition_user_object</dref> 
  4291.    --  <dref internal="true" name="Flow_Controller_User_Object">UserObjectQosPolicy_flow_controller_user_object</dref> 
  4292.  
  4293.    USER_OBJECT_QOS_POLICY_DEFAULT : constant UserObjectQosPolicy := 
  4294.                                       (others => (0, 0)); 
  4295.    --  <dref internal="true"></dref> 
  4296.  
  4297.    --  ---------------------------------------------------------- 
  4298.    --                  EXCLUSIVEAREA (eXtension QoS) 
  4299.    --  ---------------------------------------------------------- 
  4300.  
  4301.    EXCLUSIVEAREA_QOS_POLICY_NAME  : constant DDS.String := To_DDS_String ("ExclusiveArea"); 
  4302.    --  <defgroup>ExclusiveAreaQosGroupDocs</defgroup> 
  4303.    --  <dref>EXCLUSIVEAREA_QOS_POLICY_NAME</dref> 
  4304.  
  4305.    type ExclusiveAreaQosPolicy is record 
  4306.       Use_Shared_Exclusive_Area : aliased DDS.Boolean; 
  4307.       Level                     : aliased DDS.Long; 
  4308.    end record with Convention => C; 
  4309.    --  <dref>ExclusiveAreaQosPolicy</dref> 
  4310.    --  <dref name="User_Shared_Exclusive_Area">ExclusiveAreaQosPolicy_use_shared_exclusive_area</dref> 
  4311.    --  <dref internal="true" name="Level">ExclusiveAreaQosPolicy_level</dref> 
  4312.  
  4313.    EXCLUSIVE_AREA_AUTO_LEVEL     : constant DDS.Long := -1; 
  4314.    --  <dref internal="true">ExclusiveAreaQosPolicy_AUTO_LEVEL</dref> 
  4315.  
  4316.    EXCLUSIVE_AREA_QOS_POLICY_DEFAULT : constant ExclusiveAreaQosPolicy := 
  4317.                                          (Use_Shared_Exclusive_Area => False, 
  4318.                                           Level                     => EXCLUSIVE_AREA_AUTO_LEVEL); 
  4319.    --  <dref internal="true"></dref> 
  4320.  
  4321.    --  ---------------------------------------------------------- 
  4322.    --                  DATAWRITERTRANSFERMODE 
  4323.    --  ---------------------------------------------------------- 
  4324.  
  4325.    DATAWRITERTRANSFERMODE_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("DataWriterTransferMode"); 
  4326.    --  <defgroup>DataWriterTransferModeQosGroupDocs</defgroup> 
  4327.    --  <dref>DATAWRITERTRANSFERMODE_QOS_POLICY_NAME</dref> 
  4328.  
  4329.    type DataWriterShmemRefTransferModeSettings is record 
  4330.       Enable_Data_Consistency_Check : aliased DDS.Boolean; 
  4331.    end record with Convention => C; 
  4332.    --  <dref>DataWriterShmemRefTransferModeSettings</dref> 
  4333.    --  <dref name="Enable_Data_Consistency_Check">DataWriterShmemRefTransferModeSettings_enable_data_consistency_check</dref> 
  4334.  
  4335.    DataWriterShmemRefTransferModeSettings_INITIALIZER : constant DataWriterShmemRefTransferModeSettings := 
  4336.       (Enable_Data_Consistency_Check => True); 
  4337.  
  4338.    type DataWriterShmemRefTransferModeSettings_Access is access all DataWriterShmemRefTransferModeSettings; 
  4339.  
  4340.    function DataWriterShmemRefTransferModeSettings_Equals 
  4341.       (Self  : in DataWriterShmemRefTransferModeSettings_Access; 
  4342.        Other : in DataWriterShmemRefTransferModeSettings_Access) 
  4343.       return DDS.Boolean; 
  4344.    --  <dref internal="true">DataWriterShmemRefTransferModeSettings_Equals</dref> 
  4345.  
  4346.    pragma Warnings (Off, DataWriterShmemRefTransferModeSettings_Equals); 
  4347.    pragma Import (C, DataWriterShmemRefTransferModeSettings_Equals, "DDS_DataWriterShmemRefTransferModeSettings_equals"); 
  4348.  
  4349.    type DataWriterTransferModeQosPolicy is record 
  4350.       Shmem_Ref_Settings : aliased DataWriterShmemRefTransferModeSettings; 
  4351.    end record with Convention => C; 
  4352.    --  <dref>DataWriterTransferModeQosPolicy</dref> 
  4353.    --  <dref name="Shmem_Ref_Settings">DataWriterTransferModeQosPolicy_shmem_ref_settings</dref> 
  4354.  
  4355.    DataWriterTransferModeQosPolicy_INITIALIZER : constant DataWriterTransferModeQosPolicy := 
  4356.       (Shmem_Ref_Settings => DataWriterShmemRefTransferModeSettings_INITIALIZER); 
  4357.  
  4358.    type DataWriterTransferModeQosPolicy_Access is access all DataWriterTransferModeQosPolicy; 
  4359.  
  4360.    function DataWriterTransferModeQosPolicy_equals 
  4361.       (Self  : in DataWriterTransferModeQosPolicy_Access; 
  4362.        Other : in DataWriterTransferModeQosPolicy_Access) 
  4363.       return DDS.Boolean; 
  4364.    --  <dref internal="true">DataWriterTransferModeQosPolicy_equals</dref> 
  4365.  
  4366.    pragma Warnings (Off, DataWriterTransferModeQosPolicy_equals); 
  4367.    pragma Import (C, DataWriterTransferModeQosPolicy_equals, "DDS_DataWriterTransferModeQosPolicy_equals"); 
  4368.  
  4369.    --  ---------------------------------------------------------- 
  4370.    --                  TOPICQUERYDISPATCH (eXtension QoS) 
  4371.    --  ---------------------------------------------------------- 
  4372.  
  4373.    TOPIC_QUERY_DISPATCH_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("TopicQueryDispatch"); 
  4374.    --  <defgroup>TopicQueryDispatchQosGroupDocs</defgroup> 
  4375.    --  <dref>TOPICQUERYDISPATCH_QOS_POLICY_NAME</dref> 
  4376.  
  4377.    type TopicQueryDispatchQosPolicy is record 
  4378.       Enable                      : aliased DDS.Boolean; 
  4379.       Publication_Period          : aliased Duration_T; 
  4380.       Samples_Per_Period          : aliased DDS.Long; 
  4381.    end record with Convention => C; 
  4382.    --  <dref>TopicQueryDispatchQosPolicy</dref> 
  4383.    --  <dref name="Publication_Period">TopicQueryDispatchQosPolicy_publication_period</dref> 
  4384.    --  <dref name="Samples_Per_Period">TopicQueryDispatchQosPolicy_samples_per_period</dref> 
  4385.  
  4386.    TOPIC_QUERY_DISPATCH_QOS_POLICY_DEFAULT : constant TopicQueryDispatchQosPolicy := 
  4387.                                                ( 
  4388.                                                 Enable                      => False, 
  4389.                                                 Publication_Period          => (16#0000_0001#, 16#0000_0000#), 
  4390.                                                 Samples_Per_Period          => -1 
  4391.                                                ); 
  4392.    --  <dref internal="true"></dref> 
  4393.  
  4394.    --  ---------------------------------------------------------- 
  4395.    --                  BATCH (eXtension QoS) 
  4396.    --  ---------------------------------------------------------- 
  4397.  
  4398.    BATCH_QOS_POLICY_NAME         : constant DDS.String := To_DDS_String ("Batch"); 
  4399.    --  <defgroup>BatchQosGroupDocs</defgroup> 
  4400.    --  <dref>BATCH_QOS_POLICY_NAME</dref> 
  4401.  
  4402.    type BatchQosPolicy is record 
  4403.       Enable                      : aliased DDS.Boolean; 
  4404.       Max_Data_Bytes              : aliased DDS.Long; 
  4405.       Max_Meta_Data_Bytes         : aliased DDS.Long; 
  4406.       Max_Samples                 : aliased DDS.Long; 
  4407.       Max_Flush_Delay             : aliased Duration_T; 
  4408.       Source_Timestamp_Resolution : aliased Duration_T; 
  4409.       Thread_Safe_Write           : aliased DDS.Boolean; 
  4410.    end record with Convention => C; 
  4411.    --  <dref>BatchQosPolicy</dref> 
  4412.    --  <dref name="enable">BatchQosPolicy_enable</dref> 
  4413.    --  <dref name="max_data_bytes">BatchQosPolicy_max_data_bytes</dref> 
  4414.    --  <dref internal="true" name="max_meta_data_bytes">BatchQosPolicy_max_meta_data_bytes</dref> 
  4415.    --  <dref name="max_samples">BatchQosPolicy_max_samples</dref> 
  4416.    --  <dref name="max_flush_delay">BatchQosPolicy_max_flush_delay</dref> 
  4417.    --  <dref name="source_timestamp_resolution">BatchQosPolicy_source_timestamp_resolution</dref> 
  4418.    --  <dref name="thread_safe_write">BatchQosPolicy_thread_safe_write</dref> 
  4419.  
  4420.    BATCH_QOS_POLICY_DEFAULT      : constant BatchQosPolicy := 
  4421.                                      ( 
  4422.                                       Enable                      => False, 
  4423.                                       Max_Data_Bytes              => 1024, 
  4424.                                       Max_Meta_Data_Bytes         => LENGTH_UNLIMITED, 
  4425.                                       Max_Samples                 => LENGTH_UNLIMITED, 
  4426.                                       Max_Flush_Delay             => (16#7FFF_FFFF#, 16#7FFF_FFFF#), 
  4427.                                       Source_Timestamp_Resolution => (16#7FFF_FFFF#, 16#7FFF_FFFF#), 
  4428.                                       Thread_Safe_Write           => True 
  4429.                                      ); 
  4430.    --  <dref internal="true"></dref> 
  4431.  
  4432.    --  ---------------------------------------------------------- 
  4433.    --       TYPE_CONSISTENCY_ENFORCEMENT (XTYPES) 
  4434.    --  ---------------------------------------------------------- 
  4435.  
  4436.    TYPE_CONSISTENCY_ENFORCEMENT_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("TypeConsistencyEnforcement"); 
  4437.    --  <defgroup>TypeConsistencyEnforcementQosGroupDocs</defgroup> 
  4438.    --  <dref>TYPE_CONSISTENCY_ENFORCEMENT_QOS_POLICY_NAME</dref> 
  4439.  
  4440.    type TypeConsistencyKind is new Unsigned_Long; 
  4441.    --  <dref>TypeConsistencyKind</dref> 
  4442.  
  4443.    DISALLOW_TYPE_COERCION        : constant TypeConsistencyKind := 0; 
  4444.    --  <dref>TypeConsistencyKind_DISALLOW_TYPE_COERCION</dref> 
  4445.  
  4446.    ALLOW_TYPE_COERCION           : constant TypeConsistencyKind := 1; 
  4447.    --  <dref>TypeConsistencyKind_ALLOW_TYPE_COERCION</dref> 
  4448.  
  4449.    AUTO_TYPE_COERCION            : constant TypeConsistencyKind := 2; 
  4450.    --  <dref>TypeConsistencyKind_AUTO_TYPE_COERCION</dref> 
  4451.  
  4452.    type TypeConsistencyEnforcementQosPolicy is record 
  4453.       Kind                      : aliased TypeConsistencyKind; 
  4454.       Ignore_Sequence_Bounds    : aliased Boolean; 
  4455.       Ignore_String_Bounds      : aliased Boolean; 
  4456.       Ignore_Member_Names       : aliased Boolean; 
  4457.       Prevent_Type_Widening     : aliased Boolean; 
  4458.       Force_Type_Validation     : aliased Boolean; 
  4459.       Ignore_Enum_Literal_Names : aliased Boolean; 
  4460.    end record with Convention => C; 
  4461.    --  <dref>TypeConsistencyEnforcementQosPolicy</dref> 
  4462.    --  <dref name="kind">TypeConsistencyEnforcementQosPolicy_kind</dref> 
  4463.    --  <dref name="Ignore_Sequence_Bounds">TypeConsistencyEnforcementQosPolicy_ignore_sequence_bounds</dref> 
  4464.    --  <dref name="Ignore_String_Bounds">TypeConsistencyEnforcementQosPolicy_ignore_string_bounds</dref> 
  4465.    --  <dref name="Ignore_Member_Names">TypeConsistencyEnforcementQosPolicy_ignore_member_names</dref> 
  4466.    --  <dref name="Prevent_Type_Widening">TypeConsistencyEnforcementQosPolicy_prevent_type_widening</dref> 
  4467.    --  <dref name="Force_Type_Validation">TypeConsistencyEnforcementQosPolicy_force_type_validation</dref> 
  4468.    --  <dref name="Ignore_Enum_Literal_Names">TypeConsistencyEnforcementQosPolicy_ignore_enum_literal_names</dref> 
  4469.  
  4470.    TYPE_CONSISTENCY_ENFORCEMENT_QOS_POLICY_DEFAULT : constant TypeConsistencyEnforcementQosPolicy := 
  4471.                                                        ( 
  4472.                                                         Kind => ALLOW_TYPE_COERCION, 
  4473.                                                         Ignore_Sequence_Bounds => False, 
  4474.                                                         Ignore_String_Bounds => False, 
  4475.                                                         Ignore_Member_Names => False, 
  4476.                                                         Prevent_Type_Widening => False, 
  4477.                                                         Force_Type_Validation => False, 
  4478.                                                         Ignore_Enum_Literal_Names => False 
  4479.                                                        ); 
  4480.    --  <dref internal="true"></dref> 
  4481.  
  4482.    --  ---------------------------------------------------------- 
  4483.    --                  LOCATORFILTER (eXtension QoS) 
  4484.    --  ---------------------------------------------------------- 
  4485.  
  4486.    type LocatorFilter_T is record 
  4487.       Locators          : aliased Locator_Seq.Sequence; 
  4488.       Filter_Expression : DDS.String; 
  4489.    end record with Convention => C; 
  4490.    --  <defgroup>LocatorFilterQosGroupDocs</defgroup> 
  4491.    --  <dref>LocatorFilter_t</dref> 
  4492.    --  <dref name="locators">LocatorFilter_t_locators</dref> 
  4493.    --  <dref name="filter_expression">LocatorFilter_t_filter_expression</dref> 
  4494.  
  4495.  
  4496.    type LocatorFilter_T_Access is access all LocatorFilter_T; 
  4497.    type LocatorFilter_T_Array is array 
  4498.      (Natural range <>) of aliased LocatorFilter_T; 
  4499.    procedure Initialize (Self : in out LocatorFilter_T); 
  4500.    procedure Finalize (Self : in out LocatorFilter_T); 
  4501.    procedure Copy (Dst : in out LocatorFilter_T; 
  4502.                    Src : in LocatorFilter_T); 
  4503.    package LocatorFilter_Seq is new DDS_Support.Sequences_Generic 
  4504.      (LocatorFilter_T, 
  4505.       LocatorFilter_T_Access, 
  4506.       DDS.Natural, 
  4507.       1, 
  4508.       LocatorFilter_T_Array); 
  4509.    --  <dref>LocatorFilterSeq</dref> 
  4510.  
  4511.    LOCATORFILTER_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("LocatorFilter"); 
  4512.    --  <dref>LOCATORFILTER_QOS_POLICY_NAME</dref> 
  4513.  
  4514.    type LocatorFilterQosPolicy is record 
  4515.       Locator_Filters : aliased DDS.LocatorFilter_Seq.Sequence; 
  4516.       Filter_Name     : aliased DDS.String; 
  4517.    end record with Convention => C; 
  4518.    --  <dref>LocatorFilterQosPolicy</dref> 
  4519.    --  <dref name="locator_filters">LocatorFilterQosPolicy_locator_filters</dref> 
  4520.    --  <dref name="filer_name">LocatorFilterQosPolicy_filter_name</dref> 
  4521.  
  4522.    --     LOCATOR_FILTER_QOS_POLICY_DEFAULT : constant LocatorFilterQosPolicy := 
  4523.    --       ( 
  4524.    --        locator_filters => DDS.LocatorFilter_Seq.DEFAULT_SEQUENCE, 
  4525.    --        filter_name => DDS.NULL_STRING 
  4526.    --       ); 
  4527.  
  4528.    --  ---------------------------------------------------------- 
  4529.    --                  MULTICHANNEL (eXtension QoS) 
  4530.    --  ---------------------------------------------------------- 
  4531.  
  4532.    type ChannelSettings_T is record 
  4533.       Multicast_Settings : aliased TransportMulticastSettings_Seq.Sequence; 
  4534.       Filter_Expression  : DDS.String; 
  4535.       Priority           : DDS.Long; 
  4536.    end record with Convention => C; 
  4537.    --  <defgroup>MultiChannelQosGroupDocs</defgroup> 
  4538.    --  <dref>ChannelSettings_t</dref> 
  4539.    --  <dref name="multicast_settings">ChannelSettings_t_multicast_settings</dref> 
  4540.    --  <dref name="filter_expression">ChannelSettings_t_filter_expression</dref> 
  4541.    --  <dref name="priority">ChannelSettings_t_priority</dref> 
  4542.  
  4543.    type ChannelSettings_T_Access is access all ChannelSettings_T; 
  4544.    type ChannelSettings_T_Array is array 
  4545.      (Natural range <>) of aliased ChannelSettings_T; 
  4546.    procedure Initialize (Self : in out ChannelSettings_T); 
  4547.    procedure Finalize (Self : in out ChannelSettings_T); 
  4548.    procedure Copy (Dst : in out ChannelSettings_T; 
  4549.                    Src : in ChannelSettings_T); 
  4550.  
  4551.    package ChannelSettings_Seq is new DDS_Support.Sequences_Generic 
  4552.      (ChannelSettings_T, 
  4553.       ChannelSettings_T_Access, 
  4554.       DDS.Natural, 
  4555.       1, 
  4556.       ChannelSettings_T_Array); 
  4557.    --  <dref>ChannelSettingsSeq</dref> 
  4558.  
  4559.    MULTICHANNEL_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("MultiChannel"); 
  4560.    --  <dref>MULTICHANNEL_QOS_POLICY_NAME</dref> 
  4561.  
  4562.    type MultiChannelQosPolicy is record 
  4563.       Channels    : aliased DDS.ChannelSettings_Seq.Sequence; 
  4564.       Filter_Name : aliased DDS.String; 
  4565.    end record with Convention => C; 
  4566.    --  <dref>MultiChannelQosPolicy</dref> 
  4567.    --  <dref name="channels">MultiChannelQosPolicy_channels</dref> 
  4568.    --  <dref name="filter_name">MultiChannelQosPolicy_filter_name</dref> 
  4569.  
  4570.  
  4571.    --     MULTICHANNEL_QOS_POLICY_DEFAULT : constant MultiChannelQosPolicy := 
  4572.    --       ( 
  4573.    --        channels    => DDS.ChannelSettings_Seq.DEFAULT_SEQUENCE, 
  4574.    --        filter_name => DDS.NULL_STRING 
  4575.    --       ); 
  4576.  
  4577.    --  ---------------------------------------------------------- 
  4578.    --                  PROPERTY (eXtension QoS) 
  4579.    --  ---------------------------------------------------------- 
  4580.  
  4581.    type Property_T is record 
  4582.       Name      : aliased DDS.String; 
  4583.       Value     : aliased DDS.String; 
  4584.       Propagate : aliased DDS.Boolean; 
  4585.    end record with Convention => C; 
  4586.    --  <defgroup>PropertyQosGroupDocs</defgroup> 
  4587.    --  <dref>Property_t</dref> 
  4588.    --  <dref name="Name">Property_t_name</dref> 
  4589.    --  <dref name="Value">Property_t_value</dref> 
  4590.    --  <dref name="Propagate">Property_t_propagate</dref> 
  4591.  
  4592.    type Property_T_Access is access all Property_T; 
  4593.  
  4594.    type Property_T_Array is array (Natural range <>) of aliased Property_T; 
  4595.    procedure Initialize (Self  : in out Property_T); 
  4596.    procedure Finalize (Self  : in out Property_T); 
  4597.    procedure Copy (Dst : in out Property_T; Src : in Property_T); 
  4598.  
  4599.    package Property_T_Seq is new DDS_Support.Sequences_Generic 
  4600.      (Property_T, 
  4601.       Property_T_Access, 
  4602.       DDS.Natural, 
  4603.       1, 
  4604.       Property_T_Array); 
  4605.    --  <dref>PropertySeq</dref> 
  4606.  
  4607.    type Property_T_Seq_Access is access all Property_T_Seq.Sequence; 
  4608.  
  4609.    PROPERTY_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("Property"); 
  4610.    --  <dref>PROPERTY_QOS_POLICY_NAME</dref> 
  4611.  
  4612.    type PropertyQosPolicy is record 
  4613.       Value :  aliased Property_T_Seq.Sequence; 
  4614.    end record with Convention => C; 
  4615.    --  <dref>PropertyQosPolicy</dref> 
  4616.    --  <dref name="Value">PropertyQosPolicy_value</dref> 
  4617.  
  4618.    type PropertyQosPolicy_Access is access all PropertyQosPolicy; 
  4619.  
  4620.    PROPERTY_QOS_POLICY_DEFAULT : constant PropertyQosPolicy := 
  4621.                                    (Value => Property_T_Seq.DEFAULT_SEQUENCE); 
  4622.  
  4623.  
  4624.  
  4625.    function Contains (P    : PropertyQosPolicy; 
  4626.                       Name : Standard.String) return Boolean; 
  4627.    function Contains (P    : PropertyQosPolicy; 
  4628.                       Name : DDS.String) return Boolean; 
  4629.  
  4630.    function Length (P : PropertyQosPolicy) return Natural; 
  4631.  
  4632.    procedure Append (P         : in out PropertyQosPolicy; 
  4633.                      Name      : Standard.String; 
  4634.                      Value     : Standard.String; 
  4635.                      Propagate : Boolean := False); 
  4636.    procedure Append (P         : in out PropertyQosPolicy; 
  4637.                      Name      : DDS.String; 
  4638.                      Value     : DDS.String; 
  4639.                      Propagate : Boolean := False); 
  4640.  
  4641.    procedure Delete (P : in out PropertyQosPolicy; Name : Standard.String); 
  4642.    procedure Delete (P : in out PropertyQosPolicy; Name : DDS.String); 
  4643.  
  4644.    function Get (P    : PropertyQosPolicy; 
  4645.                  Name : Standard.String) return Standard.String; 
  4646.    function Get (P    : PropertyQosPolicy; 
  4647.                  Name : DDS.String) return DDS.String; 
  4648.  
  4649.    procedure Add_Property (Policy    : in PropertyQosPolicy_Access; 
  4650.                            Name      : in Standard.String; 
  4651.                            Value     : in Standard.String; 
  4652.                            Propagate : in DDS.Boolean); 
  4653.    --  <dref>PropertyQosPolicyHelper_add_property</dref> 
  4654.  
  4655.    procedure Remove_Property (Policy    : in PropertyQosPolicy_Access; 
  4656.                               Name      : in Standard.String); 
  4657.    --  <dref>PropertyQosPolicyHelper_remove_property</dref> 
  4658.  
  4659.    --  ---------------------------------------------------------- 
  4660.    --                  WaitSetProperty_t 
  4661.    --  ---------------------------------------------------------- 
  4662.  
  4663.    type WaitSetProperty_T is record 
  4664.       Max_Event_Count : aliased Interfaces.C.long; -- Use the same definition of long as in C 
  4665.       Max_Event_Delay : aliased Duration_T; 
  4666.    end record with Convention => C; 
  4667.    --  <dref>WaitSetProperty_t</dref> 
  4668.    --  <dref name="max_event_count">WaitSetProperty_t_max_event_count</dref> 
  4669.    --  <dref name="max_event_delay">WaitSetProperty_t_max_event_delay</dref> 
  4670.  
  4671.  
  4672.    --  ---------------------------------------------------------- 
  4673.    --                  EndpointGroup_t 
  4674.    --  ---------------------------------------------------------- 
  4675.  
  4676.    type EndpointGroup_T is record 
  4677.       Role_Name    : aliased DDS.String; 
  4678.       Quorum_Count : aliased Integer := 0; 
  4679.    end record with Convention => C; 
  4680.    --  <dref>EndpointGroup_t</dref> 
  4681.    --  <dref name="role_name">EndpointGroup_t_role_name</dref> 
  4682.    --  <dref name="quorum_count">EndpointGroup_t_quorum_count</dref> 
  4683.  
  4684.    type EndpointGroup_T_Access is access all EndpointGroup_T; 
  4685.  
  4686.    type EndpointGroup_T_Array is array (Natural range <>) of aliased EndpointGroup_T; 
  4687.  
  4688.    pragma Convention (C, EndpointGroup_T_Array); 
  4689.  
  4690.    procedure Initialize (Self  : in out EndpointGroup_T); 
  4691.    procedure Finalize (Self  : in out EndpointGroup_T); 
  4692.    procedure Copy (Dst : in out EndpointGroup_T; Src : in EndpointGroup_T); 
  4693.  
  4694.    package EndpointGroup_T_Seq is new DDS_Support.Sequences_Generic 
  4695.      (Element        => EndpointGroup_T, 
  4696.       Element_Access => EndpointGroup_T_Access, 
  4697.       Index_Type     => Natural, 
  4698.       First_Element  => 1, 
  4699.       Element_Array  => EndpointGroup_T_Array); 
  4700.    --  <dref>EndpointGroupSeq</dref> 
  4701.  
  4702.    type EndpointGroup_T_Seq_Access is access all EndpointGroup_T_Seq.Sequence; 
  4703.  
  4704.    --  ---------------------------------------------------------- 
  4705.    --                  AvailabilityQosPolicy 
  4706.    --  ---------------------------------------------------------- 
  4707.  
  4708.    type AvailabilityQosPolicy is record 
  4709.       Enable_Required_Subscriptions          : aliased Boolean := False; 
  4710.       Max_Data_Availability_Waiting_Time     : aliased Duration_T := (1, 0); 
  4711.       Max_Endpoint_Availability_Waiting_Time : aliased Duration_T := (1, 0); 
  4712.       Required_Matched_Endpoint_Groups       : aliased EndpointGroup_T_Seq.Sequence; 
  4713.    end record with Convention => C; 
  4714.    --  <defgroup>AvailabilityQosGroupDocs</defgroup> 
  4715.    --  <dref >AvailabilityQosPolicy</dref> 
  4716.    --  <dref name="enable_required_subscriptions">AvailabilityQosPolicy_enable_required_subscriptions</dref> 
  4717.    --  <dref name="max_data_availability_waiting_time">AvailabilityQosPolicy_max_data_availability_waiting_time</dref> 
  4718.    --  <dref name="max_endpoint_availability_waiting_time">AvailabilityQosPolicy_max_endpoint_availability_waiting_time</dref> 
  4719.    --  <dref name="required_matched_endpoint_groups">AvailabilityQosPolicy_required_matched_endpoint_groups</dref> 
  4720.  
  4721.    AVAILABILITY_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("Availability"); 
  4722.    --  <dref>AVAILABILITY_QOS_POLICY_NAME</dref> 
  4723.  
  4724.    --  #define DDS_AVAILABILITY_QOS_POLICY_DEFAULT { 
  4725.    --  { 0xffffffffL, 0UL }, /* max_data_availability_waiting_time */\ 
  4726.    --  { 0xffffffffL, 0UL }, /* max_endpoint_availability_waiting_time */ \ 
  4727.    --  EndpointGroup_T_Seq.Sequence.DEFAULT_SEQUENCE /* required_matched_endpoint_groups */ \ 
  4728.  
  4729.    --  package QosPolicyCount_Seq is new DDS_Support.Sequences_Generic 
  4730.    --  (QosPolicyCount, 
  4731.    --   QosPolicyCount_Access, 
  4732.    --   DDS.Natural, 
  4733.    --   1, 
  4734.    --   QosPolicyCount_Array); 
  4735.    --  <dref>QosPolicyCountSeq</dref> 
  4736.  
  4737.    --  ---------------------------------------------------------- 
  4738.    --                  ContentFilterProperty_t 
  4739.    --  ---------------------------------------------------------- 
  4740.  
  4741.    type ContentFilterProperty_T is record 
  4742.       Content_Filter_Topic_Name : aliased DDS.String; 
  4743.       Related_Topic_Name        : aliased DDS.String; 
  4744.       Filter_Class_Name         : aliased DDS.String; 
  4745.       Filter_Expression         : aliased DDS.String; 
  4746.       Expression_Parameters     : aliased DDS.String_Seq.Sequence; 
  4747.    end record with Convention => C; 
  4748.    --  <dref>ContentFilterProperty_t</dref> 
  4749.    --  <dref name="Content_Filter_Topic_Name">ContentFilterProperty_t_content_filter_topic_name</dref> 
  4750.    --  <dref name="Related_Topic_Name">ContentFilterProperty_t_related_topic_name</dref> 
  4751.    --  <dref name="Filter_Class_Name">ContentFilterProperty_t_filter_class_name</dref> 
  4752.    --  <dref name="Filter_Expression">ContentFilterProperty_t_filter_expression</dref> 
  4753.    --  <dref name="Expression_Parameters">ContentFilterProperty_t_expression_parameters</dref> 
  4754.  
  4755.    --     CONTENT_FILTER_PROPERTY_DEFAULT : constant ContentFilterProperty_T := 
  4756.    --                                         (Content_Filter_Topic_Name => NULL_STRING, 
  4757.    --                                          Related_Topic_Name        => NULL_STRING, 
  4758.    --                                          Filter_Class_Name         => NULL_STRING, 
  4759.    --                                          Filter_Expression         => NULL_STRING, 
  4760.    --                                          Expression_Parameters     => String_Seq.DEFAULT_SEQUENCE); 
  4761.  
  4762.    --  ---------------------------------------------------------- 
  4763.    --                  ENTITY_NAME (eXtension QoS) 
  4764.    --  ---------------------------------------------------------- 
  4765.  
  4766.    ENTITYNAME_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("EntityName"); 
  4767.    --  <defgroup>EntityNameQosGroupDocs</defgroup> 
  4768.    --  <dref>ENTITYNAME_QOS_POLICY_NAME</dref> 
  4769.  
  4770.    type EntityNameQosPolicy is record 
  4771.       Name      : aliased DDS.String; 
  4772.       Role_Name : aliased DDS.String; 
  4773.    end record with Convention => C; 
  4774.    --  <dref>EntityNameQosPolicy</dref> 
  4775.    --  <dref name="Name">EntityNameQosPolicy_name</dref> 
  4776.    --  <dref name="Role_Name">EntityNameQosPolicy_role_name</dref> 
  4777.  
  4778.    ENTITY_NAME_QOS_POLICY_DEFAULT : constant EntityNameQosPolicy := 
  4779.                                       (Name      => (Data => DDS.NULL_STRING.Data), 
  4780.                                        Role_Name => (Data => DDS.NULL_STRING.Data)); 
  4781.    --  <dref internal="true"></dref> 
  4782.  
  4783.    --  ---------------------------------------------------------- 
  4784.    --                  LoggingQosPolicy 
  4785.    --  ---------------------------------------------------------- 
  4786.  
  4787.    LOGGING_QOS_POLICY_NAME        : constant DDS.String := To_DDS_String ("Logging"); 
  4788.    --  <defgroup>LoggingQosGroupDocs</defgroup> 
  4789.    --  <dref>LOGGING_QOS_POLICY_NAME</dref> 
  4790.  
  4791.    --  ---------------------------------------------------------- 
  4792.    --                  PROFILE (eXtension QoS) 
  4793.    --  ---------------------------------------------------------- 
  4794.  
  4795.    PROFILE_QOS_POLICY_NAME  : constant DDS.String := To_DDS_String ("Profile"); 
  4796.    --  <defgroup>ProfileQosGroupDocs</defgroup> 
  4797.    --  <dref>PROFILE_QOS_POLICY_NAME</dref> 
  4798.  
  4799.    type ProfileQosPolicy is record 
  4800.       String_Profile                  : aliased String_Seq.Sequence; 
  4801.       Url_Profile                     : aliased String_Seq.Sequence; 
  4802.       Ignore_User_Profile             : aliased Boolean := False; 
  4803.       Ignore_Environment_Profile      : aliased Boolean := False; 
  4804.       Ignore_Resource_Profile         : aliased Boolean := False; 
  4805.       String_Profile_Dtd              : aliased String_Seq.Sequence; 
  4806.       Ignore_Is_Default_Qos_Attribute :  aliased Boolean := False; 
  4807.    end record with Convention => C; 
  4808.    --  <dref>ProfileQosPolicy</dref> 
  4809.    --  <dref name="String_Profile">ProfileQosPolicy_string_profile</dref> 
  4810.    --  <dref name="Url_Profile">ProfileQosPolicy_url_profile</dref> 
  4811.    --  <dref name="Ignore_User_Profile">ProfileQosPolicy_ignore_user_profile</dref> 
  4812.    --  <dref name="Ignore_Envionrment_Profile">ProfileQosPolicy_ignore_environment_profile</dref> 
  4813.    --  <dref name="Ignore_Resource_Profile">ProfileQosPolicy_ignore_resource_profile</dref> 
  4814.    --  <dref internal="true" name="String_Profile_Dtd">ProfileQosPolicy_string_profile_dtd</dref> 
  4815.  
  4816.  
  4817.    --  ---------------------------------------------------------- 
  4818.    --                  SAMPLEIDENTITY 
  4819.    --  ---------------------------------------------------------- 
  4820.  
  4821.    type SampleIdentity_T is record 
  4822.       Writer_Guid     : aliased Guid_T; 
  4823.       Sequence_Number : aliased DDS.SequenceNumber_T; 
  4824.    end record with 
  4825.      Convention => C; 
  4826.    --  <defgroup>WriteParamsGroupDocs</defgroup> 
  4827.    --  <dref>SampleIdentity_t</dref> 
  4828.    --  <dref name="Writer_Guid">SampleIdentity_t_writer_guid</dref> 
  4829.    --  <dref name="Sequence_Number">SampleIdentity_t_sequence_number</dref> 
  4830.  
  4831.    AUTO_SAMPLE_IDENTITY           : constant SampleIdentity_T := 
  4832.                                       (Writer_Guid     => GUID_AUTO, 
  4833.                                        Sequence_Number => SEQUENCE_NUMBER_UNKNOWN); 
  4834.    --  <dref>SampleIdentity_t_AUTO_SAMPLE_IDENTITY</dref> 
  4835.  
  4836.  
  4837.    UNKNOWN_SAMPLE_IDENTITY        : constant SampleIdentity_T := 
  4838.                                       (Writer_Guid     => GUID_AUTO, 
  4839.                                        Sequence_Number => SEQUENCE_NUMBER_UNKNOWN); 
  4840.    --  <dref>SampleIdentity_t_UNKNOWN_SAMPLE_IDENTITY</dref> 
  4841.  
  4842.    --  ---------------------------------------------------------- 
  4843.    --                  Cookie_t 
  4844.    --  ---------------------------------------------------------- 
  4845.  
  4846.    type Cookie_T is record 
  4847.       Value : aliased Octet_Seq.Sequence; 
  4848.    end record with Convention => C; 
  4849.  
  4850.    --  <defgroup>CookieGroupDocs</defgroup> 
  4851.    --  <dref>Cookie_t</dref> 
  4852.    --  <dref name="Value">Cookie_t_value</dref> 
  4853.  
  4854.    function "=" (Left, Right : Cookie_T) return Standard.Boolean; 
  4855.  
  4856.    COOKIE_DEFAULT : constant Cookie_T := (Value => Octet_Seq.DEFAULT_SEQUENCE); 
  4857.  
  4858.    type Cookie_T_Access is access all Cookie_T; 
  4859.    type Cookie_T_Array is array (Natural range <>) of aliased Cookie_T; 
  4860.  
  4861.    procedure Initialize (Self  : in out Cookie_T); 
  4862.    procedure Finalize (Self  : in out Cookie_T); 
  4863.    procedure Copy (Dst : in out Cookie_T; Src : in Cookie_T); 
  4864.  
  4865.  
  4866.    package Cookie_T_Seq is new DDS_Support.Sequences_Generic 
  4867.      (Cookie_T, 
  4868.       Cookie_T_Access, 
  4869.       DDS.Natural, 
  4870.       1, 
  4871.       Cookie_T_Array); 
  4872.  
  4873.  
  4874.    --  ---------------------------------------------------------- 
  4875.    --                  AckResponseData 
  4876.    --  ---------------------------------------------------------- 
  4877.  
  4878.    type AckResponseData_T is record 
  4879.       Value     : aliased Octet_Seq.Sequence; 
  4880.    end record with 
  4881.      Convention => C; 
  4882.    --  <dref>AckResponseData_t</dref> 
  4883.    --  <dref name="Value">AckResponseData_t_value</dref> 
  4884.  
  4885.    --  ---------------------------------------------------------- 
  4886.    --                  SampleFlag 
  4887.    --  ---------------------------------------------------------- 
  4888.    type SampleFlagBits is new Unsigned_Long; 
  4889.    --  <dref>SampleFlagBits</dref> 
  4890.  
  4891.    REDELIVERED_SAMPLE : constant SampleFlagBits := 0; 
  4892.    --  <dref>SampleFlagBits_REDELIVERED_SAMPLE</dref> 
  4893.  
  4894.    INTERMEDIATE_REPLY_SEQUENCE_SAMPLE : constant SampleFlagBits := 1; 
  4895.    --  <dref>SampleFlagBits_INTERMEDIATE_REPLY_SEQUENCE_SAMPLE</dref> 
  4896.  
  4897.    REPLICATE_SAMPLE : constant SampleFlagBits := 2; 
  4898.    --  <dref>SampleFlagBits_REPLICATE_SAMPLE</dref> 
  4899.  
  4900.    LAST_SHARED_READER_QUEUE_SAMPLE : constant SampleFlagBits := 3; 
  4901.    --  <dref>SampleFlagBits_LAST_SHARED_READER_QUEUE_SAMPLE</dref> 
  4902.  
  4903.    type SampleFlag is new DDS.Long; 
  4904.  
  4905.  
  4906.    --  ---------------------------------------------------------- 
  4907.    --                  WriteParams_t 
  4908.    --  ---------------------------------------------------------- 
  4909.  
  4910.    type WriteParams_T is record 
  4911.       Replace_Auto            : aliased DDS.Boolean  := False; 
  4912.       Identity                : aliased SampleIdentity_T := AUTO_SAMPLE_IDENTITY; 
  4913.       Related_Sample_Identity : aliased SampleIdentity_T := UNKNOWN_SAMPLE_IDENTITY; 
  4914.       Source_Timestamp        : aliased DDS.Time_T := (-1, 0); 
  4915.       Cookie                  : aliased DDS.Cookie_T := COOKIE_DEFAULT; 
  4916.       Handle                  : aliased DDS.InstanceHandle_T := Null_InstanceHandle_T; 
  4917.       Priority                : aliased Long := 0; 
  4918.       Flush_On_Write          : aliased DDS.Boolean := False; 
  4919.       Flag                    : aliased SampleFlag := 0; 
  4920.       Source_Guid             : aliased Guid_T := GUID_AUTO; 
  4921.       Related_Source_Guid     : aliased Guid_T := GUID_UNKNOWN; 
  4922.       Related_Reader_Guid     : aliased Guid_T := GUID_UNKNOWN; 
  4923.       Topic_Query_Guid        : aliased Guid_T := GUID_UNKNOWN; 
  4924.       Related_Epoch           : aliased DDS.SequenceNumber_T := SEQUENCE_NUMBER_ZERO; 
  4925.    end record with 
  4926.      Convention => C; 
  4927.    --  <dref>WriteParams</dref> 
  4928.    --  <dref>Shared_replace_auto</dref> 
  4929.    --  <dref name="Replace_Auto">WriteParams_replace_auto</dref> 
  4930.    --  <dref name="Identity">WriteParams_identity</dref> 
  4931.    --  <dref name="Related_Sample_Identity">WriteParams_related_sample_identity</dref> 
  4932.    --  <dref name="Source_Timestamp">WriteParams_source_timestamp</dref> 
  4933.    --  <dref name="Cookie">WriteParams_cookie</dref> 
  4934.    --  <dref name="Handle">WriteParams_handle</dref> 
  4935.    --  <dref name="Priority">WriteParams_priority</dref> 
  4936.    --  <dref internal="true" name="Flush_On_Write">WriteParams_flush_on_write</dref> 
  4937.    --  <dref name="Source_Guid">WriteParams_source_guid</dref> 
  4938.    --  <dref name="Related_Source_Guid">WriteParams_related_source_guid</dref> 
  4939.    --  <dref name="Related_Reader_Guid">WriteParams_related_reader_guid</dref> 
  4940.    --  <dref internal="true" name="Topic_Query_Guid">WriteParams_topic_query_guid</dref> 
  4941.    --  <dref internal="true" name="Related_Epoch">WriteParams_related_epoch</dref> 
  4942.  
  4943.    WRITEPARAMS_DEFAULT : constant WriteParams_T 
  4944.      := (Replace_Auto            => False, 
  4945.          Identity                => AUTO_SAMPLE_IDENTITY, 
  4946.          Related_Sample_Identity => UNKNOWN_SAMPLE_IDENTITY, 
  4947.          Source_Timestamp        => (Sec => -1, Nanosec =>  0), 
  4948.          Cookie                  => COOKIE_DEFAULT, 
  4949.          Handle                  => Null_InstanceHandle_T, 
  4950.          Priority                => 0, 
  4951.          Flush_On_Write          => False, 
  4952.          Flag                    => 0, 
  4953.          Source_Guid             => GUID_AUTO, 
  4954.          Related_Source_Guid     => GUID_UNKNOWN, 
  4955.          Related_Reader_Guid     => GUID_UNKNOWN, 
  4956.          Topic_Query_Guid        => GUID_UNKNOWN, 
  4957.          Related_Epoch           => SEQUENCE_NUMBER_ZERO 
  4958.         ); 
  4959.    --  <dref>WRITEPARAMS_DEFAULT</dref> 
  4960.  
  4961.    type WriteParams_T_Access is access all WriteParams_T; 
  4962.  
  4963.    procedure Initialize (Self : in out WriteParams_T); 
  4964.    procedure Finalize   (Self : in out WriteParams_T); 
  4965.    procedure Copy       (Dst  : in out WriteParams_T; Src : in WriteParams_T); 
  4966.  
  4967.    function WriteParams_Equals (Self : in WriteParams_T_Access; Other : in WriteParams_T_Access) 
  4968.                                 return DDS.Boolean; 
  4969.    pragma Warnings (Off, WriteParams_Equals); 
  4970.    pragma Import (C, WriteParams_Equals, "DDS_WriteParams_equals"); 
  4971.    --  <dref internal="true">WriteParams_equals</dref> 
  4972.  
  4973.    -- 
  4974.    --  From dds_c_typecode.h 
  4975.    -- 
  4976.  
  4977.    --  !!! Change name back to TypeCode when typecode object removed 
  4978.  
  4979.    type TypeCode is new RTIDDS.Low_Level.ndds_dds_c_dds_c_typecode_h.DDS_TypeCode; 
  4980.  
  4981.    type TypeCode_Access is access all TypeCode; 
  4982.  
  4983.    --  From dds_c_typeobject.h 
  4984.    -- 
  4985.  
  4986.    subtype TypeObject is RTIDDS.Low_Level.ndds_dds_c_dds_c_typeobject_h.DDS_Type; 
  4987.  
  4988.    type TypeObject_Access is access all TypeObject; 
  4989.  
  4990.    -- 
  4991.    --  From dds_c_builtin.h 
  4992.    -- 
  4993.  
  4994.    BUILTIN_TOPIC_MAX_STRING_LENGTH : constant := 256; 
  4995.    --  <dref internal="true"></dref> 
  4996.  
  4997.    type Transport_ClassId_T is new Long; 
  4998.    type TransportInfo_T is record 
  4999.       Class_Id         : aliased Transport_ClassId_T := 0;  -- ndds/dds_c/dds_c_infrastructure.h:3672 
  5000.       Message_Size_Max : aliased Long := 1024;  -- ndds/dds_c/dds_c_infrastructure.h:3676 
  5001.    end record with Convention => C; 
  5002.    --  <dref>TransportInfo_t</dref> 
  5003.    --  <dref name="class_id">TransportInfo_t_class_id</dref> 
  5004.    --  <dref name="message_size_max">TransportInfo_t_message_size_max</dref> 
  5005.  
  5006.    type TransportInfo_Access is access all TransportInfo_T; 
  5007.    type TransportInfo_Array is array (Natural range <>) of aliased TransportInfo_T with Convention => C; 
  5008.  
  5009.  
  5010.    procedure Initialize (This : in out TransportInfo_T); 
  5011.    procedure Finalize (This : in out TransportInfo_T); 
  5012.    procedure Copy (Dst : in out TransportInfo_T; 
  5013.                    Src : in TransportInfo_T); 
  5014.  
  5015.    package TransportInfo_Seq is new DDS_Support.Sequences_Generic 
  5016.      (Element        => DDS.TransportInfo_T, 
  5017.       Element_Access => DDS.TransportInfo_Access, 
  5018.       Index_Type     => Natural, 
  5019.       First_Element  => 1, 
  5020.       Element_Array  => DDS.TransportInfo_Array); 
  5021.    --  <dref>TransportInfoSeq</dref> 
  5022.  
  5023.  
  5024.    --  ---------------------------------------------------------- 
  5025.    --                  ParticipantBuiltinTopicData 
  5026.    --  ---------------------------------------------------------- 
  5027.  
  5028.    PARTICIPANT_TOPIC_NAME : constant DDS.String := To_DDS_String ("DCPSParticipant"); 
  5029.    --  <dref>PARTICIPANT_TOPIC_NAME</dref> 
  5030.  
  5031.    PARTICIPANT_TRUSTED_TOPIC_NAME : constant DDS.String := To_DDS_String ("DCPSParticipantSecure"); 
  5032.    --  <dref internal="true">PARTICIPANT_TRUSTED_TOPIC_NAME</dref> 
  5033.  
  5034.    PARTICIPANT_MESSAGE_TOPIC_NAME : constant DDS.String := To_DDS_String ("DCPSParticipantMessage"); 
  5035.    --  <dref internal="true">PARTICIPANT_MESSAGE_TOPIC_NAME</dref> 
  5036.  
  5037.    PARTICIPANT_MESSAGE_TRUSTED_TOPIC_NAME : constant DDS.String := To_DDS_String ("DCPSParticipantMessageSecure"); 
  5038.    --  <dref internal="true">PARTICIPANT_MESSAGE_TRUSTED_TOPIC_NAME</dref> 
  5039.  
  5040.    PARTICIPANT_PROXY_TOPIC_NAME : constant DDS.String := To_DDS_String ("DDSParticipantProxy"); 
  5041.    --  <dref internal="true">PARTICIPANT_PROXY_TOPIC_NAME</dref> 
  5042.  
  5043.    PARTICIPANT_STATE_TOPIC_NAME : constant DDS.String := To_DDS_String ("DDSParticipantState"); 
  5044.    --  <dref internal="true">PARTICIPANT_STATE_TOPIC_NAME</dref> 
  5045.  
  5046.    ParticipantBuiltinTopicData_TypeName : DDS.String := (Data => RTIDDS.Low_Level.ndds_dds_c_dds_c_builtin_impl_h.DDS_PARTICIPANT_TYPE_NAME); 
  5047.  
  5048.    type ParticipantBuiltinTopicData is record 
  5049.       Key                            : aliased BuiltinTopicKey_T; 
  5050.       User_Data                      : aliased UserDataQosPolicy; 
  5051.       --  --- Extensions: ---------------------------------------------------- 
  5052.       Property                       : aliased PropertyQosPolicy; 
  5053.       Rtps_Protocol_Version          : aliased ProtocolVersion_T; 
  5054.       Rtps_Vendor_Id                 : aliased VendorId_T; 
  5055.       Dds_Builtin_Endpoints          : aliased Unsigned_Long := 0; 
  5056.       Metatraffic_Unicast_Locators   : aliased Locator_Seq.Sequence; 
  5057.       Metatraffic_Multicast_Locators : aliased Locator_Seq.Sequence; 
  5058.       Default_Unicast_Locators       : aliased Locator_Seq.Sequence; 
  5059.       Lease_Duration                 : aliased Duration_T; 
  5060.       Product_Version                : aliased ProductVersion_T; 
  5061.       Plugin_Promiscuity_Kind        : aliased DiscoveryPluginPromiscuityKind := DISCOVERYPLUGIN_DISCOVER_MATCHING_REMOTE_ENTITIES_PROMISCUITY; 
  5062.       Participant_Name               : aliased EntityNameQosPolicy; 
  5063.       Domain_Id                      : aliased DomainId_T := 0;  -- ndds/dds_c/dds_c_builtin.h:105 
  5064.       Transport_Info                 : aliased RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_TransportInfoSeq;  -- ndds/dds_c/dds_c_builtin.h:109 
  5065.       Reachability_Lease_Duration    : aliased Duration_T; 
  5066.       Vendor_Builtin_Endpoints       : aliased Unsigned_Long := 0; 
  5067.       Service                        : aliased ServiceQosPolicy; 
  5068.  
  5069.    end record with 
  5070.      Convention => C; 
  5071.    --  <module name="DDSBuiltInTopicModule" actualName="Built-in Topics">builtin</module> 
  5072.    --  <defgroup>ParticipantBuiltInTopicGroupDocs</defgroup> 
  5073.    --  <dref>ParticipantBuiltinTopicData</dref> 
  5074.    --  <dref name="Key">ParticipantBuiltinTopicData_key</dref> 
  5075.    --  <dref name="User_Data">ParticipantBuiltinTopicData_user_data</dref> 
  5076.    --  <dref name="Property">ParticipantBuiltinTopicData_property</dref> 
  5077.    --  <dref name="Rtps_Protocol_Version">ParticipantBuiltinTopicData_rtps_protocol_version</dref> 
  5078.    --  <dref name="Rtps_Vendor_Id">ParticipantBuiltinTopicData_rtps_vendor_id</dref> 
  5079.    --  <dref name="Dds_Builtin_Endpoints">ParticipantBuiltinTopicData_dds_builtin_endpoints</dref> 
  5080.    --  <dref internal="true" name="metatraffic_unicast_locators">ParticipantBuiltinTopicData_metatrafic_unicast_locators</dref> 
  5081.    --  <dref internal="true" name="metatraffic_multicast_locators">ParticipantBuiltinTopicData_metatrafic_multicast_locators</dref> 
  5082.    --  <dref name="Default_Unicast_Locators">ParticipantBuiltinTopicData_default_unicast_locators</dref> 
  5083.    --  <dref internal="true" name="lease_duration">ParticipantBuiltinTopicData_lease_duration</dref> 
  5084.    --  <dref name="Product_Version">ParticipantBuiltinTopicData_product_version</dref> 
  5085.    --  <dref internal="true" name="Plugin_Promiscuity_Kind">ParticipantBuiltinTopicData_plugin_promiscuity_kind</dref> 
  5086.    --  <dref name="Participant_Name">ParticipantBuiltinTopicData_participant_name</dref> 
  5087.    --  <dref name="domain_id">ParticipantBuiltinTopicData_domain_id</dref> 
  5088.    --  <dref name="transport_info">ParticipantBuiltinTopicData_transport_info</dref> 
  5089.    --  <dref name="Reachability_Lease_Duration">ParticipantBuiltinTopicData_reachability_lease_duration</dref> 
  5090.    --  <dref internal="true" name="Vendor_Builtin_Endpoints">ParticipantBuiltinTopicData_vendor_builtin_endpoints</dref> 
  5091.    --  <dref internal="true" name="Service">ParticipantBuiltinTopicData_service</dref> 
  5092.  
  5093.  
  5094.    type ParticipantBuiltinTopicData_Access is access all ParticipantBuiltinTopicData; 
  5095.  
  5096.    --     ParticipantBuiltinTopicData_INITIALIZER : constant ParticipantBuiltinTopicData := 
  5097.    --                                                 (Key                      => BuiltinTopicKey_T_INITIALIZER, 
  5098.    --                                                  User_Data                => USER_DATA_QOS_POLICY_DEFAULT, 
  5099.    --                                                  --  --- Extensions: ---------------------------------------------------- 
  5100.    --                                                  Property                 => PROPERTY_QOS_POLICY_DEFAULT, 
  5101.    --                                                  Rtps_Protocol_Version    => PROTOCOL_VERSION_DEFAULT, 
  5102.    --                                                  Rtps_Vendor_Id           => VENDOR_ID_DEFAULT, 
  5103.    --                                                  Dds_Builtin_Endpoints    => 0, 
  5104.    --                                                  metatraffic_unicast_locators => LocatorSeq.DEFAULT_SEQUENCE, 
  5105.    --                                                  metatraffic_multicast_locators => LocatorSeq.DEFAULT_SEQUENCE, 
  5106.    --                                                  Default_Unicast_Locators => LocatorSeq.DEFAULT_SEQUENCE, 
  5107.    --                                                  lease_duration           => (16#7FFFFFFF#, 16#7FFFFFFF#), 
  5108.    --                                                  Product_Version          => PRODUCTVERSION_UNKNOWN, 
  5109.    --                                                  Plugin_Promiscuity_Kind  => DISCOVERYPLUGIN_DISCOVER_MATCHING_REMOTE_ENTITIES_PROMISCUITY, 
  5110.    --                                                  Participant_Name         => ENTITY_NAME_QOS_POLICY_DEFAULT, 
  5111.    --                                                  Multicast_Mapping        => TRANSPORT_MULTICAST_MAPPING_QOS_POLICY_DEFAULT, 
  5112.    --                                                  User_Object              => , 
  5113.    --                                                  Protocol                 => , 
  5114.    --                                                  Type_Support             => ); 
  5115.  
  5116.    procedure Print (UserData : ParticipantBuiltinTopicData_Access; 
  5117.                     Desc     : DDS.String; 
  5118.                     Indent   : Long) with 
  5119.      Convention => C, 
  5120.      Import => True, 
  5121.      Link_Name => "DDS_ParticipantBuiltinTopicDataPlugin_print"; 
  5122.  
  5123.    type ParticipantBuiltinTopicData_Array is array (Natural range <>) of aliased ParticipantBuiltinTopicData; 
  5124.    pragma Convention (C, ParticipantBuiltinTopicData_Array); 
  5125.  
  5126.    function ParticipantBuiltinTopicData_Get_TypeCode return Standard.DDS.TypeCode_Access; 
  5127.    pragma Import (C, ParticipantBuiltinTopicData_Get_TypeCode, "DDS_ParticipantBuiltinTopicData_get_typecode"); 
  5128.  
  5129.    procedure Initialize (This : in out ParticipantBuiltinTopicData); 
  5130.    procedure Finalize (This : in out ParticipantBuiltinTopicData); 
  5131.    procedure Copy (Dst : in out ParticipantBuiltinTopicData; 
  5132.                    Src : in ParticipantBuiltinTopicData); 
  5133.  
  5134.    package ParticipantBuiltinTopicData_Seq is new DDS_Support.Sequences_Generic 
  5135.      (Element        => DDS.ParticipantBuiltinTopicData, 
  5136.       Element_Access => DDS.ParticipantBuiltinTopicData_Access, 
  5137.       Index_Type     => Natural, 
  5138.       First_Element  => 1, 
  5139.       Element_Array  => DDS.ParticipantBuiltinTopicData_Array); 
  5140.    --  <dref>ParticipantBuiltinTopicDataSeq</dref> 
  5141.  
  5142.    --  ---------------------------------------------------------- 
  5143.    --                  TopicBuiltinTopicData 
  5144.    --  ---------------------------------------------------------- 
  5145.  
  5146.    TOPIC_TOPIC_NAME : constant DDS.String := To_DDS_String ("DCPSTopic"); 
  5147.    --  <dref>TOPIC_TOPIC_NAME</dref> 
  5148.  
  5149.    TopicBuiltinTopicData_TypeName : DDS.String := (Data => RTIDDS.Low_Level.ndds_dds_c_dds_c_builtin_impl_h.DDS_TOPIC_TYPE_NAME); 
  5150.  
  5151.    type TopicBuiltinTopicData is record 
  5152.       Key                       : aliased BuiltinTopicKey_T; 
  5153.       Name                      : aliased DDS.String; 
  5154.       Type_Name                 : aliased DDS.String; 
  5155.       Durability                : aliased DurabilityQosPolicy; 
  5156.       Durability_Service        : aliased DurabilityServiceQosPolicy; 
  5157.       Deadline                  : aliased DeadlineQosPolicy; 
  5158.       Latency_Budget            : aliased LatencyBudgetQosPolicy; 
  5159.       Liveliness                : aliased LivelinessQosPolicy; 
  5160.       Reliability               : aliased ReliabilityQosPolicy; 
  5161.       Transport_Priority        : aliased TransportPriorityQosPolicy; 
  5162.       Lifespan                  : aliased LifespanQosPolicy; 
  5163.       Destination_Order         : aliased DestinationOrderQosPolicy; 
  5164.       History                   : aliased HistoryQosPolicy; 
  5165.       Resource_Limits           : aliased ResourceLimitsQosPolicy; 
  5166.       Ownership                 : aliased OwnershipQosPolicy; 
  5167.       Topic_Data                : aliased TopicDataQosPolicy; 
  5168.       Representation            : aliased DataRepresentationQosPolicy; 
  5169.    end record with 
  5170.      Convention => C; 
  5171.    --  <defgroup>TopicBuiltInTopicGroupDocs</defgroup> 
  5172.    --  <dref>TopicBuiltinTopicData</dref> 
  5173.    --  <dref>Shared_topic_builtin_topic_data_description</dref> 
  5174.    --  <dref name="Key">TopicBuiltinTopicData_key</dref> 
  5175.    --  <dref name="Name">TopicBuiltinTopicData_name</dref> 
  5176.    --  <dref name="Type_Name">TopicBuiltinTopicData_type_name</dref> 
  5177.    --  <dref name="Durability">TopicBuiltinTopicData_durability</dref> 
  5178.    --  <dref name="Durability_Service">TopicBuiltinTopicData_durability_service</dref> 
  5179.    --  <dref name="Deadline">TopicBuiltinTopicData_deadline</dref> 
  5180.    --  <dref name="Latency_Budget">TopicBuiltinTopicData_latency_budget</dref> 
  5181.    --  <dref name="Liveliness">TopicBuiltinTopicData_liveliness</dref> 
  5182.    --  <dref name="Reliability">TopicBuiltinTopicData_reliability</dref> 
  5183.    --  <dref name="Transport_Priority">TopicBuiltinTopicData_transport_priority</dref> 
  5184.    --  <dref name="Lifespan">TopicBuiltinTopicData_lifespan</dref> 
  5185.    --  <dref name="Destination_Order">TopicBuiltinTopicData_destination_order</dref> 
  5186.    --  <dref name="History">TopicBuiltinTopicData_history</dref> 
  5187.    --  <dref name="Resource_Limits">TopicBuiltinTopicData_resource_limits</dref> 
  5188.    --  <dref name="Ownership">TopicBuiltinTopicData_ownership</dref> 
  5189.    --  <dref name="Topic_Data">TopicBuiltinTopicData_topic_data</dref> 
  5190.    --  <dref name="Representation">TopicBuiltinTopicData_representation</dref> 
  5191.  
  5192.  
  5193.    type TopicBuiltinTopicData_Access is access all TopicBuiltinTopicData; 
  5194.  
  5195.    --     TopicBuiltinTopicData_INITIALIZER : constant TopicBuiltinTopicData := 
  5196.    --                                           (Key                        => BuiltinTopicKey_T_INITIALIZER, 
  5197.    --                                            Name                       => NULL_STRING, 
  5198.    --                                            Type_Name                  => NULL_STRING, 
  5199.    --                                            Durability                 => DURABILITY_QOS_POLICY_DEFAULT, 
  5200.    --                                            Durability_Service         => DURABILITY_SERVICE_QOS_POLICY_DEFAULT, 
  5201.    --                                            Deadline                   => DEADLINE_QOS_POLICY_DEFAULT, 
  5202.    --                                            Latency_Budget             => LATENCY_BUDGET_QOS_POLICY_DEFAULT, 
  5203.    --                                            Liveliness                 => LIVELINESS_QOS_POLICY_DEFAULT, 
  5204.    --                                            Reliability                => RELIABILITY_QOS_POLICY_DEFAULT, 
  5205.    --                                            Transport_Priority         => TRANSPORT_PRIORITY_QOS_POLICY_DEFAULT, 
  5206.    --                                            Lifespan                   => LIFESPAN_QOS_POLICY_DEFAULT, 
  5207.    --                                            Destination_Order          => DESTINATION_ORDER_QOS_POLICY_DEFAULT, 
  5208.    --                                            History                    => HISTORY_QOS_POLICY_DEFAULT, 
  5209.    --                                            Resource_Limits            => RESOURCE_LIMITS_QOS_POLICY_DEFAULT, 
  5210.    --                                            Ownership                  => OWNERSHIP_QOS_POLICY_DEFAULT, 
  5211.    --                                            Topic_Data                 => TOPIC_DATA_QOS_POLICY_DEFAULT, 
  5212.    --                                            Representation             => DataRepresentationQosPolicy_INITIALIZER); 
  5213.  
  5214.    type TopicBuiltinTopicData_Array is array (Natural range <>) of aliased TopicBuiltinTopicData; 
  5215.    pragma Convention (C, TopicBuiltinTopicData_Array); 
  5216.  
  5217.    function TopicBuiltinTopicData_Get_TypeCode return Standard.DDS.TypeCode_Access; 
  5218.    pragma Import (C, TopicBuiltinTopicData_Get_TypeCode, "DDS_TopicBuiltinTopicData_get_typecode"); 
  5219.  
  5220.    procedure Initialize (This : in out TopicBuiltinTopicData); 
  5221.    procedure Finalize (This : in out TopicBuiltinTopicData); 
  5222.    procedure Copy (Dst : in out TopicBuiltinTopicData; 
  5223.                    Src : in TopicBuiltinTopicData); 
  5224.  
  5225.    package TopicBuiltinTopicData_Seq is new DDS_Support.Sequences_Generic 
  5226.      (Element        => DDS.TopicBuiltinTopicData, 
  5227.       Element_Access => DDS.TopicBuiltinTopicData_Access, 
  5228.       Index_Type     => Natural, 
  5229.       First_Element  => 1, 
  5230.       Element_Array  => DDS.TopicBuiltinTopicData_Array); 
  5231.    --  <dref>TopicBuiltinTopicDataSeq</dref> 
  5232.  
  5233.    --  ---------------------------------------------------------- 
  5234.    --                  Service Request Topic Data 
  5235.    --  ---------------------------------------------------------- 
  5236.  
  5237.    --  <defgroup>ServiceRequestBuiltInTopicGroupDocs</defgroup> 
  5238.    type ServiceRequestInternalTopicData is record 
  5239.       Service_Id                : aliased Long := 0; 
  5240.       Instance_Id               : aliased Guid_T; 
  5241.       Request_Body              : aliased RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_OctetSeq; 
  5242.    end record with Convention => C; 
  5243.    --  <dref>ServiceRequest</dref> 
  5244.  
  5245.    type ServiceRequestInternalTopicData_Access is access all ServiceRequestInternalTopicData; 
  5246.  
  5247.    --  ---------------------------------------------------------- 
  5248.    --                  PublicationBuiltinTopicData 
  5249.    --  ---------------------------------------------------------- 
  5250.  
  5251.    PUBLICATION_TOPIC_NAME : constant DDS.String := To_DDS_String ("DCPSPublication"); 
  5252.    --  <dref>PUBLICATION_TOPIC_NAME</dref> 
  5253.  
  5254.    PUBLICATION_TRUSTED_TOPIC_NAME : constant DDS.String := To_DDS_String ("DCPSPublicationSecure"); 
  5255.    --  <dref internal="true">PUBLICATION_TRUSTED_TOPIC_NAME</dref> 
  5256.  
  5257.    PublicationBuiltinTopicData_TypeName : DDS.String := (Data => RTIDDS.Low_Level.ndds_dds_c_dds_c_builtin_impl_h.DDS_PUBLICATION_TYPE_NAME); 
  5258.  
  5259.    type PublicationBuiltinTopicData is record 
  5260.       Key                       : aliased BuiltinTopicKey_T; 
  5261.       Participant_Key           : aliased BuiltinTopicKey_T; 
  5262.       Topic_Name                : aliased DDS.String; 
  5263.       Type_Name                 : aliased DDS.String; 
  5264.       Max_Sample_Serialize_Size : aliased Long := 0; 
  5265.       Durability                : aliased DurabilityQosPolicy; 
  5266.       Durability_Service        : aliased DurabilityServiceQosPolicy; 
  5267.       Deadline                  : aliased DeadlineQosPolicy; 
  5268.       Latency_Budget            : aliased LatencyBudgetQosPolicy; 
  5269.       Liveliness                : aliased LivelinessQosPolicy; 
  5270.       Reliability               : aliased ReliabilityQosPolicy; 
  5271.       Lifespan                  : aliased LifespanQosPolicy; 
  5272.       User_Data                 : aliased UserDataQosPolicy; 
  5273.       Ownership                 : aliased OwnershipQosPolicy; 
  5274.       Ownership_Strength        : aliased OwnershipStrengthQosPolicy; 
  5275.       Destination_Order         : aliased DestinationOrderQosPolicy; 
  5276.       Presentation              : aliased PresentationQosPolicy; 
  5277.       Partition                 : aliased PartitionQosPolicy; 
  5278.       Topic_Data                : aliased TopicDataQosPolicy; 
  5279.       Group_Data                : aliased GroupDataQosPolicy; 
  5280.       Type_Object               : aliased TypeObject_Access; 
  5281.       Representation            : aliased DataRepresentationQosPolicy; 
  5282.       Data_Tags                 : aliased DataTagQosPolicy; 
  5283.       --  extensions 
  5284.       Type_Code                 : aliased TypeCode_Access; 
  5285.       Publisher_Key             : aliased BuiltinTopicKey_T; 
  5286.       Property                  : aliased PropertyQosPolicy; 
  5287.       Unicast_Locators          : aliased Locator_Seq.Sequence; 
  5288.       Virtual_Guid              : aliased Guid_T; 
  5289.       Service                   : aliased ServiceQosPolicy; 
  5290.       Rtps_Protocol_Version     : aliased ProtocolVersion_T; 
  5291.       Rtps_Vendor_Id            : aliased VendorId_T; 
  5292.       Product_Version           : aliased ProductVersion_T; 
  5293.       Locator_Filter            : aliased LocatorFilterQosPolicy; 
  5294.       Disable_Positive_Acks     : aliased Boolean := False; 
  5295.       Send_Queue_Size           : aliased Long := 0; 
  5296.       Is_Incompatible           : aliased Boolean := False; 
  5297.       Publication_Name          : aliased EntityNameQosPolicy; 
  5298.    end record with 
  5299.      Convention => C; 
  5300.    --  <defgroup>PublicationBuiltInTopicGroupDocs</defgroup> 
  5301.    --  <dref>PublicationBuiltinTopicData</dref> 
  5302.    --  <dref>Shared_publication_builtin_topic_data_description</dref> 
  5303.    --  <dref name="Key">PublicationBuiltinTopicData_key</dref> 
  5304.    --  <dref name="Participant_Key">PublicationBuiltinTopicData_participant_key</dref> 
  5305.    --  <dref name="Topic_Name">PublicationBuiltinTopicData_topic_name</dref> 
  5306.    --  <dref name="Type_Name">PublicationBuiltinTopicData_type_name</dref> 
  5307.    --  <dref internal="true" name="Max_Sample_Serialize_Size">PublicationBuiltinTopicData_max_sample_serialized_size</dref> 
  5308.    --  <dref name="Durability">PublicationBuiltinTopicData_durability</dref> 
  5309.    --  <dref name="Durability_Service">PublicationBuiltinTopicData_durability_service</dref> 
  5310.    --  <dref name="Deadline">PublicationBuiltinTopicData_deadline</dref> 
  5311.    --  <dref name="Latency_Budget">PublicationBuiltinTopicData_latency_budget</dref> 
  5312.    --  <dref name="Liveliness">PublicationBuiltinTopicData_liveliness</dref> 
  5313.    --  <dref name="Reliability">PublicationBuiltinTopicData_reliability</dref> 
  5314.    --  <dref name="Lifespan">PublicationBuiltinTopicData_lifespan</dref> 
  5315.    --  <dref name="User_Data">PublicationBuiltinTopicData_user_data</dref> 
  5316.    --  <dref name="Ownership">PublicationBuiltinTopicData_ownership</dref> 
  5317.    --  <dref name="Ownership_Strength">PublicationBuiltinTopicData_ownership_strength</dref> 
  5318.    --  <dref name="Destination_Order">PublicationBuiltinTopicData_destination_order</dref> 
  5319.    --  <dref name="Presentation">PublicationBuiltinTopicData_presentation</dref> 
  5320.    --  <dref name="Partition">PublicationBuiltinTopicData_partition</dref> 
  5321.    --  <dref name="Topic_Data">PublicationBuiltinTopicData_topic_data</dref> 
  5322.    --  <dref name="Group_Data">PublicationBuiltinTopicData_group_data</dref> 
  5323.    --  <dref internal="true" name="Type_Object">PublicationBuiltinTopicData_type_object</dref> 
  5324.    --  <dref name="Representation">PublicationBuiltinTopicData_representation</dref> 
  5325.    --  <dref name="Data_Tags">PublicationBuiltinTopicData_data_tags</dref> 
  5326.    --  <dref name="Type_Code">PublicationBuiltinTopicData_type_code</dref> 
  5327.    --  <dref name="Publisher_Key">PublicationBuiltinTopicData_publisher_key</dref> 
  5328.    --  <dref name="Property">PublicationBuiltinTopicData_property</dref> 
  5329.    --  <dref name="Unicast_Locators">PublicationBuiltinTopicData_unicast_locators</dref> 
  5330.    --  <dref name="Virtual_Guid">PublicationBuiltinTopicData_virtual_guid</dref> 
  5331.    --  <dref name="Service">PublicationBuiltinTopicData_service</dref> 
  5332.    --  <dref name="Rtps_Protocol_Version">PublicationBuiltinTopicData_rtps_protocol_version</dref> 
  5333.    --  <dref name="Rtps_Vendor_Id">PublicationBuiltinTopicData_rtps_vendor_id</dref> 
  5334.    --  <dref name="Product_Version">PublicationBuiltinTopicData_product_version</dref> 
  5335.    --  <dref name="locator_filter">PublicationBuiltinTopicData_locator_filter</dref> 
  5336.    --  <dref name="disable_positive_acks">PublicationBuiltinTopicData_disable_positive_acks</dref> 
  5337.    --  <dref internal="true" name="send_queue_zize">PublicationBuiltinTopicData_send_queue_size</dref> 
  5338.    --  <dref internal="true" name="is_compatible">PublicationBuiltinTopicData_is_compatible</dref> 
  5339.    --  <dref name="publication_name">PublicationBuiltinTopicData_publication_name</dref> 
  5340.  
  5341.  
  5342.    type PublicationBuiltinTopicData_Access is access all PublicationBuiltinTopicData; 
  5343.  
  5344.    --     PublicationBuiltinTopicData_INITIALIZER : constant PublicationBuiltinTopicData := 
  5345.    --                                                 (Key                        => BuiltinTopicKey_T_INITIALIZER, 
  5346.    --                                                  Participant_Key            => BuiltinTopicKey_T_INITIALIZER, 
  5347.    --                                                  Topic_Name                 => NULL_STRING, 
  5348.    --                                                  Type_Name                  => NULL_STRING, 
  5349.    --                                                  Max_Sample_Serialize_Size  => 0, 
  5350.    --                                                  Durability                 => DURABILITY_QOS_POLICY_DEFAULT, 
  5351.    --                                                  Durability_Service         => DURABILITY_SERVICE_QOS_POLICY_DEFAULT, 
  5352.    --                                                  Deadline                   => DEADLINE_QOS_POLICY_DEFAULT, 
  5353.    --                                                  Latency_Budget             => LATENCY_BUDGET_QOS_POLICY_DEFAULT, 
  5354.    --                                                  Liveliness                 => LIVELINESS_QOS_POLICY_DEFAULT, 
  5355.    --                                                  Reliability                => RELIABILITY_QOS_POLICY_DEFAULT, 
  5356.    --                                                  Lifespan                   => LIFESPAN_QOS_POLICY_DEFAULT, 
  5357.    --                                                  User_Data                  => USER_DATA_QOS_POLICY_DEFAULT, 
  5358.    --                                                  Ownership                  => OWNERSHIP_QOS_POLICY_DEFAULT, 
  5359.    --                                                  Ownership_Strength         => OWNERSHIP_STRENGTH_QOS_POLICY_DEFAULT, 
  5360.    --                                                  Destination_Order          => DESTINATION_ORDER_QOS_POLICY_DEFAULT, 
  5361.    --                                                  Presentation               => PRESENTATION_QOS_POLICY_DEFAULT, 
  5362.    --                                                  Partition                  => PARTITION_QOS_POLICY_DEFAULT, 
  5363.    --                                                  Topic_Data                 => TOPIC_DATA_QOS_POLICY_DEFAULT, 
  5364.    --                                                  Group_Data                 => GROUP_DATA_QOS_POLICY_DEFAULT, 
  5365.    --                                                  Representation             => DataRepresentationQosPolicy_INITIALIZER, 
  5366.    --                                                  Data_Tags                  => DataTagQosPolicy_INITIALIZER, 
  5367.    --                                                  Type_Code                  => null, 
  5368.    --                                                  Publisher_Key              => BuiltinTopicKey_T_INITIALIZER, 
  5369.    --                                                  Property                   => PROPERTY_QOS_POLICY_DEFAULT, 
  5370.    --                                                  Unicast_Locators           => LocatorSeq.DEFAULT_SEQUENCE, 
  5371.    --                                                  Virtual_Guid               => (Value => (others => 0)), 
  5372.    --                                                  Service                    => SERVICE_QOS_POLICY_DEFAULT, 
  5373.    --                                                  Rtps_Protocol_Version      => PROTOCOL_VERSION_DEFAULT, 
  5374.    --                                                  Rtps_Vendor_Id             => VENDOR_ID_DEFAULT, 
  5375.    --                                                  Product_Version            => PRODUCTVERSION_UNKNOWN); 
  5376.  
  5377.    type PublicationBuiltinTopicData_Array is array (Natural range <>) of aliased PublicationBuiltinTopicData; 
  5378.    pragma Convention (C, PublicationBuiltinTopicData_Array); 
  5379.  
  5380.    function PublicationBuiltinTopicData_Get_TypeCode return Standard.DDS.TypeCode_Access; 
  5381.    pragma Import (C, PublicationBuiltinTopicData_Get_TypeCode, "DDS_PublicationBuiltinTopicData_get_typecode"); 
  5382.  
  5383.    procedure Initialize (This : in out PublicationBuiltinTopicData); 
  5384.    procedure Finalize (This : in out PublicationBuiltinTopicData); 
  5385.    procedure Copy (Dst : in out PublicationBuiltinTopicData; 
  5386.                    Src : in PublicationBuiltinTopicData); 
  5387.  
  5388.    package PublicationBuiltinTopicData_Seq is new DDS_Support.Sequences_Generic 
  5389.      (Element        => DDS.PublicationBuiltinTopicData, 
  5390.       Element_Access => DDS.PublicationBuiltinTopicData_Access, 
  5391.       Index_Type     => Natural, 
  5392.       First_Element  => 1, 
  5393.       Element_Array  => DDS.PublicationBuiltinTopicData_Array); 
  5394.    --  <dref>PublicationBuiltinTopicDataSeq</dref> 
  5395.  
  5396.    --  ---------------------------------------------------------- 
  5397.    --                  SubscriptionBuiltinTopicData 
  5398.    --  ---------------------------------------------------------- 
  5399.  
  5400.    SUBSCRIPTION_TOPIC_NAME : constant DDS.String := To_DDS_String ("DCPSSubscription"); 
  5401.    --  <dref>SUBSCRIPTION_TOPIC_NAME</dref> 
  5402.  
  5403.    SUBSCRIPTION_TRUSTED_TOPIC_NAME : constant DDS.String := To_DDS_String ("DCPSSubscriptionSecure"); 
  5404.    --  <dref internal="true">SUBSCRIPTION_TRUSTED_TOPIC_NAME</dref> 
  5405.  
  5406.    SubscriptionBuiltinTopicData_TypeName : DDS.String := (Data => RTIDDS.Low_Level.ndds_dds_c_dds_c_builtin_impl_h.DDS_SUBSCRIPTION_TYPE_NAME); 
  5407.  
  5408.    type SubscriptionBuiltinTopicData is record 
  5409.       Key                     : aliased BuiltinTopicKey_T; 
  5410.       Participant_Key         : aliased BuiltinTopicKey_T; 
  5411.       Topic_Name              : aliased DDS.String; 
  5412.       Type_Name               : aliased DDS.String; 
  5413.       Durability              : aliased DurabilityQosPolicy; 
  5414.       Deadline                : aliased DeadlineQosPolicy; 
  5415.       Latency_Budget          : aliased LatencyBudgetQosPolicy; 
  5416.       Liveliness              : aliased LivelinessQosPolicy; 
  5417.       Reliability             : aliased ReliabilityQosPolicy; 
  5418.       Ownership               : aliased OwnershipQosPolicy; 
  5419.       Destination_Order       : aliased DestinationOrderQosPolicy; 
  5420.       User_Data               : aliased UserDataQosPolicy; 
  5421.       Time_Based_Filter       : aliased TimeBasedFilterQosPolicy; 
  5422.       Presentation            : aliased PresentationQosPolicy; 
  5423.       Partition               : aliased PartitionQosPolicy; 
  5424.       Topic_Data              : aliased TopicDataQosPolicy; 
  5425.       Group_Data              : aliased GroupDataQosPolicy; 
  5426.       Type_Consistency        : aliased TypeConsistencyEnforcementQosPolicy; 
  5427.       Type_Object             : aliased TypeObject_Access; 
  5428.       Representation          : aliased DataRepresentationQosPolicy; 
  5429.       Data_Tags               : aliased DataTagQosPolicy; 
  5430.       --  extensions 
  5431.       Type_Code               : aliased TypeCode_Access; 
  5432.       Subscriber_Key          : aliased BuiltinTopicKey_T; 
  5433.       Property                : aliased PropertyQosPolicy; 
  5434.       Unicast_Locators        : aliased Locator_Seq.Sequence; 
  5435.       Multicast_Locators      : aliased Locator_Seq.Sequence; 
  5436.       Content_Filter_Property : aliased ContentFilterProperty_T; 
  5437.       Virtual_Guid            : aliased Guid_T; 
  5438.       Service                 : aliased ServiceQosPolicy; 
  5439.       Rtps_Protocol_Version   : aliased ProtocolVersion_T; 
  5440.       Rtps_Vendor_Id          : aliased VendorId_T; 
  5441.       Product_Version         : aliased ProductVersion_T; 
  5442.       Disable_Positive_Acks   : aliased Boolean := False; 
  5443.       Expects_Inline_Qos      : aliased Boolean := False; 
  5444.       Receive_Queue_Size      : aliased Long := 0; 
  5445.       Is_Incompatible         : aliased Boolean := False; 
  5446.       Subscription_Name       : aliased EntityNameQosPolicy; 
  5447.    end record with 
  5448.      Convention => C; 
  5449.    --  <defgroup>SubscriptionBuiltInTopicGroupDocs</defgroup> 
  5450.    --  <dref>SubscriptionBuiltinTopicData</dref> 
  5451.    --  <dref>Shared_subscription_builtin_topic_data_description</dref> 
  5452.    --  <dref name="Key">SubscriptionBuiltinTopicData_key</dref> 
  5453.    --  <dref name="Participant_Key">SubscriptionBuiltinTopicData_participant_key</dref> 
  5454.    --  <dref name="Topic_Name">SubscriptionBuiltinTopicData_topic_name</dref> 
  5455.    --  <dref name="Type_Name">SubscriptionBuiltinTopicData_type_name</dref> 
  5456.    --  <dref name="Durability">SubscriptionBuiltinTopicData_durability</dref> 
  5457.    --  <dref name="Deadline">SubscriptionBuiltinTopicData_deadline</dref> 
  5458.    --  <dref name="Latency_Budget">SubscriptionBuiltinTopicData_latency_budget</dref> 
  5459.    --  <dref name="Liveliness">SubscriptionBuiltinTopicData_liveliness</dref> 
  5460.    --  <dref name="Reliability">SubscriptionBuiltinTopicData_reliability</dref> 
  5461.    --  <dref name="Ownership">SubscriptionBuiltinTopicData_ownership</dref> 
  5462.    --  <dref name="Destination_Order">SubscriptionBuiltinTopicData_destination_order</dref> 
  5463.    --  <dref name="User_Data">SubscriptionBuiltinTopicData_user_data</dref> 
  5464.    --  <dref name="Time_Based_Filter">SubscriptionBuiltinTopicData_time_based_filter</dref> 
  5465.    --  <dref name="Presentation">SubscriptionBuiltinTopicData_presentation</dref> 
  5466.    --  <dref name="Partition">SubscriptionBuiltinTopicData_partition</dref> 
  5467.    --  <dref name="Topic_Data">SubscriptionBuiltinTopicData_topic_data</dref> 
  5468.    --  <dref name="Group_Data">SubscriptionBuiltinTopicData_group_data</dref> 
  5469.    --  <dref name="Type_Consistency">SubscriptionBuiltinTopicData_type_consistency</dref> 
  5470.    --  <dref internal="true" name="Type_Object">SubscriptionBuiltinTopicData_type</dref> 
  5471.    --  <dref name="Representation">SubscriptionBuiltinTopicData_representation</dref> 
  5472.    --  <dref name="Data_Tags">SubscriptionBuiltinTopicData_data_tags</dref> 
  5473.    --  <dref name="Type_Code">SubscriptionBuiltinTopicData_type_code</dref> 
  5474.    --  <dref name="Subscriber_Key">SubscriptionBuiltinTopicData_subscriber_key</dref> 
  5475.    --  <dref name="Property">SubscriptionBuiltinTopicData_property</dref> 
  5476.    --  <dref name="Unicast_Locators">SubscriptionBuiltinTopicData_unicast_locators</dref> 
  5477.    --  <dref name="Multicast_Locators">SubscriptionBuiltinTopicData_multicast_locators</dref> 
  5478.    --  <dref name="Content_Filter_Property">SubscriptionBuiltinTopicData_content_filter_property</dref> 
  5479.    --  <dref name="Virtual_Guid">SubscriptionBuiltinTopicData_virtual_guid</dref> 
  5480.    --  <dref name="Service">SubscriptionBuiltinTopicData_service</dref> 
  5481.    --  <dref name="Rtps_Protocol_Version">SubscriptionBuiltinTopicData_rtps_protocol_version</dref> 
  5482.    --  <dref name="Rtps_Vendor_Id">SubscriptionBuiltinTopicData_rtps_vendor_id</dref> 
  5483.    --  <dref name="Product_Version">SubscriptionBuiltinTopicData_product_version</dref> 
  5484.    --  <dref name="disable_positive_acks">SubscriptionBuiltinTopicData_disable_positive_acks</dref> 
  5485.    --  <dref internal="true" name="expects_inline_qos">SubscriptionBuiltinTopicData_expects_inline_qos</dref> 
  5486.    --  <dref internal="true" name="receive_queue_size">SubscriptionBuiltinTopicData_receive_queue_size</dref> 
  5487.    --  <dref internal="true" name="is_compatible">SubscriptionBuiltinTopicData_is_compatible</dref> 
  5488.    --  <dref name="subscription_name">SubscriptionBuiltinTopicData_subscription_name</dref> 
  5489.  
  5490.    type SubscriptionBuiltinTopicData_Access is access all SubscriptionBuiltinTopicData; 
  5491.  
  5492.    --     SubscriptionBuiltinTopicData_INITIALIZER : constant SubscriptionBuiltinTopicData := 
  5493.    --                                                  (Key                     => BuiltinTopicKey_T_INITIALIZER, 
  5494.    --                                                   Participant_Key         => BuiltinTopicKey_T_INITIALIZER, 
  5495.    --                                                   Topic_Name              => NULL_STRING, 
  5496.    --                                                   Type_Name               => NULL_STRING, 
  5497.    --                                                   Durability              => DURABILITY_QOS_POLICY_DEFAULT, 
  5498.    --                                                   Deadline                => DEADLINE_QOS_POLICY_DEFAULT, 
  5499.    --                                                   Latency_Budget          => LATENCY_BUDGET_QOS_POLICY_DEFAULT, 
  5500.    --                                                   Liveliness              => LIVELINESS_QOS_POLICY_DEFAULT, 
  5501.    --                                                   Reliability             => RELIABILITY_QOS_POLICY_DEFAULT, 
  5502.    --                                                   Ownership               => OWNERSHIP_QOS_POLICY_DEFAULT, 
  5503.    --                                                   Destination_Order       => DESTINATION_ORDER_QOS_POLICY_DEFAULT, 
  5504.    --                                                   User_Data               => USER_DATA_QOS_POLICY_DEFAULT, 
  5505.    --                                                   Time_Based_Filter       => TIME_BASED_FILTER_QOS_POLICY_DEFAULT, 
  5506.    --                                                   Presentation            => PRESENTATION_QOS_POLICY_DEFAULT, 
  5507.    --                                                   Partition               => PARTITION_QOS_POLICY_DEFAULT, 
  5508.    --                                                   Topic_Data              => TOPIC_DATA_QOS_POLICY_DEFAULT, 
  5509.    --                                                   Group_Data              => GROUP_DATA_QOS_POLICY_DEFAULT, 
  5510.    --                                                   Type_Consistency        => TYPE_CONSISTENCY_ENFORCEMENT_QOS_POLICY_DEFAULT, 
  5511.    --                                                   Representation          => DataRepresentationQosPolicy_INITIALIZER, 
  5512.    --                                                   Data_Tags               => DataTagQosPolicy_INITIALIZER, 
  5513.    --                                                   --  extensions 
  5514.    --                                                   Type_Code               => null, 
  5515.    --                                                   Subscriber_Key          => BuiltinTopicKey_T_INITIALIZER, 
  5516.    --                                                   Property                => PROPERTY_QOS_POLICY_DEFAULT, 
  5517.    --                                                   Unicast_Locators        => LocatorSeq.DEFAULT_SEQUENCE, 
  5518.    --                                                   Multicast_Locators      => LocatorSeq.DEFAULT_SEQUENCE, 
  5519.    --                                                   Content_Filter_Property => CONTENT_FILTER_PROPERTY_DEFAULT, 
  5520.    --                                                   Virtual_Guid            =>  (Value => (others => 0)), 
  5521.    --                                                   Service                 => SERVICE_QOS_POLICY_DEFAULT, 
  5522.    --                                                   Rtps_Protocol_Version   => PROTOCOL_VERSION_DEFAULT, 
  5523.    --                                                   Rtps_Vendor_Id          => VENDOR_ID_DEFAULT, 
  5524.    --                                                   Product_Version         => PRODUCTVERSION_UNKNOWN, 
  5525.    --                                                   disable_positive_acks   => False, 
  5526.    --                                                   expects_inline_qos      => False, 
  5527.    --                                                   receive_queue_size      => 0, 
  5528.    --                                                   is_incompatible         => False); 
  5529.  
  5530.    type SubscriptionBuiltinTopicData_Array is array (Natural range <>) of aliased SubscriptionBuiltinTopicData; 
  5531.    pragma Convention (C, SubscriptionBuiltinTopicData_Array); 
  5532.  
  5533.    function SubscriptionBuiltinTopicData_Get_TypeCode return Standard.DDS.TypeCode_Access; 
  5534.    pragma Import (C, SubscriptionBuiltinTopicData_Get_TypeCode, "DDS_SubscriptionBuiltinTopicData_get_typecode"); 
  5535.  
  5536.    procedure Initialize (This : in out SubscriptionBuiltinTopicData); 
  5537.    procedure Finalize (This : in out SubscriptionBuiltinTopicData); 
  5538.    procedure Copy (Dst : in out SubscriptionBuiltinTopicData; 
  5539.                    Src : in SubscriptionBuiltinTopicData); 
  5540.  
  5541.    package SubscriptionBuiltinTopicData_Seq is new DDS_Support.Sequences_Generic 
  5542.      (Element        => DDS.SubscriptionBuiltinTopicData, 
  5543.       Element_Access => DDS.SubscriptionBuiltinTopicData_Access, 
  5544.       Index_Type     => Natural, 
  5545.       First_Element  => 1, 
  5546.       Element_Array  => DDS.SubscriptionBuiltinTopicData_Array); 
  5547.    --  <dref>SubscriptionBuiltinTopicDataSeq</dref> 
  5548.  
  5549.    -- 
  5550.    --  dds/dds_c_topic.h 
  5551.    -- 
  5552.  
  5553.    type KeyHash_Value_Array is array (0 .. 15) of aliased DDS.Octet; 
  5554.  
  5555.    type KeyHash_T is record 
  5556.       Value  : aliased KeyHash_Value_Array := (others => 0); 
  5557.       Length : aliased DDS.Unsigned_Long := 0; 
  5558.    end record with 
  5559.      Convention => C; 
  5560.  
  5561.    --  ---------------------------------------------------------- 
  5562.    --                  InconsistentTopicStatus 
  5563.    --  ---------------------------------------------------------- 
  5564.  
  5565.    type InconsistentTopicStatus is record 
  5566.       Total_Count        : aliased Long := 0; 
  5567.       Total_Count_Change : aliased Long := 0; 
  5568.    end record with 
  5569.      Convention => C; 
  5570.    --  <dref>InconsistentTopicStatus</dref> 
  5571.    --  <dref name="Total_Count">InconsistentTopicStatus_total_count</dref> 
  5572.    --  <dref name="Total_Count_Change">InconsistentTopicStatus_total_count_change</dref> 
  5573.  
  5574.    InconsistentTopicStatus_INITIALIZER : constant InconsistentTopicStatus := 
  5575.                                            (Total_Count        => 0, 
  5576.                                             Total_Count_Change => 0); 
  5577.  
  5578.    --  ---------------------------------------------------------- 
  5579.    --                  TopicQos 
  5580.    --  ---------------------------------------------------------- 
  5581.  
  5582.    type TopicQos is new Ada.Finalization.Limited_Controlled with record 
  5583.       Topic_Data         : aliased TopicDataQosPolicy; 
  5584.       Durability         : aliased DurabilityQosPolicy; 
  5585.       Durability_Service : aliased DurabilityServiceQosPolicy; 
  5586.       Deadline           : aliased DeadlineQosPolicy; 
  5587.       Latency_Budget     : aliased LatencyBudgetQosPolicy; 
  5588.       Liveliness         : aliased LivelinessQosPolicy; 
  5589.       Reliability        : aliased ReliabilityQosPolicy; 
  5590.       Destination_Order  : aliased DestinationOrderQosPolicy; 
  5591.       History            : aliased HistoryQosPolicy; 
  5592.       Resource_Limits    : aliased ResourceLimitsQosPolicy; 
  5593.       Transport_Priority : aliased TransportPriorityQosPolicy; 
  5594.       Lifespan           : aliased LifespanQosPolicy; 
  5595.       Ownership          : aliased OwnershipQosPolicy; 
  5596.       Representation     : aliased DataRepresentationQosPolicy; 
  5597.       -- --- Extensions: ---------------------------------------------------- 
  5598.       Protocol           : aliased TopicProtocolQosPolicy; 
  5599.    end record with 
  5600.      Convention => C; 
  5601.    --  <dref>TopicQos</dref> 
  5602.    --  <dref name="Topic_Data">TopicQos_topic_data</dref> 
  5603.    --  <dref name="Durability">TopicQos_durability</dref> 
  5604.    --  <dref name="Durability_Service">TopicQos_durability_service</dref> 
  5605.    --  <dref name="Deadline">TopicQos_deadline</dref> 
  5606.    --  <dref name="Latency_Budget">TopicQos_latency_budget</dref> 
  5607.    --  <dref name="Liveliness">TopicQos_liveliness</dref> 
  5608.    --  <dref name="Reliability">TopicQos_reliability</dref> 
  5609.    --  <dref name="Destination_Order">TopicQos_destination_order</dref> 
  5610.    --  <dref name="History">TopicQos_history</dref> 
  5611.    --  <dref name="Resource_Limits">TopicQos_resource_limits</dref> 
  5612.    --  <dref name="Transport_Priority">TopicQos_transport_priority</dref> 
  5613.    --  <dref name="Lifespan">TopicQos_lifespan</dref> 
  5614.    --  <dref name="Ownership">TopicQos_ownership</dref> 
  5615.    --  <dref name="Representation">TopicQos_representation</dref> 
  5616.    --  <dref internal="true" name="Protocol">TopicQos_protocol</dref> 
  5617.  
  5618.    type TopicQos_Access is access TopicQos; 
  5619.  
  5620.    --  <dref>TopicQos_initialize</dref> 
  5621.    procedure Initialize 
  5622.      (Self : in out TopicQos); 
  5623.  
  5624.    --  <dref>TopicQos_finalize</dref> 
  5625.    procedure Finalize 
  5626.      (Self : in out TopicQos); 
  5627.  
  5628.    --  <dref>TopicQos_copy</dref> 
  5629.    procedure Copy 
  5630.      (Target : in out TopicQos; 
  5631.       Source : in TopicQos); 
  5632.  
  5633.    -- 
  5634.    --  dds/dds_c_publication.h 
  5635.    -- 
  5636.  
  5637.    --  ---------------------------------------------------------- 
  5638.    --                  OfferedDeadlineMissedStatus 
  5639.    --  ---------------------------------------------------------- 
  5640.  
  5641.    type OfferedDeadlineMissedStatus is record 
  5642.       Total_Count          : aliased Long := 0; 
  5643.       Total_Count_Change   : aliased Long := 0; 
  5644.       Last_Instance_Handle : aliased InstanceHandle_T := Null_InstanceHandle_T; 
  5645.    end record with 
  5646.      Convention => C; 
  5647.    --  <dref>OfferedDeadlineMissedStatus</dref> 
  5648.    --  <dref name="Total_Count">OfferedDeadlineMissedStatus_total_count</dref> 
  5649.    --  <dref name="Total_Count_Change">OfferedDeadlineMissedStatus_total_count_change</dref> 
  5650.    --  <dref name="Last_Instance_Handle">OfferedDeadlineMissedStatus_last_instance_handle</dref> 
  5651.  
  5652.  
  5653.    OfferedDeadlineMissedStatus_INITIALIZER : constant OfferedDeadlineMissedStatus := 
  5654.                                                (Total_Count          => 0, 
  5655.                                                 Total_Count_Change   => 0, 
  5656.                                                 Last_Instance_Handle => Null_InstanceHandle_T); 
  5657.  
  5658.    --  ---------------------------------------------------------- 
  5659.    --                  LivelinessLostStatus 
  5660.    --  ---------------------------------------------------------- 
  5661.  
  5662.    type LivelinessLostStatus is record 
  5663.       Total_Count        : aliased Long := 0; 
  5664.       Total_Count_Change : aliased Long := 0; 
  5665.    end record with 
  5666.      Convention => C; 
  5667.    --  <dref>LivelinessLostStatus</dref> 
  5668.    --  <dref name="Total_Count">LivelinessLostStatus_total_count</dref> 
  5669.    --  <dref name="Total_Count_Change">LivelinessLostStatus_total_count_change</dref> 
  5670.  
  5671.    LivelinessLostStatus_INITIALIZER : constant LivelinessLostStatus := 
  5672.                                         (Total_Count        => 0, 
  5673.                                          Total_Count_Change => 0); 
  5674.  
  5675.    --  ---------------------------------------------------------- 
  5676.    --                  OfferedIncompatibleQosStatus 
  5677.    --  ---------------------------------------------------------- 
  5678.  
  5679.    type OfferedIncompatibleQosStatus is record 
  5680.       Total_Count        : aliased Long := 0; 
  5681.       Total_Count_Change : aliased Long := 0; 
  5682.       Last_Policy_Id     : aliased QosPolicyId_T := INVALID_QOS_POLICY_ID; 
  5683.       Policies           : aliased QosPolicyCount_Seq.Sequence; 
  5684.    end record with 
  5685.      Convention => C; 
  5686.    --  <dref>OfferedIncompatibleQosStatus</dref> 
  5687.    --  <dref name="Total_Count">OfferedIncompatibleQosStatus_total_count</dref> 
  5688.    --  <dref name="Total_Count_Change">OfferedIncompatibleQosStatus_total_count_change</dref> 
  5689.    --  <dref name="Last_Policy_Id">OfferedIncompatibleQosStatus_last_policy_id</dref> 
  5690.    --  <dref name="Policies">OfferedIncompatibleQosStatus_policies</dref> 
  5691.  
  5692.  
  5693.    type OfferedIncompatibleQosStatus_Access is access all OfferedIncompatibleQosStatus; 
  5694.  
  5695.    --     OfferedIncompatibleQosStatus_INITIALIZER : constant OfferedIncompatibleQosStatus := 
  5696.    --                                                  (Total_Count        => 0, 
  5697.    --                                                   Total_Count_Change => 0, 
  5698.    --                                                   Last_Policy_Id     => INVALID_QOS_POLICY_ID, 
  5699.    --                                                   Policies           => QosPolicyCount_Seq.DEFAULT_SEQUENCE); 
  5700.  
  5701.    --  ---------------------------------------------------------- 
  5702.    --                  PublicationMatchedStatus 
  5703.    --  ---------------------------------------------------------- 
  5704.  
  5705.    type PublicationMatchedStatus is record 
  5706.       Total_Count              : aliased Long := 0; 
  5707.       Total_Count_Change       : aliased Long := 0; 
  5708.       Current_Count            : aliased Long := 0; 
  5709.       Current_Count_Peak       : aliased Long := 0; 
  5710.       Current_Count_Change     : aliased Long := 0; 
  5711.       Last_Subscription_Handle : aliased InstanceHandle_T := Null_InstanceHandle_T; 
  5712.    end record with 
  5713.      Convention => C; 
  5714.    --  <dref>PublicationMatchedStatus</dref> 
  5715.    --  <dref name="Total_Count">PublicationMatchedStatus_total_count</dref> 
  5716.    --  <dref name="Total_Count_Change">PublicationMatchedStatus_total_count_change</dref> 
  5717.    --  <dref name="Current_Count">PublicationMatchedStatus_current_count</dref> 
  5718.    --  <dref name="Current_Count_Peak">PublicationMatchedStatus_current_count_peak</dref> 
  5719.    --  <dref name="Current_Count_Change">PublicationMatchedStatus_current_count_change</dref> 
  5720.    --  <dref name="Last_Subscription_Handle">PublicationMatchedStatus_last_subscription_handle</dref> 
  5721.  
  5722.  
  5723.    PublicationMatchedStatus_INITIALIZER : constant PublicationMatchedStatus := 
  5724.                                             (Total_Count              => 0, 
  5725.                                              Total_Count_Change       => 0, 
  5726.                                              Current_Count            => 0, 
  5727.                                              Current_Count_Peak       => 0, 
  5728.                                              Current_Count_Change     => 0, 
  5729.                                              Last_Subscription_Handle => Null_InstanceHandle_T); 
  5730.  
  5731.    --  ---------------------------------------------------------- 
  5732.    --                  ReliableWriterCacheEventCount 
  5733.    --  ---------------------------------------------------------- 
  5734.  
  5735.    type ReliableWriterCacheEventCount is record 
  5736.       Total_Count        : aliased Long := 0; 
  5737.       Total_Count_Change : aliased Long := 0; 
  5738.    end record; 
  5739.    --  <dref>ReliableWriterCacheEventCount</dref> 
  5740.    --  <dref name="Total_Count">ReliableWriterCacheEventCount_total_count</dref> 
  5741.    --  <dref name="Total_Count_Change">ReliableWriterCacheEventCount_total_count_change</dref> 
  5742.  
  5743.    pragma Convention (C, ReliableWriterCacheEventCount); 
  5744.  
  5745.    ReliableWriterCacheEventCount_INITIALIZER : constant ReliableWriterCacheEventCount := 
  5746.                                                  (Total_Count        => 0, 
  5747.                                                   Total_Count_Change => 0); 
  5748.  
  5749.    --  ---------------------------------------------------------- 
  5750.    --                  ReliableWriterCacheChangedStatus 
  5751.    --  ---------------------------------------------------------- 
  5752.  
  5753.    type ReliableWriterCacheChangedStatus is record 
  5754.       Empty_Reliable_Writer_Cache          : aliased ReliableWriterCacheEventCount; 
  5755.       Full_Reliable_Writer_Cache           : aliased ReliableWriterCacheEventCount; 
  5756.       Low_Watermark_Reliable_Writer_Cache  : aliased ReliableWriterCacheEventCount; 
  5757.       High_Watermark_Reliable_Writer_Cache : aliased ReliableWriterCacheEventCount; 
  5758.       Unacknowledged_Sample_Count          : aliased Long := 0; 
  5759.       Unacknowledged_Sample_Count_Peak     : aliased Long := 0; 
  5760.    end record; 
  5761.    --  <dref>ReliableWriterCacheChangedStatus</dref> 
  5762.    --  <dref name="Empty_Reliable_Writer_Cache">ReliableWriterCacheChangedStatus_empty_reliable_writer_cache</dref> 
  5763.    --  <dref name="Full_Reliable_Writer_Cache">ReliableWriterCacheChangedStatus_full_reliable_writer_cache</dref> 
  5764.    --  <dref name="Low_Watermark_Reliable_Writer_Cache">ReliableWriterCacheChangedStatus_low_watermark_reliable_writer_cache</dref> 
  5765.    --  <dref name="High_Watermark_Reliable_Writer_Cache">ReliableWriterCacheChangedStatus_high_watermark_reliable_writer_cache</dref> 
  5766.    --  <dref name="Unacknowledged_Sample_Count">ReliableWriterCacheChangedStatus_unacknowledged_sample_count</dref> 
  5767.    --  <dref name="Unacknowledged_Sample_Count_peak">ReliableWriterCacheChangedStatus_unacknowledged_sample_count_peak</dref> 
  5768.  
  5769.    pragma Convention (C, ReliableWriterCacheChangedStatus); 
  5770.  
  5771.    ReliableWriterCacheChangedStatus_INITIALIZER : constant ReliableWriterCacheChangedStatus := 
  5772.                                                     (Empty_Reliable_Writer_Cache          => ReliableWriterCacheEventCount_INITIALIZER, 
  5773.                                                      Full_Reliable_Writer_Cache           => ReliableWriterCacheEventCount_INITIALIZER, 
  5774.                                                      Low_Watermark_Reliable_Writer_Cache  => ReliableWriterCacheEventCount_INITIALIZER, 
  5775.                                                      High_Watermark_Reliable_Writer_Cache => ReliableWriterCacheEventCount_INITIALIZER, 
  5776.                                                      Unacknowledged_Sample_Count          => 0, 
  5777.                                                      Unacknowledged_Sample_Count_Peak     => 0); 
  5778.  
  5779.    --  ---------------------------------------------------------- 
  5780.    --                  ReliableReaderActivityChangedStatus 
  5781.    --  ---------------------------------------------------------- 
  5782.  
  5783.    type ReliableReaderActivityChangedStatus is record 
  5784.       Active_Count          : aliased Long := 0; 
  5785.       Inactive_Count        : aliased Long := 0; 
  5786.       Active_Count_Change   : aliased Long := 0; 
  5787.       Inactive_Count_Change : aliased Long := 0; 
  5788.       Last_Instance_Handle  : aliased InstanceHandle_T := Null_InstanceHandle_T; 
  5789.    end record; 
  5790.    --  <dref>ReliableReaderActivityChangedStatus</dref> 
  5791.    --  <dref name="Acitve_Count">ReliableReaderActivityChangedStatus_active_count</dref> 
  5792.    --  <dref name="Inacitve_Count">ReliableReaderActivityChangedStatus_inactive_count</dref> 
  5793.    --  <dref name="Active_Count_change">ReliableReaderActivityChangedStatus_active_count_change</dref> 
  5794.    --  <dref name="Inactive_Count_change">ReliableReaderActivityChangedStatus_inactive_count_change</dref> 
  5795.    --  <dref name="Last_Instance_Handle">ReliableReaderActivityChangedStatus_last_instance_handle</dref> 
  5796.  
  5797.    pragma Convention (C, ReliableReaderActivityChangedStatus); 
  5798.  
  5799.    ReliableReaderActivityChangedStatus_INITIALIZER : constant  ReliableReaderActivityChangedStatus := 
  5800.                                                        (Active_Count          => 0, 
  5801.                                                         Inactive_Count        => 0, 
  5802.                                                         Active_Count_Change   => 0, 
  5803.                                                         Inactive_Count_Change => 0, 
  5804.                                                         Last_Instance_Handle  => Null_InstanceHandle_T); 
  5805.  
  5806.    --  ---------------------------------------------------------- 
  5807.    --                  AcknowledgmentInfo 
  5808.    --  ---------------------------------------------------------- 
  5809.  
  5810.    type AcknowledgmentInfo is record 
  5811.       Subscription_Handle : aliased InstanceHandle_T := Null_InstanceHandle_T; 
  5812.       Sample_Identity     : aliased SampleIdentity_T; 
  5813.       Cookie              : aliased Cookie_T; 
  5814.       Valid_Response_Data : aliased Boolean := False; 
  5815.       Response_Data       : aliased AckResponseData_T; 
  5816.    end record; 
  5817.    --  <dref>AcknowledgmentInfo</dref> 
  5818.    --  <dref name="Subscription_Handle">AcknowledgmentInfo_subscription_handle</dref> 
  5819.    --  <dref name="Sample_Identity">AcknowledgmentInfo_sample_identity</dref> 
  5820.    --  <dref name="Cookie">AcknowledgmentInfo_cookie</dref> 
  5821.    --  <dref name="Valid_Response_Data">AcknowledgmentInfo_valid_response_data</dref> 
  5822.    --  <dref name="Response_Data">AcknowledgmentInfo_response_data</dref> 
  5823.  
  5824.    pragma Convention (C, AcknowledgmentInfo); 
  5825.    type AcknowledgmentInfo_Access is access all AcknowledgmentInfo; 
  5826.  
  5827.    type ServiceRequestAcceptedStatus is new RTIDDS.Low_Level.ndds_dds_c_dds_c_publication_h.DDS_ServiceRequestAcceptedStatus; 
  5828.    type ServiceRequestAcceptedStatus_Access is access all  ServiceRequestAcceptedStatus with Storage_Size => 0; 
  5829.    --  ---------------------------------------------------------- 
  5830.    --                  DataWriterQos 
  5831.    --  ---------------------------------------------------------- 
  5832.  
  5833.    type DataWriterQos is new Ada.Finalization.Limited_Controlled with record 
  5834.    --- 
  5835.       Durability             : aliased DurabilityQosPolicy; 
  5836.       Durability_Service     : aliased DurabilityServiceQosPolicy; 
  5837.       Deadline               : aliased DeadlineQosPolicy; 
  5838.       Latency_Budget         : aliased LatencyBudgetQosPolicy; 
  5839.       Liveliness             : aliased LivelinessQosPolicy; 
  5840.       Reliability            : aliased ReliabilityQosPolicy; 
  5841.       Destination_Order      : aliased DestinationOrderQosPolicy; 
  5842.       History                : aliased HistoryQosPolicy; 
  5843.       Resource_Limits        : aliased ResourceLimitsQosPolicy; 
  5844.       Transport_Priority     : aliased TransportPriorityQosPolicy; 
  5845.       Lifespan               : aliased LifespanQosPolicy; 
  5846.       User_Data              : aliased UserDataQosPolicy; 
  5847.       Ownership              : aliased OwnershipQosPolicy; 
  5848.       Ownership_Strength     : aliased OwnershipStrengthQosPolicy; 
  5849.       Writer_Data_Lifecycle  : aliased WriterDataLifecycleQosPolicy; 
  5850.       Representation         : aliased DataRepresentationQosPolicy; 
  5851.       Data_Tags              : aliased DataTagQosPolicy; 
  5852.       -- --- Extensions: ---------------------------------------------------- 
  5853.       Writer_Resource_Limits : aliased DataWriterResourceLimitsQosPolicy; 
  5854.       Protocol               : aliased DataWriterProtocolQosPolicy; 
  5855.       Transport_Selection    : aliased TransportSelectionQosPolicy; 
  5856.       Unicast                : aliased TransportUnicastQosPolicy; 
  5857.       Encapsulation          : aliased TransportEncapsulationQosPolicy; 
  5858.       Publish_Mode           : aliased PublishModeQosPolicy; 
  5859.       Property               : aliased PropertyQosPolicy; 
  5860.       Service                : aliased ServiceQosPolicy; 
  5861.       Batch                  : aliased BatchQosPolicy; 
  5862.       Multi_Channel          : aliased MultiChannelQosPolicy; 
  5863.       Availability           : aliased AvailabilityQosPolicy; 
  5864.       Publication_Name       : aliased EntityNameQosPolicy; 
  5865.       Topic_Query_Dispatch   : aliased TopicQueryDispatchQosPolicy; 
  5866.       Transfer_Mode          : aliased DataWriterTransferModeQosPolicy; 
  5867.       Type_Support           : aliased TypeSupportQosPolicy; 
  5868.    end record; 
  5869.    --  <dref>DataWriterQos</dref> 
  5870.    --  <dref name="Durability">DataWriterQos_durability</dref> 
  5871.    --  <dref name="Durability_Service">DataWriterQos_durability_service</dref> 
  5872.    --  <dref name="Deadline">DataWriterQos_deadline</dref> 
  5873.    --  <dref name="Latency_Budget">DataWriterQos_latency_budget</dref> 
  5874.    --  <dref name="Liveliness">DataWriterQos_liveliness</dref> 
  5875.    --  <dref name="Reliability">DataWriterQos_reliability</dref> 
  5876.    --  <dref name="Destination_Order">DataWriterQos_destination_order</dref> 
  5877.    --  <dref name="History">DataWriterQos_history</dref> 
  5878.    --  <dref name="Resource_Limits">DataWriterQos_resource_limits</dref> 
  5879.    --  <dref name="Transport_Priority">DataWriterQos_transport_priority</dref> 
  5880.    --  <dref name="Lifespan">DataWriterQos_lifespan</dref> 
  5881.    --  <dref name="User_Data">DataWriterQos_user_data</dref> 
  5882.    --  <dref name="Ownership">DataWriterQos_ownership</dref> 
  5883.    --  <dref name="Ownership_Strength">DataWriterQos_ownership_strength</dref> 
  5884.    --  <dref name="Writer_Data_Lifecycle">DataWriterQos_writer_data_lifecycle</dref> 
  5885.    --  <dref name="Representation">DataWriterQos_representation</dref> 
  5886.    --  <dref name="Data_Tags">DataWriterQos_data_tags</dref> 
  5887.    --  <dref name="Writer_Resource_Limits">DataWriterQos_writer_resource_limits</dref> 
  5888.    --  <dref name="Protocol">DataWriterQos_protocol</dref> 
  5889.    --  <dref name="Transport_Selection">DataWriterQos_transport_selection</dref> 
  5890.    --  <dref name="Unicast">DataWriterQos_unicast</dref> 
  5891.    --  <dref name="Encapsulation">DataWriterQos_encapsulation</dref> 
  5892.    --  <dref name="Publish_Mode">DataWriterQos_publish_mode</dref> 
  5893.    --  <dref name="Property">DataWriterQos_property</dref> 
  5894.    --  <dref name="Service">DataWriterQos_service</dref> 
  5895.    --  <dref name="batch">DataWriterQos_batch</dref> 
  5896.    --  <dref name="multi_channel">DataWriterQos_multi_channel</dref> 
  5897.    --  <dref name="Availability">DataWriterQos_availability</dref> 
  5898.    --  <dref name="publication_name">DataWriterQos_publication_name</dref> 
  5899.    --  <dref name="Topic_Query_Dispatch">DataWriterQos_topic_query_dispatch</dref> 
  5900.    --  <dref name="Transfer_Mode">DataWriterQos_transfer_mode</dref> 
  5901.    --  <dref name="Type_Support">DataWriterQos_type_support</dref> 
  5902.  
  5903.    pragma Convention (C, DataWriterQos); 
  5904.  
  5905.    --  <dref>DataWriterQos_initialize</dref> 
  5906.    procedure Initialize 
  5907.      (Self : in out DataWriterQos); 
  5908.  
  5909.    --  <dref>DataWriterQos_finalize</dref> 
  5910.    procedure Finalize 
  5911.      (Self : in out DataWriterQos); 
  5912.  
  5913.    --  <dref>DataWriterQos_copy</dref> 
  5914.    procedure Copy 
  5915.      (Target : out DataWriterQos; 
  5916.       Source : in DataWriterQos); 
  5917.  
  5918.    --  ---------------------------------------------------------- 
  5919.    --                  PublisherQos 
  5920.    --  ---------------------------------------------------------- 
  5921.  
  5922.    type PublisherQos is  new Ada.Finalization.Limited_Controlled with record 
  5923.       Presentation           : PresentationQosPolicy; 
  5924.       Partition              : PartitionQosPolicy; 
  5925.       Group_Data             : GroupDataQosPolicy; 
  5926.       Entity_Factory         : EntityFactoryQosPolicy; 
  5927.       -- --- Extensions: ---------------------------------------------------- 
  5928.       Asynchronous_Publisher : aliased AsynchronousPublisherQosPolicy; 
  5929.       Exclusive_Area         : aliased ExclusiveAreaQosPolicy; 
  5930.       Protocol               : aliased PublisherProtocolQosPolicy; 
  5931.       Publisher_Name         : aliased EntityNameQosPolicy; 
  5932.    end record; 
  5933.    --  <dref>PublisherQos</dref> 
  5934.    --  <dref name="Presentation">PublisherQos_presentation</dref> 
  5935.    --  <dref name="Partition">PublisherQos_partition</dref> 
  5936.    --  <dref name="Group_Data">PublisherQos_group_data</dref> 
  5937.    --  <dref name="Entity_Factory">PublisherQos_entity_factory</dref> 
  5938.    --  <dref name="Asynchronous_Publisher">PublisherQos_asynchronous_publisher</dref> 
  5939.    --  <dref name="Exclusive_Area">PublisherQos_exclusive_area</dref> 
  5940.    --  <dref internal="True" name="Protocol">PublisherQos_protocol</dref> 
  5941.    --  <dref name="publisher_name">PublisherQos_publisher_name</dref> 
  5942.  
  5943.    pragma Convention (C, PublisherQos); 
  5944.    type PublisherQos_Access is access PublisherQos; 
  5945.  
  5946.    --  <dref>PublisherQos_initialize</dref> 
  5947.    procedure Initialize 
  5948.      (Self : in out PublisherQos); 
  5949.  
  5950.    --  <dref>PublisherQos_finalize</dref> 
  5951.    procedure Finalize 
  5952.      (Self : in out PublisherQos); 
  5953.  
  5954.    --  <dref>PublisherQos_copy</dref> 
  5955.    procedure Copy 
  5956.      (Target : out PublisherQos; 
  5957.       Source : in  PublisherQos); 
  5958.  
  5959.    --  ---------------------------------------------------------- 
  5960.    --                  DataWriterCacheStatus 
  5961.    --  ---------------------------------------------------------- 
  5962.  
  5963.    type DataWriterCacheStatus is record 
  5964.       Sample_Count_Peak : aliased Long_Long; 
  5965.       Sample_Count      : aliased Long_Long; 
  5966.    end record; 
  5967.    --  <dref>DataWriterCacheStatus</dref> 
  5968.    --  <dref name="sample_count_peak">DataWriterCacheStatus_sample_count_peak</dref> 
  5969.    --  <dref name="sample_count">DataWriterCacheStatus_sample_count</dref> 
  5970.  
  5971.    pragma Convention (C, DataWriterCacheStatus); 
  5972.  
  5973.    --  NOTE: filtered_sample_* fields have been removed from the documentation (see CORE-5977) 
  5974.    --  and may eventually be removed from this structure (CORE-5953) 
  5975.    type DataWriterProtocolStatus is record 
  5976.       Pushed_Sample_Count                                  : aliased DDS.Long_Long := 0; 
  5977.       Pushed_Sample_Count_Change                           : aliased DDS.Long_Long := 0; 
  5978.       Pushed_Sample_Bytes                                  : aliased DDS.Long_Long := 0; 
  5979.       Pushed_Sample_Bytes_Change                           : aliased DDS.Long_Long := 0; 
  5980.       Filtered_Sample_Count                                : aliased DDS.Long_Long := 0; 
  5981.       Filtered_Sample_Count_Change                         : aliased DDS.Long_Long := 0; 
  5982.       Filtered_Sample_Bytes                                : aliased DDS.Long_Long := 0; 
  5983.       Filtered_Sample_Bytes_Change                         : aliased DDS.Long_Long := 0; 
  5984.       Sent_Heartbeat_Count                                 : aliased DDS.Long_Long := 0; 
  5985.       Sent_Heartbeat_Count_Change                          : aliased DDS.Long_Long := 0; 
  5986.       Sent_Heartbeat_Bytes                                 : aliased DDS.Long_Long := 0; 
  5987.       Sent_Heartbeat_Bytes_Change                          : aliased DDS.Long_Long := 0; 
  5988.       Pulled_Sample_Count                                  : aliased DDS.Long_Long := 0; 
  5989.       Pulled_Sample_Count_Change                           : aliased DDS.Long_Long := 0; 
  5990.       Pulled_Sample_Bytes                                  : aliased DDS.Long_Long := 0; 
  5991.       Pulled_Sample_Bytes_Change                           : aliased DDS.Long_Long := 0; 
  5992.       Received_Ack_Count                                   : aliased DDS.Long_Long := 0; 
  5993.       Received_Ack_Count_Change                            : aliased DDS.Long_Long := 0; 
  5994.       Received_Ack_Bytes                                   : aliased DDS.Long_Long := 0; 
  5995.       Received_Ack_Bytes_Change                            : aliased DDS.Long_Long := 0; 
  5996.       Received_Nack_Count                                  : aliased DDS.Long_Long := 0; 
  5997.       Received_Nack_Count_Change                           : aliased DDS.Long_Long := 0; 
  5998.       Received_Nack_Bytes                                  : aliased DDS.Long_Long := 0; 
  5999.       Received_Nack_Bytes_Change                           : aliased DDS.Long_Long := 0; 
  6000.       Sent_Gap_Count                                       : aliased DDS.Long_Long := 0; 
  6001.       Sent_Gap_Count_Change                                : aliased DDS.Long_Long := 0; 
  6002.       Sent_Gap_Bytes                                       : aliased DDS.Long_Long := 0; 
  6003.       Sent_Gap_Bytes_Change                                : aliased DDS.Long_Long := 0; 
  6004.       Rejected_Sample_Count                                : aliased DDS.Long_Long := 0; 
  6005.       Rejected_Sample_Count_Change                         : aliased DDS.Long_Long := 0; 
  6006.       Send_Window_Size                                     : aliased DDS.Long := 0; 
  6007.       First_Available_Sample_Sequence_Number               : aliased DDS.SequenceNumber_T; 
  6008.       Last_Available_Sample_Sequence_Number                : aliased DDS.SequenceNumber_T; 
  6009.       First_Unacknowledged_Sample_Sequence_Number          : aliased DDS.SequenceNumber_T; 
  6010.       First_Available_Sample_Virtual_Sequence_Number       : aliased DDS.SequenceNumber_T; 
  6011.       Last_Available_Sample_Virtual_Sequence_Number        : aliased DDS.SequenceNumber_T; 
  6012.       First_Unacknowledged_Sample_Virtual_Sequence_Number  : aliased DDS.SequenceNumber_T; 
  6013.       First_Unacknowledged_Sample_Subscription_Handle      : aliased DDS.InstanceHandle_T; 
  6014.       First_Unelapsed_Keep_Duration_Sample_Sequence_Number : aliased DDS.SequenceNumber_T; 
  6015.    end record; 
  6016.    --  <dref>DataWriterProtocolStatus</dref> 
  6017.    --  <dref name="pushed_sample_count">DataWriterProtocolStatus_pushed_sample_count</dref> 
  6018.    --  <dref name="pushed_sample_count_change">DataWriterProtocolStatus_pushed_sample_count_change</dref> 
  6019.    --  <dref name="pushed_sample_bytes">DataWriterProtocolStatus_pushed_sample_bytes</dref> 
  6020.    --  <dref name="pushed_sample_bytes_change">DataWriterProtocolStatus_pushed_sample_bytes_change</dref> 
  6021.    --  <dref name="sent_heartbeat_count">DataWriterProtocolStatus_sent_heartbeat_count</dref> 
  6022.    --  <dref name="sent_heartbeat_count_change">DataWriterProtocolStatus_sent_heartbeat_count_change</dref> 
  6023.    --  <dref name="sent_heartbeat_bytes">DataWriterProtocolStatus_sent_heartbeat_bytes</dref> 
  6024.    --  <dref name="sent_heartbeat_bytes_change">DataWriterProtocolStatus_sent_heartbeat_bytes_change</dref> 
  6025.    --  <dref name="pulled_sample_count">DataWriterProtocolStatus_pulled_sample_count</dref> 
  6026.    --  <dref name="pulled_sample_count_change">DataWriterProtocolStatus_pulled_sample_count_change</dref> 
  6027.    --  <dref name="pulled_sample_bytes">DataWriterProtocolStatus_pulled_sample_bytes</dref> 
  6028.    --  <dref name="pulled_sample_bytes_change">DataWriterProtocolStatus_pulled_sample_bytes_change</dref> 
  6029.    --  <dref name="received_ack_count">DataWriterProtocolStatus_received_ack_count</dref> 
  6030.    --  <dref name="received_ack_count_change">DataWriterProtocolStatus_received_ack_count_change</dref> 
  6031.    --  <dref name="received_ack_bytes">DataWriterProtocolStatus_received_ack_bytes</dref> 
  6032.    --  <dref name="received_ack_bytes_change">DataWriterProtocolStatus_received_ack_bytes_change</dref> 
  6033.    --  <dref name="received_nack_count">DataWriterProtocolStatus_received_nack_count</dref> 
  6034.    --  <dref name="received_nack_count_change">DataWriterProtocolStatus_received_nack_count_change</dref> 
  6035.    --  <dref name="received_nack_bytes">DataWriterProtocolStatus_received_nack_bytes</dref> 
  6036.    --  <dref name="received_nack_bytes_change">DataWriterProtocolStatus_received_nack_bytes_change</dref> 
  6037.    --  <dref name="sent_gap_count">DataWriterProtocolStatus_sent_gap_count</dref> 
  6038.    --  <dref name="sent_gap_count_change">DataWriterProtocolStatus_sent_gap_count_change</dref> 
  6039.    --  <dref name="sent_gap_bytes">DataWriterProtocolStatus_sent_gap_bytes</dref> 
  6040.    --  <dref name="sent_gap_bytes_change">DataWriterProtocolStatus_sent_gap_bytes_change</dref> 
  6041.    --  <dref name="rejected_sample_count">DataWriterProtocolStatus_rejected_sample_count</dref> 
  6042.    --  <dref name="rejected_sample_count_change">DataWriterProtocolStatus_rejected_sample_count_change</dref> 
  6043.    --  <dref name="send_window_size">DataWriterProtocolStatus_send_window_size</dref> 
  6044.    --  <dref name="first_available_sample_sequence_number">DataWriterProtocolStatus_first_available_sample_sequence_number</dref> 
  6045.    --  <dref name="last_available_sample_sequence_number">DataWriterProtocolStatus_last_available_sample_sequence_number</dref> 
  6046.    --  <dref name="first_unacknowledged_sample_sequence_number">DataWriterProtocolStatus_first_unacknowledged_sample_sequence_number</dref> 
  6047.    --  <dref name="first_available_sample_virtual_sequence_number">DataWriterProtocolStatus_first_available_sample_virtual_sequence_number</dref> 
  6048.    --  <dref name="last_available_sample_virtual_sequence_number">DataWriterProtocolStatus_last_available_sample_virtual_sequence_number</dref> 
  6049.    --  <dref name="first_unacknowledged_sample_virtual_sequence_number">DataWriterProtocolStatus_first_unacknowledged_sample_virtual_sequence_number</dref> 
  6050.    --  <dref name="first_unacknowledged_sample_subscription_handle">DataWriterProtocolStatus_first_unacknowledged_sample_subscription_handle</dref> 
  6051.    --  <dref name="first_unelapsed_keep_duration_sample_sequence_number">DataWriterProtocolStatus_first_unelapsed_keep_duration_sample_sequence_number</dref> 
  6052.  
  6053.    pragma Convention (C_Pass_By_Copy, DataWriterProtocolStatus);  -- ndds/dds_c/dds_c_publication.h:281 
  6054.  
  6055.    -- 
  6056.    --  dds/dds_c_subscription.h 
  6057.    -- 
  6058.  
  6059.    --  ---------------------------------------------------------- 
  6060.    --                  RequestedDeadlineMissedStatus 
  6061.    --  ---------------------------------------------------------- 
  6062.  
  6063.    type RequestedDeadlineMissedStatus is record 
  6064.       Total_Count          : aliased Long := 0; 
  6065.       Total_Count_Change   : aliased Long := 0; 
  6066.       Last_Instance_Handle : aliased InstanceHandle_T := Null_InstanceHandle_T; 
  6067.    end record; 
  6068.    --  <dref>RequestedDeadlineMissedStatus</dref> 
  6069.    --  <dref name="Total_Count">RequestedDeadlineMissedStatus_total_count</dref> 
  6070.    --  <dref name="Total_Count_Change">RequestedDeadlineMissedStatus_total_count_change</dref> 
  6071.    --  <dref name="Last_Instance_Handle">RequestedDeadlineMissedStatus_last_instance_handle</dref> 
  6072.  
  6073.    pragma Convention (C, RequestedDeadlineMissedStatus); 
  6074.  
  6075.    RequestedDeadlineMissedStatus_INITIALIZER : constant RequestedDeadlineMissedStatus := 
  6076.                                                  (Total_Count              => 0, 
  6077.                                                   Total_Count_Change       => 0, 
  6078.                                                   Last_Instance_Handle     => Null_InstanceHandle_T); 
  6079.  
  6080.  
  6081.    --  ---------------------------------------------------------- 
  6082.    --                  LivelinessChangedStatus 
  6083.    --  ---------------------------------------------------------- 
  6084.  
  6085.    type LivelinessChangedStatus is record 
  6086.       Alive_Count             : aliased Long := 0; 
  6087.       Not_Alive_Count         : aliased Long := 0; 
  6088.       Alive_Count_Change      : aliased Long := 0; 
  6089.       Not_Alive_Count_Change  : aliased Long := 0; 
  6090.       Last_Publication_Handle : aliased InstanceHandle_T := Null_InstanceHandle_T; 
  6091.    end record; 
  6092.    --  <dref>LivelinessChangedStatus</dref> 
  6093.    --  <dref name="Alive_Count">LivelinessChangedStatus_alive_count</dref> 
  6094.    --  <dref name="Not_Alive_Count">LivelinessChangedStatus_not_alive_count</dref> 
  6095.    --  <dref name="Alive_Count_Change">LivelinessChangedStatus_alive_count_change</dref> 
  6096.    --  <dref name="Not_Alive_Count_Change">LivelinessChangedStatus_not_alive_count_change</dref> 
  6097.    --  <dref name="Last_Publication_Handle">LivelinessChangedStatus_last_publication_handle</dref> 
  6098.  
  6099.    pragma Convention (C, LivelinessChangedStatus); 
  6100.  
  6101.    LivelinessChangedStatus_INITIALIZER : constant LivelinessChangedStatus := 
  6102.                                            (Alive_Count             => 0, 
  6103.                                             Not_Alive_Count         => 0, 
  6104.                                             Alive_Count_Change      => 0, 
  6105.                                             Not_Alive_Count_Change  => 0, 
  6106.                                             Last_Publication_Handle => Null_InstanceHandle_T); 
  6107.  
  6108.    --  ---------------------------------------------------------- 
  6109.    --                  RequestedIncompatibleQosStatus 
  6110.    --  ---------------------------------------------------------- 
  6111.  
  6112.    type RequestedIncompatibleQosStatus is record 
  6113.       Total_Count        : aliased Long := 0; 
  6114.       Total_Count_Change : aliased Long := 0; 
  6115.       Last_Policy_Id     : aliased QosPolicyId_T := INVALID_QOS_POLICY_ID; 
  6116.       Policies           : aliased QosPolicyCount_Seq.Sequence; 
  6117.    end record; 
  6118.    --  <dref>RequestedIncompatibleQosStatus</dref> 
  6119.    --  <dref name="Total_Count">RequestedIncompatibleQosStatus_total_count</dref> 
  6120.    --  <dref name="Total_Count_Change">RequestedIncompatibleQosStatus_total_count_change</dref> 
  6121.    --  <dref name="Last_Policy_Id">RequestedIncompatibleQosStatus_last_policy_id</dref> 
  6122.    --  <dref name="Policies">RequestedIncompatibleQosStatus_policies</dref> 
  6123.  
  6124.    pragma Convention (C, RequestedIncompatibleQosStatus); 
  6125.    type RequestedIncompatibleQosStatus_Access is access all RequestedIncompatibleQosStatus; 
  6126.  
  6127.    --     RequestedIncompatibleQosStatus_INITIALIZER : constant RequestedIncompatibleQosStatus := 
  6128.    --                                                    (Total_Count        => 0, 
  6129.    --                                                     Total_Count_Change => 0, 
  6130.    --                                                     Last_Policy_Id     => INVALID_QOS_POLICY_ID, 
  6131.    --                                                     Policies           => QosPolicyCount_Seq.DEFAULT_SEQUENCE); 
  6132.  
  6133.    --  ---------------------------------------------------------- 
  6134.    --                  SampleLostStatusKind 
  6135.    --  ---------------------------------------------------------- 
  6136.  
  6137.    type SampleLostStatusKind is new Unsigned_Long; 
  6138.    --  <dref>SampleLostStatusKind</dref> 
  6139.  
  6140.    NOT_LOST : constant SampleLostStatusKind := 0; 
  6141.    --  <dref>SampleLostStatusKind_NOT_LOST</dref> 
  6142.  
  6143.    LOST_BY_WRITER : constant SampleLostStatusKind := 1; 
  6144.    --  <dref>SampleLostStatusKind_LOST_BY_WRITER</dref> 
  6145.  
  6146.    LOST_BY_INSTANCES_LIMIT : constant SampleLostStatusKind := 2; 
  6147.    --  <dref>SampleLostStatusKind_LOST_BY_INSTANCES_LIMIT</dref> 
  6148.  
  6149.    LOST_BY_REMOTE_WRITERS_PER_INSTANCE_LIMIT : constant SampleLostStatusKind := 3; 
  6150.    --  <dref>SampleLostStatusKind_LOST_BY_REMOTE_WRITERS_PER_INSTANCE_LIMIT</dref> 
  6151.  
  6152.    LOST_BY_INCOMPLETE_COHERENT_SET : constant SampleLostStatusKind := 4; 
  6153.    --  <dref>SampleLostStatusKind_LOST_BY_LARGE_COHERENT_SET</dref> 
  6154.  
  6155.    LOST_BY_LARGE_COHERENT_SET : constant SampleLostStatusKind := 5; 
  6156.    --  <dref>SampleLostStatusKind_LOST_BY_LARGE_COHERENT_SET</dref> 
  6157.  
  6158.    LOST_BY_SAMPLES_PER_REMOTE_WRITER_LIMIT : constant SampleLostStatusKind := 6; 
  6159.    --  <dref>SampleLostStatusKind_LOST_BY_SAMPLES_PER_REMOTE_WRITER_LIMIT</dref> 
  6160.  
  6161.    LOST_BY_VIRTUAL_WRITERS_LIMIT : constant SampleLostStatusKind := 7; 
  6162.    --  <dref name="LOST_BY_VIRTUAL_WRITERS_LIMIT">SampleLostStatusKind_LOST_BY_VIRTUAL_WRITERS_LIMIT</dref> 
  6163.  
  6164.    LOST_BY_REMOTE_WRITERS_PER_SAMPLE_LIMIT : constant SampleLostStatusKind := 8; 
  6165.    --  <dref name="LOST_BY_REMOTE_WRITERS_PER_SAMPLE_LIMIT">SampleLostStatusKind_LOST_BY_REMOTE_WRITERS_PER_SAMPLE_LIMIT</dref> 
  6166.  
  6167.    LOST_BY_AVAILABILITY_WAITING_TIME : constant SampleLostStatusKind := 9; 
  6168.    --  <dref name="LOST_BY_AVAILABILITY_WAITING_TIME">SampleLostStatusKind_LOST_BY_AVAILABILITY_WAITING_TIME</dref> 
  6169.  
  6170.    LOST_BY_REMOTE_WRITER_SAMPLES_PER_VIRTUAL_QUEUE_LIMIT : constant SampleLostStatusKind := 10; 
  6171.    --  <dref name="LOST_BY_REMOTE_WRITER_SAMPLES_PER_VIRTUAL_QUEUE_LIMIT">SampleLostStatusKind_LOST_BY_REMOTE_WRITER_SAMPLES_PER_VIRTUAL_QUEUE_LIMIT</dref> 
  6172.  
  6173.    LOST_BY_OUT_OF_MEMORY : constant SampleLostStatusKind := 11; 
  6174.    --  <dref name="LOST_BY_OUT_OF_MEMORY">SampleLostStatusKind_LOST_BY_OUT_OF_MEMORY</dref> 
  6175.  
  6176.    LOST_BY_UNKNOWN_INSTANCE : constant SampleLostStatusKind := 12; 
  6177.    --  <dref name="LOST_BY_UNKNOWN_INSTANCE">SampleLostStatusKind_LOST_BY_UNKNOWN_INSTANCE</dref> 
  6178.  
  6179.    --  type SampleLostStatusKind_Access is access constant SampleLostStatusKind; 
  6180.  
  6181.    --  ---------------------------------------------------------- 
  6182.    --                  SampleLostStatus 
  6183.    --  ---------------------------------------------------------- 
  6184.  
  6185.    type SampleLostStatus is record 
  6186.       Total_Count        : aliased Long := 0; 
  6187.       Total_Count_Change : aliased Long := 0; 
  6188.       Last_Reason        : aliased SampleLostStatusKind := NOT_LOST; 
  6189.    end record; 
  6190.    --  <dref>SampleLostStatus</dref> 
  6191.    --  <dref name="Total_Count">SampleLostStatus_total_count</dref> 
  6192.    --  <dref name="Total_Count_Change">SampleLostStatus_total_count_change</dref> 
  6193.    --  <dref name="Last_Reason">SampleLostStatus_last_reason</dref> 
  6194.  
  6195.    pragma Convention (C, SampleLostStatus); 
  6196.  
  6197.    SampleLostStatus_INITIALIZER : constant SampleLostStatus := 
  6198.                                     (Total_Count        => 0, 
  6199.                                      Total_Count_Change => 0, 
  6200.                                      Last_Reason        => NOT_LOST); 
  6201.  
  6202.    --  ---------------------------------------------------------- 
  6203.    --                  SampleRejectedStatus 
  6204.    --  ---------------------------------------------------------- 
  6205.  
  6206.    type SampleRejectedStatusKind is 
  6207.      (NOT_REJECTED, 
  6208.       REJECTED_BY_INSTANCES_LIMIT, 
  6209.       REJECTED_BY_SAMPLES_LIMIT, 
  6210.       REJECTED_BY_SAMPLES_PER_INSTANCE_LIMIT, 
  6211.       REJECTED_BY_REMOTE_WRITERS_LIMIT, 
  6212.       REJECTED_BY_REMOTE_WRITERS_PER_INSTANCE_LIMIT, 
  6213.       REJECTED_BY_SAMPLES_PER_REMOTE_WRITER_LIMIT, 
  6214.       REJECTED_BY_VIRTUAL_WRITERS_LIMIT, 
  6215.       REJECTED_BY_REMOTE_WRITERS_PER_SAMPLE_LIMIT, 
  6216.       REJECTED_BY_REMOTE_WRITER_SAMPLES_PER_VIRTUAL_QUEUE_LIMIT, 
  6217.       REJECTED_BY_UNKNOWN_INSTANCE); 
  6218.    --  <dref>SampleRejectedStatusKind</dref> 
  6219.    --  <dref name="NOT_REJECTED">SampleRejectedStatusKind_NOT_REJECTED</dref> 
  6220.    --  <dref name="REJECTED_BY_INSTANCES_LIMIT">SampleRejectedStatusKind_REJECTED_BY_INSTANCES_LIMIT</dref> 
  6221.    --  <dref name="REJECTED_BY_SAMPLES_LIMIT">SampleRejectedStatusKind_REJECTED_BY_SAMPLES_LIMIT</dref> 
  6222.    --  <dref name="REJECTED_BY_SAMPLES_PER_INSTANCE_LIMIT">SampleRejectedStatusKind_REJECTED_BY_SAMPLES_PER_INSTANCE_LIMIT</dref> 
  6223.    --  <dref name="REJECTED_BY_REMOTE_WRITERS_LIMIT">SampleRejectedStatusKind_REJECTED_BY_REMOTE_WRITERS_LIMIT</dref> 
  6224.    --  <dref name="REJECTED_BY_REMOTE_WRITERS_PER_INSTANCE_LIMIT">SampleRejectedStatusKind_REJECTED_BY_REMOTE_WRITERS_PER_INSTANCE_LIMIT</dref> 
  6225.    --  <dref name="REJECTED_BY_SAMPLES_PER_REMOTE_WRITER_LIMIT">SampleRejectedStatusKind_REJECTED_BY_SAMPLES_PER_REMOTE_WRITER_LIMIT</dref> 
  6226.    --  <dref name="REJECTED_BY_VIRTUAL_WRITERS_LIMIT">SampleRejectedStatusKind_REJECTED_BY_VIRTUAL_WRITERS_LIMIT</dref> 
  6227.    --  <dref name="REJECTED_BY_REMOTE_WRITERS_PER_SAMPLE_LIMIT">SampleRejectedStatusKind_REJECTED_BY_REMOTE_WRITERS_PER_SAMPLE_LIMIT</dref> 
  6228.    --  <dref name="REJECTED_BY_REMOTE_WRITER_SAMPLES_PER_VIRTUAL_QUEUE_LIMIT>SampleRejectedStatusKind_REJECTED_BY_REMOTE_WRITER_SAMPLES_PER_VIRTUAL_QUEUE_LIMIT</dref> 
  6229.    --  <dref name="REJECTED_BY_UNKNOWN_INSTANCE>SampleRejectedStatusKind_REJECTED_BY_UNKNOWN_INSTANCE</dref> 
  6230.  
  6231.  
  6232.    pragma Convention (C, SampleRejectedStatusKind); 
  6233.  
  6234.    for SampleRejectedStatusKind use 
  6235.      (NOT_REJECTED                                              => 0, 
  6236.       REJECTED_BY_INSTANCES_LIMIT                               => 1, 
  6237.       REJECTED_BY_SAMPLES_LIMIT                                 => 2, 
  6238.       REJECTED_BY_SAMPLES_PER_INSTANCE_LIMIT                    => 3, 
  6239.       REJECTED_BY_REMOTE_WRITERS_LIMIT                          => 4, 
  6240.       REJECTED_BY_REMOTE_WRITERS_PER_INSTANCE_LIMIT             => 5, 
  6241.       REJECTED_BY_SAMPLES_PER_REMOTE_WRITER_LIMIT               => 6, 
  6242.       REJECTED_BY_VIRTUAL_WRITERS_LIMIT                         => 7, 
  6243.       REJECTED_BY_REMOTE_WRITERS_PER_SAMPLE_LIMIT               => 8, 
  6244.       REJECTED_BY_REMOTE_WRITER_SAMPLES_PER_VIRTUAL_QUEUE_LIMIT => 9, 
  6245.       REJECTED_BY_UNKNOWN_INSTANCE                              => 10); 
  6246.  
  6247.    type SampleRejectedStatus is record 
  6248.       Total_Count          : aliased Long := 0; 
  6249.       Total_Count_Change   : aliased Long := 0; 
  6250.       Last_Reason          : aliased SampleRejectedStatusKind := NOT_REJECTED; 
  6251.       Last_Instance_Handle : aliased InstanceHandle_T := Null_InstanceHandle_T; 
  6252.    end record; 
  6253.    --  <dref>SampleRejectedStatus</dref> 
  6254.    --  <dref name="Total_Count">SampleRejectedStatus_total_count</dref> 
  6255.    --  <dref name="Total_Count_Change">SampleRejectedStatus_total_count_change</dref> 
  6256.    --  <dref name="Last_Reason">SampleRejectedStatus_last_reason</dref> 
  6257.    --  <dref name="Last_Instance_Handle">SampleRejectedStatus_last_instance_handle</dref> 
  6258.  
  6259.    SampleRejectedStatus_INITIALIZER : constant SampleRejectedStatus := 
  6260.                                         (Total_Count          => 0, 
  6261.                                          Total_Count_Change   => 0, 
  6262.                                          Last_Reason          => NOT_REJECTED, 
  6263.                                          Last_Instance_Handle => Null_InstanceHandle_T); 
  6264.  
  6265.    --  ---------------------------------------------------------- 
  6266.    --                  SubscriptionMatchedStatus 
  6267.    --  ---------------------------------------------------------- 
  6268.  
  6269.    type SubscriptionMatchedStatus is limited record 
  6270.       Total_Count             : aliased Long := 0; 
  6271.       Total_Count_Change      : aliased Long := 0; 
  6272.       Current_Count           : aliased Long := 0; 
  6273.       Current_Count_Peak      : aliased Long := 0; 
  6274.       Current_Count_Change    : aliased Long := 0; 
  6275.       Last_Publication_Handle : aliased InstanceHandle_T := Null_InstanceHandle_T; 
  6276.    end record; 
  6277.    --  <dref>SubscriptionMatchedStatus</dref> 
  6278.    --  <dref name="Total_Count">SubscriptionMatchedStatus_total_count</dref> 
  6279.    --  <dref name="Total_Count_Change">SubscriptionMatchedStatus_total_count_change</dref> 
  6280.    --  <dref name="Current_Count">SubscriptionMatchedStatus_current_count</dref> 
  6281.    --  <dref name="Current_Count_Peak">SubscriptionMatchedStatus_current_count_peak</dref> 
  6282.    --  <dref name="Current_Count_Change">SubscriptionMatchedStatus_current_count_change</dref> 
  6283.    --  <dref name="Last_Publication_Handle">SubscriptionMatchedStatus_last_publication_handle</dref> 
  6284.  
  6285.    pragma Convention (C, SubscriptionMatchedStatus); 
  6286.  
  6287.    SubscriptionMatchedStatus_INITIALIZER : constant SubscriptionMatchedStatus := 
  6288.                                              (Total_Count              => 0, 
  6289.                                               Total_Count_Change       => 0, 
  6290.                                               Current_Count            => 0, 
  6291.                                               Current_Count_Peak       => 0, 
  6292.                                               Current_Count_Change     => 0, 
  6293.                                               Last_Publication_Handle  => Null_InstanceHandle_T); 
  6294.  
  6295.    --  ---------------------------------------------------------- 
  6296.    --                  DataReaderCacheStatus 
  6297.    --  ---------------------------------------------------------- 
  6298.  
  6299.    type DataReaderCacheStatus is record 
  6300.       Sample_Count_Peak   : aliased Long_Long := 0; 
  6301.       Sample_Count        : aliased Long_Long := 0; 
  6302.       Instance_Count      : aliased Long_Long := 0; 
  6303.       Instance_Count_Peak : aliased Long_Long := 0; 
  6304.    end record; 
  6305.    --  <dref>DataReaderCacheStatus</dref> 
  6306.    --  <dref name="Sample_Count_Peak">DataReaderCacheStatus_sample_count_peak</dref> 
  6307.    --  <dref name="Sample_Count">DataReaderCacheStatus_sample_count</dref> 
  6308.    --  <dref internal="true" name="Instance_Count">DataReaderCacheStatus_instance_count</dref> 
  6309.    --  <dref internal="true" name="Instance_Count_Peak">DataReaderCacheStatus_instance_count_peak</dref> 
  6310.  
  6311.    pragma Convention (C, DataReaderCacheStatus); 
  6312.  
  6313.    DataReaderCacheStatus_INITIALIZER : constant DataReaderCacheStatus := 
  6314.                                          (Sample_Count_Peak   => 0, 
  6315.                                           Sample_Count        => 0, 
  6316.                                           Instance_Count      => 0, 
  6317.                                           Instance_Count_Peak => 0); 
  6318.  
  6319.    --  ---------------------------------------------------------- 
  6320.    --                  DataReaderProtocolStatus 
  6321.    --  ---------------------------------------------------------- 
  6322.  
  6323.    type DataReaderProtocolStatus is record 
  6324.       Received_Sample_Count                  : aliased Long_Long := 0; 
  6325.       Received_Sample_Count_Change           : aliased Long_Long := 0; 
  6326.       Received_Sample_Bytes                  : aliased Long_Long := 0; 
  6327.       Received_Sample_Bytes_Change           : aliased Long_Long := 0; 
  6328.       Duplicate_Sample_Count                 : aliased Long_Long := 0; 
  6329.       Duplicate_Sample_Count_Change          : aliased Long_Long := 0; 
  6330.       Duplicate_Sample_Bytes                 : aliased Long_Long := 0; 
  6331.       Duplicate_Sample_Bytes_Change          : aliased Long_Long := 0; 
  6332.       Filtered_Sample_Count                  : aliased Long_Long := 0; 
  6333.       Filtered_Sample_Count_Change           : aliased Long_Long := 0; 
  6334.       Filtered_Sample_Bytes                  : aliased Long_Long := 0; 
  6335.       Filtered_Sample_Bytes_Change           : aliased Long_Long := 0; 
  6336.       Received_Heartbeat_Count               : aliased Long_Long := 0; 
  6337.       Received_Heartbeat_Count_Change        : aliased Long_Long := 0; 
  6338.       Received_Heartbeat_Bytes               : aliased Long_Long := 0; 
  6339.       Received_Heartbeat_Bytes_Change        : aliased Long_Long := 0; 
  6340.       Sent_Ack_Count                         : aliased Long_Long := 0; 
  6341.       Sent_Ack_Count_Change                  : aliased Long_Long := 0; 
  6342.       Sent_Ack_Bytes                         : aliased Long_Long := 0; 
  6343.       Sent_Ack_Bytes_Change                  : aliased Long_Long := 0; 
  6344.       Sent_Nack_Count                        : aliased Long_Long := 0; 
  6345.       Sent_Nack_Count_Change                 : aliased Long_Long := 0; 
  6346.       Sent_Nack_Bytes                        : aliased Long_Long := 0; 
  6347.       Sent_Nack_Bytes_Change                 : aliased Long_Long := 0; 
  6348.       Received_Gap_Count                     : aliased Long_Long := 0; 
  6349.       Received_Gap_Count_Change              : aliased Long_Long := 0; 
  6350.       Received_Gap_Bytes                     : aliased Long_Long := 0; 
  6351.       Received_Gap_Bytes_Change              : aliased Long_Long := 0; 
  6352.       Rejected_Sample_Count                  : aliased Long_Long := 0; 
  6353.       Rejected_Sample_Count_Change           : aliased Long_Long := 0; 
  6354.       First_Available_Sample_Sequence_Number : aliased SequenceNumber_T; 
  6355.       Last_Available_Sample_Sequence_Number  : aliased SequenceNumber_T; 
  6356.       Last_Committed_Sample_Sequence_Number  : aliased SequenceNumber_T; 
  6357.       Uncommitted_Sample_Count               : aliased Long := 0; 
  6358.    end record; 
  6359.    --  <dref>DataReaderProtocolStatus</dref> 
  6360.    --  <dref name="received_sample_count">DataReaderProtocolStatus_received_sample_count</dref> 
  6361.    --  <dref name="received_sample_count_change">DataReaderProtocolStatus_received_sample_count_change</dref> 
  6362.    --  <dref name="received_sample_bytes">DataReaderProtocolStatus_received_sample_bytes</dref> 
  6363.    --  <dref name="received_sample_bytes_change">DataReaderProtocolStatus_received_sample_bytes_change</dref> 
  6364.    --  <dref name="duplicate_sample_count">DataReaderProtocolStatus_duplicate_sample_count</dref> 
  6365.    --  <dref name="duplicate_sample_count_change">DataReaderProtocolStatus_duplicate_sample_count_change</dref> 
  6366.    --  <dref name="duplicate_sample_bytes">DataReaderProtocolStatus_duplicate_sample_bytes</dref> 
  6367.    --  <dref name="duplicate_sample_bytes_change">DataReaderProtocolStatus_duplicate_sample_bytes_change</dref> 
  6368.    --  <dref name="filtered_sample_count">DataReaderProtocolStatus_filtered_sample_count</dref> 
  6369.    --  <dref name="filtered_sample_count_change">DataReaderProtocolStatus_filtered_sample_count_change</dref> 
  6370.    --  <dref name="filtered_sample_bytes">DataReaderProtocolStatus_filtered_sample_bytes</dref> 
  6371.    --  <dref name="filtered_sample_bytes_change">DataReaderProtocolStatus_filtered_sample_bytes_change</dref> 
  6372.    --  <dref name="received_heartbeat_count">DataReaderProtocolStatus_received_heartbeat_count</dref> 
  6373.    --  <dref name="received_heartbeat_count_change">DataReaderProtocolStatus_received_heartbeat_count_change</dref> 
  6374.    --  <dref name="received_heartbeat_bytes">DataReaderProtocolStatus_received_heartbeat_bytes</dref> 
  6375.    --  <dref name="received_heartbeat_bytes_change">DataReaderProtocolStatus_received_heartbeat_bytes_change</dref> 
  6376.    --  <dref name="sent_ack_count">DataReaderProtocolStatus_sent_ack_count</dref> 
  6377.    --  <dref name="sent_ack_count_change">DataReaderProtocolStatus_sent_ack_count_change</dref> 
  6378.    --  <dref name="sent_ack_bytes">DataReaderProtocolStatus_sent_ack_bytes</dref> 
  6379.    --  <dref name="sent_ack_bytes_change">DataReaderProtocolStatus_sent_ack_bytes_change</dref> 
  6380.    --  <dref name="sent_nack_count">DataReaderProtocolStatus_sent_nack_count</dref> 
  6381.    --  <dref name="sent_nack_count_change">DataReaderProtocolStatus_sent_nack_count_change</dref> 
  6382.    --  <dref name="sent_nack_bytes">DataReaderProtocolStatus_sent_nack_bytes</dref> 
  6383.    --  <dref name="sent_nack_bytes_change">DataReaderProtocolStatus_sent_nack_bytes_change</dref> 
  6384.    --  <dref name="received_gap_count">DataReaderProtocolStatus_received_gap_count</dref> 
  6385.    --  <dref name="received_gap_count_change">DataReaderProtocolStatus_received_gap_count_change</dref> 
  6386.    --  <dref name="received_gap_bytes">DataReaderProtocolStatus_received_gap_bytes</dref> 
  6387.    --  <dref name="received_gap_bytes_change">DataReaderProtocolStatus_received_gap_bytes_change</dref> 
  6388.    --  <dref name="rejected_sample_count">DataReaderProtocolStatus_rejected_sample_count</dref> 
  6389.    --  <dref name="rejected_sample_count_change">DataReaderProtocolStatus_rejected_sample_count_change</dref> 
  6390.    --  <dref name="first_available_sample_sequence_number">DataReaderProtocolStatus_first_available_sample_sequence_number</dref> 
  6391.    --  <dref name="last_available_sample_sequence_number">DataReaderProtocolStatus_last_available_sample_sequence_number</dref> 
  6392.    --  <dref name="last_committed_sample_sequence_number">DataReaderProtocolStatus_last_committed_sample_sequence_number</dref> 
  6393.    --  <dref name="uncommitted_sample_count">DataReaderProtocolStatus_uncommitted_sample_count</dref> 
  6394.  
  6395.    pragma Convention (C_Pass_By_Copy, DataReaderProtocolStatus); 
  6396.  
  6397.    DataReaderProtocolStatus_INITIALIZER : constant DataReaderProtocolStatus := 
  6398.                                             (Received_Sample_Count                  => 0, 
  6399.                                              Received_Sample_Count_Change           => 0, 
  6400.                                              Received_Sample_Bytes                  => 0, 
  6401.                                              Received_Sample_Bytes_Change           => 0, 
  6402.                                              Duplicate_Sample_Count                 => 0, 
  6403.                                              Duplicate_Sample_Count_Change          => 0, 
  6404.                                              Duplicate_Sample_Bytes                 => 0, 
  6405.                                              Duplicate_Sample_Bytes_Change          => 0, 
  6406.                                              Filtered_Sample_Count                  => 0, 
  6407.                                              Filtered_Sample_Count_Change           => 0, 
  6408.                                              Filtered_Sample_Bytes                  => 0, 
  6409.                                              Filtered_Sample_Bytes_Change           => 0, 
  6410.                                              Received_Heartbeat_Count               => 0, 
  6411.                                              Received_Heartbeat_Count_Change        => 0, 
  6412.                                              Received_Heartbeat_Bytes               => 0, 
  6413.                                              Received_Heartbeat_Bytes_Change        => 0, 
  6414.                                              Sent_Ack_Count                         => 0, 
  6415.                                              Sent_Ack_Count_Change                  => 0, 
  6416.                                              Sent_Ack_Bytes                         => 0, 
  6417.                                              Sent_Ack_Bytes_Change                  => 0, 
  6418.                                              Sent_Nack_Count                        => 0, 
  6419.                                              Sent_Nack_Count_Change                 => 0, 
  6420.                                              Sent_Nack_Bytes                        => 0, 
  6421.                                              Sent_Nack_Bytes_Change                 => 0, 
  6422.                                              Received_Gap_Count                     => 0, 
  6423.                                              Received_Gap_Count_Change              => 0, 
  6424.                                              Received_Gap_Bytes                     => 0, 
  6425.                                              Received_Gap_Bytes_Change              => 0, 
  6426.                                              Rejected_Sample_Count                  => 0, 
  6427.                                              Rejected_Sample_Count_Change           => 0, 
  6428.                                              First_Available_Sample_Sequence_Number => (-2147483648, 16#FFFF_FFFF#), 
  6429.                                              Last_Available_Sample_Sequence_Number  => (-2147483648, 16#FFFF_FFFF#), 
  6430.                                              Last_Committed_Sample_Sequence_Number  => (-2147483648, 16#FFFF_FFFF#), 
  6431.                                              Uncommitted_Sample_Count               => 0); 
  6432.  
  6433.    --  ---------------------------------------------------------- 
  6434.    --                  Sample States 
  6435.    --  ---------------------------------------------------------- 
  6436.  
  6437.    type SampleStateKind is new Unsigned_Long; 
  6438.    --  <dref>SampleStateKind</dref> 
  6439.  
  6440.    READ_SAMPLE_STATE : constant SampleStateKind     := 1; 
  6441.    --  <dref>SampleStateKind_READ_SAMPLE_STATE</dref> 
  6442.  
  6443.    NOT_READ_SAMPLE_STATE : constant SampleStateKind := 2; 
  6444.    --  <dref>SampleStateKind_NOT_READ_SAMPLE_STATE</dref> 
  6445.  
  6446.    subtype SampleStateMask is SampleStateKind; 
  6447.    --  <dref>SampleStateMask</dref> 
  6448.  
  6449.    --     ANY_SAMPLE_STATE : constant SampleStateMask := 65535; 
  6450.  
  6451.    ANY_SAMPLE_STATE  : constant SampleStateMask := 16#FFFF#; 
  6452.    --  <dref>ANY_SAMPLE_STATE</dref> 
  6453.  
  6454.    type SampleStateKind_Access is access constant SampleStateKind; 
  6455.  
  6456.    --  ---------------------------------------------------------- 
  6457.    --                  View States 
  6458.    --  ---------------------------------------------------------- 
  6459.  
  6460.    type ViewStateKind is new Unsigned_Long; 
  6461.    --  <dref>ViewStateKind</dref> 
  6462.  
  6463.    NEW_VIEW_STATE  : constant ViewStateKind     := 1; 
  6464.    --  <dref>ViewStateKind_NEW_VIEW_STATE</dref> 
  6465.  
  6466.    NOT_NEW_VIEW_STATE : constant ViewStateKind := 2; 
  6467.    --  <dref>ViewStateKind_NOT_NEW_VIEW_STATE</dref> 
  6468.  
  6469.    subtype ViewStateMask is ViewStateKind; 
  6470.    --  <dref>ViewStateMask</dref> 
  6471.  
  6472.    --     ANY_VIEW_STATE  : constant ViewStateMask      := 65535; 
  6473.  
  6474.    ANY_VIEW_STATE  : constant ViewStateMask := 16#FFFF#; 
  6475.    --  <dref>ANY_VIEW_STATE</dref> 
  6476.  
  6477.    type ViewStateKind_Access is access constant ViewStateKind; 
  6478.  
  6479.    --  ---------------------------------------------------------- 
  6480.    --                  Instance States 
  6481.    --  ---------------------------------------------------------- 
  6482.  
  6483.    type InstanceStateKind is   new Unsigned_Long; 
  6484.    --  <dref>InstanceStateKind</dref> 
  6485.  
  6486.    ALIVE_INSTANCE_STATE : constant InstanceStateKind                := 1; 
  6487.    --  <dref>InstanceStateKind_ALIVE_INSTANCE_STATE</dref> 
  6488.  
  6489.    NOT_ALIVE_DISPOSED_INSTANCE_STATE : constant InstanceStateKind   := 2; 
  6490.    --  <dref>InstanceStateKind_NOT_ALIVE_DISPOSED_INSTANCE_STATE</dref> 
  6491.  
  6492.    NOT_ALIVE_NO_WRITERS_INSTANCE_STATE : constant InstanceStateKind := 4; 
  6493.    --  <dref>InstanceStateKind_NOT_ALIVE_NO_WRITERS_INSTANCE_STATE</dref> 
  6494.  
  6495.    subtype InstanceStateMask is InstanceStateKind; 
  6496.    --  <dref>InstanceStateMask</dref> 
  6497.  
  6498.    NOT_ALIVE_INSTANCE_STATE : constant InstanceStateMask := 6; 
  6499.    --  <dref>NOT_ALIVE_INSTANCE_STATE</dref> 
  6500.  
  6501.    --     ANY_INSTANCE_STATE : constant InstanceStateMask := 65535; 
  6502.  
  6503.    ANY_INSTANCE_STATE  : constant InstanceStateMask := 16#FFFF#; 
  6504.    --  <dref>ANY_INSTANCE_STATE</dref> 
  6505.  
  6506.    type InstanceStateKind_Access is access constant InstanceStateKind; 
  6507.  
  6508.    --  ---------------------------------------------------------- 
  6509.    --                  Sample Info 
  6510.    --  ---------------------------------------------------------- 
  6511.  
  6512.    type SampleInfo is record 
  6513.       Sample_State                                                : aliased SampleStateKind; 
  6514.       View_State                                                  : aliased ViewStateKind; 
  6515.       Instance_State                                              : aliased InstanceStateKind; 
  6516.       Source_Timestamp                                            : aliased Time_T; 
  6517.       Instance_Handle                                             : aliased InstanceHandle_T; 
  6518.       Publication_Handle                                          : aliased InstanceHandle_T; 
  6519.       Disposed_Generation_Count                                   : aliased Long := 0; 
  6520.       No_Writers_Generation_Count                                 : aliased Long := 0; 
  6521.       Sample_Rank                                                 : aliased Long := 0; 
  6522.       Generation_Rank                                             : aliased Long := 0; 
  6523.       Absolute_Generation_Rank                                    : aliased Long := 0; 
  6524.       Valid_Data                                                  : aliased DDS.Boolean := False; 
  6525.       Reception_Timestamp                                         : aliased Time_T; 
  6526.       Publication_Sequence_Number                                 : aliased SequenceNumber_T; 
  6527.       Reception_Sequence_Number                                   : aliased SequenceNumber_T; 
  6528.       Publication_Virtual_Guid                                    : aliased Guid_T; 
  6529.       Publication_Virtual_Sequence_Number                         : aliased SequenceNumber_T; 
  6530.       Original_Publication_Virtual_Guid                           : aliased Guid_T; 
  6531.       Original_Publication_Virtual_Sequence_Number                : aliased SequenceNumber_T; 
  6532.       Related_Original_Publication_Virtual_Guid                   : aliased Guid_T; 
  6533.       Related_Original_Publication_Virtual_Sequence_Number        : aliased SequenceNumber_T; 
  6534.       Flag                                                        : aliased SampleFlag; 
  6535.       Source_Guid                                                 : aliased Guid_T; 
  6536.       Related_Source_Guid                                         : aliased Guid_T; 
  6537.       Related_Subscription_Guid                                   : aliased Guid_T; 
  6538.       Topic_Query_Guid                                            : aliased Guid_T; 
  6539.       Sample_Info_Hash                                            : aliased RTIDDS.Low_Level.ndds_osapi_osapi_hash_h.RTIOsapiHash; 
  6540.       Sample_Signature                                            : aliased access RTIDDS.Low_Level.ndds_pres_pres_common_impl_h.PRESSampleSignature; 
  6541.       Encapsulation_Id                                            : aliased EncapsulationId_T; 
  6542.       Related_Epoch                                               : aliased SequenceNumber_T; 
  6543.    end record; 
  6544.    --  <dref>SampleInfo</dref> 
  6545.    --  <dref name="Sample_State">SampleInfo_sample_state</dref> 
  6546.    --  <dref name="View_State">SampleInfo_view_state</dref> 
  6547.    --  <dref name="Instance_State">SampleInfo_instance_state</dref> 
  6548.    --  <dref name="Source_Timestamp">SampleInfo_source_timestamp</dref> 
  6549.    --  <dref name="Instance_Handle">SampleInfo_instance_handle</dref> 
  6550.    --  <dref name="Publication_Handle">SampleInfo_publication_handle</dref> 
  6551.    --  <dref name="Disposed_Generation_Count">SampleInfo_disposed_generation_count</dref> 
  6552.    --  <dref name="No_Writers_Generation_Count">SampleInfo_no_writers_generation_count</dref> 
  6553.    --  <dref name="Sample_Rank">SampleInfo_sample_rank</dref> 
  6554.    --  <dref name="Generation_Rank">SampleInfo_generation_rank</dref> 
  6555.    --  <dref name="Absolute_Generation_Rank">SampleInfo_absolute_generation_rank</dref> 
  6556.    --  <dref name="Valid_Data">SampleInfo_valid_data</dref> 
  6557.    --  <dref name="Reception_Timestamp">SampleInfo_reception_timestamp</dref> 
  6558.    --  <dref name="Publication_Sequence_Number">SampleInfo_publication_sequence_number</dref> 
  6559.    --  <dref name="Reception_Sequence_Number">SampleInfo_reception_sequence_number</dref> 
  6560.    --  <dref internal="true" name="Publication_Virtual_Guid">SampleInfo_publication_virtual_guid</dref> 
  6561.    --  <dref internal="true" name="Publication_Virtual_Sequence_Number">SampleInfo_publication_virtual_sequence_number</dref> 
  6562.    --  <dref name="Original_Publication_Virtual_Guid">SampleInfo_original_publication_virtual_guid</dref> 
  6563.    --  <dref name="Original_Publication_Virtual_Sequence_Number">SampleInfo_original_publication_virtual_sequence_number</dref> 
  6564.    --  <dref name="Related_Original_Publication_Virtual_Guid">SampleInfo_related_original_publication_virtual_guid</dref> 
  6565.    --  <dref name="Related_Original_Publication_Virtual_Sequence_Number">SampleInfo_related_original_publication_virtual_sequence_number</dref> 
  6566.    --  <dref name="Flag">SampleInfo_flag</dref> 
  6567.    --  <dref name="Source_Guid">SampleInfo_source_guid</dref> 
  6568.    --  <dref name="Related_Source_Guid">SampleInfo_related_source_guid</dref> 
  6569.    --  <dref name="Related_Subscription_Guid">SampleInfo_related_subscription_guid</dref> 
  6570.    --  <dref internal="true" name="Topic_Query_Guid">SampleInfo_topic_query_guid</dref> 
  6571.    --  <dref internal="true" name="Sample_Info_Hash">SampleInfo_sample_info_hash</dref> 
  6572.    --  <dref internal="true" name="Sample_Signature">SampleInfo_sample_signature</dref> 
  6573.    --  <dref internal="true" name="Encapsulation_Id">SampleInfo_encapsulation_id</dref> 
  6574.    --  <dref internal="true" name="Related_Epoch">SampleInfo_related_epoch</dref> 
  6575.  
  6576.  
  6577.    pragma Convention (C, SampleInfo); 
  6578.  
  6579.    type SampleInfo_Access is access all SampleInfo; 
  6580.    type SampleInfo_Array is array (Natural range <>) of aliased SampleInfo; 
  6581.    procedure Initialize (Self  : in out SampleInfo); 
  6582.    procedure Finalize (Self  : in out SampleInfo); 
  6583.    procedure Copy (Dst : in out SampleInfo; Src : in SampleInfo); 
  6584.  
  6585.    package SampleInfo_Seq is new DDS_Support.Sequences_Generic 
  6586.      (SampleInfo, 
  6587.       SampleInfo_Access, 
  6588.       DDS.Natural, 
  6589.       1, 
  6590.       SampleInfo_Array); 
  6591.    --  <dref>SampleInfoSeq</dref> 
  6592.  
  6593.    --  ---------------------------------------------------------- 
  6594.    --                  DataReaderOos 
  6595.    --  ---------------------------------------------------------- 
  6596.  
  6597.    type DataReaderQoS is new Ada.Finalization.Limited_Controlled with record 
  6598.    --- 
  6599.       Durability             : aliased DurabilityQosPolicy; 
  6600.       Deadline               : aliased DeadlineQosPolicy; 
  6601.       Latency_Budget         : aliased LatencyBudgetQosPolicy; 
  6602.       Liveliness             : aliased LivelinessQosPolicy; 
  6603.       Reliability            : aliased ReliabilityQosPolicy; 
  6604.       Destination_Order      : aliased DestinationOrderQosPolicy; 
  6605.       History                : aliased HistoryQosPolicy; 
  6606.       Resource_Limits        : aliased ResourceLimitsQosPolicy; 
  6607.       User_Data              : aliased UserDataQosPolicy; 
  6608.       Ownership              : aliased OwnershipQosPolicy; 
  6609.       Time_Based_Filter      : aliased TimeBasedFilterQosPolicy; 
  6610.       Reader_Data_Lifecycle  : aliased ReaderDataLifecycleQosPolicy; 
  6611.       Representation         : aliased DataRepresentationQosPolicy; 
  6612.       Type_Consistency       : aliased TypeConsistencyEnforcementQosPolicy; 
  6613.       Data_Tags              : aliased DataTagQosPolicy; 
  6614.       -- --- Extensions: ---------------------------------------------------- 
  6615.       Reader_Resource_Limits : aliased DataReaderResourceLimitsQosPolicy; 
  6616.       Protocol               : aliased DataReaderProtocolQosPolicy; 
  6617.       Transport_Selection    : aliased TransportSelectionQosPolicy; 
  6618.       Unicast                : aliased TransportUnicastQosPolicy; 
  6619.       Multicast              : aliased TransportMulticastQosPolicy; 
  6620.       Encapsulation          : aliased TransportEncapsulationQosPolicy; 
  6621.       Property               : aliased PropertyQosPolicy; 
  6622.       Service                : aliased ServiceQosPolicy; 
  6623.       Availability           : aliased AvailabilityQosPolicy; 
  6624.       Subscription_Name      : aliased EntityNameQosPolicy; 
  6625.       Transport_Priority     : aliased TransportPriorityQosPolicy; 
  6626.       Type_Support           : aliased TypeSupportQosPolicy; 
  6627.    end record; 
  6628.    --  <dref>DataReaderQos</dref> 
  6629.    --  <dref name="Durability">DataReaderQos_durability</dref> 
  6630.    --  <dref name="Deadline">DataReaderQos_deadline</dref> 
  6631.    --  <dref name="Latency_Budget">DataReaderQos_latency_budget</dref> 
  6632.    --  <dref name="Liveliness">DataReaderQos_liveliness</dref> 
  6633.    --  <dref name="Reliability">DataReaderQos_reliability</dref> 
  6634.    --  <dref name="Destination_Order">DataReaderQos_destination_order</dref> 
  6635.    --  <dref name="History">DataReaderQos_history</dref> 
  6636.    --  <dref name="Resource_Limits">DataReaderQos_resource_limits</dref> 
  6637.    --  <dref name="User_Data">DataReaderQos_user_data</dref> 
  6638.    --  <dref name="Ownership">DataReaderQos_ownership</dref> 
  6639.    --  <dref name="Time_Based_Filter">DataReaderQos_time_based_filter</dref> 
  6640.    --  <dref name="Reader_Data_Lifecycle">DataReaderQos_reader_data_lifecycle</dref> 
  6641.    --  <dref name="Representation">DataReaderQos_representation</dref> 
  6642.    --  <dref name="Type_Consistency">DataReaderQos_type_consistency</dref> 
  6643.    --  <dref name="Data_Tags">DataReaderQos_data_tags</dref> 
  6644.    --  <dref name="Reader_Resource_Limits">DataReaderQos_reader_resource_limits</dref> 
  6645.    --  <dref name="Protocol">DataReaderQos_protocol</dref> 
  6646.    --  <dref name="Transport_Selection">DataReaderQos_transport_selection</dref> 
  6647.    --  <dref name="Unicast">DataReaderQos_unicast</dref> 
  6648.    --  <dref name="Multicast">DataReaderQos_multicast</dref> 
  6649.    --  <dref internal="true" name="Encapsulation">DataReaderQos_encapsulation</dref> 
  6650.    --  <dref name="Property">DataReaderQos_property</dref> 
  6651.    --  <dref name="Service">DataReaderQos_service</dref> 
  6652.    --  <dref name="Availability">DataReaderQos_availability</dref> 
  6653.    --  <dref name="Subscription_Name">DataReaderQos_subscription_name</dref> 
  6654.    --  <dref name="Transport_Priority">DataReaderQos_transport_priority</dref> 
  6655.    --  <dref name="Type_Support">DataReaderQos_type_support</dref> 
  6656.  
  6657.    pragma Convention (C, DataReaderQoS); 
  6658.  
  6659.    --  <dref>DataReaderQos_initialize</dref> 
  6660.    procedure Initialize 
  6661.      (Self : in out DataReaderQoS); 
  6662.  
  6663.    --  <dref>DataReaderQos_finalize</dref> 
  6664.    procedure Finalize 
  6665.      (Self : in out DataReaderQoS); 
  6666.  
  6667.    --  <dref>DataReaderQos_copy</dref> 
  6668.    procedure Copy 
  6669.      (Target : out DataReaderQoS; 
  6670.       Source : in DataReaderQoS); 
  6671.  
  6672.  
  6673.    --  ---------------------------------------------------------- 
  6674.    --                  SubscriberOos 
  6675.    --  ---------------------------------------------------------- 
  6676.  
  6677.    type SubscriberQos is new Ada.Finalization.Limited_Controlled with record 
  6678.       Presentation    : PresentationQosPolicy; 
  6679.       Partition       : PartitionQosPolicy; 
  6680.       Group_Data      : GroupDataQosPolicy; 
  6681.       Entity_Factory  : EntityFactoryQosPolicy; 
  6682.       -- --- Extensions: ---------------------------------------------------- 
  6683.       Exclusive_Area  : ExclusiveAreaQosPolicy; 
  6684.       Protocol        : aliased SubscriberProtocolQosPolicy; 
  6685.       Subscriber_Name : aliased EntityNameQosPolicy; 
  6686.    end record; 
  6687.    --  <dref>SubscriberQos</dref> 
  6688.    --  <dref name="Presentation">SubscriberQos_presentation</dref> 
  6689.    --  <dref name="Partition">SubscriberQos_partition</dref> 
  6690.    --  <dref name="Group_Data">SubscriberQos_group_data</dref> 
  6691.    --  <dref name="Entity_Factory">SubscriberQos_entity_factory</dref> 
  6692.    --  <dref name="Enclusive_Area">SubscriberQos_exclusive_area</dref> 
  6693.    --  <dref internal="true" name="Protocol">SubscriberQos_protocol</dref> 
  6694.    --  <dref name="subscriber_name">SubscriberQos_subscriber_name</dref> 
  6695.  
  6696.    pragma Convention (C, SubscriberQos); 
  6697.    type SubscriberQos_Access is access SubscriberQos; 
  6698.  
  6699.    --  <dref>SubscriberQos_initialize</dref> 
  6700.    procedure Initialize 
  6701.      (Self : in out SubscriberQos); 
  6702.  
  6703.    --  <dref>SubscriberQos_finalize</dref> 
  6704.    procedure Finalize 
  6705.      (Self : in out SubscriberQos); 
  6706.  
  6707.    --  <dref>SubscriberQos_copy</dref> 
  6708.    procedure Copy 
  6709.      (Target : out SubscriberQos; 
  6710.       Source : in SubscriberQos); 
  6711.  
  6712.    -- 
  6713.    --  From dds_sqlfilter.h 
  6714.    -- 
  6715.  
  6716.    SQLFILTER_NAME  : constant DDS.String := To_DDS_String ("DDSSQL"); 
  6717.    --  <dref>SQLFILTER_NAME</dref> 
  6718.  
  6719.  
  6720.    STRINGMATCHFILTER_NAME : constant DDS.String := To_DDS_String ("DDSSTRINGMATCH"); 
  6721.    --  <dref>STRINGMATCHFILTER_NAME</dref> 
  6722.    --  <dref>Shared_string_match_filter</dref> 
  6723.  
  6724.    -- 
  6725.    --  From dds_c_domain.h 
  6726.    -- 
  6727.  
  6728.    --  ---------------------------------------------------------- 
  6729.    --                  DomainParticipantQos 
  6730.    --  ---------------------------------------------------------- 
  6731.  
  6732.    type DomainParticipantQos is new Ada.Finalization.Limited_Controlled with  record 
  6733.       User_Data         : aliased UserDataQosPolicy; 
  6734.       Entity_Factory    : aliased EntityFactoryQosPolicy; 
  6735.       -- --------------- Extensions: ---------------------------------- 
  6736.       Wire_Protocol     : aliased WireProtocolQosPolicy; 
  6737.       Transport_Builtin : aliased TransportBuiltinQosPolicy; 
  6738.       Default_Unicast   : aliased TransportUnicastQosPolicy; 
  6739.       Discovery         : aliased DiscoveryQosPolicy; 
  6740.       Resource_Limits   : aliased DomainParticipantResourceLimitsQosPolicy; 
  6741.       Event             : aliased EventQosPolicy; 
  6742.       Receiver_Pool     : aliased ReceiverPoolQosPolicy; 
  6743.       Database          : aliased DatabaseQosPolicy; 
  6744.       Discovery_Config  : aliased DiscoveryConfigQosPolicy; 
  6745.       Exclusive_Area    : aliased ExclusiveAreaQosPolicy; 
  6746.       Property          : aliased PropertyQosPolicy; 
  6747.       Participant_Name  : aliased EntityNameQosPolicy; 
  6748.       Multicast_Mapping : aliased TransportMulticastMappingQosPolicy; 
  6749.       Service           : aliased ServiceQosPolicy; 
  6750.       User_Object       : aliased UserObjectQosPolicy; 
  6751.       Protocol          : aliased DomainParticipantProtocolQosPolicy; 
  6752.       Type_Support      : aliased TypeSupportQosPolicy; 
  6753.    end record; 
  6754.    --  <dref>DomainParticipantQos</dref> 
  6755.    --  <dref name="User_Data">DomainParticipantQos_user_data</dref> 
  6756.    --  <dref name="Entity_Factory">DomainParticipantQos_entity_factory</dref> 
  6757.    --  <dref name="Wire_Protocol">DomainParticipantQos_wire_protocol</dref> 
  6758.    --  <dref name="Transport_Builtin">DomainParticipantQos_transport_builtin</dref> 
  6759.    --  <dref name="Default_Unicast">DomainParticipantQos_default_unicast</dref> 
  6760.    --  <dref name="Discovery">DomainParticipantQos_discovery</dref> 
  6761.    --  <dref name="Resource_Limits">DomainParticipantQos_resource_limits</dref> 
  6762.    --  <dref name="Event">DomainParticipantQos_event</dref> 
  6763.    --  <dref name="Receiver_Pool">DomainParticipantQos_receiver_pool</dref> 
  6764.    --  <dref name="Database">DomainParticipantQos_database</dref> 
  6765.    --  <dref name="Discovery_Config">DomainParticipantQos_discovery_config</dref> 
  6766.    --  <dref name="Exclusive_Area">DomainParticipantQos_exclusive_area</dref> 
  6767.    --  <dref name="Property">DomainParticipantQos_property</dref> 
  6768.    --  <dref name="Participant_Name">DomainParticipantQos_participant_name</dref> 
  6769.    --  <dref name="Multicast_Mapping">DomainParticipantQos_multicast_mapping</dref> 
  6770.    --  <dref internal="true" name="Service">DomainParticipantQos_service</dref> 
  6771.    --  <dref name="User_Object">DomainParticipantQos_user_object</dref> 
  6772.    --  <dref internal="true" name="Protocol">DomainParticipantQos_protocol</dref> 
  6773.    --  <dref name="Type_Support">DomainParticipantQos_type_support</dref> 
  6774.  
  6775.    pragma Convention (C, DomainParticipantQos); 
  6776.    --   <internal> 
  6777.    --   for DomainParticipantQos'Alignment use 4; 
  6778.    --   </internal> 
  6779.  
  6780.    --  <dref>DomainParticipantQos_initialize</dref> 
  6781.    procedure Initialize 
  6782.      (Self : in out DomainParticipantQos); 
  6783.  
  6784.    --  <dref>DomainParticipantQos_finalize</dref> 
  6785.    procedure Finalize 
  6786.      (Self : in out DomainParticipantQos); 
  6787.  
  6788.    --  <dref>DomainParticipantQos_copy</dref> 
  6789.    procedure Copy 
  6790.      (Target : out  DomainParticipantQos; 
  6791.       Source : in DomainParticipantQos); 
  6792.  
  6793.    type LoggingQosPolicy is new DDS_LoggingQosPolicy; 
  6794.  
  6795.    --  ---------------------------------------------------------- 
  6796.    --                  SqlFilterAlignmentQos 
  6797.    --  ---------------------------------------------------------- 
  6798.  
  6799.    type SqlFilterAlignmentQos is record 
  6800.       Char_Alignment       : aliased DDS.Unsigned_Short := 0; 
  6801.       Short_Alignment      : aliased DDS.Unsigned_Short := 0; 
  6802.       Long_Alignment       : aliased DDS.Unsigned_Short := 0; 
  6803.       Float_Alignment      : aliased DDS.Unsigned_Short := 0; 
  6804.       Double_Alignment     : aliased DDS.Unsigned_Short := 0; 
  6805.       Longlong_Alignment   : aliased DDS.Unsigned_Short := 0; 
  6806.       Longdouble_Alignment : aliased DDS.Unsigned_Short := 0; 
  6807.       Pointer_Alignment    : aliased DDS.Unsigned_Short := 0; 
  6808.    end record; 
  6809.    pragma Convention (C_Pass_By_Copy, SqlFilterAlignmentQos);  -- ndds/dds_c/dds_c_sqlfilter.h:170 
  6810.  
  6811.    type SqlFilterMemoryManagementQos is record 
  6812.       Buffer_Min_Size : aliased DDS.Long;  -- ndds/dds_c/dds_c_sqlfilter.h:198 
  6813.       Trim_Buffer     : aliased DDS.Boolean;  -- ndds/dds_c/dds_c_sqlfilter.h:199 
  6814.    end record; 
  6815.  
  6816.    pragma Convention (C_Pass_By_Copy, SqlFilterMemoryManagementQos);  -- ndds/dds_c/dds_c_sqlfilter.h:197 
  6817.    type SqlFilterGeneratorQos is new RTIDDS.Low_Level.ndds_dds_c_dds_c_sqlfilter_h.DDS_SqlFilterGeneratorQos; 
  6818.  
  6819.    --  ---------------------------------------------------------- 
  6820.    --                  DomainParticipantFactoryQos 
  6821.    --  ---------------------------------------------------------- 
  6822.  
  6823.    type DomainParticipantFactoryQos is new Ada.Finalization.Limited_Controlled with  record 
  6824.       Entity_Factory  : aliased EntityFactoryQosPolicy; 
  6825.       -- --- Extensions: ---------------------------------------------------- 
  6826.       Resource_Limits : aliased SystemResourceLimitsQosPolicy; 
  6827.       Profile         : aliased ProfileQosPolicy; 
  6828.       Logging         : aliased DDS_LoggingQosPolicy := (0, 
  6829.                                                          NDDS_CONFIG_LOG_CATEGORY_PLATFORM, 
  6830.                                                          0, 
  6831.                                                          Interfaces.C.Strings.Null_Ptr, 
  6832.                                                          Interfaces.C.Strings.Null_Ptr, 
  6833.                                                          Interfaces.C.int (-1), 
  6834.                                                          Interfaces.C.int (-1)); 
  6835.    end record; 
  6836.    --  <dref>DomainParticipantFactoryQos</dref> 
  6837.    --  <dref name="Entity_Factory">DomainParticipantFactoryQos_entity_factory</dref> 
  6838.    --  <dref name="Resource_Limits">DomainParticipantFactoryQos_resource_limits</dref> 
  6839.    --  <dref name="Profile">DomainParticipantFactoryQos_profile</dref> 
  6840.    --  <dref name="Logging">DomainParticipantFactoryQos_logging</dref> 
  6841.  
  6842.    pragma Convention (C, DomainParticipantFactoryQos); 
  6843.  
  6844.    type DomainParticipantFactoryQos_Access is access constant DomainParticipantFactoryQos; 
  6845.  
  6846.    --  <dref>DomainParticipantFactoryQos_copy</dref> 
  6847.    procedure Copy 
  6848.      (Target : out DomainParticipantFactoryQos; 
  6849.       Source : in DomainParticipantFactoryQos); 
  6850.  
  6851.    --  <dref>DomainParticipantFactoryQos_initialize</dref> 
  6852.    procedure Initialize 
  6853.      (Self : in out DomainParticipantFactoryQos); 
  6854.  
  6855.    --  <dref>DomainParticipantFactoryQos_finalize</dref> 
  6856.    procedure Finalize 
  6857.      (Self : in out DomainParticipantFactoryQos); 
  6858.  
  6859.    -- 
  6860.    --  From dds_c_flowcontroller.h 
  6861.    -- 
  6862.  
  6863.    --  ---------------------------------------------------------- 
  6864.    --                  Flow Confroller 
  6865.    --  ---------------------------------------------------------- 
  6866.  
  6867.    DEFAULT_FLOW_CONTROLLER_NAME : constant DDS.String := To_DDS_String ("DDS_DEFAULT_FLOW_CONTROLLER_NAME"); 
  6868.    --  <dref>DEFAULT_FLOW_CONTROLLER_NAME</dref> 
  6869.    --  <dref>Shared_default_flow_controller_name</dref> 
  6870.  
  6871.    FIXED_RATE_FLOW_CONTROLLER_NAME : constant DDS.String := To_DDS_String ("DDS_FIXED_RATE_FLOW_CONTROLLER_NAME"); 
  6872.    --  <dref>FIXED_RATE_FLOW_CONTROLLER_NAME</dref> 
  6873.    --  <dref>Shared_fixed_rate_flow_controller_name</dref> 
  6874.  
  6875.  
  6876.    ON_DEMAND_FLOW_CONTROLLER_NAME : constant DDS.String := To_DDS_String ("DDS_ON_DEMAND_FLOW_CONTROLLER_NAME"); 
  6877.    --  <dref>ON_DEMAND_FLOW_CONTROLLER_NAME</dref> 
  6878.    --  <dref>Shared_on_demand_flow_controller_name</dref> 
  6879.  
  6880.  
  6881.    type FlowControllerSchedulingPolicy is new Unsigned_Long; 
  6882.    --  <dref>FlowControllerSchedulingPolicy</dref> 
  6883.    --  <dref>Shared_FlowControllerSchedulingPolicy</dref> 
  6884.  
  6885.    RR_FLOW_CONTROLLER_SCHED_POLICY : constant FlowControllerSchedulingPolicy := 0; 
  6886.    --  <dref>FlowControllerSchedulingPolicy_RR_FLOW_CONTROLLER_SCHED_POLICY</dref> 
  6887.    --  <dref>Shared_RR_FLOW_CONTROLLER_SCHED_POLICY</dref> 
  6888.  
  6889.    EDF_FLOW_CONTROLLER_SCHED_POLICY : constant FlowControllerSchedulingPolicy := 1; 
  6890.    --  <dref>FlowControllerSchedulingPolicy_EDF_FLOW_CONTROLLER_SCHED_POLICY</dref> 
  6891.    --  <dref>Shared_EDF_FLOW_CONTROLLER_SCHED_POLICY</dref> 
  6892.  
  6893.    type FlowControllerTokenBucketProperty_T is record 
  6894.       Max_Tokens               : aliased DDS.Long := 0; 
  6895.       Tokens_Added_Per_Period  : aliased DDS.Long := 0; 
  6896.       Tokens_Leaked_Per_Period : aliased DDS.Long := 0; 
  6897.       Period                   : aliased Duration_T; 
  6898.       Bytes_Per_Token          : aliased DDS.Long := 0; 
  6899.    end record; 
  6900.    --  <dref>FlowControllerTokenBucketProperty_t</dref> 
  6901.    --  <dref>Shared_max_tokens</dref> 
  6902.    --  <dref>Shared_tokens_added_per_period</dref> 
  6903.    --  <dref>Shared_tokens_leaked_per_period</dref> 
  6904.    --  <dref>Shared_flow_controller_property_period</dref> 
  6905.    --  <dref>Shared_bytes_per_token</dref> 
  6906.    --  <dref name="max_tokens">FlowControllerTokenBucketProperty_t_max_tokens</dref> 
  6907.    --  <dref name="tokens_added_per_period">FlowControllerTokenBucketProperty_t_tokens_added_per_period</dref> 
  6908.    --  <dref name="tokens_leaked_per_period">FlowControllerTokenBucketProperty_t_tokens_leaked_per_period</dref> 
  6909.    --  <dref name="period">FlowControllerTokenBucketProperty_t_period</dref> 
  6910.    --  <dref name="bytes_per_token">FlowControllerTokenBucketProperty_t_bytes_per_token</dref> 
  6911.  
  6912.    pragma Convention (C, FlowControllerTokenBucketProperty_T); 
  6913.  
  6914.    type FlowControllerProperty_T is record 
  6915.       Scheduling_Policy  : aliased DDS.FlowControllerSchedulingPolicy := EDF_FLOW_CONTROLLER_SCHED_POLICY; 
  6916.       Token_Bucket       : aliased DDS.FlowControllerTokenBucketProperty_T := (-1, -1, 0, (1, 0), -1); 
  6917.       Is_Vendor_Specific : aliased DDS.Boolean := False; 
  6918.    end record; 
  6919.    --  <dref>FlowControllerProperty_t</dref> 
  6920.    --  <dref>Shared_FlowControllerProperty_t</dref> 
  6921.    --  <dref name="scheduling_policy">FlowControllerProperty_t_scheduling_policy</dref> 
  6922.    --  <dref name="token_bucket">FlowControllerProperty_t_token_bucket</dref> 
  6923.    --  <dref internal="true" name="is_vendor_specific">FlowControllerProperty_t_is_vendor_specific</dref> 
  6924.  
  6925.    pragma Convention (C, FlowControllerProperty_T); 
  6926.  
  6927.    FlowControllerProperty_T_INITIALIZER : constant FlowControllerProperty_T := 
  6928.                                             (Scheduling_Policy  => DDS.EDF_FLOW_CONTROLLER_SCHED_POLICY, 
  6929.                                              Token_Bucket       => (-1, -1, 0, (1, 0), -1), 
  6930.                                              Is_Vendor_Specific => False); 
  6931.    --  <dref>FlowControllerProperty_t_INITIALIZER</dref> 
  6932.  
  6933.    procedure Copy (C_Out : not null access FlowControllerProperty_T; 
  6934.                    C_In  : not null access FlowControllerProperty_T); 
  6935.    --  <dref internal="true">FlowControllerProperty_copy</dref> 
  6936.  
  6937.    -- 
  6938.    --  DLRL stuff 
  6939.    -- 
  6940.  
  6941.  
  6942.    type ReferenceScope is 
  6943.      (SIMPLE_CONTENT_SCOPE, 
  6944.       REFERENCED_CONTENTS_SCOPE); 
  6945.  
  6946.    type ObjectScope is 
  6947.      (SIMPLE_OBJECT_SCOPE, 
  6948.       CONTAINED_OBJECTS_SCOPE, 
  6949.       RELATED_OBJECTS_SCOPE); 
  6950.  
  6951.    type DCPSState is 
  6952.      (INITIAL, 
  6953.       REGISTERED, 
  6954.       ENABLED); 
  6955.  
  6956.    type CacheUsage is 
  6957.      (READ_ONLY, 
  6958.       WRITE_ONLY, 
  6959.       READ_WRITE); 
  6960.  
  6961.    type ObjectSubState is new Interfaces.Unsigned_16; 
  6962.  
  6963.    OBJECT_NEW       : constant ObjectSubState := 2#0000_0000_0000_0001#; 
  6964.    OBJECT_MODIFIED  : constant ObjectSubState := 2#0000_0000_0000_0010#; 
  6965.    OBJECT_READ      : constant ObjectSubState := 2#0000_0000_0000_0100#; 
  6966.    OBJECT_DELETED   : constant ObjectSubState := 2#0000_0000_0000_1000#; 
  6967.    OBJECT_CREATED   : constant ObjectSubState := 2#0000_0001_0000_0000#; 
  6968.    OBJECT_CHANGED   : constant ObjectSubState := 2#0000_0010_0000_0000#; 
  6969.    OBJECT_WRITTEN   : constant ObjectSubState := 2#0000_0100_0000_0000#; 
  6970.    OBJECT_DESTROYED : constant ObjectSubState := 2#0000_1000_0000_0000#; 
  6971.  
  6972.    type DLRLOid is record 
  6973.       Creator_Id : aliased Unsigned_Long; 
  6974.       Local_Id   : aliased Unsigned_Long; 
  6975.    end record; 
  6976.  
  6977.    type TimeOutDuration is    new Interfaces.Unsigned_32; 
  6978.  
  6979.    INFINITE_TIME_OUT : constant TimeOutDuration  := -1; 
  6980.  
  6981.    subtype ClassName is DDS.String; 
  6982.    subtype CacheName is  DDS.String; 
  6983.    subtype RelationName is DDS.String; 
  6984.  
  6985.    BadParameter    : exception; 
  6986.  
  6987.    NotFound        : exception; 
  6988.  
  6989.    --  type ReadOnlyMode_Members is 
  6990.  
  6991.    ReadOnlyMode    : exception; 
  6992.  
  6993.    WriteOnlyMode   : exception; 
  6994.  
  6995.    AlreadyClonedInWriteMode : exception; 
  6996.  
  6997.    ExpiredTimeOut  : exception; 
  6998.  
  6999.  
  7000.    type ObjectReference is record 
  7001.       Oid        : DLRLOid; 
  7002.       Home_Index : Unsigned_Long; 
  7003.    end record; 
  7004.  
  7005.    type RelationKind is 
  7006.      (REF_RELATION, 
  7007.       LIST_RELATION, 
  7008.       INT_MAP_RELATION, 
  7009.       STR_MAP_RELATION); 
  7010.  
  7011.  
  7012.    type RelatedObjectDepth is   new Short_Integer; 
  7013.    UNLIMITED_RELATED_OBJECTS : constant RelatedObjectDepth    := -1; 
  7014.  
  7015.    type MembershipState is 
  7016.      (UNDEFINED_MEMBERSHIP, 
  7017.       ALREADY_MEMBER, 
  7018.       NOT_MEMBER); 
  7019.  
  7020.    -- 
  7021.    --  end DLRL stuff 
  7022.    -- 
  7023.  
  7024.  
  7025.    Not_Implemented : exception; 
  7026.  
  7027.    --  type Wide_String is access all Standard.Wide_Character; 
  7028.  
  7029.    --  <internal> 
  7030.    --  DDS_Octets support methods 
  7031.    --  </internal> 
  7032.  
  7033.    function Octets_New 
  7034.      return Octets_Ptr; 
  7035.    --  <dref>Octets_new</dref> 
  7036.  
  7037.    function Octets_New_W_Size 
  7038.      (Size : Integer) 
  7039.       return Octets_Ptr; 
  7040.    --  <dref>Octets_new_with_length</dref> 
  7041.  
  7042.    procedure Octets_Delete 
  7043.      (Self : Octets_Ptr); 
  7044.    --  <dref>Octets_destroy</dref> 
  7045.  
  7046.    --  <internal> 
  7047.    --  DDS_KeyedString support methods 
  7048.    --  </internal> 
  7049.  
  7050.    function KeyedString_New 
  7051.      return KeyedString_Ptr; 
  7052.    --  <dref>KeyedString_new</dref> 
  7053.  
  7054.    function KeyedString_New_W_Size 
  7055.      (Key_Size : Integer; 
  7056.       Size     : Integer) 
  7057.       return KeyedString_Ptr; 
  7058.    --  <dref>KeyedString_new_with_length</dref> 
  7059.  
  7060.    procedure KeyedString_Delete 
  7061.      (Self : KeyedString_Ptr); 
  7062.    --  <dref>KeyedString_destroy</dref> 
  7063.  
  7064.    --  <internal> 
  7065.    --  DDS_KeyedOctets support methods 
  7066.    --  </internal> 
  7067.  
  7068.    function KeyedOctets_New 
  7069.      return KeyedOctets_Ptr; 
  7070.    --  <dref>KeyedOctets_new</dref> 
  7071.  
  7072.    function KeyedOctets_New_W_Size 
  7073.      (Key_Size : Integer; 
  7074.       Size     : Integer) 
  7075.       return KeyedOctets_Ptr; 
  7076.    --  <dref>KeyedOctets_new_with_length</dref> 
  7077.  
  7078.    procedure KeyedOctets_Delete 
  7079.      (Self : KeyedOctets_Ptr); 
  7080.    --  <dref>KeyedOctets_destroy</dref> 
  7081.  
  7082.    function Convert (Code : RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_ReturnCode_t) return DDS.ReturnCode_T; 
  7083.  
  7084. private 
  7085.    use Interfaces.C.Strings; 
  7086.    --  private routines to get address of c-comaptible Qos 
  7087.  
  7088.    function GetInterface (P_Qos : TopicQos) return access RTIDDS.Low_Level.ndds_dds_c_dds_c_topic_h.DDS_TopicQos; 
  7089.    function GetInterface (P_Qos : DataWriterQos) return access RTIDDS.Low_Level.ndds_dds_c_dds_c_publication_h.DDS_DataWriterQos; 
  7090.    function GetInterface (P_Qos : PublisherQos) return access RTIDDS.Low_Level.ndds_dds_c_dds_c_publication_h.DDS_PublisherQos; 
  7091.    function GetInterface (P_Qos : DataReaderQoS) return access RTIDDS.Low_Level.ndds_dds_c_dds_c_subscription_h.DDS_DataReaderQos; 
  7092.    function GetInterface (P_Qos : SubscriberQos) return access RTIDDS.Low_Level.ndds_dds_c_dds_c_subscription_h.DDS_SubscriberQos; 
  7093.    function GetInterface (P_Qos : DomainParticipantQos) return access RTIDDS.Low_Level.ndds_dds_c_dds_c_domain_h.DDS_DomainParticipantQos; 
  7094.    function GetInterface (P_Qos : DomainParticipantFactoryQos) return access RTIDDS.Low_Level.ndds_dds_c_dds_c_domain_h.DDS_DomainParticipantFactoryQos; 
  7095.    function GetInterface (FC_P : FlowControllerProperty_T) return access RTIDDS.Low_Level.ndds_dds_c_dds_c_flowcontroller_h.DDS_FlowControllerProperty_t; 
  7096.  
  7097.    procedure Ret_Code_To_Exception (Code    : RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_ReturnCode_t; 
  7098.                                     Message : Standard.String := ""); 
  7099.  
  7100.    procedure Ret_Code_To_Exception (Code    : RTIDDS.Low_Level.ndds_dds_c_dds_c_common_h.DDS_Boolean; 
  7101.                                     Message : Standard.String := ""); 
  7102.  
  7103.    procedure Free is new Ada.Unchecked_Deallocation (PublisherQos, PublisherQos_Access); 
  7104.    procedure Free is new Ada.Unchecked_Deallocation (SubscriberQos, SubscriberQos_Access); 
  7105.    procedure Free is new Ada.Unchecked_Deallocation (TopicQos, TopicQos_Access); 
  7106.  
  7107.    procedure Validate_Library; 
  7108.  
  7109.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_Time_t; 
  7110.                         Source : DDS.Time_T); 
  7111.  
  7112.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_WriteParams_t; 
  7113.                         Source : DDS.WriteParams_T); 
  7114.  
  7115.    procedure Copy_Up (Dst    : out DDS.Time_T; 
  7116.                       Source : RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_Time_t); 
  7117.  
  7118.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_pres_pres_participant_h.PRESInstanceHandle; 
  7119.                         Source : DDS.InstanceHandle_T); 
  7120.  
  7121.    procedure Copy_Up (Dst    : out DDS.InstanceHandle_T; 
  7122.                       Source : RTIDDS.Low_Level.ndds_pres_pres_participant_h.PRESInstanceHandle); 
  7123.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_common_h.DDS_Boolean; 
  7124.                         Source : DDS.Boolean); 
  7125.  
  7126.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_SampleIdentity_t; 
  7127.                         Source : DDS.SampleIdentity_T); 
  7128.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_GUID_t; 
  7129.                         Source : DDS.Guid_T); 
  7130.  
  7131.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_GUID_t_value_array; 
  7132.                         Source : DDS.GUID_T_Value_Array); 
  7133.  
  7134.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_common_h.DDS_Long; 
  7135.                         Source : DDS.Long); 
  7136.  
  7137.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_common_h.DDS_Long; 
  7138.                         Source : DDS.SampleFlag); 
  7139.  
  7140.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_common_h.DDS_UnsignedLong; 
  7141.                         Source : DDS.Unsigned_Long); 
  7142.  
  7143.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_SequenceNumber_t; 
  7144.                         Source : DDS.SequenceNumber_T); 
  7145.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_OctetSeq; 
  7146.                         Source : DDS.Octet_Seq.Sequence); 
  7147.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_Cookie_t; 
  7148.                         Source : DDS.Cookie_T); 
  7149.  
  7150.  
  7151.  
  7152.    Epoch  : constant Ada.Calendar.Time := Ada.Calendar.Time_Of (1970, 01, 01); 
  7153.    type DDS_Wchar_Ptr is access all RTIDDS.Low_Level.ndds_dds_c_dds_c_common_h.DDS_Wchar 
  7154.       with Convention => C; 
  7155.  
  7156.    function GetInterface (Item : String) return access Interfaces.C.Strings.chars_ptr; 
  7157.    function GetInterface (Item : String) return Interfaces.C.Strings.chars_ptr; 
  7158.    procedure Copy (To : in out String; From : Interfaces.C.Strings.chars_ptr); 
  7159.  
  7160.    procedure Debug_Trap; 
  7161.  
  7162. end DDS;