2 % Copyright 2008 Grégory Burri
4 % This file is part of Euphorik.
6 % Euphorik is free software: you can redistribute it and/or modify
7 % it under the terms of the GNU General Public License as published by
8 % the Free Software Foundation, either version 3 of the License, or
9 % (at your option) any later version.
11 % Euphorik is distributed in the hope that it will be useful,
12 % but WITHOUT ANY WARRANTY; without even the implied warranty of
13 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 % GNU General Public License for more details.
16 % You should have received a copy of the GNU General Public License
17 % along with Euphorik. If not, see <http://www.gnu.org/licenses/>.
19 % Module tournant en background s'occupant periodiquement de certaines tâches :
20 % - sélection du prochain troll chaque semaine
25 -module(euphorik_daemon
).
27 -include("../include/euphorik_defines.hrl").
36 % on attend une minute de plus pour prevenir une dérive nétive
37 timer:sleep(1000 * trunc(temps_prochaine_election() + 60)),
38 euphorik_bd:elire_troll(),
42 % Renvoie le nombre de seconde qu'il reste jusque au prochain lundi à l'heure donnée (l'heure est sur 24heures)
43 % 86400 est le nombre de seconde dans un jour
44 temps_prochaine_election() ->
45 {Date
, {H
,M
,S
}} = calendar:local_time(),
46 Delta
= (?JOUR_ELECTION_TROLL
- 1) * 86400 + ?HEURE_ELECTION_TROLL
* 60 * 60
47 -((calendar:day_of_the_week(Date
) - 1) * 86400 + H
* 60 * 60 + M
* 60 + S
),
48 % attention au cas où deux dates (maintenant et la date d'éction) ne se trouvent pas dans la même semaine.
49 if Delta
=< 0 -> Delta
+ 7 * 86400; true
-> Delta
end.