610959e04d0482fe69d40541f9db5dd458a34038
[CBFWR.git] / libcbfwr / comms.php
1 <?php
2 // C = msg key
3 // L = locking key
4 $MESSAGE_KEY = ftok(realpath(dirname(__FILE__)), "c");
5 $LOCKING_KEY = ftok(realpath(dirname(__FILE__)), "l");
6 $STORE_KEY = ftok(realpath(dirname(__FILE__)), "s");
7
8 global $MESSAGE_KEY, $LOCKING_KEY, $STORE_KEY;
9
10 class Comms {
11         function __construct()
12         {
13                 global $MESSAGE_KEY, $LOCKING_KEY, $STORE_KEY;
14                 $this->semres = sem_get($LOCKING_KEY, 0666);
15                 $this->msgres = msg_get_queue($MESSAGE_KEY, 0666);
16         }
17         
18         function getConfig($type=0)
19         {
20                 global $MESSAGE_KEY, $LOCKING_KEY, $STORE_KEY;
21                 sem_acquire($this->semres);
22                 $shm_space = shm_attach($STORE_KEY, 16*1024*1024);
23                 $config = shm_get_var($shm_space, $type);
24                 sem_release($this->semres);
25                 
26                 return $config;
27         }
28         
29         
30         // type = 0 for the main config
31         // type = 1 for the boot hardware config
32         function putConfig($config, $type=0)
33         {
34                 global $MESSAGE_KEY, $LOCKING_KEY, $STORE_KEY;
35                 sem_acquire($this->semres);
36                 $shm_space = shm_attach($STORE_KEY, 16*1024*1024);
37                 shm_put_var($shm_space, $type, $config);
38                 sem_release($this->semres);             
39         }
40         
41         function waitForMessage()
42         {
43                 global $MESSAGE_KEY, $LOCKING_KEY, $STORE_KEY;
44                 $queue = msg_get_queue($MESSAGE_KEY);
45                 msg_receive($queue, 0, $msgtype, 1024, $msg);
46                 
47                 return $msg;
48         }
49         
50         function sendMessage($msg)
51         {
52                 global $MESSAGE_KEY, $LOCKING_KEY, $STORE_KEY;
53                 $queue = msg_get_queue($MESSAGE_KEY);
54                 msg_send($queue, 1, $msg);
55                 
56         }
57         
58         private $semres, $msgres;
59         
60 }
61
62 ?>