FIX optimisation de certaine requête : il faut trier après pas avant, banane !
[euphorik.git] / modules / erl / euphorik_test.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 de test de euphorik.
20 % Crée un certain nombre d'utilisateur et post des messages aléatoire.
21
22
23 -module(euphorik_test).
24 -export([start/1, stop/1]).
25 -include("../include/euphorik_bd.hrl").
26
27
28 % N est le nombre d'utilisateur
29 start(N) ->
30 Ids = creer_users(N),
31 lists:map(
32 fun(Id) ->
33 timer:sleep(100),
34 spawn(
35 fun() ->
36 {A1, A2, A3} = now(),
37 random:seed(A1, A2, A3),
38 loop(Id)
39 end
40 )
41 end,
42 Ids
43 ).
44
45 stop(Pids) ->
46 lists:foreach(fun(Pid) -> exit(Pid, kill) end, Pids).
47
48
49 % Crée N user avec des noms aléatoires et renvoie la liste des id.
50 creer_users(N) ->
51 creer_users(N, []).
52 creer_users(0, Ids) -> lists:map(fun(#user{id = Id}) -> Id end, Ids);
53 creer_users(N, Ids) ->
54 creer_users(N - 1, [euphorik_bd:nouveau_user(mot_rand(random:uniform(4) + 4), "", "") | Ids ]).
55
56
57 % crée un message aléatoire et le renvoie
58 message_rand() ->
59 lists:flatten(message_rand(random:uniform(10), [])).
60 message_rand(0, Mots) -> Mots;
61 message_rand(N, Mots) ->
62 message_rand(N - 1, [mot_rand(random:uniform(2) + 5), $ | Mots]).
63
64
65 % Renvoie une succession de lettre aléatoire
66 mot_rand(L) ->
67 mot_rand(L, []).
68 mot_rand(0, Mot) -> Mot;
69 mot_rand(L, Mot) ->
70 mot_rand(L - 1, [random:uniform($z - $a + 1) + $a - 1 | Mot]).
71
72
73 % Tire au hasard de 0 à 3 messages sur les 10 derniers postés, renvoie une liste de int()
74 % répartition :
75 % 0 : 0.5
76 % 1 : 0.3
77 % 2 : 0.15
78 % 3 : 0.05
79 messages_id_rand() ->
80 Messages = lists:map(fun(#minichat{id = Id}) -> Id end, euphorik_bd:messages(30)),
81 R = random:uniform(),
82 if R =< 0.5 -> [];
83 R > 0.5 andalso R =< 0.8 ->
84 tire_element_rand(1, Messages);
85 R > 0.8 andalso R =< 0.95 ->
86 tire_element_rand(2, Messages);
87 true ->
88 tire_element_rand(3, Messages)
89 end.
90
91
92 % tire N element distinct parmis la liste L proposée
93 tire_element_rand(N, L) when N =< length(L) ->
94 tire_element_rand(N, L, []).
95 tire_element_rand(0, _, Elements) -> Elements;
96 tire_element_rand(N, L, Elements) ->
97 E = lists:nth(random:uniform(length(L)), L),
98 E_se_trouve_dans_Elements = lists:any(fun(E2) -> E2 =:= E end, Elements),
99 if E_se_trouve_dans_Elements -> % si E a déjà été tiré on recommence sans rien changer
100 tire_element_rand(N, L, Elements);
101 true ->
102 tire_element_rand(N-1, L, [E | Elements])
103 end.
104
105
106 loop(User_id) ->
107 % attend un temp aléatoire compris entre 1 sec et 5 sec
108 timer:sleep(1000 * random:uniform(5)),
109 % poste un message aléatoire par une personne aléatoire répondant à des messages aléatoires
110 {Message, Repond_a} = {message_rand(), messages_id_rand()},
111 io:format("~p poste ~p et repond a ~w~n", [User_id, Message, Repond_a]),
112 euphorik_bd:nouveau_message(Message, User_id, Repond_a),
113 loop(User_id).
114