7f89650ea827d46fd36495e85f59744bb0b61975
[CBFWR.git] / libcbfwr / comms.php
1 <?php
2 // C = msg key
3 // L = locking key
4 $MESSAGE_KEY = ftok(realpath(dirname(__FILE__)), "c"); // to daemon
5 $LOCKING_KEY = ftok(realpath(dirname(__FILE__)), "l");
6 $STORE_KEY = ftok(realpath(dirname(__FILE__)), "s");
7 $CONF_STORE_SIZE = 16777216; // 16M by default
8
9 global $MESSAGE_KEY, $LOCKING_KEY, $STORE_KEY, $CONF_STORE_SIZE;
10
11 class Comms {
12         function __construct()
13         {
14                 global $MESSAGE_KEY, $LOCKING_KEY, $STORE_KEY;
15                 $this->semres = sem_get($LOCKING_KEY, 0666);
16                 $this->msgres = msg_get_queue($MESSAGE_KEY, 0666);
17         }
18         
19         function getConfig($type=0)
20         {
21                 global $MESSAGE_KEY, $LOCKING_KEY, $STORE_KEY, $CONF_STORE_SIZE;
22                 sem_acquire($this->semres);
23                 $shm_space = shm_attach($STORE_KEY, $CONF_STORE_SIZE);
24                 $config = shm_get_var($shm_space, $type);
25                 sem_release($this->semres);
26                 
27                 return $config;
28         }
29         
30         function lockConfigs()
31         {
32                 sem_acquire($this->semres);
33         }
34         
35         function unlockConfigs()
36         {
37                 sem_release($this->semres);
38         }
39         
40         function deleteConfig($type)
41         {
42                 global $MESSAGE_KEY, $LOCKING_KEY, $STORE_KEY, $CONF_STORE_SIZE;
43                 $shm_space = shm_attach($STORE_KEY, $CONF_STORE_SIZE);
44                 
45                 shm_remove_var($shm_space, $type);
46         }
47         
48         // type = 0 for the fs config
49         // type = 1 for the boot hardware config
50         // type = 2 for running config
51         // type = 3 for web config
52         function putConfig($config, $type=0)
53         {
54                 global $MESSAGE_KEY, $LOCKING_KEY, $STORE_KEY, $CONF_STORE_SIZE;
55                 sem_acquire($this->semres);
56                 $shm_space = shm_attach($STORE_KEY, $CONF_STORE_SIZE);
57                 shm_put_var($shm_space, $type, $config);
58                 sem_release($this->semres);             
59         }
60         
61         function waitForMessage()
62         {
63                 global $MESSAGE_KEY, $LOCKING_KEY, $STORE_KEY;
64                 $queue = msg_get_queue($MESSAGE_KEY);
65                 msg_receive($queue, 0, $msgtype, 1024, $msg);
66                 
67                 return $msg;
68         }
69         
70         function sendMessage($msg)
71         {
72                 global $MESSAGE_KEY, $LOCKING_KEY, $STORE_KEY;
73                 $queue = msg_get_queue($MESSAGE_KEY);
74                 msg_send($queue, 1, $msg);
75                 
76         }
77         
78         private $semres, $msgres;
79         
80 }
81
82 ?>