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
|
------------------------------------------------------------------------------
-- --
-- GNU ADA RUNTIME LIBRARY (GNARL) COMPONENTS --
-- --
-- A D A . C A L E N D A R . D E L A Y S --
-- --
-- B o d y --
-- --
-- $Revision: 1.23 $ --
-- --
-- Copyright (C) 1991,1992,1993,1994,1995,1996 Florida State University --
-- --
-- GNARL is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNARL is distributed in the hope that it will be useful, but WITH- --
-- OUT 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. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. It is --
-- now maintained by Ada Core Technologies Inc. in cooperation with Florida --
-- State University (http://www.gnat.com). --
-- --
------------------------------------------------------------------------------
with System;
-- Used for, Priority
with System.Task_Timer;
-- Used for, Timer
-- Max_Sensible_Delay
with System.Task_Primitives;
-- Used for, Cond_Timed_Wait
-- Lock
-- Condition_Variable
-- Initialize_Lock
-- Initialize_Cond
-- Write_Lock
-- Unlock
with System.Task_Clock;
-- Used for, Stimespec
with System.Task_Clock.Machine_Specifics;
-- Used for, Stimespec_Ticks;
with Ada.Calendar.Conv;
-- Used for, Time_To_Stimespec
with Ada.Finalization;
package body Ada.Calendar.Delays is
function "+" (L, R : System.Task_Clock.Stimespec) return
System.Task_Clock.Stimespec renames System.Task_Clock."+";
package Delay_Objects is
type Delay_Mutex_CV is new Ada.Finalization.Limited_Controlled with
record
L : System.Task_Primitives.Lock;
C : System.Task_Primitives.Condition_Variable;
end record;
procedure Initialize (Object : in out Delay_Mutex_CV);
procedure Finalize (Object : in out Delay_Mutex_CV);
procedure Delay_For (Object : in out Delay_Mutex_CV; D : Duration);
procedure Delay_Until (Object : in out Delay_Mutex_CV; T : Time);
end Delay_Objects;
package body Delay_Objects is
procedure Initialize (Object : in out Delay_Mutex_CV) is
begin
System.Task_Primitives.Initialize_Lock
(System.Priority'Last, Object.L);
System.Task_Primitives.Initialize_Cond (Object.C);
end Initialize;
procedure Finalize (Object : in out Delay_Mutex_CV) is
begin
System.Task_Primitives.Finalize_Cond (Object.C);
System.Task_Primitives.Finalize_Lock (Object.L);
end Finalize;
procedure Delay_For (Object : in out Delay_Mutex_CV; D : Duration) is
Error : Boolean;
Result : Boolean;
New_T : System.Task_Clock.Stimespec;
begin
System.Task_Primitives.Write_Lock (Object.L, Error);
New_T :=
Calendar.Conv.Time_To_Stimespec
(Clock + Duration'Min (D, System.Task_Timer.Max_Sensible_Delay)) +
System.Task_Clock.Machine_Specifics.Stimespec_Ticks;
System.Task_Primitives.Cond_Timed_Wait
(Object.C, Object.L, New_T, Result);
System.Task_Primitives.Unlock (Object.L);
end Delay_For;
procedure Delay_Until (Object : in out Delay_Mutex_CV; T : Time) is
Error, Result : Boolean;
begin
System.Task_Primitives.Write_Lock (Object.L, Error);
System.Task_Primitives.Cond_Timed_Wait
(Object.C,
Object.L,
Calendar.Conv.Time_To_Stimespec (T) +
System.Task_Clock.Machine_Specifics.Stimespec_Ticks,
Result);
System.Task_Primitives.Unlock (Object.L);
end Delay_Until;
end Delay_Objects;
------------------
-- Delay_Object --
------------------
protected body Delay_Object is
entry Wait (T : Duration; D : access System.Task_Timer.Delay_Block)
when True is
begin
requeue System.Task_Timer.Timer.Enqueue_Duration with abort;
end Wait;
end Delay_Object;
------------------------
-- Delay_Until_Object --
------------------------
protected body Delay_Until_Object is
entry Wait (T : Time; D : access System.Task_Timer.Delay_Block)
when True is
begin
requeue System.Task_Timer.Timer.Enqueue_Calendar_Time with abort;
end Wait;
end Delay_Until_Object;
---------------
-- Delay_For --
---------------
procedure Delay_For (D : Duration) is
DMCV : Delay_Objects.Delay_Mutex_CV;
begin
Delay_Objects.Delay_For (DMCV, D);
end Delay_For;
-----------------
-- Delay_Until --
-----------------
procedure Delay_Until (T : Time) is
DMCV : Delay_Objects.Delay_Mutex_CV;
begin
Delay_Objects.Delay_Until (DMCV, T);
end Delay_Until;
end Ada.Calendar.Delays;
|