From 48540940b6c28bb4378abfeb500ec45a625b37b6 Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Tue, 15 May 2012 10:38:20 +0000 Subject: initial commit git-svn-id: http://svn.miranda-ng.org/main/trunk@2 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/IcqOscarJ/fam_0alookup.cpp | 137 +++++++++++++++++++++++++++++++++++ 1 file changed, 137 insertions(+) create mode 100644 protocols/IcqOscarJ/fam_0alookup.cpp (limited to 'protocols/IcqOscarJ/fam_0alookup.cpp') diff --git a/protocols/IcqOscarJ/fam_0alookup.cpp b/protocols/IcqOscarJ/fam_0alookup.cpp new file mode 100644 index 0000000000..f37f31f165 --- /dev/null +++ b/protocols/IcqOscarJ/fam_0alookup.cpp @@ -0,0 +1,137 @@ +// ---------------------------------------------------------------------------80 +// ICQ plugin for Miranda Instant Messenger +// ________________________________________ +// +// Copyright 2000-2001 Richard Hughes, Roland Rabien, Tristan Van de Vreede +// Copyright 2001-2002 Jon Keating, Richard Hughes +// Copyright 2002-2004 Martin berg, Sam Kothari, Robert Rainwater +// Copyright 2004-2010 Joe Kucera +// +// 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +// +// ----------------------------------------------------------------------------- +// +// File name : $URL: http://miranda.googlecode.com/svn/trunk/miranda/protocols/IcqOscarJ/fam_0alookup.cpp $ +// Revision : $Revision: 13324 $ +// Last change on : $Date: 2011-01-23 17:58:59 +0200 (Вс, 23 янв 2011) $ +// Last change by : $Author: borkra $ +// +// DESCRIPTION: +// +// Describe me here please... +// +// ----------------------------------------------------------------------------- + +#include "icqoscar.h" + +void CIcqProto::handleLookupFam(BYTE *pBuffer, WORD wBufferLength, snac_header* pSnacHeader) +{ + switch (pSnacHeader->wSubtype) { + + case ICQ_LOOKUP_EMAIL_REPLY: // AIM search reply + handleLookupEmailReply(pBuffer, wBufferLength, pSnacHeader->dwRef); + break; + + case ICQ_ERROR: + { + WORD wError; + cookie_search *pCookie; + + if (wBufferLength >= 2) + unpackWord(&pBuffer, &wError); + else + wError = 0; + + if (FindCookie(pSnacHeader->dwRef, NULL, (void**)&pCookie)) + { + if (wError == 0x14) + NetLog_Server("Lookup: No results"); + + ReleaseLookupCookie(pSnacHeader->dwRef, pCookie); + + if (wError == 0x14) return; + } + + LogFamilyError(ICQ_LOOKUP_FAMILY, wError); + break; + } + + default: + NetLog_Server("Warning: Ignoring SNAC(x%02x,x%02x) - Unknown SNAC (Flags: %u, Ref: %u)", ICQ_LOOKUP_FAMILY, pSnacHeader->wSubtype, pSnacHeader->wFlags, pSnacHeader->dwRef); + break; + } +} + +void CIcqProto::ReleaseLookupCookie(DWORD dwCookie, cookie_search *pCookie) +{ + FreeCookie(dwCookie); + SAFE_FREE(&pCookie->szObject); + + if (pCookie->dwMainId && !pCookie->dwStatus) + { // we need to wait for main search + pCookie->dwStatus = 1; + } + else + { // finish everything + if (pCookie->dwMainId) + BroadcastAck(NULL, ACKTYPE_SEARCH, ACKRESULT_SUCCESS, (HANDLE)pCookie->dwMainId, 0); + else // we are single + BroadcastAck(NULL, ACKTYPE_SEARCH, ACKRESULT_SUCCESS, (HANDLE)dwCookie, 0); + + SAFE_FREE((void**)&pCookie); + } +} + +void CIcqProto::handleLookupEmailReply(BYTE* buf, WORD wLen, DWORD dwCookie) +{ + ICQSEARCHRESULT sr = {0}; + oscar_tlv_chain *pChain; + cookie_search *pCookie; + + if (!FindCookie(dwCookie, NULL, (void**)&pCookie)) + { + NetLog_Server("Error: Received unexpected lookup reply"); + return; + } + + NetLog_Server("SNAC(0x0A,0x3): Lookup reply"); + + sr.hdr.cbSize = sizeof(sr); + sr.hdr.flags = PSR_TCHAR; + sr.hdr.email = ansi_to_tchar(pCookie->szObject); + + // Syntax check, read chain + if (wLen >= 4 && (pChain = readIntoTLVChain(&buf, wLen, 0))) + { + for (WORD i = 1; TRUE; i++) + { // collect the results + char *szUid = pChain->getString(0x01, i); + if (!szUid) break; + sr.hdr.id = ansi_to_tchar(szUid); + sr.hdr.nick = sr.hdr.id; + // broadcast the result + if (pCookie->dwMainId) + BroadcastAck(NULL, ACKTYPE_SEARCH, ACKRESULT_DATA, (HANDLE)pCookie->dwMainId, (LPARAM)&sr); + else + BroadcastAck(NULL, ACKTYPE_SEARCH, ACKRESULT_DATA, (HANDLE)dwCookie, (LPARAM)&sr); + SAFE_FREE(&sr.hdr.id); + SAFE_FREE(&szUid); + } + disposeChain(&pChain); + } + SAFE_FREE(&sr.hdr.email); + + ReleaseLookupCookie(dwCookie, pCookie); +} -- cgit v1.2.3