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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
|
/*
UserinfoEx plugin for Miranda IM
Copyright:
© 2006-2010 DeathAxe, Yasnovidyashii, Merlin, K. Romanov, Kreol
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 "stdafx.h"
#define HM_PROTOACK (WM_USER+100)
typedef INT_PTR (*PUpdCallback) (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, void *UserData);
/***********************************************************************************************************
* class CUpdProgress
***********************************************************************************************************/
class CUpdProgress
{
protected:
BYTE _bBBCode; // TRUE if text renderer can handle BBCodes
BYTE _bIsCanceled; // is set to TRUE upon click on the CANCEL button
PUpdCallback _pFnCallBack; // a pointer to a callback function, which can be used
// to catch several messages by the caller.
PVOID _pData; // application defined data
HWND _hWnd; // window handle of the progress dialog/popup
/**
* This is the default window procedure, which is called for both progress dialog and popup.
* It handles some common messages and calls the user defined callback function if defined.
*
* @param pProgress - This is the pointer to the object of CUpdProgress.
* @param hWnd - HWND window handle of the progress dialog
* @param uMsg - message sent to the dialog
* @param wParam - message specific parameter
* @param lParam - message specific parameter
*
* @return This method returns 0.
**/
static INT_PTR CALLBACK DefWndProc(CUpdProgress *pProgress, HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
__try
{
if (PtrIsValid(pProgress))
{
switch (uMsg)
{
case UM_POPUPACTION:
case WM_COMMAND:
{
if (wParam == MAKEWORD(IDSKIP, BN_CLICKED))
{
pProgress->Destroy();
}
else
if (wParam == MAKEWORD(IDCANCEL, BN_CLICKED))
{
pProgress->_bIsCanceled = TRUE;
}
}
}
if (PtrIsValid(pProgress->_pFnCallBack))
{
pProgress->_pFnCallBack(hWnd, uMsg, wParam, lParam, pProgress->_pData);
}
}
}
__except(GetExceptionCode()==EXCEPTION_ACCESS_VIOLATION ?
EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH)
{ // code to handle exception
puts("Exception Occurred");
}
return 0;
}
public:
virtual HWND Create (LPCTSTR szTitle, PUpdCallback pFnCallBack) = 0;
virtual void Destroy (void) {};
virtual void SetTitle (LPCTSTR szText) = 0;
virtual void SetText (LPCTSTR szText) = 0;
BYTE IsVisible() const
{
return _hWnd != nullptr;
}
/**
*
*
**/
BYTE IsCanceled() const
{
return _bIsCanceled;
}
/**
*
*
**/
void SetTitleParam(LPCTSTR szText, ...)
{
if (szText)
{
wchar_t buf[MAXDATASIZE];
va_list vl;
va_start(vl, szText);
if (mir_vsnwprintf(buf, _countof(buf), szText, vl) != -1)
{
SetTitle(buf);
}
va_end(vl);
}
}
/**
* This method is used to set the popups or dialogs message text.
* It takes text with parameters as sprintf does. If bbcodes are
* disabled this method automatically deletes them from the text.
*
* @param szText - the text to display. Can contain formats like
* sprintf does.
* @param ... - a list of parameters, which depends on the
* format of szText.
*
* @return nothing
**/
void SetTextParam(LPCTSTR szText, ...)
{
if (szText)
{
INT_PTR cch = mir_wstrlen(szText);
LPTSTR fmt = (LPTSTR) mir_alloc((cch + 1) * sizeof(wchar_t));
if (fmt)
{
wchar_t buf[MAXDATASIZE];
va_list vl;
mir_wstrcpy(fmt, szText);
// delete bbcodes
if (!_bBBCode)
{
LPTSTR s, e;
for (s = fmt, e = fmt + cch; s[0] != 0; s++)
{
if (s[0] == '[')
{
// leading bbcode tag (e.g.: [b], [u], [i])
if ((s[1] == 'b' || s[1] == 'u' || s[1] == 'i') && s[2] == ']')
{
memmove(s, s + 3, (e - s - 2) * sizeof(wchar_t));
e -= 3;
}
// ending bbcode tag (e.g.: [/b], [/u], [/i])
else if (s[1] == '/' && (s[2] == 'b' || s[2] == 'u' || s[2] == 'i') && s[3] == ']')
{
memmove(s, s + 4, (e - s - 3) * sizeof(wchar_t));
e -= 4;
}
}
}
}
va_start(vl, szText);
if (mir_vsnwprintf(buf, _countof(buf), fmt, vl) != -1)
{
SetText(buf);
}
va_end(vl);
mir_free(fmt);
}
}
}
/**
*
*
**/
CUpdProgress()
{
_hWnd = nullptr;
_pFnCallBack = nullptr;
_pData = nullptr;
_bIsCanceled = FALSE;
_bBBCode = FALSE;
}
/**
*
*
**/
CUpdProgress(void *data)
{
_hWnd = nullptr;
_pFnCallBack = nullptr;
_pData = data;
_bIsCanceled = FALSE;
_bBBCode = FALSE;
}
~CUpdProgress()
{
}
};
/***********************************************************************************************************
* class CDlgUpdProgress
***********************************************************************************************************/
class CDlgUpdProgress : public CUpdProgress
{
/**
*
*
**/
static INT_PTR CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch (uMsg) {
case WM_INITDIALOG:
{
const ICONCTRL idIcon[] = {
{ ICO_BTN_UPDATE, WM_SETICON, NULL },
{ ICO_BTN_DOWNARROW, BM_SETIMAGE, IDSKIP },
{ ICO_BTN_CANCEL, BM_SETIMAGE, IDCANCEL }
};
IcoLib_SetCtrlIcons(hWnd, idIcon, db_get_b(NULL, MODNAME, SET_ICONS_BUTTONS, 1) ? 2 : 1);
SendDlgItemMessage(hWnd, IDCANCEL, BUTTONTRANSLATE, NULL, NULL);
SendDlgItemMessage(hWnd, IDSKIP, BUTTONTRANSLATE, NULL, NULL);
SetUserData(hWnd, lParam);
TranslateDialogDefault(hWnd);
}
return TRUE;
case WM_CTLCOLORSTATIC:
switch (GetWindowLongPtr((HWND)lParam, GWLP_ID)) {
case STATIC_WHITERECT:
case IDC_INFO:
SetTextColor((HDC)wParam, GetSysColor(COLOR_WINDOWTEXT));
return GetSysColor(COLOR_WINDOW);
}
return FALSE;
}
return CUpdProgress::DefWndProc((CUpdProgress *) GetUserData(hWnd), hWnd, uMsg, wParam, lParam);
}
public:
/**
*
*
**/
CDlgUpdProgress(void *data)
: CUpdProgress(data)
{
}
/**
*
*
**/
virtual HWND Create(LPCTSTR szTitle, PUpdCallback pFnCallBack)
{
_pFnCallBack = pFnCallBack;
_hWnd = CreateDialogParam(g_plugin.getInst(),
MAKEINTRESOURCE(IDD_REFRESHDETAILS),
nullptr,
CDlgUpdProgress::WndProc,
(LPARAM) this);
if (_hWnd)
{
SetTitle(szTitle);
ShowWindow(_hWnd, SW_SHOW);
}
return _hWnd;
}
/**
*
*
**/
virtual void Destroy()
{
if (_hWnd)
{
SetUserData(_hWnd, NULL);
EndDialog(_hWnd, IDOK);
_hWnd = nullptr;
}
}
/**
*
*
**/
virtual void SetTitle(LPCTSTR szText)
{
SetWindowText(_hWnd, szText);
}
/**
*
*
**/
virtual void SetText(LPCTSTR szText)
{
SetDlgItemText(_hWnd, IDC_INFO, szText);
}
};
/***********************************************************************************************************
* class CPopupUpdProgress
***********************************************************************************************************/
class CPopupUpdProgress : public CUpdProgress
{
LPCTSTR _szText;
POPUPACTION _popupButtons[2];
/**
*
*
**/
void UpdateText()
{
if (_szText)
{
INT_PTR cb = mir_wstrlen(_szText) + 8;
LPTSTR pb = (LPTSTR) mir_alloc(cb * sizeof(wchar_t));
if (pb)
{
mir_wstrcpy(pb, _szText);
SendMessage(_hWnd, UM_CHANGEPOPUP, CPT_TITLET, (LPARAM) pb);
}
}
}
/**
* This static member is the window procedure, which is used to modify the behaviour of
* a popup dialog, so that it can act as a replacement for the progress dialog.
* The major task of this method is to filter out some messages, who would lead to a crash,
* if passed to the default windows procedure.
*
**/
static LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
// Filter out messages, which must not be passed to default windows procedure or even
// to the callback function!
switch (uMsg)
{
case UM_INITPOPUP:
case UM_CHANGEPOPUP:
case UM_FREEPLUGINDATA:
break;
default:
CUpdProgress::DefWndProc((CUpdProgress *) PUGetPluginData(hWnd), hWnd, uMsg, wParam, lParam);
}
return DefWindowProc(hWnd, uMsg, wParam, lParam);
}
public:
/**
*
*
**/
CPopupUpdProgress(void *data)
: CUpdProgress(data)
{
_szText = nullptr;
_bBBCode = db_get_b(NULL, "Popup", "UseMText", FALSE);
_popupButtons[0].cbSize = sizeof(POPUPACTION);
_popupButtons[0].flags = PAF_ENABLED;
_popupButtons[0].lchIcon = IcoLib_GetIcon(ICO_BTN_DOWNARROW);
_popupButtons[0].wParam = MAKEWORD(IDSKIP, BN_CLICKED);
_popupButtons[0].lParam = NULL;
mir_strcpy(_popupButtons[0].lpzTitle, MODNAME"/Hide");
// cancel button
_popupButtons[1].cbSize = sizeof(POPUPACTION);
_popupButtons[1].flags = PAF_ENABLED;
_popupButtons[1].lchIcon = IcoLib_GetIcon(ICO_BTN_CANCEL);
_popupButtons[1].wParam = MAKEWORD(IDCANCEL, BN_CLICKED);
_popupButtons[1].lParam = NULL;
mir_strcpy(_popupButtons[1].lpzTitle, MODNAME"/Cancel");
}
/**
*
*
**/
virtual HWND Create(LPCTSTR szTitle, PUpdCallback pFnCallBack)
{
POPUPDATAT_V2 pd = { 0 };
pd.cbSize = sizeof(pd);
pd.lchIcon = IcoLib_GetIcon(ICO_BTN_UPDATE);
pd.iSeconds = -1;
pd.PluginData = this;
pd.PluginWindowProc = CPopupUpdProgress::WndProc;
pd.actionCount = _countof(_popupButtons);
pd.lpActions = _popupButtons;
// dummy text
_szText = mir_wstrdup(szTitle);
mir_wstrcpy(pd.lptzContactName, _szText);
mir_wstrcpy(pd.lptzText, L" ");
_pFnCallBack = pFnCallBack;
_hWnd = (HWND) CallService(MS_POPUP_ADDPOPUPT, (WPARAM) &pd, APF_RETURN_HWND|APF_NEWDATA);
return _hWnd;
}
/**
*
*
**/
virtual void Destroy()
{
if (_hWnd)
{
PUDeletePopup(_hWnd);
_hWnd = nullptr;
}
MIR_FREE(_szText);
}
/**
*
*
**/
virtual void SetTitle(LPCTSTR szText)
{
MIR_FREE(_szText);
_szText = mir_wstrdup(szText);
UpdateText();
}
/**
*
*
**/
virtual void SetText(LPCTSTR szText)
{
SendMessage(_hWnd, UM_CHANGEPOPUP, CPT_TEXTT, (LPARAM) mir_wstrdup(szText));
}
};
/***********************************************************************************************************
* class CContactUpdater
***********************************************************************************************************/
class CContactUpdater : public CContactQueue
{
CUpdProgress* _pProgress; // pointer to the progress dialog/popup
HANDLE _hProtoAckEvent; // handle to protocol ack notification
MCONTACT _hContact; // current contact being refreshed
PBYTE _hContactAcks; // array of acknoledgements for the current contact to wait for
INT_PTR _nContactAcks; // number of acknoledgements for the current contact to wait for
MIRANDA_CPP_PLUGIN_API(CContactUpdater);
/**
* This is a callback dialog procedure, which is assigned the update progress dialog to
* gain control over certain messages.
*
* @param hWnd - HWND window handle of the progress dialog
* @param uMsg - message sent to the dialog
* @param wParam - message specific parameter
* @param lParam - message specific parameter
* @param u - This is a parameter assigned by the CUpdProgress' constructur.
* In this case it is a pointer to this class's object.
*
* @return This method returns 0.
**/
static int DlgProc(HWND, UINT uMsg, WPARAM wParam, LPARAM, CContactUpdater* u)
{
switch (uMsg)
{
/**
* User has clicked on the skip or cancel button.
**/
case UM_POPUPACTION:
case WM_COMMAND:
{
if (PtrIsValid(u))
{
switch (LOWORD(wParam))
{
case IDCANCEL:
{
if (HIWORD(wParam) == BN_CLICKED)
{
u->Cancel();
}
}
}
}
}
}
return 0;
}
/**
* This method handles ack broadcasts from the protocols to determine,
* whether a contact's information set's update is complete to continue
* with the next faster. By default the queue is configured to wait
* about 15s between contacts. If the protocol sends a complete ack,
* the time is shortend to 4s.
*
* @param wParam - not used
* @param ack - pointer to an ACKDATA structure containing all
* data for the acknoledgement.
*
* @return nothing
**/
int __cdecl OnProtoAck(WPARAM, ACKDATA *ack)
{
if (ack && ack->hContact == _hContact && ack->type == ACKTYPE_GETINFO) {
if (ack->hProcess || ack->lParam) {
if (!_hContactAcks) {
_nContactAcks = (INT_PTR)ack->hProcess;
_hContactAcks = (PBYTE)mir_calloc(sizeof(BYTE) * (INT_PTR)ack->hProcess);
}
if (ack->result == ACKRESULT_SUCCESS || ack->result == ACKRESULT_FAILED)
_hContactAcks[ack->lParam] = 1;
for (int i = 0; i < _nContactAcks; i++)
if (_hContactAcks[i] == 0)
return 0;
}
// don't wait the full time, but continue immitiatly
ContinueWithNext();
}
return 0;
}
/**
* This method is called just before the worker thread is going to suspend,
* if the queue is empty.
*
* @param none
*
* @return nothing
**/
virtual void OnEmpty()
{
// This was the last contact, so destroy the progress window.
if (_hProtoAckEvent)
{
UnhookEvent(_hProtoAckEvent);
_hProtoAckEvent = nullptr;
}
// free up last ackresult array
MIR_FREE(_hContactAcks);
_nContactAcks = 0;
_hContact = NULL;
// close progress bar
if (_pProgress)
{
_pProgress->Destroy();
delete _pProgress;
_pProgress = nullptr;
}
// reset menu
if (hMenuItemRefresh)
Menu_ModifyItem(hMenuItemRefresh, LPGENW("Refresh contact details"), IcoLib_GetIcon(ICO_BTN_UPDATE));
}
/**
* This virtual method is called by the derived CContactQueue class,
* if an action is requested for a queue item.
*
* @param hContact - the handle of the contact an action is requested for
* @param param - not used here
*
* @return nothing
**/
virtual void Callback(MCONTACT hContact, PVOID)
{
LPSTR pszProto = Proto_GetBaseAccountName(hContact);
if (pszProto && pszProto[0])
{
MIR_FREE(_hContactAcks);
_nContactAcks = 0;
_hContact = hContact;
if (!_hProtoAckEvent)
{
_hProtoAckEvent = (HANDLE) ThisHookEvent(ME_PROTO_ACK, (EVENTHOOK) &CContactUpdater::OnProtoAck);
}
if (_pProgress)
{
_pProgress->SetTextParam(TranslateT("[b]%s (%S)...[/b]\n%d Contacts remaining"),
Clist_GetContactDisplayName(_hContact), pszProto, Size());
}
if (IsProtoOnline(pszProto))
{
int i;
for (i = 0; i < 3 && ProtoChainSend(hContact, PSS_GETINFO, 0, 0); i++)
{
Sleep(3000);
}
}
}
}
public:
/**
* This is the default constructor
*
**/
CContactUpdater() : CContactQueue()
{
_hContactAcks = nullptr;
_nContactAcks = 0;
_hContact = NULL;
_pProgress = nullptr;
_hProtoAckEvent = nullptr;
}
/**
*
*
**/
~CContactUpdater()
{
RemoveAll();
OnEmpty();
}
/**
*
*
**/
BOOL QueueAddRefreshContact(MCONTACT hContact, int iWait)
{
LPSTR pszProto = Proto_GetBaseAccountName(hContact);
if ((mir_strcmp(pszProto, "Weather") != 0) && (mir_strcmp(pszProto, META_PROTO) != 0) && IsProtoOnline(pszProto))
return Add(iWait, hContact);
return 0;
}
/**
*
*
**/
void RefreshAll()
{
int iWait = 100;
for (auto &hContact : Contacts())
if (QueueAddRefreshContact(hContact, iWait))
iWait += 5000;
if (Size() && !_pProgress)
{
if (ServiceExists(MS_POPUP_CHANGETEXTT) && db_get_b(NULL, MODNAME, "PopupProgress", FALSE))
{
_pProgress = new CPopupUpdProgress(this);
}
else
{
_pProgress = new CDlgUpdProgress(this);
}
_pProgress->Create(TranslateT("Refresh contact details"), (PUpdCallback) CContactUpdater::DlgProc);
_pProgress->SetText(TranslateT("Preparing..."));
}
// if there are contacts in the queue, change the main menu item to indicate it is meant for canceling.
if (hMenuItemRefresh && Size() > 0)
Menu_ModifyItem(hMenuItemRefresh, LPGENW("Abort Refreshing Contact Details"), IcoLib_GetIcon(ICO_BTN_CANCEL));
}
/**
*
*
**/
void Cancel()
{
RemoveAll();
ContinueWithNext();
}
};
static CContactUpdater *ContactUpdater = nullptr;
/***********************************************************************************************************
* common helper functions
***********************************************************************************************************/
/**
* This function checks, whether at least one protocol is online!
*
* @param none
*
* @retval TRUE - At least one protocol is online.
* @retval FALSE - All protocols are offline.
**/
static BOOL IsMirandaOnline()
{
for (auto &pa : Accounts())
if (IsProtoAccountEnabled(pa) && IsProtoOnline(pa->szModuleName))
return true;
return false;
}
/***********************************************************************************************************
* services
***********************************************************************************************************/
/**
* This is the service function being called by MS_USERINFO_REFRESH.
* It adds each contact, whose protocol is online, to the queue of contacts to refresh.
* The queue is running a separate thread, which is responsible for requesting the contact information
* one after another with a certain time to wait in between.
*
* @param wParam - not used
* @param lParam - not used
*
* @return This service function always returns 0.
**/
static INT_PTR RefreshService(WPARAM, LPARAM)
{
try
{
if (IsMirandaOnline())
{
if (!ContactUpdater)
{
ContactUpdater = new CContactUpdater();
}
if (ContactUpdater->Size() == 0)
{
ContactUpdater->RefreshAll();
}
else if (IDYES == MsgBox(nullptr, MB_YESNO|MB_ICON_QUESTION, LPGENW("Refresh contact details"), nullptr,
LPGENW("Do you want to cancel the current refresh procedure?")))
{
ContactUpdater->Cancel();
}
}
else
{
MsgErr(nullptr, LPGENW("Miranda must be online for refreshing contact information!"));
}
}
catch(...)
{
MsgErr(nullptr, LPGENW("The function caused an exception!"));
}
return 0;
}
/***********************************************************************************************************
* events
***********************************************************************************************************/
/**
*
*
**/
static int OnContactAdded(WPARAM hContact, LPARAM)
{
try
{
DWORD dwStmp = db_get_dw(hContact, USERINFO, SET_CONTACT_ADDEDTIME, 0);
if (!dwStmp)
{
MTime mt;
mt.GetLocalTime();
mt.DBWriteStamp(hContact, USERINFO, SET_CONTACT_ADDEDTIME);
// create updater, if not yet exists
if (!ContactUpdater)
{
ContactUpdater = new CContactUpdater();
}
// add to the end of the queue
ContactUpdater->AddIfDontHave(
(ContactUpdater->Size() > 0)
? max(ContactUpdater->Get(ContactUpdater->Size() - 1)->check_time + 15000, 4000)
: 4000, hContact);
}
}
catch(...)
{
MsgErr(nullptr, LPGENW("The function caused an exception!"));
}
return 0;
}
/**
* Miranda is going to shutdown soon, so any panding contact information refresh is to be terminated
* and the queue object must be deleted. Further refresh requests will be ignored.
*
* @param wParam - not used
* @param lParam - not used
*
* @return This function always returns 0.
**/
static int OnPreShutdown(WPARAM, LPARAM)
{
if (ContactUpdater) {
delete ContactUpdater;
ContactUpdater = nullptr;
}
//MIR_DELETE(ContactUpdater);
return 0;
}
/***********************************************************************************************************
* initialization
***********************************************************************************************************/
/**
* This function initially loads the module upon startup.
**/
void SvcRefreshContactInfoLoadModule(void)
{
CreateServiceFunction(MS_USERINFO_REFRESH, RefreshService);
HookEvent(ME_SYSTEM_PRESHUTDOWN, OnPreShutdown);
HookEvent(ME_DB_CONTACT_ADDED, OnContactAdded);
HOTKEYDESC hk = {};
hk.pszName = "RefreshContactDetails";
hk.szSection.a = MODNAME;
hk.szDescription.a = LPGEN("Refresh contact details");
hk.pszService = MS_USERINFO_REFRESH;
Hotkey_Register(&hk);
}
|