blob: 4f0b04a3b9c3d28183b71605cd833bd524d6f81d (
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
|
/*
* Copyright (c) 2010 Remko Tronçon
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#include "Swiften/Avatars/CombinedAvatarProvider.h"
#include <algorithm>
#include <boost/bind.hpp>
namespace Swift {
String CombinedAvatarProvider::getAvatarHash(const JID& jid) const {
for (size_t i = 0; i < providers.size(); ++i) {
String hash = providers[i]->getAvatarHash(jid);
if (!hash.isEmpty()) {
return hash;
}
}
return String();
}
void CombinedAvatarProvider::addProvider(AvatarProvider* provider) {
provider->onAvatarChanged.connect(boost::bind(&CombinedAvatarProvider::handleAvatarChanged, this, _1));
providers.push_back(provider);
}
void CombinedAvatarProvider::removeProvider(AvatarProvider* provider) {
std::vector<AvatarProvider*>::iterator i = std::remove(providers.begin(), providers.end(), provider);
for(std::vector<AvatarProvider*>::iterator j = i; j < providers.end(); ++j) {
provider->onAvatarChanged.disconnect(boost::bind(&CombinedAvatarProvider::handleAvatarChanged, this, _1));
}
providers.erase(i, providers.end());
}
void CombinedAvatarProvider::handleAvatarChanged(const JID& jid) {
String hash = getAvatarHash(jid);
std::map<JID, String>::iterator i = avatars.find(jid);
if (i != avatars.end()) {
if (i->second != hash) {
if (hash.isEmpty()) {
avatars.erase(i);
}
else {
avatars.insert(std::make_pair(jid, hash));
}
onAvatarChanged(jid);
}
}
else if (!hash.isEmpty()) {
avatars.insert(std::make_pair(jid, hash));
onAvatarChanged(jid);
}
}
}
|