1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2005, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 2, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, USA. --
22 -- As a special exception, if other files instantiate generics from this --
23 -- unit, or you link this unit with other files to produce an executable, --
24 -- this unit does not by itself cause the resulting executable to be --
25 -- covered by the GNU General Public License. This exception does not --
26 -- however invalidate any other reasons why the executable file might be --
27 -- covered by the GNU Public License. --
29 -- GNAT was originally developed by the GNAT team at New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc. --
32 ------------------------------------------------------------------------------
36 -----------------------
37 -- Local Subprograms --
38 -----------------------
40 function V
(T
: Time_Stamp_Type
; X
: Time_Stamp_Index
) return Nat
;
41 -- Extract two decimal digit value from time stamp
47 function "<" (Left
, Right
: Time_Stamp_Type
) return Boolean is
49 return not (Left
= Right
) and then String (Left
) < String (Right
);
56 function "<=" (Left
, Right
: Time_Stamp_Type
) return Boolean is
58 return not (Left
> Right
);
65 function "=" (Left
, Right
: Time_Stamp_Type
) return Boolean is
70 if String (Left
) = String (Right
) then
73 elsif Left
(1) = ' ' or else Right
(1) = ' ' then
77 -- In the following code we check for a difference of 2 seconds or less
79 -- Recall that the time stamp format is:
81 -- Y Y Y Y M M D D H H M M S S
82 -- 01 02 03 04 05 06 07 08 09 10 11 12 13 14
84 -- Note that we do not bother to worry about shifts in the day.
85 -- It seems unlikely that such shifts could ever occur in practice
86 -- and even if they do we err on the safe side, ie we say that the time
87 -- stamps are different.
89 Sright
:= V
(Right
, 13) + 60 * (V
(Right
, 11) + 60 * V
(Right
, 09));
90 Sleft
:= V
(Left
, 13) + 60 * (V
(Left
, 11) + 60 * V
(Left
, 09));
92 -- So the check is: dates must be the same, times differ 2 sec at most
94 return abs (Sleft
- Sright
) <= 2
95 and then String (Left
(1 .. 8)) = String (Right
(1 .. 8));
102 function ">" (Left
, Right
: Time_Stamp_Type
) return Boolean is
104 return not (Left
= Right
) and then String (Left
) > String (Right
);
111 function ">=" (Left
, Right
: Time_Stamp_Type
) return Boolean is
113 return not (Left
< Right
);
120 function Get_Char_Code
(C
: Character) return Char_Code
is
122 return Char_Code
'Val (Character'Pos (C
));
129 function Get_Character
(C
: Char_Code
) return Character is
131 pragma Assert
(C
<= 255);
132 return Character'Val (C
);
139 subtype Wordh
is Word
range 0 .. 15;
140 Hex
: constant array (Wordh
) of Character := "0123456789abcdef";
142 function Get_Hex_String
(W
: Word
) return Word_Hex_String
is
144 WS
: Word_Hex_String
;
147 for J
in reverse 1 .. 8 loop
148 WS
(J
) := Hex
(X
mod 16);
155 ------------------------
156 -- Get_Wide_Character --
157 ------------------------
159 function Get_Wide_Character
(C
: Char_Code
) return Wide_Character is
161 pragma Assert
(C
<= 65535);
162 return Wide_Character'Val (C
);
163 end Get_Wide_Character
;
165 ------------------------
166 -- In_Character_Range --
167 ------------------------
169 function In_Character_Range
(C
: Char_Code
) return Boolean is
172 end In_Character_Range
;
174 -----------------------------
175 -- In_Wide_Character_Range --
176 -----------------------------
178 function In_Wide_Character_Range
(C
: Char_Code
) return Boolean is
181 end In_Wide_Character_Range
;
183 ---------------------
184 -- Make_Time_Stamp --
185 ---------------------
187 procedure Make_Time_Stamp
194 TS
: out Time_Stamp_Type
)
196 Z
: constant := Character'Pos ('0');
199 TS
(01) := Character'Val (Z
+ Year
/ 1000);
200 TS
(02) := Character'Val (Z
+ (Year
/ 100) mod 10);
201 TS
(03) := Character'Val (Z
+ (Year
/ 10) mod 10);
202 TS
(04) := Character'Val (Z
+ Year
mod 10);
203 TS
(05) := Character'Val (Z
+ Month
/ 10);
204 TS
(06) := Character'Val (Z
+ Month
mod 10);
205 TS
(07) := Character'Val (Z
+ Day
/ 10);
206 TS
(08) := Character'Val (Z
+ Day
mod 10);
207 TS
(09) := Character'Val (Z
+ Hour
/ 10);
208 TS
(10) := Character'Val (Z
+ Hour
mod 10);
209 TS
(11) := Character'Val (Z
+ Minutes
/ 10);
210 TS
(12) := Character'Val (Z
+ Minutes
mod 10);
211 TS
(13) := Character'Val (Z
+ Seconds
/ 10);
212 TS
(14) := Character'Val (Z
+ Seconds
mod 10);
215 ----------------------
216 -- Split_Time_Stamp --
217 ----------------------
219 procedure Split_Time_Stamp
220 (TS
: Time_Stamp_Type
;
230 -- Y Y Y Y M M D D H H M M S S
231 -- 01 02 03 04 05 06 07 08 09 10 11 12 13 14
233 Year
:= 100 * V
(TS
, 01) + V
(TS
, 03);
237 Minutes
:= V
(TS
, 11);
238 Seconds
:= V
(TS
, 13);
239 end Split_Time_Stamp
;
245 function V
(T
: Time_Stamp_Type
; X
: Time_Stamp_Index
) return Nat
is
247 return 10 * (Character'Pos (T
(X
)) - Character'Pos ('0')) +
248 Character'Pos (T
(X
+ 1)) - Character'Pos ('0');