aboutsummaryrefslogtreecommitdiff
path: root/xmpp-vala/src/core/stanza_attribute.vala
blob: c2edeba042bc8a12d34b6cd81cee90aa8a8d3764 (plain) (blame)
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
namespace Xmpp {

public class StanzaAttribute : StanzaEntry {

    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() {
    }

    public StanzaAttribute.build(string ns_uri, string name, string val) {
        this.ns_uri = ns_uri;
        this.name = name;
        this.val = val;
    }

    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;
    }

    internal string printf(string fmt, bool no_ns = false, string? ns_name = null) {
        if (no_ns) {
            return fmt.printf(name, (!)encoded_val);
        } else {
            if (ns_name == null) {
                return fmt.printf((!)ns_uri, name, (!)encoded_val);
            } else {
                return fmt.printf((!)ns_name, name, (!)encoded_val);
            }
        }
    }

    public override string to_string(int i = 0) {
        return printf(ATTRIBUTE_STRING_FORMAT);
    }

    public string to_ansi_string(bool hide_ns = false) {
        if (hide_ns) {
            return printf(ATTRIBUTE_STRING_ANSI_NO_NS_FORMAT, true);
        } else {
            return printf(ATTRIBUTE_STRING_ANSI_FORMAT);
        }
    }

    public string to_xml(NamespaceState? state_ = null) throws XmlError {
        NamespaceState state = state_ ?? new NamespaceState();
        if (ns_uri == state.current_ns_uri || (ns_uri == XMLNS_URI && name == "xmlns")) {
            return printf(ATTRIBUTE_XML_NO_NS_FORMAT, true);
        } else {
            return printf(ATTRIBUTE_XML_FORMAT, false, state.find_name((!)ns_uri));
        }
    }

    public string to_ansi_xml(NamespaceState? state_ = null) throws XmlError {
        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));
        }
    }
}

}