summaryrefslogtreecommitdiff
path: root/gtk-sharp-gapi-fixup.diff
blob: 513c9458ecdbf8574fed88abf81196e1bad432f4 (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
Index: parser/gapi-fixup.cs
===================================================================
--- parser/gapi-fixup.cs	(revision 60863)
+++ parser/gapi-fixup.cs	(working copy)
@@ -136,6 +136,21 @@
 					Console.WriteLine ("Warning: <attr path=\"{0}\"/> matched no nodes", path);
 			}
 
+			XPathNodeIterator remove_attr_iter = meta_nav.Select ("/metadata/remove-attr");
+			while (remove_attr_iter.MoveNext ()) {
+				string path = remove_attr_iter.Current.GetAttribute ("path", "");
+				string attr_name = remove_attr_iter.Current.GetAttribute ("name", "");
+				XPathNodeIterator api_iter = api_nav.Select (path);
+				bool matched = false;
+				while (api_iter.MoveNext ()) {
+					XmlElement node = ((IHasXmlNode)api_iter.Current).GetNode () as XmlElement;
+					node.RemoveAttribute (attr_name);
+					matched = true;
+				}
+				if (!matched)
+					Console.WriteLine ("Warning: <attr path=\"{0}\"/> matched no nodes", path);
+			}
+
 			XPathNodeIterator move_iter = meta_nav.Select ("/metadata/move-node");
 			while (move_iter.MoveNext ()) {
 				string path = move_iter.Current.GetAttribute ("path", "");
@@ -157,6 +172,32 @@
 					Console.WriteLine ("Warning: <move-node path=\"{0}\"/> matched no nodes", path);
 			}
 
+			XPathNodeIterator change_iter = meta_nav.Select ("/metadata/change-node-type");
+			while (change_iter.MoveNext ()) {
+				string path = change_iter.Current.GetAttribute ("path", "");
+				XPathNodeIterator api_iter = api_nav.Select (path);
+				bool matched = false;
+				while (api_iter.MoveNext ()) {
+					XmlElement node = ((IHasXmlNode)api_iter.Current).GetNode () as XmlElement;
+					XmlElement new_node = api_doc.CreateElement (change_iter.Current.Value);
+					foreach (XmlNode child in node.ChildNodes)
+					{
+						XmlNode new_child = child.CloneNode (true);
+						new_node.AppendChild (new_child);
+					}
+			
+					foreach (XmlAttribute attr in node.Attributes)
+					{
+						new_node.SetAttribute (attr.Name, attr.Value);
+					}
+			
+					node.ParentNode.ReplaceChild (new_node, node);
+					matched = true;
+				}
+				if (!matched)
+					Console.WriteLine ("Warning: <change-node-type path=\"{0}\"/> matched no nodes", path);
+			}
+
 			if (symbol_doc != null) {
 				XPathNavigator symbol_nav = symbol_doc.CreateNavigator ();
 				XPathNodeIterator iter = symbol_nav.Select ("/api/*");