From e59b9d2fff347bf779dff1fa8c945bc2a3c59d8b Mon Sep 17 00:00:00 2001 From: Marvin W Date: Thu, 9 Mar 2017 21:47:50 +0100 Subject: Various fixes in vala-xmpp --- xmpp-vala/src/core/stanza_node.vala | 70 +++++++++++++++++++++++++++++++++---- 1 file changed, 64 insertions(+), 6 deletions(-) (limited to 'xmpp-vala/src/core/stanza_node.vala') diff --git a/xmpp-vala/src/core/stanza_node.vala b/xmpp-vala/src/core/stanza_node.vala index 1dfacfdd..f615a240 100644 --- a/xmpp-vala/src/core/stanza_node.vala +++ b/xmpp-vala/src/core/stanza_node.vala @@ -9,7 +9,7 @@ public abstract class StanzaEntry { public string encoded_val { owned get { - return val.replace("&", "&").replace("\"", """).replace("'", "'").replace("<", "<").replace(">", ">"); + return val != null ? val.replace("&", "&").replace("\"", """).replace("'", "'").replace("<", "<").replace(">", ">") : null; } set { string tmp = value.replace(">", ">").replace("<", "<").replace("'","'").replace(""","\""); @@ -87,6 +87,18 @@ public class StanzaNode : StanzaEntry { return null; } + public int get_attribute_int(string name, int def = -1, string? ns_uri = null) { + string? res = get_attribute(name, ns_uri); + if (res == null) return def; + return int.parse(res); + } + + public bool get_attribute_bool(string name, bool def = false, string? ns_uri = null) { + string? res = get_attribute(name, ns_uri); + if (res == null) return def; + return res.down() == "true" || res == "1"; + } + public StanzaAttribute get_attribute_raw(string name, string? ns_uri = null) { string _name = name; string? _ns_uri = ns_uri; @@ -136,7 +148,7 @@ public class StanzaNode : StanzaEntry { while(true) { string? s = l.arg(); if (s == null) break; - node = get_subnode(attribute_name); + node = node.get_subnode(attribute_name); if (node == null) return null; attribute_name = s; } @@ -167,11 +179,21 @@ public class StanzaNode : StanzaEntry { public ArrayList get_subnodes(string name, string? ns_uri = null, bool recurse = false) { ArrayList ret = new ArrayList(); - if (ns_uri == null) ns_uri = this.ns_uri; + string _name = name; + string? _ns_uri = ns_uri; + if (ns_uri == null) { + if (_name.contains(":")) { + var lastIndex = _name.last_index_of_char(':'); + _ns_uri = _name.substring(0, lastIndex); + _name = _name.substring(lastIndex + 1); + } else { + _ns_uri = this.ns_uri; + } + } foreach(var node in sub_nodes) { - if (node.ns_uri == ns_uri && node.name == name) ret.add(node); + if (node.ns_uri == _ns_uri && node.name == _name) ret.add(node); if (recurse) { - ret.add_all(node.get_subnodes(name, ns_uri, recurse)); + ret.add_all(node.get_subnodes(_name, _ns_uri, recurse)); } } return ret; @@ -187,15 +209,44 @@ public class StanzaNode : StanzaEntry { while(true) { string? s = l.arg(); if (s == null) break; - node = get_subnode(s); + node = node.get_subnode(s); + if (node == null) return null; } return node; } + public ArrayList get_deep_subnodes(...) { + va_list l = va_list(); + var res = get_deep_subnodes_(va_list.copy(l)); + if (res != null) return res; + return new ArrayList(); + } + + public ArrayList get_deep_subnodes_(va_list l) { + StanzaNode? node = this; + string? subnode_name = l.arg(); + if (subnode_name == null) return null; + while(true) { + string? s = l.arg(); + if (s == null) break; + node = node.get_subnode(subnode_name); + if (node == null) return null; + subnode_name = s; + } + return node.get_subnodes(subnode_name); + } + public ArrayList get_all_subnodes() { return sub_nodes; } + public ArrayList get_deep_all_subnodes(...) { + va_list l = va_list(); + StanzaNode? node = get_deep_subnode_(va_list.copy(l)); + if (node != null) return node.get_all_subnodes(); + return new ArrayList(); + } + public void add_attribute(StanzaAttribute attr) { attributes.add(attr); } @@ -206,6 +257,13 @@ public class StanzaNode : StanzaEntry { return null; } + public unowned string? get_deep_string_content(...) { + va_list l = va_list(); + StanzaNode? node = get_deep_subnode_(va_list.copy(l)); + if (node != null) return node.get_string_content(); + return null; + } + public StanzaNode put_attribute(string name, string val, string? ns_uri = null) { if (name == "xmlns") ns_uri = XMLNS_URI; if (ns_uri == null) ns_uri = this.ns_uri; -- cgit v1.2.3-54-g00ecf