Go to the first, previous, next, last section, table of contents.


B.3.1 The Package Interfaces.C.Strings

  1. The package Interfaces.C.Strings declares types and subprograms allowing an Ada program to allocate, reference, update, and free C-style strings. In particular, the private type chars_ptr corresponds to a common use of "char *" in C programs, and an object of this type can be passed to a subprogram to which pragma Import(C,...) has been applied, and for which "char *" is the type of the argument of the C function.

    Static Semantics

  2. The library package Interfaces.C.Strings has the following declaration:
  3. package Interfaces.C.Strings is
       pragma Preelaborate(Strings);
    
  4.    type char_array_access is access all char_array;
    
  5.    type chars_ptr is private;
    
  6.    type chars_ptr_array is array (size_t range <>) of chars_ptr;
    
  7.    Null_Ptr : constant chars_ptr;
    
  8.    function To_Chars_Ptr (Item      : in char_array_access;
                              Nul_Check : in Boolean := False)
          return chars_ptr;
    
  9.    function New_Char_Array (Chars : in char_array) return chars_ptr;
    
  10.    function New_String (Str : in String) return chars_ptr;
    
  11.    procedure Free (Item : in out chars_ptr);
    
  12.    Dereference_Error : exception;
    
  13.    function Value (Item : in chars_ptr) return char_array;
    
  14.    function Value (Item : in chars_ptr; Length : in size_t)
          return char_array;
    
  15.    function Value (Item : in chars_ptr) return String;
    
  16.    function Value (Item : in chars_ptr; Length : in size_t)
          return String;
    
  17.    function Strlen (Item : in chars_ptr) return size_t;
    
  18.    procedure Update (Item   : in chars_ptr;
                         Offset : in size_t;
                         Chars  : in char_array;
                         Check  : in Boolean := True);
    
  19.    procedure Update (Item   : in chars_ptr;
                         Offset : in size_t;
                         Str    : in String;
                         Check  : in Boolean := True);
    
  20.    Update_Error : exception;
    
  21. private
       ... -- not specified by the language
    end Interfaces.C.Strings;
    
  22. The type chars_ptr is C-compatible and corresponds to the use of C's "char *" for a pointer to the first char in a char array terminated by nul. When an object of type chars_ptr is declared, its value is by default set to Null_Ptr, unless the object is imported, See section B.1 Interfacing Pragmas.
  23. function To_Chars_Ptr (Item      : in char_array_access;
                           Nul_Check : in Boolean := False)
       return chars_ptr;
    
    1. If Item is null, then To_Chars_Ptr returns Null_Ptr. Otherwise, if Nul_Check is True and Item.all does not contain nul, then the function propagates Terminator_Error; if Nul_Check is True and Item.all does contain nul, To_Chars_Ptr performs a pointer conversion with no allocation of memory.

  1. function New_Char_Array (Chars   : in char_array) return chars_ptr;
    
    1. This function returns a pointer to an allocated object initialized to Chars(Chars'First .. Index) & nul, where
    2. Index = Chars'Last if Chars does not contain nul, or
    3. Index is the smallest size_t value I such that Chars(I+1) = nul.
    Storage_Error is propagated if the allocation fails.
  1. function New_String (Str : in String) return chars_ptr;
    
    1. This function is equivalent to New_Char_Array(To_C(Str)).

  1. procedure Free (Item : in out chars_ptr);
    
    1. If Item is Null_Ptr, then Free has no effect. Otherwise, Free releases the storage occupied by Value(Item), and resets Item to Null_Ptr.

  1. function Value (Item : in chars_ptr) return char_array;
    
    1. If Item = Null_Ptr then Value propagates Dereference_Error. Otherwise Value returns the prefix of the array of chars pointed to by Item, up to and including the first nul. The lower bound of the result is 0. If Item does not point to a nul-terminated string, then execution of Value is erroneous.

  1. function Value (Item : in chars_ptr; Length : in size_t)
       return char_array;
    
    1. If Item = Null_Ptr then Value(Item) propagates Dereference_Error. Otherwise Value returns the shorter of two arrays: the first Length chars pointed to by Item, and Value(Item). The lower bound of the result is 0.

  1. function Value (Item : in chars_ptr) return String;
    
    1. Equivalent to To_Ada(Value(Item), Trim_Nul=>True).

  1. function Value (Item : in chars_ptr; Length : in size_t)
       return String;
    
    1. Equivalent to To_Ada(Value(Item, Length), Trim_Nul=>True).

  1. function Strlen (Item : in chars_ptr) return size_t;
    
    1. Returns Val'Length-1 where Val = Value(Item); propagates Dereference_Error if Item = Null_Ptr.

  1. procedure Update (Item   : in chars_ptr;
                      Offset : in size_t;
                      Chars  : in char_array;
                      Check  : Boolean := True);
    
    1. This procedure updates the value pointed to by Item, starting at position Offset, using Chars as the data to be copied into the array. Overwriting the nul terminator, and skipping with the Offset past the nul terminator, are both prevented if Check is True, as follows:
      1. Let N = Strlen(Item). If Check is True, then:
        1. If Offset+Chars'Length>N, propagate Update_Error.
        2. Otherwise, overwrite the data in the array pointed to by Item, starting at the char at position Offset, with the data in Chars.

      1. If Check is False, then processing is as above, but with no check that Offset+Chars'Length>N.

  1. procedure Update (Item   : in chars_ptr;
                      Offset : in size_t;
                      Str    : in String;
                      Check  : in Boolean := True);
    
    1. Equivalent to Update(Item, Offset, To_C(Str), Check).

Erroneous Execution

  1. Execution of any of the following is erroneous if the Item parameter is not null_ptr and Item does not point to a nul-terminated array of chars.
    1. a Value function not taking a Length parameter,
    2. the Free procedure,
    3. the Strlen function.

  1. Execution of Free(X) is also erroneous if the chars_ptr X was not returned by New_Char_Array or New_String.
  2. Reading or updating a freed char_array is erroneous.
  3. Execution of Update is erroneous if Check is False and a call with Check equal to True would have propagated Update_Error.

    NOTES

  4. (13) New_Char_Array and New_String might be implemented either through the allocation function from the C environment ("malloc") or through Ada dynamic memory allocation ("new"). The key points are
    1. the returned value (a chars_ptr) is represented as a C "char *" so that it may be passed to C functions;
    2. the allocated object should be freed by the programmer via a call of Free, not by a called C function.


Go to the first, previous, next, last section, table of contents.