Remove the weekly troll.
[euphorik.git] / modules / erl / euphorik_daemon.erl
1 % coding: utf-8
2 % Copyright 2008 Grégory Burri
3 %
4 % This file is part of Euphorik.
5 %
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.
10 %
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.
15 %
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/>.
18 %
19 % Module tournant en background s'occupant periodiquement de certaines tâches :
20 % - rechargement des modules lors d'une mise en production
21 % Date : 05.11.2007
22 % @author G.Burri
23
24
25 -module(euphorik_daemon).
26 -export([start/1, reload_euphorik/0, loop/0]).
27 -include("../include/euphorik_defines.hrl").
28
29
30 % Démarre le démon
31 start(_A) ->
32 register(euphorik_daemon, self()),
33 loop().
34
35
36 loop() ->
37 receive
38 switch -> % permet de substituer le code du process par un nouveau code, voir reload_euphorik
39 euphorik_daemon:loop()
40 end.
41
42 % Recharge tous les modules euphorik.
43 % Appelé lors d'une mise en prod.
44 % TODO : récupérer les noms à partir des .beam dans /modules/ebin
45 reload_euphorik() ->
46 lists:foreach(
47 fun(M) ->
48 c:l(M) % (purge & load)
49 end,
50 [
51 euphorik_common,
52 euphorik_minichat_conversation,
53 euphorik_protocole,
54 euphorik_requests,
55 euphorik_bd,
56 euphorik_bd_admin,
57 euphorik_daemon
58 ]
59 ),
60 % changement du code du daemon
61 euphorik_daemon ! switch,
62 ok.