From d961f42c7f709929258c2a5b33fbb47acc399522 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 2 Jul 2012 20:37:03 +0000 Subject: - mir_cslock - class for locking critical sections; - unneeded helpers removed; - code cleaning in TTB git-svn-id: http://svn.miranda-ng.org/main/trunk@727 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/helpers/stshelpers.cpp | 303 ----------------------------------------- 1 file changed, 303 deletions(-) delete mode 100644 plugins/helpers/stshelpers.cpp (limited to 'plugins/helpers/stshelpers.cpp') diff --git a/plugins/helpers/stshelpers.cpp b/plugins/helpers/stshelpers.cpp deleted file mode 100644 index abea62b3ba..0000000000 --- a/plugins/helpers/stshelpers.cpp +++ /dev/null @@ -1,303 +0,0 @@ -#include "commonheaders.h" -#include "gen_helpers.h" -#include -#include "stshelpers.h" - -static struct ProtoInfo { - const char *szProto; - UINT idEvent; -}; - -// note: accesses to pi are not synchronized... 'cause I'm a lazy SOB (and it's not necessary ATM) -static struct ProtoInfo *pi = NULL; -static int piCount = 0; -static UINT g_idEvent = 0; -static HWND hMessageWindow = NULL; -static HANDLE hProtoAckHook = NULL; - -static VOID CALLBACK EnableProtoTimer(HWND hwnd, UINT message, UINT idEvent, DWORD dwTime) { - - int i; - - KillTimer(hwnd, idEvent); - log_debugA("EnableProtoTimer"); - for (i=0;i 1) { - pi = realloc(pi, (piCount-1)*sizeof(struct ProtoInfo)); - } - else { - free(pi); - pi = NULL; - log_debugA("(3) pi freed"); - } - piCount -= 1; - } - } -} - -static int ProtoAck(WPARAM wParam, LPARAM lParam) { - - int status; - ACKDATA *ack; - - ack = (ACKDATA*)lParam; - if (ack->type != ACKTYPE_STATUS) return 0; - if (ack->result != ACKRESULT_SUCCESS) return 0; - log_debugA("StatusHandling ProtoAck"); - status = CallProtoService(ack->szModule, PS_GETSTATUS, 0, 0); - log_debugA("StatusHandling ProtoAck status=%d", status); - if ( (status < MIN_STATUS) || (status > MAX_STATUS) ) { - return 0; - } - pi = realloc(pi, (piCount+1)*sizeof(struct ProtoInfo)); - g_idEvent += 1; - pi[piCount].idEvent = g_idEvent; - pi[piCount].szProto = ack->szModule; - piCount += 1; - log_debugA("added timer %d for pi[%d] %s (%x)", pi[piCount-1].idEvent, piCount-1, ack->szModule, ack->szModule); - SetTimer(hMessageWindow, g_idEvent, CONNECTIONTIMEOUT, EnableProtoTimer); - - return 0; -} - -int InitProtoStatusChangedHandling() { - - if (hMessageWindow == NULL) { - int i, count; - PROTOCOLDESCRIPTOR **protos; - - CallService(MS_PROTO_ENUMPROTOCOLS, (WPARAM)&count, (LPARAM)&protos); - for(i=0;itype!=PROTOTYPE_PROTOCOL || CallProtoService(protos[i]->szName,PS_GETCAPS,PFLAGNUM_2,0)==0) continue; - //pi = realloc(pi, (piCount + 1)*sizeof(struct ProtoInfo)); - //ZeroMemory(&pi[piCount], sizeof(struct ProtoInfo)); - //pi[piCount].szProto = protos[i].szName; - log_debugA("InitProtoStatusChangedHandling: %s added", protos[i]->szName); - } - hMessageWindow = CreateWindowExA(0, "STATIC", NULL, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL); - hProtoAckHook = HookEvent(ME_PROTO_ACK, ProtoAck); - - return 0; - } - - return 1; -} - -int ProtoChangedStatus(char *szProto) { - - int i; - - log_debugA("ProtoChangedStatus %s", szProto); - if (szProto != NULL) { - for (i=0;istatus == ID_STATUS_CURRENT) || (ssi->flags&SSIF_DONTSETSTATUS) ) { - return CallProtoService(ssi->szProto, PS_GETSTATUS, 0, 0); - } - - return ssi->status; -} - -static int EqualsGlobalStatus(SETSTATUSINFO *ssi, int count) { - - PROTOCOLDESCRIPTOR **protos; - int i, j, protoCount, pstatus, gstatus; - - if ( (count == 1) && (ssi[0].flags&SSIF_USEAWAYSYS) && (ssi[0].szProto == NULL) ) { - return ssi[0].status; - } - pstatus = gstatus = 0; - CallService(MS_PROTO_ENUMPROTOCOLS,(WPARAM)&protoCount,(LPARAM)&protos); - for (i=0;itype != PROTOTYPE_PROTOCOL) || (CallProtoService(ssi[i].szProto, PS_GETCAPS, PFLAGNUM_2, 0) == 0)) continue; - pstatus = 0; - for (j=0;jszName, ssi[j].szProto)) { - if (ssi[j].flags&SSIF_DONTSETSTATUS) { - // not all proto's will be set - return 0; - } - if (!(ssi[j].flags&SSIF_USEAWAYSYS)) { - // not all proto's handled by awaysys - return 0; - } - pstatus = GetActualStatus(&ssi[j]); - } - else { - // not all proto's will be set - return 0; - } - } - if (pstatus == 0) { - pstatus = CallProtoService(protos[i]->szName, PS_GETSTATUS, 0, 0); - } - if (gstatus == 0) { - gstatus = pstatus; - } - if (pstatus != gstatus) { - return 0; - } - } - - return gstatus; -} - -// helper, from core -static char *GetDefaultMessage(int status) -{ - switch(status) { - case ID_STATUS_AWAY: return Translate("I've been away since %time%."); - case ID_STATUS_NA: return Translate("Give it up, I'm not in!"); - case ID_STATUS_OCCUPIED: return Translate("Not right now."); - case ID_STATUS_DND: return Translate("Give a guy some peace, would ya?"); - case ID_STATUS_FREECHAT: return Translate("I'm a chatbot!"); - case ID_STATUS_ONLINE: return Translate("Yep, I'm here."); - case ID_STATUS_OFFLINE: return Translate("Nope, not here."); - case ID_STATUS_INVISIBLE: return Translate("I'm hiding from the mafia."); - case ID_STATUS_ONTHEPHONE: return Translate("That'll be the phone."); - case ID_STATUS_OUTTOLUNCH: return Translate("Mmm...food."); - case ID_STATUS_IDLE: return Translate("idleeeeeeee"); - } - return NULL; -} - -static char *GetDefaultStatusMessage(int newstatus) { - - char *sMsg, *tMsg; - - sMsg = NULL; - if (ServiceExists(MS_AWAYMSG_GETSTATUSMSG)) { - tMsg = (char*)CallService(MS_AWAYMSG_GETSTATUSMSG, (WPARAM)newstatus, 0); - if (tMsg != NULL) { - sMsg = _strdup(tMsg); - mir_free(tMsg); - } - } - else { - tMsg = GetDefaultMessage(newstatus); /* awaysys doesn't define the service above */ - if (tMsg != NULL) { - sMsg = _strdup(tMsg); - } - } - - return sMsg; -} - -int Hlp_SetStatus(SETSTATUSINFO *ssi, int count) { - - int i, status; - char *szMsg; - - status = EqualsGlobalStatus(ssi, count); - if (status != 0) { - log_debugA("Hlp_SetStatus: Setting global status"); - CallService(MS_CLIST_SETSTATUSMODE, (WPARAM)status, 0); - return 0; - } - for (i=0;i