summaryrefslogtreecommitdiff
path: root/scripts/ext_skel_ng/php_global.php
blob: bec2082e092b5c91f43aff36df246b66e3f78e04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php

	class php_global extends php_element {

		function __construct($attr) {
			
			$this->name  = $attr["name"];
	
			if (!$this->is_name($this->name)) {
				$this->error[] = "'$attr[name]' is not a valid C variable name";
			}

			$this->type  = $attr['type'];
      if (!$this->is_type($this->type)) {
        $this->error[] = "'$attr[type]' is not a valid C data type";
      }
		} 

		/* overriding type check as we deal with C types here
			 check is rather naive as it doesn't know about context
			 so we check for a sequence of valid names for now
			 TODO: check for either simple type, struct/class or single word (typedef)
		*/
		function is_type($type) {
			$array = explode(" ", str_replace('*',' ',$type));
			foreach ($array as $name) {
				if (empty($name)) continue;
				if (!$this->is_name($name)) return false;
			}
			return true;
		}
		


		static function c_code_header($name) {
			return "static void php_{name}_init_globals(zend_{name}_globals *{name}_globals)\n{\n";
		}

		function c_code($name) {
			$code = "  {$name}_globals->{$this->name} = ";
			if (strstr($this->type, "*")) {
				$code .= "NULL;\n";
			} else {
				$code .= "0;\n";
			}
			return $code;
		}

		static function c_code_footer() {
			return "}\n\n";
		}

		static function h_code_header($name) {
			return "ZEND_BEGIN_MODULE_GLOBALS({$name})\n";
		}

		function h_code($name) {
			return "  {$this->type} {$this->name};\n";
		}

		static function h_code_footer($name) {
			$upname = strtoupper($name);

			return "
ZEND_END_MODULE_GLOBALS({$name})

#ifdef ZTS
#define {$upname}_G(v) TSRMG({$name}_globals_id, zend_{$name}_globals *, v)
#else
#define {$upname}_G(v) ({$name}_globals.v)
#endif

";
			
		}


	}

?>