File: Test.vala

package info (click to toggle)
libxmlbird 1.2.15-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 308 kB
  • sloc: python: 649; xml: 122; sh: 51; makefile: 14
file content (93 lines) | stat: -rw-r--r-- 2,116 bytes parent folder | download | duplicates (3)
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
/*
    Copyright (C) 2015 Johan Mattsson

    This library is free software; you can redistribute it and/or modify 
    it under the terms of the GNU Lesser General Public License as 
    published by the Free Software Foundation; either version 3 of the 
    License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful, but 
    WITHOUT ANY WARRANTY; without even the implied warranty of 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
    Lesser General Public License for more details.
*/
namespace B {

class Test : GLib.Object {
	XmlTree parser;
	string data;
	
	public Test (string xml_data) {
		this.data = xml_data;
	}
	
	public bool validate () {
		parser = new XmlTree (data);
		return parser.validate ();
	}
	
	public void test (string values) {
		string content = get_content ();
		bool pass = content == values;
		
		if (!pass) {
			print (@"$content != $values\n");
			assert (pass);
		}
	}
	
	public void benchmark (string task_name) {
		double start_time, stop_time, t;
		
		start_time = GLib.get_real_time ();
		get_content ();
		stop_time = GLib.get_real_time ();
		
		t = (stop_time - start_time) / 1000000.0;
		
		print (task_name + @" took $t seconds.\n");
	}
	
	public string get_content () {
		XmlElement root;
		StringBuilder content;
		
		parser = new XmlTree (data);
		content = new StringBuilder ();
		root = parser.get_root ();
		add_tag (content, root);
		
		return content.str.strip ();
	}

	void add_tag (StringBuilder content, XmlElement tag) {
		content.append (tag.get_name ());
		content.append (" ");
		
		foreach (Attribute a in tag.get_attributes ()) {
			content.append (a.get_name ());
			content.append (" ");
			content.append (a.get_content ());
			content.append (" ");
		}
		
		if (!has_children (tag) && tag.get_content () != "") {
			content.append (tag.get_content ());
			content.append (" ");
		}
		
		foreach (XmlElement t in tag) {
			add_tag (content, t);
		}
	}
	
	bool has_children (XmlElement tag) {
		foreach (XmlElement t in tag) {
			return true;
		}
		
		return false;
	}
}

}