Contents Index Search Previous Next
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
B.1).
23
function To_Chars_Ptr (Item : in char_array_access;
Nul_Check : in Boolean := False)
return chars_ptr;
24/1
If Item is null,
then To_Chars_Ptr returns Null_Ptr. If Item is not null,Nul_Check
is True, and Item.all does not contain nul, then the function
propagates Terminator_Error; otherwise To_Chars_Ptr performs a pointer
conversion with no allocation of memory.
25
function New_Char_Array (Chars : in char_array) return chars_ptr;
26
This function returns a pointer to an allocated
object initialized to Chars(Chars'First .. Index) & nul, where
27
- Index = Chars'Last if
Chars does not contain nul, or
28
- Index is the smallest
size_t value I such that Chars(I+1) = nul.
28.1
Storage_Error
is propagated if the allocation fails.
29
function New_String (Str : in String) return chars_ptr;
30
This function
is equivalent to New_Char_Array(To_C(Str)).
31
procedure Free (Item : in out chars_ptr);
32
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.
33
function Value (Item : in chars_ptr) return char_array;
34
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.
35
function Value (Item : in chars_ptr; Length : in size_t)
return char_array;
36/1
If Item = Null_Ptr
then Value propagates Dereference_Error. Otherwise Value returns the
shorter of two arrays, either the first Length chars pointed to by Item,
or Value(Item). The lower bound of the result is 0. If Length is 0, then
Value propagates Constraint_Error.
37
function Value (Item : in chars_ptr) return String;
38
Equivalent to
To_Ada(Value(Item), Trim_Nul=>True).
39
function Value (Item : in chars_ptr; Length : in size_t)
return String;
40/1
Equivalent to
To_Ada(Value(Item, Length) & nul, Trim_Nul=>True).
41
function Strlen (Item : in chars_ptr) return size_t;
42
Returns Val'Length-1
where Val = Value(Item); propagates Dereference_Error if Item
= Null_Ptr.
43
procedure Update (Item : in chars_ptr;
Offset : in size_t;
Chars : in char_array;
Check : Boolean := True);
44/1
If Item = Null_Ptr,
then Update propagates Dereference_Error. Otherwise, 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:
45
- Let N = Strlen(Item).
If Check is True, then:
46
- If Offset+Chars'Length>N,
propagate Update_Error.
47
- Otherwise, overwrite
the data in the array pointed to by Item, starting at the char at position
Offset, with the data in Chars.
48
- If
Check is False, then processing is as above, but with no check that Offset+Chars'Length>N.
49
procedure Update (Item : in chars_ptr;
Offset : in size_t;
Str : in String;
Check : in Boolean := True);
50
Equivalent to Update(Item, Offset, To_C(Str),
Check).
Erroneous Execution
51
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.
52
- a Value function not taking a Length
parameter,
53
54
55
Execution of Free(X) is also
erroneous if the chars_ptr X was not returned by New_Char_Array or New_String.
56
Reading or updating a freed
char_array is erroneous.
57
Execution of Update is erroneous
if Check is False and a call with Check equal to True would have propagated
Update_Error.
58
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
59
- the returned
value (a chars_ptr) is represented as a C ``char *'' so that it may be
passed to C functions;
60
- the allocated
object should be freed by the programmer via a call of Free, not by a
called C function.
Contents Index Search Previous Next Legal