summaryrefslogtreecommitdiff
path: root/src/tag.cpp
blob: 308a7d28a0e33a1ff1033a65e56e90fdbe5aa40d (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#include "tag.hpp"

#include "utils.hpp"
#include <stdlib.h>
#include <string.h>


XiftTag::XiftTag(): name(0), len(0), size(0)
{}

XiftTag::~XiftTag()
{
    if (name) free(name);
}


bool XiftTag::MatchesForm(const XiftTag &form) const
{
    return !strcmp(name, form.name) && XiftAttributes::MatchesForm(form);
}


XiftTags::XiftTags(): stack(0)
{}

XiftTags::~XiftTags()
{
    while (stack) {
        Stack *old = stack;
        stack      = stack->next;
        delete old->item;
        delete old;
    }
}


XiftTag &XiftTags::Tag(const char *name)
{
    Stack *current = stack;
    while (current) {
        if (!strcmp(current->item->name, name)) {
            return *current->item;
        }
        current = current->next;
    }
    XiftTag &res = New();
    res.len  = strlen(name);
    res.name = xift_str_create_copy(name, name + res.len);
    res.size = res.len + 1;
    return res;
}

void XiftTags::Remove(const char *name)
{
    Stack **current = &stack;
    while (*current) {
        if (!strcmp((*current)->item->name, name)) {
            Stack *old = *current;
            *current   = (*current)->next;
            delete old->item;
            delete old;
            return;
        }
        current = &(*current)->next;
    }
}


XiftTag *XiftTags::Top()
{
    if (stack) {
        return stack->item;
    } else {
        return 0;
    }
}

void XiftTags::Pop()
{
    if (stack) {
        Stack *old = stack;
        stack      = stack->next;
        delete old->item;
        delete old;
    }
}

XiftTag *XiftTags::PopToBeDeleted()
{
    XiftTag *res = 0;
    if (stack) {
        Stack *old = stack;
        res        = stack->item;
        stack      = stack->next;
        delete old;
    }
    return res;
}

XiftTag &XiftTags::New()
{
    Stack *old  = stack;
    stack       = new Stack;
    stack->item = new XiftTag;
    stack->next = old;
    return *stack->item;
}


bool XiftTags::ContainsMatchedForm(const XiftTag & tag) const
{
    Stack *current = stack;
    while (current) {
        if (tag.MatchesForm(*current->item)) {
            return true;
        }
        current = current->next;
    }
    return false;
}