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 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
|
------------------------------------------------------------------------------
-- --
-- FLORIST (FSU Implementation of POSIX.5) COMPONENTS --
-- --
-- P O S I X . T I M E R S --
-- --
-- B o d y --
-- --
-- --
-- Copyright (C) 1996-1997 Florida State University --
-- Copyright (C) 1998-2014, 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. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
------------------------------------------------------------------------------
with Ada.Unchecked_Conversion,
POSIX.Implementation;
package body POSIX.Timers is
use POSIX.C;
use POSIX.Implementation;
function To_int is new Ada.Unchecked_Conversion (Bits, int);
function To_Struct_Sigevent is new Ada.Unchecked_Conversion
(POSIX.Signals.Signal_Event, POSIX.C.struct_sigevent);
Zero_Timespec : aliased constant struct_timespec := (0, 0);
Zero_State : aliased constant struct_itimerspec := ((0, 0), (0, 0));
-------------------
-- Set_Initial --
-------------------
procedure Set_Initial
(State : in out Timer_State;
Initial : POSIX.Timespec) is
begin
State.State.it_value := To_Struct_Timespec (Initial);
end Set_Initial;
-------------------
-- Get_Initial --
-------------------
function Get_Initial (State : Timer_State) return POSIX.Timespec is
begin
return To_Timespec (To_Duration (State.State.it_value));
end Get_Initial;
--------------------
-- Set_Interval --
--------------------
procedure Set_Interval
(State : in out Timer_State;
Interval : POSIX.Timespec) is
begin
State.State.it_interval := To_Struct_Timespec (Interval);
end Set_Interval;
--------------------
-- Get_Interval --
--------------------
function Get_Interval (State : Timer_State) return POSIX.Timespec is
begin
return To_Timespec (To_Duration (State.State.it_interval));
end Get_Interval;
-----------------
-- Set_Time --
-----------------
function clock_settime
(clock_id : clockid_t;
tp : timespec_ptr) return int;
pragma Import (C, clock_settime, clock_settime_LINKNAME);
procedure Set_Time
(Clock : Clock_ID;
Value : POSIX.Timespec) is
TS : aliased struct_timespec;
begin
TS := To_Struct_Timespec (Value);
Check (clock_settime (clockid_t (Clock), TS'Unchecked_Access));
end Set_Time;
----------------
-- Set_Time --
----------------
procedure Set_Time
(Value : POSIX.Timespec) is
TS : aliased struct_timespec;
begin
TS := To_Struct_Timespec (Value);
Check (clock_settime (POSIX.C.CLOCK_REALTIME, TS'Unchecked_Access));
end Set_Time;
----------------
-- Get_Time --
----------------
function clock_gettime
(clock_id : clockid_t;
tp : access struct_timespec) return int;
pragma Import (C, clock_gettime, clock_gettime_LINKNAME);
function Get_Time
(Clock : Clock_ID := Clock_Realtime) return POSIX.Timespec is
TS : aliased struct_timespec;
begin
Check (clock_gettime (clockid_t (Clock), TS'Unchecked_Access));
return To_Timespec (To_Duration (TS));
end Get_Time;
----------------------
-- Get_Resolution --
----------------------
function Get_Resolution
(Clock : Clock_ID := Clock_Realtime) return POSIX.Timespec is
function clock_getres
(clock_id : clockid_t;
res : access struct_timespec) return int;
pragma Import (C, clock_getres, clock_getres_LINKNAME);
TS : aliased struct_timespec;
begin
Check (clock_getres (clockid_t (Clock), TS'Unchecked_Access));
return To_Timespec (To_Duration (TS));
end Get_Resolution;
--------------------
-- Create_Timer --
--------------------
function Create_Timer
(Clock : Clock_ID;
Event : POSIX.Signals.Signal_Event) return Timer_ID is
function timer_create
(clock_id : clockid_t;
evp : sigevent_ptr;
timerid : access timer_t) return int;
pragma Import (C, timer_create, timer_create_LINKNAME);
-- .... Consider making Signal_Event into a tagged type
-- so that we don't need to make a local copy.
E : aliased POSIX.C.struct_sigevent := To_Struct_Sigevent (Event);
TID : aliased timer_t;
begin
if E.sigev_notify = POSIX.C.SIGEV_NONE then
-- make sure the other fields are valid
E.sigev_signo := SIGUSR1;
E.sigev_value := null_sigval;
end if;
Check (timer_create (clockid_t (Clock),
E'Unchecked_Access, TID'Unchecked_Access));
return Timer_ID (TID);
end Create_Timer;
--------------------
-- Delete_Timer --
--------------------
procedure Delete_Timer (Timer : in out Timer_ID) is
function timer_delete (timer_id : timer_t) return int;
pragma Import (C, timer_delete, timer_delete_LINKNAME);
begin
Check (timer_delete (timer_t (Timer)));
end Delete_Timer;
-----------------
-- Arm_Timer --
-----------------
function timer_settime
(timer_id : timer_t;
flags : C.int;
value : itimerspec_ptr;
ovalue : itimerspec_ptr) return int;
pragma Import (C, timer_settime, timer_settime_LINKNAME);
procedure Arm_Timer
(Timer : Timer_ID;
Options : Timer_Options;
New_State : Timer_State;
Old_State : out Timer_State) is
begin
-- ????? Change POSIX.5b?
-- The following two checks are required by .5b, but
-- they are inconsistent with one another
-- and they do not seem to be founded on the .1b specification.
if Options = Absolute_Timer then
Check (New_State.State.it_value /= Zero_Timespec, Invalid_Argument);
else
Check (New_State.State.it_value.tv_sec > 0, Invalid_Argument);
end if;
Check (timer_settime (timer_t (Timer),
To_int (Option_Set (Options).Option),
New_State.State'Unchecked_Access,
Old_State.State'Unchecked_Access));
end Arm_Timer;
-----------------
-- Arm_Timer --
-----------------
procedure Arm_Timer
(Timer : Timer_ID;
Options : Timer_Options;
New_State : Timer_State) is
begin
Check (New_State.State.it_value /= Zero_Timespec, Invalid_Argument);
Check (timer_settime (timer_t (Timer),
To_int (Option_Set (Options).Option),
New_State.State'Unchecked_Access, null));
end Arm_Timer;
-----------------------
-- Get_Timer_State --
-----------------------
function Get_Timer_State (Timer : Timer_ID) return Timer_State is
function timer_gettime
(timer_id : timer_t;
value : access struct_itimerspec) return int;
pragma Import (C, timer_gettime, timer_gettime_LINKNAME);
TS : Timer_State;
begin
Check (timer_gettime (timer_t (Timer), TS.State'Unchecked_Access));
return TS;
end Get_Timer_State;
--------------------
-- Disarm_Timer --
--------------------
procedure Disarm_Timer (Timer : Timer_ID) is
begin
Check (timer_settime
(timer_t (Timer), 0, Zero_State'Unchecked_Access, null));
end Disarm_Timer;
--------------------------
-- Get_Timer_Overruns --
--------------------------
function Get_Timer_Overruns (Timer : Timer_ID) return Natural is
function timer_getoverrun (timer_id : timer_t) return int;
pragma Import (C, timer_getoverrun, timer_getoverrun_LINKNAME);
begin
return Natural (Check (timer_getoverrun (timer_t (Timer))));
end Get_Timer_Overruns;
end POSIX.Timers;
|