8e7ed3274ce8dce9096193b84311fffcdff34132
[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         
53         // type = 4 for merged running config cache
54         // type = 5 for merged web config cache
55         function putConfig($config, $type=0)
56         {
57                 global $MESSAGE_KEY, $LOCKING_KEY, $STORE_KEY, $CONF_STORE_SIZE;
58                 sem_acquire($this->semres);
59                 $shm_space = shm_attach($STORE_KEY, $CONF_STORE_SIZE);
60                 shm_put_var($shm_space, $type, $config);
61                 sem_release($this->semres);             
62         }
63         
64         function waitForMessage()
65         {
66                 global $MESSAGE_KEY, $LOCKING_KEY, $STORE_KEY;
67                 $queue = msg_get_queue($MESSAGE_KEY);
68                 msg_receive($queue, 0, $msgtype, 1024, $msg);
69                 
70                 return $msg;
71         }
72         
73         function sendMessage($msg)
74         {
75                 global $MESSAGE_KEY, $LOCKING_KEY, $STORE_KEY;
76                 $queue = msg_get_queue($MESSAGE_KEY);
77                 msg_send($queue, 1, $msg);
78                 
79         }
80         
81         private $semres, $msgres;
82         
83 }
84
85 ?>