1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- G N A T . C A L E N D A R . T I M E _ I O --
9 -- Copyright (C) 1999-2003 Ada Core Technologies, Inc. --
11 -- This specification is derived from the Ada Reference Manual for use with --
12 -- GNAT. The copyright notice above, and the license provisions that follow --
13 -- apply solely to the contents of the part following the private keyword. --
15 -- GNAT is free software; you can redistribute it and/or modify it under --
16 -- terms of the GNU General Public License as published by the Free Soft- --
17 -- ware Foundation; either version 2, or (at your option) any later ver- --
18 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
19 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
20 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
21 -- for more details. You should have received a copy of the GNU General --
22 -- Public License distributed with GNAT; see file COPYING. If not, write --
23 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
24 -- MA 02111-1307, USA. --
26 -- As a special exception, if other files instantiate generics from this --
27 -- unit, or you link this unit with other files to produce an executable, --
28 -- this unit does not by itself cause the resulting executable to be --
29 -- covered by the GNU General Public License. This exception does not --
30 -- however invalidate any other reasons why the executable file might be --
31 -- covered by the GNU Public License. --
33 -- GNAT was originally developed by the GNAT team at New York University. --
34 -- Extensive contributions were provided by Ada Core Technologies Inc. --
36 ------------------------------------------------------------------------------
38 with Ada
.Calendar
; use Ada
.Calendar
;
39 with Ada
.Characters
.Handling
;
40 with Ada
.Strings
.Unbounded
; use Ada
.Strings
.Unbounded
;
43 package body GNAT
.Calendar
.Time_IO
is
59 type Padding_Mode
is (None
, Zero
, Space
);
61 -----------------------
62 -- Local Subprograms --
63 -----------------------
65 function Am_Pm
(H
: Natural) return String;
66 -- return AM or PM depending on the hour H
68 function Hour_12
(H
: Natural) return Positive;
69 -- Convert a 1-24h format to a 0-12 hour format.
71 function Image
(Str
: String; Length
: Natural := 0) return String;
72 -- Return Str capitalized and cut to length number of characters. If
73 -- length is set to 0 it does not cut it.
77 Padding
: Padding_Mode
:= Zero
;
78 Length
: Natural := 0)
80 -- Return image of N. This number is eventually padded with zeros or
81 -- spaces depending of the length required. If length is 0 then no padding
86 Padding
: Padding_Mode
:= Zero
;
87 Length
: Natural := 0)
89 -- As above with N provided in Integer format.
95 function Am_Pm
(H
: Natural) return String is
97 if H
= 0 or else H
> 12 then
108 function Hour_12
(H
: Natural) return Positive is
125 Length
: Natural := 0)
128 use Ada
.Characters
.Handling
;
129 Local
: constant String :=
130 To_Upper
(Str
(1)) & To_Lower
(Str
(2 .. Str
'Last));
136 return Local
(1 .. Length
);
146 Padding
: Padding_Mode
:= Zero
;
147 Length
: Natural := 0)
151 return Image
(Long_Integer (N
), Padding
, Length
);
156 Padding
: Padding_Mode
:= Zero
;
157 Length
: Natural := 0)
160 function Pad_Char
return String;
166 function Pad_Char
return String is
169 when None
=> return "";
170 when Zero
=> return "00";
171 when Space
=> return " ";
175 NI
: constant String := Long_Integer'Image (N
);
176 NIP
: constant String := Pad_Char
& NI
(2 .. NI
'Last);
178 -- Start of processing for Image
181 if Length
= 0 or else Padding
= None
then
182 return NI
(2 .. NI
'Last);
185 return NIP
(NIP
'Last - Length
+ 1 .. NIP
'Last);
194 (Date
: Ada
.Calendar
.Time
;
195 Picture
: Picture_String
)
198 Padding
: Padding_Mode
:= Zero
;
199 -- Padding is set for one directive
201 Result
: Unbounded_String
;
204 Month
: Month_Number
;
207 Minute
: Minute_Number
;
208 Second
: Second_Number
;
209 Sub_Second
: Second_Duration
;
211 P
: Positive := Picture
'First;
214 Split
(Date
, Year
, Month
, Day
, Hour
, Minute
, Second
, Sub_Second
);
217 -- A directive has the following format "%[-_]."
219 if Picture
(P
) = '%' then
223 if P
= Picture
'Last then
227 -- Check for GNU extension to change the padding
229 if Picture
(P
+ 1) = '-' then
232 elsif Picture
(P
+ 1) = '_' then
237 if P
= Picture
'Last then
241 case Picture
(P
+ 1) is
246 Result
:= Result
& '%';
251 Result
:= Result
& ASCII
.LF
;
256 Result
:= Result
& ASCII
.HT
;
261 Result
:= Result
& Image
(Hour
, Padding
, 2);
266 Result
:= Result
& Image
(Hour_12
(Hour
), Padding
, 2);
271 Result
:= Result
& Image
(Hour
, Space
, 2);
276 Result
:= Result
& Image
(Hour_12
(Hour
), Space
, 2);
281 Result
:= Result
& Image
(Minute
, Padding
, 2);
286 Result
:= Result
& Am_Pm
(Hour
);
288 -- Time, 12-hour (hh:mm:ss [AP]M)
292 Image
(Hour_12
(Hour
), Padding
, Length
=> 2) & ':' &
293 Image
(Minute
, Padding
, Length
=> 2) & ':' &
294 Image
(Second
, Padding
, Length
=> 2) & ' ' &
297 -- Seconds since 1970-01-01 00:00:00 UTC
298 -- (a nonstandard extension)
302 Sec
: constant Long_Integer :=
304 ((Julian_Day
(Year
, Month
, Day
) -
305 Julian_Day
(1970, 1, 1)) * 86_400
+
306 Hour
* 3_600
+ Minute
* 60 + Second
);
309 Result
:= Result
& Image
(Sec
, None
);
315 Result
:= Result
& Image
(Second
, Padding
, Length
=> 2);
317 -- Milliseconds (3 digits)
318 -- Microseconds (6 digits)
319 -- Nanoseconds (9 digits)
321 when 'i' |
'e' |
'o' =>
323 Sub_Sec
: constant Long_Integer :=
324 Long_Integer (Sub_Second
* 1_000_000_000
);
326 Img1
: constant String := Sub_Sec
'Img;
327 Img2
: constant String :=
328 "00000000" & Img1
(Img1
'First + 1 .. Img1
'Last);
329 Nanos
: constant String :=
330 Img2
(Img2
'Last - 8 .. Img2
'Last);
333 case Picture
(P
+ 1) is
336 Nanos
(Nanos
'First .. Nanos
'First + 2);
340 Nanos
(Nanos
'First .. Nanos
'First + 5);
343 Result
:= Result
& Nanos
;
350 -- Time, 24-hour (hh:mm:ss)
354 Image
(Hour
, Padding
, Length
=> 2) & ':' &
355 Image
(Minute
, Padding
, Length
=> 2) & ':' &
356 Image
(Second
, Padding
, Length
=> 2);
358 -- Locale's abbreviated weekday name (Sun..Sat)
362 Image
(Day_Name
'Image (Day_Of_Week
(Date
)), 3);
364 -- Locale's full weekday name, variable length
365 -- (Sunday..Saturday)
369 Image
(Day_Name
'Image (Day_Of_Week
(Date
)));
371 -- Locale's abbreviated month name (Jan..Dec)
375 Image
(Month_Name
'Image (Month_Name
'Val (Month
- 1)), 3);
377 -- Locale's full month name, variable length
378 -- (January..December)
382 Image
(Month_Name
'Image (Month_Name
'Val (Month
- 1)));
384 -- Locale's date and time (Sat Nov 04 12:02:33 EST 1989)
389 Result
:= Result
& Image
(Date
, "%a %b %d %T %Y");
391 Result
:= Result
& Image
(Date
, "%a %b %_d %_T %Y");
393 Result
:= Result
& Image
(Date
, "%a %b %-d %-T %Y");
396 -- Day of month (01..31)
399 Result
:= Result
& Image
(Day
, Padding
, 2);
405 Image
(Month
, Padding
, 2) & '/' &
406 Image
(Day
, Padding
, 2) & '/' &
407 Image
(Year
, Padding
, 2);
409 -- Day of year (001..366)
412 Result
:= Result
& Image
(Day_In_Year
(Date
), Padding
, 3);
417 Result
:= Result
& Image
(Month
, Padding
, 2);
419 -- Week number of year with Sunday as first day of week
424 Offset
: constant Natural :=
425 (Julian_Day
(Year
, 1, 1) + 1) mod 7;
427 Week
: constant Natural :=
428 1 + ((Day_In_Year
(Date
) - 1) + Offset
) / 7;
431 Result
:= Result
& Image
(Week
, Padding
, 2);
434 -- Day of week (0..6) with 0 corresponding to Sunday
438 DOW
: Natural range 0 .. 6;
441 if Day_Of_Week
(Date
) = Sunday
then
444 DOW
:= Day_Name
'Pos (Day_Of_Week
(Date
));
447 Result
:= Result
& Image
(DOW
, Length
=> 1);
450 -- Week number of year with Monday as first day of week
454 Result
:= Result
& Image
(Week_In_Year
(Date
), Padding
, 2);
456 -- Last two digits of year (00..99)
460 Y
: constant Natural := Year
- (Year
/ 100) * 100;
462 Result
:= Result
& Image
(Y
, Padding
, 2);
468 Result
:= Result
& Image
(Year
, None
, 4);
477 Result
:= Result
& Picture
(P
);
481 exit when P
> Picture
'Last;
485 return To_String
(Result
);
493 (Date
: Ada
.Calendar
.Time
;
494 Picture
: Picture_String
)
497 Ada
.Text_IO
.Put
(Image
(Date
, Picture
));
500 end GNAT
.Calendar
.Time_IO
;