CodeDoc/Parser/Var.php
[PHP_CodeDoc] / CodeDoc / Parser / Var.php
1 <?php
2 /*
3 *@package PHP_CodeDoc
4 */
5 /*
6
7 var parser -  very simple!
8 uses parent (master codedoc object) which contains the active tokens
9
10 */
11
12  
13 class PHP_CodeDoc_Parser_Var {
14
15     
16     var $var; // current return value;
17     function read ($inclass) {
18         if (!$inclass) {
19             return;
20         }
21         if ($c = PHP_CodeDoc_Parser_Var::parse()) {
22              
23             $c->activeFile = $this->activeFile;
24             $this->classes[$this->_active_class]->Attributes[$c->name] = $c;
25             $this->classes[$this->_active_class]->Attributes[$c->name]->class =
26             $this->classes[$this->_active_class]->name;
27         }
28     }
29     
30     
31     function parse()
32     { //  read var declares in a class
33         $flags= array($this->look_nws(-1), $this->look_nws(-2), $this->look_nws(-3), $this->look_nws(-4));
34        
35         
36         $startpos = $this->pos;
37         
38         $var = new PHP_CodeDoc_Data_Var;
39         $var->name  = $this->tokens[$this->pos+2][1];
40         $var->type = "Public";
41         $var->isPublic = 1;
42         $var->isStatic = 0;
43         $var->visibility = 1;
44         if (in_array(T_PRIVATE, $flags)) {
45             $var->type = "Private";
46             $var->isPublic = 0;
47             $var->visibility = 0;
48         }
49         if (in_array(T_PROTECTED, $flags)) {
50             $var->type = "Protected";
51             $var->isPublic = 0;
52             $var->visibility = 0;
53         }
54         if (in_array(T_STATIC, $flags)) {
55             $var->isStatic = 1;
56         }
57         
58         $var->visibility = 1;
59         
60         PHP_CodeDoc_Parser_Var::_store_tokens($var);
61         
62         if ($v = PHP_CodeDoc_Parser_Comment::parse()) {
63             $var->description = $v;
64         }
65         $this->pos = $startpos;
66            
67         return $var;
68     
69     }
70     
71     /* 
72     remember the tokens for a var.. (for printing later)
73     */
74     function _store_tokens(&$var) { 
75         //return;
76         $var->tokenStart=$this->pos;
77         $n=0;
78         $in_method =0;
79         $inbrak =0;
80         $level=0;
81         $pos = $this->pos;
82         while ($pos < $this->total) {
83             $v = $this->tokens[$pos];
84             if (!is_array($v)) {
85                 if (trim($v) == ";") {
86                     $var->tokenEnd = $pos;
87                     return;
88                 }
89             }
90              
91             $var->tokens[$n] = $v;
92             $pos++;
93             $n++;
94         }
95         $var->tokenEnd = $pos;
96     }
97     
98     
99 }
100 ?>
101    
102