1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- A D A . C A L E N D A R --
9 -- Copyright (C) 1992-2012, 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 3, 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. --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 -- This is the Alpha/VMS version
34 with Ada
.Unchecked_Conversion
;
36 with System
.Aux_DEC
; use System
.Aux_DEC
;
37 with System
.OS_Primitives
; use System
.OS_Primitives
;
39 package body Ada
.Calendar
is
41 --------------------------
42 -- Implementation Notes --
43 --------------------------
45 -- Variables of type Ada.Calendar.Time have suffix _S or _M to denote
46 -- units of seconds or milis.
48 -- Because time is measured in different units and from different origins
49 -- on various targets, a system independent model is incorporated into
50 -- Ada.Calendar. The idea behind the design is to encapsulate all target
51 -- dependent machinery in a single package, thus providing a uniform
52 -- interface to all existing and any potential children.
54 -- package Ada.Calendar
55 -- procedure Split (5 parameters) -------+
56 -- | Call from local routine
58 -- package Formatting_Operations |
59 -- procedure Split (11 parameters) <--+
60 -- end Formatting_Operations |
63 -- package Ada.Calendar.Formatting | Call from child routine
64 -- procedure Split (9 or 10 parameters) -+
65 -- end Ada.Calendar.Formatting
67 -- The behaviour of the interfacing routines is controlled via various
68 -- flags. All new Ada 2005 types from children of Ada.Calendar are
69 -- emulated by a similar type. For instance, type Day_Number is replaced
70 -- by Integer in various routines. One ramification of this model is that
71 -- the caller site must perform validity checks on returned results.
72 -- The end result of this model is the lack of target specific files per
73 -- child of Ada.Calendar (a-calfor, a-calfor-vms, a-calfor-vxwors, etc).
75 -----------------------
76 -- Local Subprograms --
77 -----------------------
79 procedure Check_Within_Time_Bounds
(T
: OS_Time
);
80 -- Ensure that a time representation value falls withing the bounds of Ada
81 -- time. Leap seconds support is taken into account.
83 procedure Cumulative_Leap_Seconds
84 (Start_Date
: OS_Time
;
86 Elapsed_Leaps
: out Natural;
87 Next_Leap_Sec
: out OS_Time
);
88 -- Elapsed_Leaps is the sum of the leap seconds that have occurred on or
89 -- after Start_Date and before (strictly before) End_Date. Next_Leap_Sec
90 -- represents the next leap second occurrence on or after End_Date. If
91 -- there are no leaps seconds after End_Date, End_Of_Time is returned.
92 -- End_Of_Time can be used as End_Date to count all the leap seconds that
93 -- have occurred on or after Start_Date.
95 -- Note: Any sub seconds of Start_Date and End_Date are discarded before
96 -- the calculations are done. For instance: if 113 seconds is a leap
97 -- second (it isn't) and 113.5 is input as an End_Date, the leap second
98 -- at 113 will not be counted in Leaps_Between, but it will be returned
99 -- as Next_Leap_Sec. Thus, if the caller wants to know if the End_Date is
100 -- a leap second, the comparison should be:
102 -- End_Date >= Next_Leap_Sec;
104 -- After_Last_Leap is designed so that this comparison works without
105 -- having to first check if Next_Leap_Sec is a valid leap second.
107 function To_Duration
(T
: Time
) return Duration;
108 function To_Relative_Time
(D
: Duration) return Time
;
109 -- It is important to note that duration's fractional part denotes nano
110 -- seconds while the units of Time are 100 nanoseconds. If a regular
111 -- Unchecked_Conversion was employed, the resulting values would be off
114 --------------------------
115 -- Leap seconds control --
116 --------------------------
119 pragma Import
(C
, Flag
, "__gl_leap_seconds_support");
120 -- This imported value is used to determine whether the compilation had
121 -- binder flag "-y" present which enables leap seconds. A value of zero
122 -- signifies no leap seconds support while a value of one enables the
125 Leap_Support
: constant Boolean := Flag
= 1;
126 -- The above flag controls the usage of leap seconds in all Ada.Calendar
129 Leap_Seconds_Count
: constant Natural := 25;
131 ---------------------
132 -- Local Constants --
133 ---------------------
135 -- The range of Ada time expressed as milis since the VMS Epoch
137 Ada_Low
: constant OS_Time
:= (10 * 366 + 32 * 365 + 45) * Milis_In_Day
;
138 Ada_High
: constant OS_Time
:= (131 * 366 + 410 * 365 + 45) * Milis_In_Day
;
140 -- Even though the upper bound of time is 2399-12-31 23:59:59.9999999
141 -- UTC, it must be increased to include all leap seconds.
143 Ada_High_And_Leaps
: constant OS_Time
:=
144 Ada_High
+ OS_Time
(Leap_Seconds_Count
) * Mili
;
146 -- Two constants used in the calculations of elapsed leap seconds.
147 -- End_Of_Time is later than Ada_High in time zone -28. Start_Of_Time
148 -- is earlier than Ada_Low in time zone +28.
150 End_Of_Time
: constant OS_Time
:= Ada_High
+ OS_Time
(3) * Milis_In_Day
;
151 Start_Of_Time
: constant OS_Time
:= Ada_Low
- OS_Time
(3) * Milis_In_Day
;
153 -- The following table contains the hard time values of all existing leap
154 -- seconds. The values are produced by the utility program xleaps.adb.
156 Leap_Second_Times
: constant array (1 .. Leap_Seconds_Count
) of OS_Time
:=
187 function "+" (Left
: Time
; Right
: Duration) return Time
is
188 pragma Unsuppress
(Overflow_Check
);
190 return Left
+ To_Relative_Time
(Right
);
192 when Constraint_Error
=>
196 function "+" (Left
: Duration; Right
: Time
) return Time
is
197 pragma Unsuppress
(Overflow_Check
);
201 when Constraint_Error
=>
209 function "-" (Left
: Time
; Right
: Duration) return Time
is
210 pragma Unsuppress
(Overflow_Check
);
212 return Left
- To_Relative_Time
(Right
);
214 when Constraint_Error
=>
218 function "-" (Left
: Time
; Right
: Time
) return Duration is
219 pragma Unsuppress
(Overflow_Check
);
221 -- The bound of type Duration expressed as time
223 Dur_High
: constant OS_Time
:=
224 OS_Time
(To_Relative_Time
(Duration'Last));
225 Dur_Low
: constant OS_Time
:=
226 OS_Time
(To_Relative_Time
(Duration'First));
231 Res_M
:= OS_Time
(Left
) - OS_Time
(Right
);
233 -- Due to the extended range of Ada time, "-" is capable of producing
234 -- results which may exceed the range of Duration. In order to prevent
235 -- the generation of bogus values by the Unchecked_Conversion, we apply
236 -- the following check.
239 or else Res_M
>= Dur_High
243 -- Normal case, result fits
246 return To_Duration
(Time
(Res_M
));
250 when Constraint_Error
=>
258 function "<" (Left
, Right
: Time
) return Boolean is
260 return OS_Time
(Left
) < OS_Time
(Right
);
267 function "<=" (Left
, Right
: Time
) return Boolean is
269 return OS_Time
(Left
) <= OS_Time
(Right
);
276 function ">" (Left
, Right
: Time
) return Boolean is
278 return OS_Time
(Left
) > OS_Time
(Right
);
285 function ">=" (Left
, Right
: Time
) return Boolean is
287 return OS_Time
(Left
) >= OS_Time
(Right
);
290 ------------------------------
291 -- Check_Within_Time_Bounds --
292 ------------------------------
294 procedure Check_Within_Time_Bounds
(T
: OS_Time
) is
297 if T
< Ada_Low
or else T
> Ada_High_And_Leaps
then
301 if T
< Ada_Low
or else T
> Ada_High
then
305 end Check_Within_Time_Bounds
;
311 function Clock
return Time
is
312 Elapsed_Leaps
: Natural;
313 Next_Leap_M
: OS_Time
;
314 Res_M
: constant OS_Time
:= OS_Clock
;
317 -- Note that on other targets a soft-link is used to get a different
318 -- clock depending whether tasking is used or not. On VMS this isn't
319 -- needed since all clock calls end up using SYS$GETTIM, so call the
320 -- OS_Primitives version for efficiency.
322 -- If the target supports leap seconds, determine the number of leap
323 -- seconds elapsed until this moment.
326 Cumulative_Leap_Seconds
327 (Start_Of_Time
, Res_M
, Elapsed_Leaps
, Next_Leap_M
);
329 -- The system clock may fall exactly on a leap second
331 if Res_M
>= Next_Leap_M
then
332 Elapsed_Leaps
:= Elapsed_Leaps
+ 1;
335 -- The target does not support leap seconds
341 return Time
(Res_M
+ OS_Time
(Elapsed_Leaps
) * Mili
);
344 -----------------------------
345 -- Cumulative_Leap_Seconds --
346 -----------------------------
348 procedure Cumulative_Leap_Seconds
349 (Start_Date
: OS_Time
;
351 Elapsed_Leaps
: out Natural;
352 Next_Leap_Sec
: out OS_Time
)
354 End_Index
: Positive;
355 End_T
: OS_Time
:= End_Date
;
356 Start_Index
: Positive;
357 Start_T
: OS_Time
:= Start_Date
;
360 pragma Assert
(Leap_Support
and then End_Date
>= Start_Date
);
362 Next_Leap_Sec
:= End_Of_Time
;
364 -- Make sure that the end date does not exceed the upper bound
367 if End_Date
> Ada_High
then
371 -- Remove the sub seconds from both dates
373 Start_T
:= Start_T
- (Start_T
mod Mili
);
374 End_T
:= End_T
- (End_T
mod Mili
);
376 -- Some trivial cases:
377 -- Leap 1 . . . Leap N
378 -- ---+========+------+############+-------+========+-----
379 -- Start_T End_T Start_T End_T
381 if End_T
< Leap_Second_Times
(1) then
383 Next_Leap_Sec
:= Leap_Second_Times
(1);
386 elsif Start_T
> Leap_Second_Times
(Leap_Seconds_Count
) then
388 Next_Leap_Sec
:= End_Of_Time
;
392 -- Perform the calculations only if the start date is within the leap
393 -- second occurrences table.
395 if Start_T
<= Leap_Second_Times
(Leap_Seconds_Count
) then
398 -- +----+----+-- . . . --+-------+---+
399 -- | T1 | T2 | | N - 1 | N |
400 -- +----+----+-- . . . --+-------+---+
402 -- | Start_Index | End_Index
403 -- +-------------------+
406 -- The idea behind the algorithm is to iterate and find two closest
407 -- dates which are after Start_T and End_T. Their corresponding
408 -- index difference denotes the number of leap seconds elapsed.
412 exit when Leap_Second_Times
(Start_Index
) >= Start_T
;
413 Start_Index
:= Start_Index
+ 1;
416 End_Index
:= Start_Index
;
418 exit when End_Index
> Leap_Seconds_Count
419 or else Leap_Second_Times
(End_Index
) >= End_T
;
420 End_Index
:= End_Index
+ 1;
423 if End_Index
<= Leap_Seconds_Count
then
424 Next_Leap_Sec
:= Leap_Second_Times
(End_Index
);
427 Elapsed_Leaps
:= End_Index
- Start_Index
;
432 end Cumulative_Leap_Seconds
;
438 function Day
(Date
: Time
) return Day_Number
is
443 pragma Unreferenced
(Y
, M
, S
);
445 Split
(Date
, Y
, M
, D
, S
);
453 function Is_Leap
(Year
: Year_Number
) return Boolean is
455 -- Leap centennial years
457 if Year
mod 400 = 0 then
460 -- Non-leap centennial years
462 elsif Year
mod 100 = 0 then
468 return Year
mod 4 = 0;
476 function Month
(Date
: Time
) return Month_Number
is
481 pragma Unreferenced
(Y
, D
, S
);
483 Split
(Date
, Y
, M
, D
, S
);
491 function Seconds
(Date
: Time
) return Day_Duration
is
496 pragma Unreferenced
(Y
, M
, D
);
498 Split
(Date
, Y
, M
, D
, S
);
508 Year
: out Year_Number
;
509 Month
: out Month_Number
;
510 Day
: out Day_Number
;
511 Seconds
: out Day_Duration
)
520 -- Use UTC as the local time zone on VMS, the status of flag Use_TZ is
521 -- irrelevant in this case.
523 Formatting_Operations
.Split
541 or else not Month
'Valid
542 or else not Day
'Valid
543 or else not Seconds
'Valid
555 Month
: Month_Number
;
557 Seconds
: Day_Duration
:= 0.0) return Time
559 -- The values in the following constants are irrelevant, they are just
560 -- placeholders; the choice of constructing a Day_Duration value is
561 -- controlled by the Use_Day_Secs flag.
563 H
: constant Integer := 1;
564 M
: constant Integer := 1;
565 Se
: constant Integer := 1;
566 Ss
: constant Duration := 0.1;
570 or else not Month
'Valid
571 or else not Day
'Valid
572 or else not Seconds
'Valid
577 -- Use UTC as the local time zone on VMS, the status of flag Use_TZ is
578 -- irrelevant in this case.
581 Formatting_Operations
.Time_Of
591 Use_Day_Secs
=> True,
601 function To_Duration
(T
: Time
) return Duration is
602 function Time_To_Duration
is
603 new Ada
.Unchecked_Conversion
(Time
, Duration);
605 return Time_To_Duration
(T
* 100);
608 ----------------------
609 -- To_Relative_Time --
610 ----------------------
612 function To_Relative_Time
(D
: Duration) return Time
is
613 function Duration_To_Time
is
614 new Ada
.Unchecked_Conversion
(Duration, Time
);
616 return Duration_To_Time
(D
/ 100.0);
617 end To_Relative_Time
;
623 function Year
(Date
: Time
) return Year_Number
is
628 pragma Unreferenced
(M
, D
, S
);
630 Split
(Date
, Y
, M
, D
, S
);
634 -- The following packages assume that Time is a Long_Integer, the units
635 -- are 100 nanoseconds and the starting point in the VMS Epoch.
637 ---------------------------
638 -- Arithmetic_Operations --
639 ---------------------------
641 package body Arithmetic_Operations
is
647 function Add
(Date
: Time
; Days
: Long_Integer) return Time
is
648 pragma Unsuppress
(Overflow_Check
);
649 Date_M
: constant OS_Time
:= OS_Time
(Date
);
651 return Time
(Date_M
+ OS_Time
(Days
) * Milis_In_Day
);
653 when Constraint_Error
=>
664 Days
: out Long_Integer;
665 Seconds
: out Duration;
666 Leap_Seconds
: out Integer)
671 Elapsed_Leaps
: Natural;
673 Negate
: Boolean := False;
675 Sub_Seconds
: Duration;
678 -- This classification is necessary in order to avoid a Time_Error
679 -- being raised by the arithmetic operators in Ada.Calendar.
681 if Left
>= Right
then
682 Later
:= OS_Time
(Left
);
683 Earlier
:= OS_Time
(Right
);
685 Later
:= OS_Time
(Right
);
686 Earlier
:= OS_Time
(Left
);
690 -- If the target supports leap seconds, process them
693 Cumulative_Leap_Seconds
694 (Earlier
, Later
, Elapsed_Leaps
, Next_Leap
);
696 if Later
>= Next_Leap
then
697 Elapsed_Leaps
:= Elapsed_Leaps
+ 1;
700 -- The target does not support leap seconds
706 Diff_M
:= Later
- Earlier
- OS_Time
(Elapsed_Leaps
) * Mili
;
708 -- Sub second processing
710 Sub_Seconds
:= Duration (Diff_M
mod Mili
) / Mili_F
;
712 -- Convert to seconds. Note that his action eliminates the sub
713 -- seconds automatically.
715 Diff_S
:= Diff_M
/ Mili
;
717 Days
:= Long_Integer (Diff_S
/ Secs_In_Day
);
718 Seconds
:= Duration (Diff_S
mod Secs_In_Day
) + Sub_Seconds
;
719 Leap_Seconds
:= Integer (Elapsed_Leaps
);
725 if Leap_Seconds
/= 0 then
726 Leap_Seconds
:= -Leap_Seconds
;
735 function Subtract
(Date
: Time
; Days
: Long_Integer) return Time
is
736 pragma Unsuppress
(Overflow_Check
);
737 Date_M
: constant OS_Time
:= OS_Time
(Date
);
739 return Time
(Date_M
- OS_Time
(Days
) * Milis_In_Day
);
741 when Constraint_Error
=>
744 end Arithmetic_Operations
;
746 ---------------------------
747 -- Conversion_Operations --
748 ---------------------------
750 package body Conversion_Operations
is
752 Epoch_Offset
: constant OS_Time
:= 35067168000000000;
753 -- The difference between 1970-1-1 UTC and 1858-11-17 UTC expressed in
760 function To_Ada_Time
(Unix_Time
: Long_Integer) return Time
is
761 pragma Unsuppress
(Overflow_Check
);
762 Unix_Rep
: constant OS_Time
:= OS_Time
(Unix_Time
) * Mili
;
764 return Time
(Unix_Rep
+ Epoch_Offset
);
766 when Constraint_Error
=>
781 tm_isdst
: Integer) return Time
783 pragma Unsuppress
(Overflow_Check
);
785 Year_Shift
: constant Integer := 1900;
786 Month_Shift
: constant Integer := 1;
789 Month
: Month_Number
;
798 Year
:= Year_Number
(Year_Shift
+ tm_year
);
799 Month
:= Month_Number
(Month_Shift
+ tm_mon
);
800 Day
:= Day_Number
(tm_day
);
802 -- Step 1: Validity checks of input values
805 or else not Month
'Valid
806 or else not Day
'Valid
807 or else tm_hour
not in 0 .. 24
808 or else tm_min
not in 0 .. 59
809 or else tm_sec
not in 0 .. 60
810 or else tm_isdst
not in -1 .. 1
815 -- Step 2: Potential leap second
825 -- Step 3: Calculate the time value
829 (Formatting_Operations
.Time_Of
833 Day_Secs
=> 0.0, -- Time is given in h:m:s
837 Sub_Sec
=> 0.0, -- No precise sub second given
839 Use_Day_Secs
=> False, -- Time is given in h:m:s
840 Use_TZ
=> True, -- Force usage of explicit time zone
842 Time_Zone
=> 0)); -- Place the value in UTC
843 -- Step 4: Daylight Savings Time
846 Result
:= Result
+ OS_Time
(3_600
) * Mili
;
849 return Time
(Result
);
851 when Constraint_Error
=>
860 (tv_sec
: Long_Integer;
861 tv_nsec
: Long_Integer) return Duration
863 pragma Unsuppress
(Overflow_Check
);
865 return Duration (tv_sec
) + Duration (tv_nsec
) / Mili_F
;
868 ------------------------
869 -- To_Struct_Timespec --
870 ------------------------
872 procedure To_Struct_Timespec
874 tv_sec
: out Long_Integer;
875 tv_nsec
: out Long_Integer)
877 pragma Unsuppress
(Overflow_Check
);
879 Nano_Secs
: Duration;
882 -- Seconds extraction, avoid potential rounding errors
885 tv_sec
:= Long_Integer (Secs
);
887 -- 100 Nanoseconds extraction
889 Nano_Secs
:= D
- Duration (tv_sec
);
890 tv_nsec
:= Long_Integer (Nano_Secs
* Mili
);
891 end To_Struct_Timespec
;
897 procedure To_Struct_Tm
899 tm_year
: out Integer;
900 tm_mon
: out Integer;
901 tm_day
: out Integer;
902 tm_hour
: out Integer;
903 tm_min
: out Integer;
904 tm_sec
: out Integer)
906 pragma Unsuppress
(Overflow_Check
);
908 Month
: Month_Number
;
910 Day_Secs
: Day_Duration
;
915 -- Step 1: Split the input time
917 Formatting_Operations
.Split
922 Day_Secs
=> Day_Secs
,
927 Leap_Sec
=> Leap_Sec
,
929 Is_Historic
=> False,
932 -- Step 2: Correct the year and month
934 tm_year
:= Year
- 1900;
937 -- Step 3: Handle leap second occurrences
939 tm_sec
:= (if Leap_Sec
then 60 else Second
);
946 function To_Unix_Time
(Ada_Time
: Time
) return Long_Integer is
947 pragma Unsuppress
(Overflow_Check
);
948 Ada_OS_Time
: constant OS_Time
:= OS_Time
(Ada_Time
);
950 return Long_Integer ((Ada_OS_Time
- Epoch_Offset
) / Mili
);
952 when Constraint_Error
=>
955 end Conversion_Operations
;
957 ---------------------------
958 -- Formatting_Operations --
959 ---------------------------
961 package body Formatting_Operations
is
967 function Day_Of_Week
(Date
: Time
) return Integer is
973 Day_Count
: Long_Integer;
974 Midday_Date_S
: Time
;
977 Split
(Date
, Y
, M
, D
, S
);
979 -- Build a time value in the middle of the same day and convert the
980 -- time value to seconds.
982 Midday_Date_S
:= Time_Of
(Y
, M
, D
, 43_200
.0
) / Mili
;
984 -- Count the number of days since the start of VMS time. 1858-11-17
987 Day_Count
:= Long_Integer (Midday_Date_S
/ Secs_In_Day
) + 2;
989 return Integer (Day_Count
mod 7);
998 Year
: out Year_Number
;
999 Month
: out Month_Number
;
1000 Day
: out Day_Number
;
1001 Day_Secs
: out Day_Duration
;
1003 Minute
: out Integer;
1004 Second
: out Integer;
1005 Sub_Sec
: out Duration;
1006 Leap_Sec
: out Boolean;
1008 Is_Historic
: Boolean;
1009 Time_Zone
: Long_Integer)
1011 -- Flags Use_TZ and Is_Historic are present for interfacing purposes
1013 pragma Unreferenced
(Use_TZ
, Is_Historic
);
1016 (Status
: out Unsigned_Longword
;
1017 Timbuf
: out Unsigned_Word_Array
;
1020 pragma Interface
(External
, Numtim
);
1022 pragma Import_Valued_Procedure
1023 (Numtim
, "SYS$NUMTIM",
1024 (Unsigned_Longword
, Unsigned_Word_Array
, Time
),
1025 (Value
, Reference
, Reference
));
1027 Status
: Unsigned_Longword
;
1028 Timbuf
: Unsigned_Word_Array
(1 .. 7);
1030 Ada_Min_Year
: constant := 1901;
1031 Ada_Max_Year
: constant := 2399;
1034 Elapsed_Leaps
: Natural;
1035 Next_Leap_M
: OS_Time
;
1038 Date_M
:= OS_Time
(Date
);
1040 -- Step 1: Leap seconds processing
1042 if Leap_Support
then
1043 Cumulative_Leap_Seconds
1044 (Start_Of_Time
, Date_M
, Elapsed_Leaps
, Next_Leap_M
);
1046 Leap_Sec
:= Date_M
>= Next_Leap_M
;
1049 Elapsed_Leaps
:= Elapsed_Leaps
+ 1;
1052 -- The target does not support leap seconds
1059 Date_M
:= Date_M
- OS_Time
(Elapsed_Leaps
) * Mili
;
1061 -- Step 2: Time zone processing
1063 if Time_Zone
/= 0 then
1064 Date_M
:= Date_M
+ OS_Time
(Time_Zone
) * 60 * Mili
;
1067 -- After the leap seconds and time zone have been accounted for,
1068 -- the date should be within the bounds of Ada time.
1071 or else Date_M
> Ada_High
1076 -- Step 3: Sub second processing
1078 Sub_Sec
:= Duration (Date_M
mod Mili
) / Mili_F
;
1080 -- Drop the sub seconds
1082 Date_M
:= Date_M
- (Date_M
mod Mili
);
1084 -- Step 4: VMS system call
1086 Numtim
(Status
, Timbuf
, Time
(Date_M
));
1088 if Status
mod 2 /= 1
1089 or else Timbuf
(1) not in Ada_Min_Year
.. Ada_Max_Year
1094 -- Step 5: Time components processing
1096 Year
:= Year_Number
(Timbuf
(1));
1097 Month
:= Month_Number
(Timbuf
(2));
1098 Day
:= Day_Number
(Timbuf
(3));
1099 Hour
:= Integer (Timbuf
(4));
1100 Minute
:= Integer (Timbuf
(5));
1101 Second
:= Integer (Timbuf
(6));
1103 Day_Secs
:= Day_Duration
(Hour
* 3_600
) +
1104 Day_Duration
(Minute
* 60) +
1105 Day_Duration
(Second
) +
1114 (Year
: Year_Number
;
1115 Month
: Month_Number
;
1117 Day_Secs
: Day_Duration
;
1123 Use_Day_Secs
: Boolean;
1125 Is_Historic
: Boolean;
1126 Time_Zone
: Long_Integer) return Time
1128 -- Flag Is_Historic is present for interfacing purposes
1130 pragma Unreferenced
(Is_Historic
);
1132 procedure Cvt_Vectim
1133 (Status
: out Unsigned_Longword
;
1134 Input_Time
: Unsigned_Word_Array
;
1135 Resultant_Time
: out Time
);
1137 pragma Interface
(External
, Cvt_Vectim
);
1139 pragma Import_Valued_Procedure
1140 (Cvt_Vectim
, "LIB$CVT_VECTIM",
1141 (Unsigned_Longword
, Unsigned_Word_Array
, Time
),
1142 (Value
, Reference
, Reference
));
1144 Status
: Unsigned_Longword
;
1145 Timbuf
: Unsigned_Word_Array
(1 .. 7);
1147 Y
: Year_Number
:= Year
;
1148 Mo
: Month_Number
:= Month
;
1149 D
: Day_Number
:= Day
;
1150 H
: Integer := Hour
;
1151 Mi
: Integer := Minute
;
1152 Se
: Integer := Second
;
1153 Su
: Duration := Sub_Sec
;
1155 Elapsed_Leaps
: Natural;
1156 Int_Day_Secs
: Integer;
1157 Next_Leap_M
: OS_Time
;
1160 Rounded_Res_M
: OS_Time
;
1163 -- No validity checks are performed on the input values since it is
1164 -- assumed that the called has already performed them.
1166 -- Step 1: Hour, minute, second and sub second processing
1168 if Use_Day_Secs
then
1170 -- A day seconds value of 86_400 designates a new day
1172 if Day_Secs
= 86_400
.0
then
1174 Adj_Year
: Year_Number
:= Year
;
1175 Adj_Month
: Month_Number
:= Month
;
1176 Adj_Day
: Day_Number
:= Day
;
1179 if Day
< Days_In_Month
(Month
)
1181 and then Is_Leap
(Year
))
1185 -- The day adjustment moves the date to a new month
1191 Adj_Month
:= Month
+ 1;
1193 -- The month adjustment moves the date to a new year
1197 Adj_Year
:= Year
+ 1;
1210 -- Normal case (not exactly one day)
1213 -- Sub second extraction
1217 then Integer (Day_Secs
- 0.5)
1218 else Integer (Day_Secs
));
1220 H
:= Int_Day_Secs
/ 3_600
;
1221 Mi
:= (Int_Day_Secs
/ 60) mod 60;
1222 Se
:= Int_Day_Secs
mod 60;
1223 Su
:= Day_Secs
- Duration (Int_Day_Secs
);
1227 -- Step 2: System call to VMS
1229 Timbuf
(1) := Unsigned_Word
(Y
);
1230 Timbuf
(2) := Unsigned_Word
(Mo
);
1231 Timbuf
(3) := Unsigned_Word
(D
);
1232 Timbuf
(4) := Unsigned_Word
(H
);
1233 Timbuf
(5) := Unsigned_Word
(Mi
);
1234 Timbuf
(6) := Unsigned_Word
(Se
);
1237 Cvt_Vectim
(Status
, Timbuf
, Res
);
1239 if Status
mod 2 /= 1 then
1243 -- Step 3: Sub second adjustment
1245 Res_M
:= OS_Time
(Res
) + OS_Time
(Su
* Mili_F
);
1247 -- Step 4: Bounds check
1249 Check_Within_Time_Bounds
(Res_M
);
1251 -- Step 5: Time zone processing
1253 if Time_Zone
/= 0 then
1254 Res_M
:= Res_M
- OS_Time
(Time_Zone
) * 60 * Mili
;
1257 -- Step 6: Leap seconds processing
1259 if Leap_Support
then
1260 Cumulative_Leap_Seconds
1261 (Start_Of_Time
, Res_M
, Elapsed_Leaps
, Next_Leap_M
);
1263 Res_M
:= Res_M
+ OS_Time
(Elapsed_Leaps
) * Mili
;
1265 -- An Ada 2005 caller requesting an explicit leap second or an
1266 -- Ada 95 caller accounting for an invisible leap second.
1269 or else Res_M
>= Next_Leap_M
1271 Res_M
:= Res_M
+ OS_Time
(1) * Mili
;
1274 -- Leap second validity check
1276 Rounded_Res_M
:= Res_M
- (Res_M
mod Mili
);
1280 and then Rounded_Res_M
/= Next_Leap_M
1286 return Time
(Res_M
);
1288 end Formatting_Operations
;
1290 ---------------------------
1291 -- Time_Zones_Operations --
1292 ---------------------------
1294 package body Time_Zones_Operations
is
1296 ---------------------
1297 -- UTC_Time_Offset --
1298 ---------------------
1300 function UTC_Time_Offset
(Date
: Time
) return Long_Integer is
1301 -- Formal parameter Date is here for interfacing, but is never
1304 pragma Unreferenced
(Date
);
1306 function get_gmtoff
return Long_Integer;
1307 pragma Import
(C
, get_gmtoff
, "get_gmtoff");
1310 -- VMS is not capable of determining the time zone in some past or
1311 -- future point in time denoted by Date, thus the current time zone
1315 end UTC_Time_Offset
;
1316 end Time_Zones_Operations
;