1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
|
------------------------------------------------------------------------------
-- --
-- FLORIST (FSU Implementation of POSIX.5) COMPONENTS --
-- --
-- P O S I X . C A L E N D A R --
-- --
-- B o d y --
-- --
-- --
-- Copyright (c) 1996 Florida State University (FSU), All Rights Reserved. --
-- Copyright (C) 1998-2012, AdaCore --
-- --
-- This file is a component of FLORIST, an implementation of an Ada API --
-- for the POSIX OS services, for use with the GNAT Ada compiler and --
-- the FSU Gnu Ada Runtime Library (GNARL). The interface is intended --
-- to be close to that specified in IEEE STD 1003.5: 1990 and IEEE STD --
-- 1003.5b: 1996. --
-- --
-- FLORIST is free software; you can redistribute it and/or modify it --
-- under terms of the GNU General Public License as published by the --
-- Free Software Foundation; either version 2, or (at your option) any --
-- later version. FLORIST is distributed in the hope that it will be --
-- useful, but WITHOUT ANY WARRANTY; without even the implied warranty --
-- of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU --
-- General Public License for more details. You should have received a --
-- copy of the GNU General Public License distributed with GNARL; see --
-- file COPYING. If not, write to the Free Software Foundation, 59 --
-- Temple Place - Suite 330, Boston, MA 02111-1307, USA. --
-- --
-- --
-- --
-- --
-- --
-- --
-- --
-- --
------------------------------------------------------------------------------
-- Note: we used to call c_time in order to keep some compatibility with
-- POSIX.Files.Set_File_Times, but this seems obsolete now with modern
-- file systems, and having a fine grain precision is more important anyway.
with Unchecked_Conversion;
package body POSIX.Calendar is
package AC renames Standard.Calendar;
use Standard.Calendar;
POSIX_Epoch : constant Duration :=
AC.Time_Of (Year => 2150, Month => 1, Day => 1) -
AC.Time_Of (Year => 1970, Month => 1, Day => 1);
-- Time difference between POSIX and GNAT notion of time, measured as a
-- duration since the Ada mid point
pragma Warnings (Off);
-- Disable warning that the representation of Time values may
-- change between GNAT versions.
function Duration_To_POSIX_Time is new
Unchecked_Conversion (Duration, POSIX_Time);
function POSIX_Time_To_Duration is new
Unchecked_Conversion (POSIX_Time, Duration);
pragma Warnings (On);
-------------
-- Clock --
-------------
function Clock return POSIX_Time is
begin
return To_POSIX_Time (AC.Clock);
end Clock;
---------------
-- To_Time --
---------------
function To_Time (Date : POSIX_Time) return AC.Time is
begin
return AC.Time (Date) - POSIX_Epoch;
end To_Time;
---------------------
-- To_POSIX_Time --
---------------------
function To_POSIX_Time (Date : AC.Time) return POSIX_Time is
begin
return POSIX_Time (Date + POSIX_Epoch);
end To_POSIX_Time;
------------
-- Year --
------------
function Year (Date : POSIX_Time) return Year_Number is
begin
return Year_Number (AC.Year (To_Time (Date)));
end Year;
-------------
-- Month --
-------------
function Month (Date : POSIX_Time) return Month_Number is
begin
return AC.Month (To_Time (Date));
end Month;
-----------
-- Day --
-----------
function Day (Date : POSIX_Time) return Day_Number is
begin
return AC.Day (To_Time (Date));
end Day;
---------------
-- Seconds --
---------------
function Seconds (Date : POSIX_Time) return Day_Duration is
begin
return AC.Seconds (To_Time (Date));
end Seconds;
-------------
-- Split --
-------------
procedure Split
(Date : POSIX_Time;
Year : out Year_Number;
Month : out Month_Number;
Day : out Day_Number;
Seconds : out Day_Duration) is
begin
AC.Split (To_Time (Date), Year, Month, Day, Seconds);
end Split;
---------------
-- Time_Of --
---------------
function Time_Of
(Year : Year_Number;
Month : Month_Number;
Day : Day_Number;
Seconds : Day_Duration := 0.0) return POSIX_Time is
begin
return To_POSIX_Time (AC.Time_Of (Year, Month, Day, Seconds));
end Time_Of;
-----------
-- "+" --
-----------
function "+" (L : POSIX_Time; R : Duration) return POSIX_Time is
begin
return To_POSIX_Time (To_Time (L) + R);
end "+";
-----------
-- "+" --
-----------
function "+" (L : Duration; R : POSIX_Time) return POSIX_Time is
begin
return To_POSIX_Time (L + To_Time (R));
end "+";
-----------
-- "-" --
-----------
function "-" (L : POSIX_Time; R : Duration) return POSIX_Time is
begin
return To_POSIX_Time (To_Time (L) - R);
end "-";
-----------
-- "-" --
-----------
function "-" (L : POSIX_Time; R : POSIX_Time) return Duration is
begin
return To_Time (L) - To_Time (R);
end "-";
-----------
-- "<" --
-----------
function "<" (L, R : POSIX_Time) return Boolean is
begin
return To_Time (L) < To_Time (R);
end "<";
------------
-- "<=" --
------------
function "<=" (L, R : POSIX_Time) return Boolean is
begin
return To_Time (L) <= To_Time (R);
end "<=";
-----------
-- ">" --
-----------
function ">" (L, R : POSIX_Time) return Boolean is
begin
return To_Time (L) > To_Time (R);
end ">";
------------
-- ">=" --
------------
function ">=" (L, R : POSIX_Time) return Boolean is
begin
return To_Time (L) >= To_Time (R);
end ">=";
---------------------
-- To_POSIX_Time --
---------------------
function To_POSIX_Time (Date : POSIX.Timespec) return POSIX_Time is
begin
return Duration_To_POSIX_Time (POSIX.To_Duration (Date));
end To_POSIX_Time;
-------------------
-- To_Timespec --
-------------------
function To_Timespec (Date : POSIX_Time) return POSIX.Timespec is
begin
return POSIX.To_Timespec (POSIX_Time_To_Duration (Date));
end To_Timespec;
end POSIX.Calendar;
|