2018-01-12 20:03:09 +00:00
|
|
|
namespace Xmpp {
|
2017-04-18 15:53:25 +00:00
|
|
|
|
2017-03-02 14:37:32 +00:00
|
|
|
public class StanzaAttribute : StanzaEntry {
|
|
|
|
|
2017-04-18 15:53:25 +00:00
|
|
|
internal const string ATTRIBUTE_STRING_FORMAT = "{%s}:%s='%s'";
|
|
|
|
internal const string ATTRIBUTE_STRING_NO_NS_FORMAT = "%s='%s'";
|
|
|
|
internal const string ATTRIBUTE_STRING_ANSI_FORMAT = ANSI_COLOR_GRAY+"{%s}:"+ANSI_COLOR_END+"%s="+ANSI_COLOR_GREEN+"'%s'"+ANSI_COLOR_END;
|
|
|
|
internal const string ATTRIBUTE_STRING_ANSI_NO_NS_FORMAT = "%s="+ANSI_COLOR_GREEN+"'%s'"+ANSI_COLOR_END;
|
|
|
|
internal const string ATTRIBUTE_XML_FORMAT = "%s:%s='%s'";
|
|
|
|
internal const string ATTRIBUTE_XML_NO_NS_FORMAT = "%s='%s'";
|
|
|
|
internal const string ATTRIBUTE_XML_ANSI_FORMAT = "%s:%s="+ANSI_COLOR_GREEN+"'%s'"+ANSI_COLOR_END;
|
|
|
|
internal const string ATTRIBUTE_XML_ANSI_NO_NS_FORMAT = "%s="+ANSI_COLOR_GREEN+"'%s'"+ANSI_COLOR_END;
|
|
|
|
|
|
|
|
internal StanzaAttribute() {
|
|
|
|
}
|
2017-03-02 14:37:32 +00:00
|
|
|
|
|
|
|
public StanzaAttribute.build(string ns_uri, string name, string val) {
|
|
|
|
this.ns_uri = ns_uri;
|
|
|
|
this.name = name;
|
|
|
|
this.val = val;
|
|
|
|
}
|
|
|
|
|
2017-05-13 15:43:51 +00:00
|
|
|
public bool equals(StanzaAttribute other) {
|
|
|
|
if (other.ns_uri != ns_uri) return false;
|
|
|
|
if (other.name != name) return false;
|
|
|
|
if (other.val != val) return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-04-18 15:53:25 +00:00
|
|
|
internal string printf(string fmt, bool no_ns = false, string? ns_name = null) {
|
|
|
|
if (no_ns) {
|
2017-08-29 15:36:42 +00:00
|
|
|
return fmt.printf(name, (!)encoded_val);
|
2017-03-02 14:37:32 +00:00
|
|
|
} else {
|
2017-04-18 15:53:25 +00:00
|
|
|
if (ns_name == null) {
|
2017-08-29 15:36:42 +00:00
|
|
|
return fmt.printf((!)ns_uri, name, (!)encoded_val);
|
2017-04-18 15:53:25 +00:00
|
|
|
} else {
|
2017-08-29 15:36:42 +00:00
|
|
|
return fmt.printf((!)ns_name, name, (!)encoded_val);
|
2017-04-18 15:53:25 +00:00
|
|
|
}
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-13 14:04:26 +00:00
|
|
|
public override string to_string(int i = 0) {
|
2017-04-18 15:53:25 +00:00
|
|
|
return printf(ATTRIBUTE_STRING_FORMAT);
|
|
|
|
}
|
|
|
|
|
2017-04-03 13:09:30 +00:00
|
|
|
public string to_ansi_string(bool hide_ns = false) {
|
2017-04-18 15:53:25 +00:00
|
|
|
if (hide_ns) {
|
|
|
|
return printf(ATTRIBUTE_STRING_ANSI_NO_NS_FORMAT, true);
|
2017-04-03 13:09:30 +00:00
|
|
|
} else {
|
2017-04-18 15:53:25 +00:00
|
|
|
return printf(ATTRIBUTE_STRING_ANSI_FORMAT);
|
2017-04-03 13:09:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-31 14:12:39 +00:00
|
|
|
public string to_xml(NamespaceState? state_ = null) {
|
2017-03-02 14:37:32 +00:00
|
|
|
NamespaceState state = state_ ?? new NamespaceState();
|
|
|
|
if (ns_uri == state.current_ns_uri || (ns_uri == XMLNS_URI && name == "xmlns")) {
|
2017-04-18 15:53:25 +00:00
|
|
|
return printf(ATTRIBUTE_XML_NO_NS_FORMAT, true);
|
2017-03-02 14:37:32 +00:00
|
|
|
} else {
|
2017-04-18 15:53:25 +00:00
|
|
|
return printf(ATTRIBUTE_XML_FORMAT, false, state.find_name((!)ns_uri));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-31 14:12:39 +00:00
|
|
|
public string to_ansi_xml(NamespaceState? state_ = null) {
|
2017-04-18 15:53:25 +00:00
|
|
|
NamespaceState state = state_ ?? new NamespaceState();
|
|
|
|
if (ns_uri == state.current_ns_uri || (ns_uri == XMLNS_URI && name == "xmlns")) {
|
|
|
|
return printf(ATTRIBUTE_XML_ANSI_NO_NS_FORMAT, true);
|
|
|
|
} else {
|
|
|
|
return printf(ATTRIBUTE_XML_ANSI_FORMAT, false, state.find_name((!)ns_uri));
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-18 15:53:25 +00:00
|
|
|
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|