Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / ada / a-calend-vms.ads
blob108bd8681790b29933540414a3ad1754deb36f84
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME COMPONENTS --
4 -- --
5 -- A D A . C A L E N D A R --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1992-2007, Free Software Foundation, Inc. --
10 -- --
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. --
14 -- --
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, 51 Franklin Street, Fifth Floor, --
24 -- Boston, MA 02110-1301, USA. --
25 -- --
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. --
32 -- --
33 -- GNAT was originally developed by the GNAT team at New York University. --
34 -- Extensive contributions were provided by Ada Core Technologies Inc. --
35 -- --
36 ------------------------------------------------------------------------------
38 -- This is the Alpha/VMS version
40 with System.OS_Primitives;
42 package Ada.Calendar is
44 package OSP renames System.OS_Primitives;
46 type Time is private;
48 -- Declarations representing limits of allowed local time values. Note
49 -- that these do NOT constrain the possible stored values of time which
50 -- may well permit a larger range of times (this is explicitly allowed
51 -- in Ada 95).
53 subtype Year_Number is Integer range 1901 .. 2399;
54 subtype Month_Number is Integer range 1 .. 12;
55 subtype Day_Number is Integer range 1 .. 31;
57 subtype Day_Duration is Duration range 0.0 .. 86_400.0;
59 function Clock return Time;
61 function Year (Date : Time) return Year_Number;
62 function Month (Date : Time) return Month_Number;
63 function Day (Date : Time) return Day_Number;
64 function Seconds (Date : Time) return Day_Duration;
66 procedure Split
67 (Date : Time;
68 Year : out Year_Number;
69 Month : out Month_Number;
70 Day : out Day_Number;
71 Seconds : out Day_Duration);
73 function Time_Of
74 (Year : Year_Number;
75 Month : Month_Number;
76 Day : Day_Number;
77 Seconds : Day_Duration := 0.0) return Time;
79 function "+" (Left : Time; Right : Duration) return Time;
80 function "+" (Left : Duration; Right : Time) return Time;
81 function "-" (Left : Time; Right : Duration) return Time;
82 function "-" (Left : Time; Right : Time) return Duration;
84 function "<" (Left, Right : Time) return Boolean;
85 function "<=" (Left, Right : Time) return Boolean;
86 function ">" (Left, Right : Time) return Boolean;
87 function ">=" (Left, Right : Time) return Boolean;
89 Time_Error : exception;
91 private
92 pragma Inline (Clock);
94 pragma Inline (Year);
95 pragma Inline (Month);
96 pragma Inline (Day);
98 pragma Inline ("+");
99 pragma Inline ("-");
101 pragma Inline ("<");
102 pragma Inline ("<=");
103 pragma Inline (">");
104 pragma Inline (">=");
106 -- Although the units are 100 nanoseconds, for the purpose of better
107 -- readability, this unit will be called "mili".
109 Mili : constant := 10_000_000;
110 Milis_In_Day : constant := 864_000_000_000;
111 Secs_In_Day : constant := 86_400;
113 -- Time is represented as the number of 100-nanosecond (ns) units from the
114 -- system base date and time 1858-11-17 0.0 (the Smithsonian base date and
115 -- time for the astronomic calendar).
117 -- The time value stored is typically a UTC value, as provided in standard
118 -- Unix environments. If this is the case then Split and Time_Of perform
119 -- required conversions to and from local times.
121 -- Notwithstanding this definition, Time is not quite the same as OS_Time.
122 -- Relative Time is positive, whereas relative OS_Time is negative,
123 -- but this declaration makes for easier conversion.
125 type Time is new OSP.OS_Time;
127 Days_In_Month : constant array (Month_Number) of Day_Number :=
128 (31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
130 Invalid_Time_Zone_Offset : Long_Integer;
131 pragma Import (C, Invalid_Time_Zone_Offset, "__gnat_invalid_tzoff");
133 function Is_Leap (Year : Year_Number) return Boolean;
134 -- Determine whether a given year is leap
136 -- The following packages provide a target independent interface to the
137 -- children of Calendar - Arithmetic, Formatting and Time_Zones.
139 -- NOTE: Delays does not need a target independent interface because
140 -- VMS already has a target specific file for that package.
142 package Arithmetic_Operations is
143 function Add (Date : Time; Days : Long_Integer) return Time;
144 -- Add a certain number of days to a time value
146 procedure Difference
147 (Left : Time;
148 Right : Time;
149 Days : out Long_Integer;
150 Seconds : out Duration;
151 Leap_Seconds : out Integer);
152 -- Calculate the difference between two time values in terms of days,
153 -- seconds and leap seconds elapsed. The leap seconds are not included
154 -- in the seconds returned. If Left is greater than Right, the returned
155 -- values are positive, negative otherwise.
157 function Subtract (Date : Time; Days : Long_Integer) return Time;
158 -- Subtract a certain number of days from a time value
159 end Arithmetic_Operations;
161 package Formatting_Operations is
162 function Day_Of_Week (Date : Time) return Integer;
163 -- Determine which day of week Date falls on. The returned values are
164 -- within the range of 0 .. 6 (Monday .. Sunday).
166 procedure Split
167 (Date : Time;
168 Year : out Year_Number;
169 Month : out Month_Number;
170 Day : out Day_Number;
171 Day_Secs : out Day_Duration;
172 Hour : out Integer;
173 Minute : out Integer;
174 Second : out Integer;
175 Sub_Sec : out Duration;
176 Leap_Sec : out Boolean;
177 Is_Ada_05 : Boolean;
178 Time_Zone : Long_Integer);
179 -- Split a time value into its components. Set Is_Ada_05 to use the
180 -- local time zone (the value in Time_Zone is ignored) when splitting
181 -- a time value.
183 function Time_Of
184 (Year : Year_Number;
185 Month : Month_Number;
186 Day : Day_Number;
187 Day_Secs : Day_Duration;
188 Hour : Integer;
189 Minute : Integer;
190 Second : Integer;
191 Sub_Sec : Duration;
192 Leap_Sec : Boolean;
193 Use_Day_Secs : Boolean;
194 Is_Ada_05 : Boolean;
195 Time_Zone : Long_Integer) return Time;
196 -- Given all the components of a date, return the corresponding time
197 -- value. Set Use_Day_Secs to use the value in Day_Secs, otherwise the
198 -- day duration will be calculated from Hour, Minute, Second and Sub_
199 -- Sec. Set Is_Ada_05 to use the local time zone (the value in formal
200 -- Time_Zone is ignored) when building a time value and to verify the
201 -- validity of a requested leap second.
202 end Formatting_Operations;
204 package Time_Zones_Operations is
205 function UTC_Time_Offset (Date : Time) return Long_Integer;
206 -- Return the offset in seconds from UTC
207 end Time_Zones_Operations;
209 end Ada.Calendar;