Overview
Comment: | cron: new package implementing low-precision periodic procedure calls |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
6e8b6ccecde74b9d580c3d5df60f5425 |
User & Date: | nat on 2014-06-16 21:43:14 |
Other Links: | manifest | tags |
Context
2014-06-17
| ||
18:46 | cron-tests: test suite package for Natools.Cron check-in: 287a68c3f5 user: nat tags: trunk | |
2014-06-16
| ||
21:43 | cron: new package implementing low-precision periodic procedure calls check-in: 6e8b6ccecd user: nat tags: trunk | |
2014-06-14
| ||
15:18 | s_expressions-printers-pretty: export procedure Newline to allow clients to freely insert newlines (e.g. at the end of files) check-in: 737b8974b4 user: nat tags: trunk | |
Changes
Added src/natools-cron.adb version [1d824a2f2d].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | ------------------------------------------------------------------------------ -- Copyright (c) 2014, Natacha Porté -- -- -- -- Permission to use, copy, modify, and distribute this software for any -- -- purpose with or without fee is hereby granted, provided that the above -- -- copyright notice and this permission notice appear in all copies. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -- ------------------------------------------------------------------------------ package body Natools.Cron is ------------------------ -- Helper Subprograms -- ------------------------ function "<" (Left, Right : Periodic_Time) return Boolean is use type Ada.Calendar.Time; begin return Left.Origin < Right.Origin or else (Left.Origin = Right.Origin and then Left.Period < Right.Period); end "<"; ---------------------- -- Public Interface -- ---------------------- function Create (Time : in Periodic_Time; Callback : in Cron.Callback'Class) return Cron_Entry is begin return Result : Cron_Entry do Result.Set (Time, Callback); end return; end Create; function Create (Period : in Duration; Callback : in Cron.Callback'Class) return Cron_Entry is begin return Result : Cron_Entry do Result.Set (Period, Callback); end return; end Create; procedure Set (Self : in out Cron_Entry; Time : in Periodic_Time; Callback : in Cron.Callback'Class) is function Create return Cron.Callback'Class; function Create return Cron.Callback'Class is begin return Callback; end Create; begin Self.Reset; Self.Callback.Replace (Create'Access); Database.Insert (Time, Self.Callback); end Set; procedure Set (Self : in out Cron_Entry; Period : in Duration; Callback : in Cron.Callback'Class) is begin Set (Self, (Ada.Calendar.Clock, Period), Callback); end Set; overriding procedure Finalize (Object : in out Cron_Entry) is begin if not Object.Callback.Is_Empty then Object.Reset; end if; end Finalize; procedure Reset (Self : in out Cron_Entry) is begin if not Self.Callback.Is_Empty then Database.Remove (Self.Callback); Self.Callback.Reset; end if; end Reset; ------------------------ -- Protected Database -- ------------------------ protected body Database is procedure Insert (Time : in Periodic_Time; Callback : in Callback_Refs.Reference) is use type Ada.Calendar.Time; Now : constant Ada.Calendar.Time := Ada.Calendar.Clock; Actual_Time : Periodic_Time := Time; begin while Actual_Time.Origin < Now loop Actual_Time.Origin := Actual_Time.Origin + Actual_Time.Period; end loop; if Map.Is_Empty then if Global_Worker /= null and then Global_Worker.all'Terminated then Unchecked_Free (Global_Worker); end if; if Global_Worker = null then Global_Worker := new Worker; end if; else if Actual_Time < Map.First_Key then First_Changed := True; end if; end if; Map.Insert (Actual_Time, Callback); end Insert; procedure Remove (Callback : in Callback_Refs.Reference) is use type Callback_Refs.Reference; Cursor : Entry_Maps.Cursor := Map.First; Is_First : Boolean := True; begin while Entry_Maps.Has_Element (Cursor) loop if Entry_Maps.Element (Cursor) = Callback then Map.Delete (Cursor); if Is_First then First_Changed := True; end if; exit; end if; Entry_Maps.Next (Cursor); Is_First := False; end loop; end Remove; procedure Update (Callback : in Callback_Refs.Reference) is use type Callback_Refs.Reference; Cursor : Entry_Maps.Cursor := Map.First; begin Search : while Entry_Maps.Has_Element (Cursor) loop if Entry_Maps.Element (Cursor) = Callback then declare Old_Time : constant Periodic_Time := Entry_Maps.Key (Cursor); begin Map.Delete (Cursor); Insert (Old_Time, Callback); end; exit Search; end if; Entry_Maps.Next (Cursor); end loop Search; end Update; procedure Get_First (Time : out Periodic_Time; Callback : out Callback_Refs.Reference) is Cursor : constant Entry_Maps.Cursor := Map.First; begin if Entry_Maps.Has_Element (Cursor) then Time := Entry_Maps.Key (Cursor); Callback := Entry_Maps.Element (Cursor); else Callback := Callback_Refs.Null_Reference; end if; First_Changed := False; end Get_First; entry Update_Notification when First_Changed is begin null; end Update_Notification; end Database; ----------------- -- Worker Task -- ----------------- task body Worker is Time : Periodic_Time; Callback : Callback_Refs.Reference; Waiting : Boolean; begin Main : loop Waiting := True; Wait_Loop : while Waiting loop Database.Get_First (Time, Callback); exit Main when Callback.Is_Empty; select Database.Update_Notification; or delay until Time.Origin; Waiting := False; end select; end loop Wait_Loop; Callback.Update.Data.Run; Database.Update (Callback); end loop Main; end Worker; end Natools.Cron; |
Added src/natools-cron.ads version [0a1110abc3].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | ------------------------------------------------------------------------------ -- Copyright (c) 2014, Natacha Porté -- -- -- -- Permission to use, copy, modify, and distribute this software for any -- -- purpose with or without fee is hereby granted, provided that the above -- -- copyright notice and this permission notice appear in all copies. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -- ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- Natools.Cron is a low-overhead, low-precision implementation of periodic -- -- callbacks, similar to UNIX cron daemon. -- -- Note that callbacks are executed sequentially in a single thread, and -- -- ticks may be skipped when computing resources lack. -- -- If you need more precision and/or more reliability, you might want to -- -- consider using Ada.Real_Time.Timing_Events instead. -- ------------------------------------------------------------------------------ with Ada.Calendar; private with Ada.Containers.Ordered_Maps; private with Ada.Finalization; private with Ada.Unchecked_Deallocation; private with Natools.References; private with Natools.Storage_Pools; package Natools.Cron is type Callback is interface; procedure Run (Object : in out Callback) is abstract; type Periodic_Time is record Origin : Ada.Calendar.Time; Period : Duration; end record; type Cron_Entry is tagged limited private; function Create (Time : in Periodic_Time; Callback : in Cron.Callback'Class) return Cron_Entry; -- Create a new entry with the given parameters function Create (Period : in Duration; Callback : in Cron.Callback'Class) return Cron_Entry; -- Create a new entry starting within a period from now procedure Set (Self : in out Cron_Entry; Time : in Periodic_Time; Callback : in Cron.Callback'Class); -- Reset an entry with the given parameters procedure Set (Self : in out Cron_Entry; Period : in Duration; Callback : in Cron.Callback'Class); -- Reset entry with the given parameters, starting one period from now procedure Reset (Self : in out Cron_Entry); -- Clear internal state and remove associated entry from database. -- Note that if the callback procedure is currently running, it will -- continue until it returns, so the callback object may outlive -- the call to Reset, plan concurrency accordingly. private package Callback_Refs is new References (Callback'Class, Storage_Pools.Access_In_Default_Pool'Storage_Pool, Storage_Pools.Access_In_Default_Pool'Storage_Pool); type Cron_Entry is new Ada.Finalization.Limited_Controlled with record Callback : Callback_Refs.Reference; end record; overriding procedure Finalize (Object : in out Cron_Entry); function "<" (Left, Right : Periodic_Time) return Boolean; -- Comparison function for ordered map package Entry_Maps is new Ada.Containers.Ordered_Maps (Periodic_Time, Callback_Refs.Reference, "<", Callback_Refs."="); protected Database is procedure Insert (Time : in Periodic_Time; Callback : in Callback_Refs.Reference); -- Insert Callback into the database, adjusting Time.Origin -- to be in the future. procedure Remove (Callback : in Callback_Refs.Reference); -- Remove Callback from the database procedure Update (Callback : in Callback_Refs.Reference); -- Update Time.Origin associated with Callback so that -- it is in the future. procedure Get_First (Time : out Periodic_Time; Callback : out Callback_Refs.Reference); -- Return the next active callback, or an empty reference when -- the database is empty (to signal task termination). entry Update_Notification; -- Block as long as the next active item does not change private Map : Entry_Maps.Map; First_Changed : Boolean := False; end Database; task type Worker is end Worker; type Worker_Access is access Worker; procedure Unchecked_Free is new Ada.Unchecked_Deallocation (Worker, Worker_Access); Global_Worker : Worker_Access := null; end Natools.Cron; |