summaryrefslogtreecommitdiffstats
blob: 54dcdf53f8e5a093de54837a30690f2ac2886d69 (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
/*
 * Copyright (c) 2011-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Swiften/Client/BlockListImpl.h>

#include <algorithm>

using namespace Swift;

BlockListImpl::BlockListImpl() : state(Init) {

}

void BlockListImpl::setItems(const std::vector<JID>& newItems) {
    // JIDs which are in the current list but not in the new list, are removed.
    for (const auto& jid : items) {
        if (std::find(newItems.begin(), newItems.end(), jid) == newItems.end()) {
            onItemRemoved(jid);
        }
    }

    // JIDs which are in the new list but not in the current list, are added.
    for (const auto& jid : newItems) {
        if (std::find(items.begin(), items.end(), jid) == items.end()) {
            onItemAdded(jid);
        }
    }
    items = newItems;
}

void BlockListImpl::addItem(const JID& item) {
    if (std::find(items.begin(), items.end(), item) == items.end()) {
        items.push_back(item);
        onItemAdded(item);
    }
}

void BlockListImpl::removeItem(const JID& item) {
    size_t oldSize = items.size();
    items.erase(std::remove(items.begin(), items.end(), item), items.end());
    if (items.size() != oldSize) {
        onItemRemoved(item);
    }
}

void BlockListImpl::setState(State state) {
    if (this->state != state) {
        this->state = state;
        onStateChanged();
    }
}

void BlockListImpl::addItems(const std::vector<JID>& items) {
    for (const auto& item : items) {
        addItem(item);
    }
}

void BlockListImpl::removeItems(const std::vector<JID>& items) {
    std::vector<JID> itemsToRemove = items;
    for (const auto& item : itemsToRemove) {
        removeItem(item);
    }
}

void BlockListImpl::removeAllItems() {
    removeItems(items);
}