2017-03-02 14:37:32 +00:00
|
|
|
namespace Xmpp.Core {
|
|
|
|
public class StanzaAttribute : StanzaEntry {
|
|
|
|
|
|
|
|
public StanzaAttribute() {}
|
|
|
|
|
|
|
|
public StanzaAttribute.build(string ns_uri, string name, string val) {
|
|
|
|
this.ns_uri = ns_uri;
|
|
|
|
this.name = name;
|
|
|
|
this.val = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string to_string() {
|
|
|
|
if (ns_uri == null) {
|
|
|
|
return @"$name='$val'";
|
|
|
|
} else {
|
|
|
|
return @"{$ns_uri}:$name='$val'";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-03 13:09:30 +00:00
|
|
|
public string to_ansi_string(bool hide_ns = false) {
|
|
|
|
if (ns_uri == null || hide_ns) {
|
|
|
|
return @"$name=$ANSI_COLOR_GREEN'$val'$ANSI_COLOR_END";
|
|
|
|
} else {
|
|
|
|
return @"$ANSI_COLOR_GRAY{$ns_uri}:$ANSI_COLOR_END$name=$ANSI_COLOR_GREEN'$val'$ANSI_COLOR_END";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-02 14:37:32 +00:00
|
|
|
public string to_xml(NamespaceState? state_) throws XmlError {
|
|
|
|
NamespaceState state = state_ ?? new NamespaceState();
|
|
|
|
if (ns_uri == state.current_ns_uri || (ns_uri == XMLNS_URI && name == "xmlns")) {
|
|
|
|
return @"$name='$val'";
|
|
|
|
} else {
|
|
|
|
return "%s:%s='%s'".printf (state.find_name (ns_uri), name, val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|