aggiunto smammamorti
[brisk.git] / web / index_rd.php
1 <?php
2 /*
3  *  brisk - index_rd.php
4  *
5  *  Copyright (C) 2006 matteo.nastasi@milug.org
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * General Public License for more details. You should have received a
16  * copy of the GNU General Public License along with this program; if
17  * not, write to the Free Software Foundation, Inc, 59 Temple Place -
18  * Suite 330, Boston, MA 02111-1307, USA.
19  *
20  * $Id$
21  *
22  */
23
24 require_once("brisk.phh");
25
26 log_load($sess, "LOAD: index_rd.php");
27
28 $first_loop = TRUE;
29 $the_end = FALSE;
30
31 if (DEBUGGING == "local" && $_SERVER['REMOTE_ADDR'] != '127.0.0.1') {
32   echo "Debugging time!";
33   exit;
34 }
35
36 function shutta()
37 {
38   log_rd2("SHUTTA!", connection_status());
39 }
40
41
42 register_shutdown_function(shutta);
43
44 function unrecerror()
45 {
46   GLOBAL $is_page_streaming;
47
48   $is_page_streaming = TRUE;
49   return (sprintf('the_end=true; window.onunload = null; document.location.assign("index.php");'));
50 }
51
52
53
54
55
56 function maincheck($sess, $cur_stat, $cur_subst, $cur_step, &$new_stat, &$new_subst, &$new_step)
57 {
58   GLOBAL $is_page_streaming, $first_loop;
59   
60   $ret = FALSE;
61   
62   
63   /* Sync check (read only without modifications */
64   ignore_user_abort(TRUE);
65   if (($sem = lock_data()) != FALSE) { 
66     $bri = &load_data();
67     // Aggiorna l'expire time lato server
68     if  ($first_loop == TRUE) {
69       if (($user = &$bri->get_user($sess, $idx)) == FALSE) {
70         unlock_data($sem);
71         ignore_user_abort(FALSE);
72         return (unrecerror());
73       }
74       log_auth($sess, "update lacc");
75       $user->lacc = time();
76       save_data($bri);
77       $first_loop = FALSE;
78     
79       
80       $bri->garbage_manager(FALSE);
81       
82       save_data($bri);
83     }
84     unlock_data($sem);
85     ignore_user_abort(FALSE);
86   }
87   else {
88     return (FALSE);
89   }
90     
91   if (($user = &$bri->get_user($sess, $idx)) == FALSE) {
92     return (unrecerror());
93   }
94
95   /* Nothing changed, return. */
96   if ($cur_stat == $user->stat && $cur_step == $user->step) 
97     return;
98
99   log_rd2($sess, "do other ++".$cur_stat."++".$user->stat."++".$cur_step."++".$user->step);
100
101   if ($cur_step == -1) {
102     // FUNZIONE from_scratch DA QUI 
103     ignore_user_abort(TRUE);
104     $sem = lock_data();
105     $bri = &load_data();
106     if (($user = &$bri->get_user($sess, $idx)) == FALSE) {
107       unlock_data($sem);
108       ignore_user_abort(FALSE);
109       return (unrecerror());
110     }
111     if ($user->the_end) 
112       $is_page_streaming = TRUE;
113
114
115     if ($user->trans_step != -1) {
116       log_rd2($sess, "TRANS USATO ".$user->trans_step);
117       $cur_step = $user->trans_step;
118       $user->trans_step = -1;
119
120
121       save_data($bri);
122       unlock_data($sem);
123       ignore_user_abort(FALSE);
124     }
125     else {
126       log_rd2($sess, "TRANS NON ATTIVATO");
127       unlock_data($sem);
128       ignore_user_abort(FALSE);
129     }
130   }
131       
132   if ($cur_step == -1) {
133     log_rd2($sess, "PRE-NEWSTAT.");
134
135     if ($user->stat == 'room') {
136       log_rd($sess, "roomma");
137       $ret .= show_room(&$bri, &$user);
138     }
139     /***************
140      *             *
141      *    TABLE    *
142      *             *
143      ***************/
144     else if ($user->stat == 'table') {      
145       $ret = show_table(&$bri,&$user,$user->step,FALSE,FALSE);
146
147       log_rd2($sess, "SENDED TO THE STREAM: ".$ret);
148     }
149     log_rd2($sess, "NEWSTAT: ".$user->stat);
150
151     $new_stat =  $user->stat;
152     $new_subst = $user->subst;
153     $new_step =  $user->step;
154   }
155   else {
156     ignore_user_abort(TRUE);
157     $sem = lock_data();
158     $bri = &load_data();
159     if (($user = &$bri->get_user($sess, $idx)) == FALSE) {
160       unlock_data($sem);
161       ignore_user_abort(FALSE);
162       return (unrecerror());
163     }
164     if ($cur_step < $user->step) {
165       do {
166         if ($cur_step + COMM_N < $user->step) {
167           log_rd2($sess, "lost history, refresh from scratch");
168           $new_step = -1;
169           break;
170         } 
171         for ($i = $cur_step ; $i < $user->step ; $i++) {
172           log_rd2($sess, "ADDED TO THE STREAM: ".$user->comm[$i % COMM_N]);
173           $ret .= $user->comm[$i % COMM_N];
174         }
175         $new_stat =  $user->stat;
176         $new_subst = $user->subst;
177         $new_step =  $user->step;
178       } while (0);
179       
180       if ($user->the_end == TRUE) {
181         log_rd2($sess, "LOGOUT BYE BYE!!");
182         log_auth($user->sess, "Explicit logout.");
183         $user->sess = "";
184         $user->name = "";
185         $user->the_end = FALSE;
186         
187         if ($user->subst == 'sitdown')
188           $bri->room_wakeup(&$user);
189         else if ($user->subst == 'standup')
190           $bri->room_outstandup(&$user);
191         else
192           log_rd2($sess, "LOGOUT FROM WHAT ???");
193           
194         save_data($bri);
195       }
196     }
197           
198     unlock_data($sem);
199     ignore_user_abort(FALSE);
200   }
201
202   
203   return ($ret);
204 }
205
206 /*
207  *  MAIN
208  */
209
210 /*
211    FROM THE EXTERN 
212    sess
213    stat
214    step
215 */
216
217 $is_page_streaming =  ((stristr($HTTP_USER_AGENT, "linux") && 
218                         stristr($HTTP_USER_AGENT, "firefox")) ? FALSE : TRUE);
219
220
221 header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
222 header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
223
224 log_rd2($sess, "FROM OUTSIDE - STAT: ".$stat." SUBST: ".$subst." STEP: ".$step." MYFROM: ".$myfrom. "IS_PAGE:" . $is_page_streaming);
225
226
227 $endtime = time() + STREAM_TIMEOUT;
228 $old_stat =  $stat;
229 $old_subst = $subst;
230 $old_step =  $ext_step = $step;
231
232 for ($i = 0 ; time() < $endtime ; $i++) {
233   // log_rd($sess, "PRE MAIN ".$step);;
234   if (($ret = maincheck($sess, $old_stat, $old_subst, $old_step, &$stat, &$subst, &$step)) != FALSE) {
235     echo '@BEGIN@';
236     // log_rd2($sess, sprintf("\nSESS: [%s]\nOLD_STAT: [%s] OLD_SUBST: [%s] OLD_STEP: [%s] \nSTAT: [%s] SUBST: [%s] STEP: [%s] \nCOMM: [%s]\n", $sess, $old_stat, $old_subst, $old_step, $stat, $subst, $step, $ret));
237     echo "$ret";
238     echo ' @END@'; 
239     log_send($sess, "EXT_STEP: ".$ext_step." ENDTIME: [".$endtime."] ".$ret);
240     flush();
241     if ($is_page_streaming)
242       break;
243   }
244   $old_stat =  $stat;
245   $old_subst = $subst;
246   $old_step =  $step;
247   // log_rd($sess, "POST MAIN ".$step);;
248   usleep(200000);
249   if (($i % 5) == 0) {
250     // log_rd2($sess, "TIME: ".time());
251     echo '_';
252     flush();
253   }
254 }
255
256 ?>