summaryrefslogtreecommitdiff
path: root/includes/funktion_xml.php
blob: 4ab3bfd54380addaf1ad058c67470bded9161f7d (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<?php
class element {
	var $name = '';
	var $attributes = array ();
	var $data = '';
	var $depth = 0;
	var $sub = array ();
}

$XMLDEBUG = 0;
$depth = 0;
$XMLmain = new element;
$XMLpos = array (
	0,
	0,
	0,
	0,
	0,
	0,
	0,
	0,
	0,
	0,
	0,
	0
);
//$XMLpos = array( 0, 0, 0, 0, 0, 0);

function convertValues($Data) {
	global $XMLDEBUG;

	if ($XMLDEBUG) {
		$Data = htmlspecialchars($Data);
		$Data = mysql_escape_string($Data);
		$Data = htmlentities($Data);
	}

	$Data = utf8_decode($Data);
	return $Data;
}

function dataXMLmain($Data, & $Objekt, $Tiefe) {
	global $XMLmain, $XMLpos, $depth, $XMLDEBUG;

	if ($XMLDEBUG)
		echo "?$Tiefe$depth";

	if (($depth -1) == $Tiefe) {
		$Objekt->sub[$XMLpos[$Tiefe]]->data .= htmlentities(convertValues($Data), ENT_QUOTES);

		if ($XMLDEBUG)
			echo "???" . $Objekt->sub[$XMLpos[$Tiefe]]->name . "|$Data|$Tiefe???<br />";
	} else
		dataXMLmain($Data, $Objekt->sub[$XMLpos[$Tiefe]], $Tiefe +1);
}

function startXMLmain($Data, & $Objekt, $Tiefe) {
	global $XMLpos, $depth, $XMLDEBUG;

	if ($XMLDEBUG)
		if ($Tiefe == 1) {
			print_r(array_values($XMLpos));
			echo "--" . $Data->name;
			echo " #$Tiefe/$depth#";
		}

	if ($depth == $Tiefe) {
		$Objekt->sub[$XMLpos[$Tiefe]] = $Data;
		if ($XMLDEBUG)
			echo "|" . $XMLpos[$Tiefe] . "|" . $Objekt->sub[$XMLpos[$Tiefe]]->name . " " . $Data->name . " save|" . "#-#<br />";
	} else
		startXMLmain($Data, $Objekt->sub[$XMLpos[$Tiefe]], $Tiefe +1);
}

function start_element_handler($parser, $name, $attribs) {
	global $depth, $XMLmain, $XMLpos;

	$Data = new element;
	$Data->name = $name;
	while (list ($key, $value) = each($attribs))
		$Data->attributes[$key] = convertValues($value);
	$Data->depth = $depth;
	$XMLpos[$depth]++;

	if ($depth == 0)
		$XMLmain = $Data;
	else
		startXMLmain($Data, $XMLmain, 1);

	$depth++;
}

function end_element_handler($parser, $name) {
	global $depth, $XMLpos;
	$XMLpos[$depth] = 0;
	$depth--;
}

function character_data_handler($parser, $data) {
	global $XMLmain;
	if (strlen(trim($data)))
		dataXMLmain($data, $XMLmain, 1);
}

/*#######################################################################################*/
function readXMLfile($file) {
	global $XMLDEBUG;

	//$xml_parser = xml_parser_create_ns();
	$xml_parser = xml_parser_create("UTF-8");
	xml_set_element_handler($xml_parser, "start_element_handler", "end_element_handler");
	xml_set_character_data_handler($xml_parser, "character_data_handler");

	if (file_exists($file)) {
		if (!($fp = fopen($file, "r"))) {
			echo (" <h1>could not open XML file \"$file\"</h1>");
			return -1;
		}
	} else {
		echo (" <h1>XML file \"$file\" not exist</h1>");
		return -1;
	}

	if ($XMLDEBUG)
		echo "<pre>";
	while ($data = fread($fp, 4096)) {
		if (!xml_parse($xml_parser, $data, feof($fp))) {
			die(sprintf("XML error: %s at line %d", xml_error_string(xml_get_error_code($xml_parser)), xml_get_current_line_number($xml_parser)));
		}
	}
	if ($XMLDEBUG)
		echo "</pre>";
	xml_parser_free($xml_parser);
	return 0;
}

/*#######################################################################################*/
function getXMLsubPease($Sourse, $Name) {
	foreach ($Sourse->sub as $key => $value) {
		if ($value->name == $Name) {
			return $value;
		}
	}
	//    die;  
}

/*#######################################################################################*/
function getXMLsubData($Sourse, $Name) {
	$XML = getXMLsubPease($Sourse, $Name);
	return $XML->data;
}
?>