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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
|
/*
* astyle --force-indent=tab=4 --brackets=linux --indent-switches
* --pad=oper --one-line=keep-blocks --unpad=paren
*
* Miranda IM: the free IM client for Microsoft* Windows*
*
* Copyright 2000-2010 Miranda ICQ/IM project,
* all portions of this codebase are copyrighted to the people
* listed in contributors.txt.
*
* 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.
*
* part of clist_ng plugin for Miranda.
*
* (C) 2005-2010 by silvercircle _at_ gmail _dot_ com and contributors
*
* $Id: contact.cpp 116 2010-09-11 10:40:18Z silvercircle $
*
*/
#include <commonheaders.h>
struct {
int status,order;
} statusModeOrder[]={
{ID_STATUS_OFFLINE,500},
{ID_STATUS_ONLINE,10},
{ID_STATUS_AWAY,200},
{ID_STATUS_DND,110},
{ID_STATUS_NA,450},
{ID_STATUS_OCCUPIED,100},
{ID_STATUS_FREECHAT,0},
{ID_STATUS_INVISIBLE,20},
{ID_STATUS_ONTHEPHONE,150},
{ID_STATUS_OUTTOLUNCH,425}
};
static int GetContactStatus(MCONTACT hContact)
{
char *szProto;
szProto = GetContactProto(hContact);
if (szProto == NULL)
return ID_STATUS_OFFLINE;
return cfg::getWord(hContact, szProto, "Status", ID_STATUS_OFFLINE);
}
int __forceinline GetStatusModeOrdering(int statusMode)
{
int i;
for (i = 0; i < sizeof(statusModeOrder) / sizeof(statusModeOrder[0]); i++) {
if (statusModeOrder[i].status == statusMode)
return statusModeOrder[i].order;
}
return 1000;
}
int mf_updatethread_running = TRUE;
HANDLE hThreadMFUpdate = 0;
/**
* calculate message frequency for a single contact
*/
static void MF_CalcFrequency(MCONTACT hContact, DWORD dwCutoffDays, int doSleep)
{
DWORD curTime = time(NULL);
DWORD frequency, eventCount;
DBEVENTINFO dbei = {0};
MEVENT hEvent = db_event_last(hContact);
eventCount = 0;
dbei.cbSize = sizeof(dbei);
dbei.timestamp = 0;
while(hEvent) {
dbei.cbBlob = 0;
dbei.pBlob = NULL;
db_event_get(hEvent, &dbei);
if(dbei.eventType == EVENTTYPE_MESSAGE && !(dbei.flags & DBEF_SENT)) { // record time of last event
eventCount++;
}
/*
* consider the most recent 100 messages and ignore messages that are older than the cutoff days.
* this will prevent contacts with a high message rate in the past to keep occupying the
* top positions forever.
*/
if(eventCount >= 100 || dbei.timestamp < curTime - (dwCutoffDays * 86400))
break;
hEvent = db_event_prev(hContact, hEvent);
// check for main update thread still running (if not, application is shutting down, so terminate our work)
if(doSleep && mf_updatethread_running == FALSE)
return;
if(doSleep)
Sleep(100);
}
if(eventCount == 0) {
frequency = 0x7fffffff;
cfg::writeDword(hContact, "CList", "mf_firstEvent", curTime - (dwCutoffDays * 86400));
}
else {
frequency = (curTime - dbei.timestamp) / eventCount;
cfg::writeDword(hContact, "CList", "mf_firstEvent", dbei.timestamp);
}
cfg::writeDword(hContact, "CList", "mf_freq", frequency);
cfg::writeDword(hContact, "CList", "mf_count", eventCount);
}
extern wchar_t g_ptszEventName[];
/**
* This background thread iterates over database contacts and calculates the message frequency
* which can be used to sort conctacts based on how frequent they are used as chat partners.
* it runs at low priority and scans one contact every 5 seconds. Once it's finished, it will
* wait another 1000 seconds and then repeat the process.
*/
void MF_UpdateThread(LPVOID)
{
HANDLE hEvent = OpenEvent(EVENT_ALL_ACCESS, FALSE, g_ptszEventName);
WaitForSingleObject(hEvent, 20000);
ResetEvent(hEvent);
while (mf_updatethread_running) {
for (MCONTACT hContact = db_find_first(); hContact && mf_updatethread_running; hContact = db_find_next(hContact)) {
MF_CalcFrequency(hContact, 50, 1);
if (mf_updatethread_running)
WaitForSingleObject(hEvent, 5000);
ResetEvent(hEvent);
}
if (mf_updatethread_running)
WaitForSingleObject(hEvent, 1000000);
ResetEvent(hEvent);
}
CloseHandle(hEvent);
}
static BOOL mc_hgh_removed = FALSE;
void CLC::LoadContactTree()
{
MCONTACT hContact;
int i, status, hideOffline;
BYTE bMsgFrequency = cfg::getByte("CList", "fhistdata", 0);
CallService(MS_CLUI_LISTBEGINREBUILD, 0, 0);
for (i = 1; ; i++) {
if (pcli->pfnGetGroupName(i, NULL) == NULL)
break;
CallService(MS_CLUI_GROUPADDED, i, 0);
}
hideOffline = cfg::getByte("CList", "HideOffline", SETTING_HIDEOFFLINE_DEFAULT);
hContact = db_find_first();
while (hContact != NULL) {
status = GetContactStatus(hContact);
if ((!hideOffline || status != ID_STATUS_OFFLINE) && !CLVM_GetContactHiddenStatus(hContact, NULL, NULL))
pcli->pfnChangeContactIcon(hContact, IconFromStatusMode(GetContactProto(hContact), status, hContact, NULL), 1);
// build initial data for message frequency
if(!bMsgFrequency)
MF_CalcFrequency(hContact, 100, 0);
hContact = db_find_next(hContact);
}
cfg::writeByte("CList", "fhistdata", 1);
mc_hgh_removed = TRUE;
//CallService(MS_CLUI_SORTLIST, 0, 0);
CallService(MS_CLUI_LISTENDREBUILD, 0, 0);
}
DWORD INTSORT_GetLastMsgTime(MCONTACT hContact)
{
for (MEVENT hDbEvent = db_event_last(hContact); hDbEvent; hDbEvent = db_event_prev(hContact, hDbEvent)) {
DBEVENTINFO dbei = { sizeof(dbei) };
db_event_get(hDbEvent, &dbei);
if (dbei.eventType == EVENTTYPE_MESSAGE && !(dbei.flags & DBEF_SENT))
return dbei.timestamp;
}
return 0;
}
int __forceinline GetProtoIndex(char * szName)
{
if ( !szName )
return -1;
else {
PROTOACCOUNT* pa = Proto_GetAccount( szName );
return ( pa == NULL ) ? -1 : pa->iOrder;
}
}
static int __forceinline INTSORT_CompareContacts(const struct ClcContact* c1, const struct ClcContact* c2, UINT bywhat)
{
wchar_t *namea, *nameb;
int statusa, statusb;
char *szProto1, *szProto2;
int rc;
if (c1 == 0 || c2 == 0)
return 0;
szProto1 = c1->proto;
szProto2 = c2->proto;
statusa = c1->wStatus;
statusb = c2->wStatus;
// make sure, sticky contacts are always at the beginning of the group/list
if ((c1->flags & CONTACTF_STICKY) != (c2->flags & CONTACTF_STICKY))
return 2 * (c2->flags & CONTACTF_STICKY) - 1;
if(bywhat == SORTBY_PRIOCONTACTS) {
if((cfg::clcdat->exStyle & CLS_EX_DIVIDERONOFF) && ((c1->flags & CONTACTF_ONLINE) != (c2->flags & CONTACTF_ONLINE)))
return 0;
if ((c1->flags & CONTACTF_PRIORITY) != (c2->flags & CONTACTF_PRIORITY))
return 2 * (c2->flags & CONTACTF_PRIORITY) - 1;
else
return 0;
}
if (bywhat == SORTBY_STATUS) {
int ordera, orderb;
ordera = GetStatusModeOrdering(statusa);
orderb = GetStatusModeOrdering(statusb);
if (ordera != orderb)
return ordera - orderb;
else
return 0;
}
// separate contacts treated as "offline"
if ( !cfg::dat.bDontSeparateOffline && ((statusa == ID_STATUS_OFFLINE) != (statusb == ID_STATUS_OFFLINE )))
return 2 * (statusa == ID_STATUS_OFFLINE) - 1;
switch( bywhat ) {
case SORTBY_NAME:
namea = (wchar_t *)c1->szText;
nameb = (wchar_t *)c2->szText;
return CompareString(LOCALE_USER_DEFAULT, NORM_IGNORECASE, namea, -1, nameb, -1) - 2;
case SORTBY_LASTMSG:
if(c1->extraCacheEntry >= 0 && c1->extraCacheEntry < cfg::nextCacheEntry &&
c2->extraCacheEntry >= 0 && c2->extraCacheEntry < cfg::nextCacheEntry)
return(cfg::eCache[c2->extraCacheEntry].dwLastMsgTime - cfg::eCache[c1->extraCacheEntry].dwLastMsgTime);
else {
DWORD timestamp1 = INTSORT_GetLastMsgTime(c1->hContact);
DWORD timestamp2 = INTSORT_GetLastMsgTime(c2->hContact);
return timestamp2 - timestamp1;
}
case SORTBY_FREQUENCY:
if ( c1->extraCacheEntry >= 0 && c1->extraCacheEntry < cfg::nextCacheEntry &&
c2->extraCacheEntry >= 0 && c2->extraCacheEntry < cfg::nextCacheEntry )
return(cfg::eCache[c1->extraCacheEntry].msgFrequency - cfg::eCache[c2->extraCacheEntry].msgFrequency);
break;
case SORTBY_PROTO:
if(c1->bIsMeta)
szProto1 = c1->metaProto ? c1->metaProto : c1->proto;
if(c2->bIsMeta)
szProto2 = c2->metaProto ? c2->metaProto : c2->proto;
rc = GetProtoIndex(szProto1) - GetProtoIndex(szProto2);
if (rc != 0 && (szProto1 != NULL && szProto2 != NULL))
return rc;
}
return 0;
}
int CLC::CompareContacts(const ClcContact* c1, const ClcContact* c2)
{
int i, result;
result = INTSORT_CompareContacts(c1, c2, SORTBY_PRIOCONTACTS);
if(result)
return result;
for(i = 0; i <= 2; i++) {
if(cfg::dat.sortOrder[i]) {
result = INTSORT_CompareContacts(c1, c2, cfg::dat.sortOrder[i]);
if(result != 0)
return result;
}
}
return 0;
}
#undef SAFESTRING
static int resortTimerId = 0;
static VOID CALLBACK SortContactsTimer(HWND hwnd, UINT message, UINT idEvent, DWORD dwTime)
{
KillTimer(NULL, resortTimerId);
resortTimerId = 0;
//CallService(MS_CLUI_SORTLIST, 0, 0);
}
int CLC::SetHideOffline(WPARAM wParam, LPARAM lParam)
{
switch ((int) wParam) {
case 0:
cfg::writeByte("CList", "HideOffline", 0);
break;
case 1:
cfg::writeByte("CList", "HideOffline", 1);
break;
case -1:
cfg::writeByte("CList", "HideOffline", (BYTE) ! cfg::getByte("CList", "HideOffline", SETTING_HIDEOFFLINE_DEFAULT)); break;
}
CLUI::setButtonStates(pcli->hwndContactList);
CLC::LoadContactTree();
return 0;
}
|