diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-07-23 13:52:57 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-07-23 13:52:57 +0000 |
commit | 89c5b2369413025e1fe7dfe5c5d0bf3bedd8558d (patch) | |
tree | 18f09394ce3b811e3df7d15de747e842000bd4ad /!NotAdopted/SmartAutoAway/reconnect.cpp | |
parent | a9580df150d799246eaecbf3c1fb5cecf9f8ab49 (diff) |
git-svn-id: http://svn.miranda-ng.org/main/trunk@1123 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to '!NotAdopted/SmartAutoAway/reconnect.cpp')
-rw-r--r-- | !NotAdopted/SmartAutoAway/reconnect.cpp | 328 |
1 files changed, 328 insertions, 0 deletions
diff --git a/!NotAdopted/SmartAutoAway/reconnect.cpp b/!NotAdopted/SmartAutoAway/reconnect.cpp new file mode 100644 index 0000000000..aad175c2f8 --- /dev/null +++ b/!NotAdopted/SmartAutoAway/reconnect.cpp @@ -0,0 +1,328 @@ +/*
+
+Miranda IM: the free IM client for Microsoft* Windows*
+
+Copyright 2000-2006 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.
+*/
+#include "globals.h"
+
+long *reconnectOptsPerm=0;
+long *reconnectOpts=0;
+
+unsigned int *protoOfflineTimes=0;
+int *protoStatus=0; //0:OK; :1:couning; 2:fatalError; 4:reconnectForced
+
+
+void LoginAck(int protoIndex, ACKDATA * ack)
+{
+#ifdef AALOG
+ char log[1024];
+ sprintf(log,"LoginAck: %s: result: %d; hProcess: %d; lParam: %d;" ,
+ proto[protoIndex]->szName,
+ ack->result,ack->hProcess,ack->lParam
+// CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)ack->hProcess, 0),
+// CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)ack->lParam, 0)
+ );
+ CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)log);
+#endif
+ if (ack->result == ACKRESULT_FAILED) switch (ack->lParam){
+ case LOGINERR_WRONGPASSWORD:
+ case LOGINERR_BADUSERID:
+ case LOGINERR_WRONGPROTOCOL:
+ case LOGINERR_OTHERLOCATION:
+ {
+#ifdef AALOG
+ CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)"LoginAck: FatalError occured");
+#endif
+ protoStatus[protoIndex]|=2;
+ protoOfflineTimes[protoIndex]=0;
+ return;
+ break;
+ }
+ }
+}
+
+
+void ProtocolsProc(int protoIndex, ACKDATA * ack)
+//ProtoProc: ICQ-AUX: result: 0; hProcess: Online; lParam: Offline;
+{
+#ifdef AALOG
+ char log[1024];
+ sprintf(log,"ProtoProc: %s: result: %d; hProcess: %s; lParam: %s; RequestedStatus: %s; AutoAwayStatus: %s" ,
+ proto[protoIndex]->szName,
+ ack->result,
+ CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)ack->hProcess, 0),
+ CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)ack->lParam, 0),
+ CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)reqStatus[protoIndex], 0),
+ CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)courAwayStatus[protoIndex], 0)
+ );
+ CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)log);
+#endif
+ protoOfflineTimes[protoIndex]=0;
+ if (ack->lParam==ID_STATUS_OFFLINE) protoStatus[protoIndex]|=1; //will be counting, keeping eventual "FatalError" Flag
+ else protoStatus[protoIndex] = 0; //We are not offline or are connecting -> clear counting and "FatalError"
+#ifdef AALOG
+ sprintf(log,"ProtoProc: %s: Result: ProtoStatus: %d",
+ proto[protoIndex]->szName,protoStatus[protoIndex]);
+ CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)log);
+#endif
+
+}
+
+#ifdef AALOG
+#define AALOG2
+#endif
+int IsReconnectForbidden(int protoIndex){ //0 if it permitted
+#ifdef AALOG2
+ char str[256];
+#endif
+ if (!(protoStatus[protoIndex]&1)) return 1; //Proto is not counting or is not offline
+ protoOfflineTimes[protoIndex] += 2; //the timer ticks every 2 seconds
+ if (protoStatus[protoIndex]&4) { // Reconnect is forced
+#ifdef AALOG2
+ sprintf(str,"ReconnForbiddden: %s reconnection is forced.",proto[protoIndex]->szName);
+ CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
+#endif
+ return 0;
+ }
+#ifdef AALOG2
+ sprintf(str,"ReconnForbiddden: %s is Offline and counting: %d to %d",proto[protoIndex]->szName,protoOfflineTimes[protoIndex],HIWORD(reconnectOptsPerm[protoIndex]));
+ CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
+#endif
+ if (protoOfflineTimes[protoIndex] <= HIWORD(reconnectOptsPerm[protoIndex])) return 2; // not yet
+ if (!(reconnectOptsPerm[protoIndex]&aa_ReconnectBitsEnabled)) return 3; //reconnect is disabled
+#ifdef AALOG2
+ sprintf(str,"ReconnForbiddden: %s has ReconnectEnabled",proto[protoIndex]->szName);
+ CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
+#endif
+ if (protoStatus[protoIndex]&2) { //FatalError?
+#ifdef AALOG2
+ sprintf(str,"ReconnForbiddden: %s has FatalError; ProtoStatus: %d",proto[protoIndex]->szName,protoStatus[protoIndex]);
+ CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
+#endif
+ if (reconnectOptsPerm[protoIndex]&aa_ReconnectNotFatalError) {
+#ifdef AALOG2
+ sprintf(str,"ReconnForbiddden: %s has DontReconnectOnFatalError",proto[protoIndex]->szName);
+ CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
+#endif
+ return 4; //exit if "dontReconnectOnFatalError" enabled
+#ifdef AALOG2
+ } else {
+ sprintf(str,"ReconnForbiddden: %s has FatalError but DontReconnectOnFatalError disabled",proto[protoIndex]->szName);
+ CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
+#endif
+ }
+ } //if FatalError
+ if (IsStatusBitSet(courAwayStatus[protoIndex],LOWORD(reconnectOptsPerm[protoIndex]))){ //is reconnect permited on this lastonline status?
+ //reconnecting...
+#ifdef AALOG2
+ sprintf(str,"ReconnForbiddden: %s Reconnect permitted",proto[protoIndex]->szName);
+ CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
+#endif
+ return 0; // reconnect is permitted
+#ifdef AALOG2
+ } else {
+ sprintf(str,"ReconnForbiddden: %s Reconnecting to %s(%d) was not permited by %d",
+ proto[protoIndex]->szName,
+ CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)courAwayStatus[protoIndex], 0),
+ courAwayStatus[protoIndex],
+ reconnectOptsPerm[protoIndex]);
+ CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
+#endif
+ }
+ return 5; // forbidden because current status is disabled
+}
+#undef AALOG2
+void TimerProc()
+{
+#ifdef AALOG
+ char str[256];
+#endif
+ int i;
+ for (i=0;i<protoCount;i++){
+ if (isInterestingProto(i)){
+#ifdef AALOG1
+ sprintf(str,"TimerProc: %s is a proto",proto[i]->szName);
+ CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
+#endif
+ if (protoStatus[i]&1) {
+#ifdef AALOG1
+ sprintf(str,"TimerProc: %s is Counting: AwayStatus: %s; reqStatus: %s;",
+ proto[i]->szName,
+ CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)courAwayStatus[i], 0),
+ CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)reqStatus[i], 0)
+ );
+ CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
+#endif
+ if ((courAwayStatus[i]==ID_STATUS_OFFLINE)||(reqStatus[i]==ID_STATUS_OFFLINE)){
+ protoStatus[i]&=2; //keeping fatalerror if any
+#ifdef AALOG
+ sprintf(str,"TimerProc: %s Counting Cancelled: AwayStatus: %s; reqStatus: %s;",
+ proto[i]->szName,
+ CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)courAwayStatus[i], 0),
+ CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)reqStatus[i], 0)
+ );
+ CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
+#endif
+ }
+ }
+ switch (IsReconnectForbidden(i)) {
+#ifdef AALOG1
+ case 1 : sprintf(str,"IsReconnectForbidden: %s is not counting or is not offline",proto[i]->szName); break;
+ case 2 : sprintf(str,"IsReconnectForbidden: %s it is too early to reconnect",proto[i]->szName); break;
+ case 3 : sprintf(str,"IsReconnectForbidden: %s has reconnect disabled",proto[i]->szName); break;
+ case 4 : sprintf(str,"IsReconnectForbidden: %s fatal error and DontReconnect enabled",proto[i]->szName); break;
+ case 5 : sprintf(str,"IsReconnectForbidden: %s current AAStatus should not be reconnected",proto[i]->szName); break;
+#endif
+ case 0 :
+#ifdef AALOG
+ sprintf(str,"IsReconnectForbidden: %s is permited to reconnect",proto[i]->szName);
+#endif
+ CallProtoService(proto[i]->szName, PS_SETSTATUS, courAwayStatus[i], 0);
+ break;
+ default :
+#ifdef AALOG
+ sprintf(str,"IsReconnectForbidden: %s Surprising answer",proto[i]->szName);
+#endif
+ break;
+ }
+#ifdef AALOG1
+ CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
+#endif
+ }//protoType protocol
+ }//for
+}
+void moveScrollBarEvent(HWND hwndDlg){
+ TCHAR str[256];
+ int slide = SendDlgItemMessage(hwndDlg,IDC_RECONNECTSLIDER,TBM_GETPOS,0,0);
+ int delay = GetReconnectDelayFromSlider(slide);
+ ShowWindow(GetDlgItem(hwndDlg, IDC_RECONNECTWARNING),GetStringFromDelay(str, delay)?SW_SHOW:SW_HIDE);
+ SetDlgItemText(hwndDlg,IDC_ENABLERECONNECT,str);
+ reconnectOpts[courProtocolSelection] = SetBits(reconnectOpts[courProtocolSelection],aa_ReconnectBitsDelay,delay);
+}
+
+LRESULT SetDlgItemsReconnect(HWND hwndDlg, int coursel){
+ BOOL enabledReconnect = GetBits(reconnectOpts[coursel],aa_ReconnectBitsEnabled);
+ BOOL dontReconnectOnFatalError = GetBits(reconnectOpts[coursel],aa_ReconnectNotFatalError);
+ int i =0;
+
+ for (i=0;i<numStatuses;i++){
+ BOOL bita = IsStatusBitSet(aa_Status[i],protoModes[coursel])==0;
+ BOOL bitr = IsStatusBitSet(aa_Status[i],reconnectOpts[coursel])>0;
+ EnableWindow(GetDlgItem(hwndDlg, aa_Status[i]+0x20), enabledReconnect);
+ StrikeOut(hwndDlg,aa_Status[i]+0x20,bita);
+ CheckDlgButton(hwndDlg, aa_Status[i]+0x20, bitr?BST_CHECKED:BST_UNCHECKED );
+ }
+ SendDlgItemMessage(hwndDlg,IDC_RECONNECTSLIDER,TBM_SETPOS,TRUE,GetSliderFromReconnectDelay(GetBits(reconnectOpts[coursel],aa_ReconnectBitsDelay)));
+ moveScrollBarEvent(hwndDlg);
+ CheckDlgButton(hwndDlg, IDC_ENABLERECONNECT, enabledReconnect?BST_CHECKED:BST_UNCHECKED );
+ CheckDlgButton(hwndDlg, IDC_NOTFATALERROR, dontReconnectOnFatalError?BST_CHECKED:BST_UNCHECKED );
+ EnableWindow(GetDlgItem(hwndDlg, IDC_RECONNECTSLIDER), enabledReconnect);
+ EnableWindow(GetDlgItem(hwndDlg, IDC_NOTFATALERROR), enabledReconnect);
+ CheckDlgButton(hwndDlg, IDC_KEEPMAINSTATUSOFFLINE, (idleOpts&KeepMainStatusOffline)? BST_CHECKED : BST_UNCHECKED);
+ return TRUE;
+}
+
+
+BOOL CALLBACK DlgProcOptsReconnect(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
+{
+ switch (msg) {
+ case WM_INITDIALOG:
+ TranslateDialogDefault(hwndDlg);
+ SetDlgItemsReconnect(hwndDlg, courProtocolSelection);
+ return TRUE;
+ case WM_USER+5:
+ {
+ int thebit = numStatuses-StatusToProtoIndex(LOWORD(lParam),allprotomodes);
+ int value = IsDlgButtonChecked(hwndDlg, LOWORD(lParam)+32)==BST_CHECKED;
+ thebit = 1<<thebit;
+ reconnectOpts[courProtocolSelection] =
+ SetBits(reconnectOpts[courProtocolSelection],
+ thebit,
+ value);
+ break;
+ }
+ case WM_USER+6:
+ {
+ reconnectOpts[courProtocolSelection] = SetBits(reconnectOpts[courProtocolSelection],aa_ReconnectBitsEnabled,wParam);
+ SetDlgItemsReconnect(hwndDlg,courProtocolSelection);
+ break;
+ }
+ case WM_USER+7:
+ {
+ reconnectOpts[courProtocolSelection] = SetBits(reconnectOpts[courProtocolSelection],aa_ReconnectNotFatalError,wParam);
+ SetDlgItemsReconnect(hwndDlg,courProtocolSelection);
+ break;
+ }
+ case WM_USER+8:
+ {
+ idleOpts = SetBits(idleOpts,KeepMainStatusOffline,wParam);
+ break;
+ }
+ case WM_COMMAND:
+ switch (LOWORD(wParam)) {
+ case ID_STATUS_AWAY+32:
+ case ID_STATUS_DND+32:
+ case ID_STATUS_NA+32:
+ case ID_STATUS_OCCUPIED+32:
+ case ID_STATUS_INVISIBLE+32:
+ case ID_STATUS_ONTHEPHONE+32:
+ case ID_STATUS_OUTTOLUNCH+32:
+ case ID_STATUS_ONLINE+32:
+ case ID_STATUS_FREECHAT+32:
+ case ID_STATUS_OFFLINE+32:
+ SendMessage(hwndDlg, WM_USER+5,0,(wParam-32)|0x00100000);
+ break;
+ case IDC_ENABLERECONNECT:
+ SendMessage(hwndDlg, WM_USER+6, (WPARAM)IsDlgButtonChecked(hwndDlg, IDC_ENABLERECONNECT) == BST_CHECKED, 0);
+ break;
+ case IDC_NOTFATALERROR:
+ SendMessage(hwndDlg, WM_USER+7, (WPARAM)IsDlgButtonChecked(hwndDlg, IDC_NOTFATALERROR) == BST_CHECKED, 0);
+ break;
+ case IDC_KEEPMAINSTATUSOFFLINE:
+ SendMessage(hwndDlg, WM_USER+8, (WPARAM)IsDlgButtonChecked(hwndDlg, IDC_KEEPMAINSTATUSOFFLINE) == BST_CHECKED, 0);
+ break;
+ }
+ if (HIWORD(wParam)==BN_CLICKED)
+ {
+ SendMessage(GetParent(hwndDlg), PSM_CHANGED, (unsigned int)hwndDlg, 0);
+ }
+ break;
+ case WM_NOTIFY:
+ switch (((LPNMHDR) lParam)->idFrom) {
+ case 0:
+ switch (((LPNMHDR) lParam)->code) {
+ case PSN_APPLY: {
+ return TRUE;
+ }
+ }
+ break;
+ }
+ break;
+ case WM_HSCROLL:
+ if((HWND)lParam == GetDlgItem(hwndDlg, IDC_RECONNECTSLIDER)) {
+ moveScrollBarEvent(hwndDlg);
+ if (LOWORD(wParam) == SB_ENDSCROLL) SendMessage(GetParent(hwndDlg), PSM_CHANGED, (unsigned int)hwndDlg, 0);
+ }
+ break;
+ case WM_DESTROY:
+ break;
+ }
+ return FALSE;
+}
|