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
121
122
123
|
/*
Copyright (C) 2005-2009 Michel de Boer <michel@twinklephone.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "address_finder.h"
#include "gui.h"
#include "log.h"
t_address_finder *t_address_finder::instance = NULL;
t_mutex t_address_finder::mtx_instance;
t_address_finder::t_address_finder() {
#ifdef HAVE_KDE
// Load KAddressbook asynchronously. An LDAP address book
// may take a while to load completely. This should not block
// an incoming call. For the first call it may happen that an
// address cannot be found as loading is still in progress.
// This is an inconvenience, but will not harm the call.
abook = KABC::StdAddressBook::self(true);
connect(abook,
SIGNAL(addressBookChanged(AddressBook *)),
this, SLOT(invalidate_cache()));
log_file->write_report("Preload KAddressbook.", "t_address_finder::t_address_finder");
#endif
}
void t_address_finder::find_address(t_user *user_config, const t_url &u)
{
if (u == last_url) return;
last_url = u;
last_name.clear();
last_photo = QImage();
#ifdef HAVE_KDE
for (KABC::AddressBook::Iterator i = abook->begin(); i != abook->end(); i++)
{
// Normalize url using number conversion rules
t_url u_normalized(u);
u_normalized.apply_conversion_rules(user_config);
KABC::PhoneNumber::List phoneNrs = i->phoneNumbers();
for (KABC::PhoneNumber::List::iterator j = phoneNrs.begin();
j != phoneNrs.end(); j++)
{
QString phone = (*j).number();
string full_address = ui->expand_destination(
user_config, phone.ascii(), u_normalized.get_scheme());
t_url url_phone(full_address);
if (!url_phone.is_valid()) continue;
if (u_normalized.user_host_match(url_phone,
user_config->get_remove_special_phone_symbols(),
user_config->get_special_phone_symbols()))
{
last_name = i->realName().ascii();
last_photo = i->photo().data();
last_photo.detach(); // avoid sharing of QImage with kabc
return;
}
}
}
#endif
}
void t_address_finder::preload(void) {
// The address book is preloaded on creation of the
// singleton instance.
(void)t_address_finder::get_instance();
}
t_address_finder *t_address_finder::get_instance(void) {
mtx_instance.lock();
if (!instance) {
instance = new t_address_finder();
// No MEMMAN audit as this instance will only be
// cleaned up by process termination.
}
mtx_instance.unlock();
return instance;
}
string t_address_finder::find_name(t_user *user_config, const t_url &u) {
mtx_finder.lock();
find_address(user_config, u);
string name = last_name;
mtx_finder.unlock();
return name;
}
QImage t_address_finder:: find_photo(t_user *user_config, const t_url &u) {
mtx_finder.lock();
find_address(user_config, u);
QImage photo = last_photo;
mtx_finder.unlock();
return photo;
}
void t_address_finder::invalidate_cache(void) {
mtx_finder.lock();
last_url.set_url("");
mtx_finder.unlock();
log_file->write_report("Address finder cache invalidated.",
" t_address_finder::invalidate_cache",
LOG_NORMAL, LOG_DEBUG);
}
|