casynnet.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:7k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: casynnet.h,v 1.1.1.1.50.3 2004/07/09 01:46:56 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #if !defined( __CASYNNET_H )
  50. #define __CASYNNET_H
  51. #include "hxtypes.h"
  52. #include "conn.h"
  53. #include "platform/win/win_net.h"
  54. #include "hxthread.h"
  55. #include "hxassert.h"
  56. #define CLASS_NAME_CASYNCSOCK "HX_Internal_Sock_Async"
  57. // Predeclare these guys so we don't have to include their header files
  58. class win_net;
  59. class CHXMapPtrToPtr;
  60. class DNS_REQUEST
  61. {
  62. public:
  63.     DNS_REQUEST();
  64.     ~DNS_REQUEST();
  65.     win_net* fpSock;
  66.     char* lpHostName;
  67.     char* lpBuffer;
  68.     int cbBufferSize;
  69. };
  70. class CAsyncSockN
  71. {
  72. public:
  73.     // Client Sockets call this guy to get a Notifier, either created or 
  74.     // an already created socket notifier.
  75.     // Guaranteed to return either NULL or a valid Notifier
  76.     static CAsyncSockN* GetCAsyncSockNotifier(HINSTANCE hInst, 
  77.       BOOL Create = FALSE);
  78.     // No reason why these should fail unless win_net is invalid
  79.     BOOL DoAsyncDNS(win_net* fpSock, LPCSTR lpHostName, 
  80.    LPSTR pBuff, int cbBuffLen);
  81.     BOOL DoAsyncSelect(win_net* fpSock);
  82.     BOOL CancelSelect(win_net* fpSock);
  83. protected:
  84.     /*
  85.      * Class Private Utility Methods
  86.      */
  87.     static ULONG32  GetSession();
  88.     // Hidden constructor
  89.     CAsyncSockN(HINSTANCE hInst);
  90.     // Internal create helper
  91.     BOOL     Create();
  92.     // Hidden Destructor
  93.     ~CAsyncSockN();
  94.     // Validates the object
  95.     BOOL     IsValid()
  96.     {
  97. return(m_bValid);
  98.     }
  99.     // Decrements our client count
  100.     void DecrementHandlesClientCount()
  101.     {
  102. HX_ASSERT(m_cbNumHandlesClients > 0);
  103. m_cbNumHandlesClients--;
  104.     }
  105.     void DecrementSocketsClientCount()
  106.     {
  107. HX_ASSERT(m_cbNumSocketsClients > 0);
  108. m_cbNumSocketsClients--;
  109.     }
  110.     void IncrementSocketsClientCount()
  111.     {
  112. m_cbNumSocketsClients++;
  113.     }
  114.     void IncrementHandlesClientCount()
  115.     {
  116. m_cbNumHandlesClients++;
  117.     }
  118.     
  119.     // These are the definitions of the messages our WndProc handles
  120.     enum
  121.     {
  122. //  Internally used message for introducing latency between deletes
  123. PWM_CHECK_CLIENTS = WM_USER + 100,
  124. //  AsyncSelect Notification for one of our clients
  125. PWM_ASYNC_SELECT,
  126. //  Async DNS Notification
  127. PWM_ASYNC_DNS,
  128.     };
  129.     // WndProc for our notifier
  130.     static LRESULT HXEXPORT AsyncNotifyProc(HWND hWnd, UINT msg, 
  131.     WPARAM wParam, LPARAM lParam);
  132.     // Dispatched methods from the WndProc
  133.     LRESULT OnAsyncDNS(WPARAM wParam, LPARAM lParam);
  134.     LRESULT OnAsyncSelect(WPARAM wParam, LPARAM lParam);
  135.     // cleanup if class is not used by any clients
  136.     LRESULT CheckClients();
  137.     // Linked list of US management functions
  138.     // Inserts us at the head of the list
  139.     static void LinkUs(CAsyncSockN* pUs);
  140.     // Removes us from the list
  141.     static void UnlinkUs(CAsyncSockN* pUs);
  142.     // Finds a notifier for the current thread in the linked list
  143.     static CAsyncSockN* FindSockNotifier();
  144.     /*
  145.      * Class private data members
  146.      */
  147.     // Don't try to register multiple times
  148.     static BOOL zm_bClassRegistered;
  149.     // Points to the head of a list of CAsyncSockN objects so we don't 
  150.     // create one for each win_net object (only per thread or per task)
  151.     static CAsyncSockN* zm_pSockNotifiers;
  152.     // Store the link in a nonstatic member
  153.     CAsyncSockN* m_pNextNotifier;
  154.     HWND m_hWnd;
  155.     BOOL m_bValid;
  156.     // Win32 this is the thread ID, Win16 this is the current task
  157.     ULONG32 m_ulSession;
  158.     HINSTANCE m_hInst;
  159.     // Our WndProc recieves either Async DNS handles or Socket handles
  160.     // and needs to convert these to the win_net object they correspond to.
  161.     // Map that holds our client objects mapped from Async Handles
  162.     CHXMapPtrToPtr* m_ClientHandlesMap;
  163.     int m_cbNumHandlesClients;
  164.     // Map that holds our client objects mapped from Socket Handles
  165.     CHXMapPtrToPtr* m_ClientSocketsMap;
  166.     int m_cbNumSocketsClients;
  167.     BOOL m_bInCancelMode;
  168.     BOOL ProcessDNSQueue();
  169. };
  170. class SockGlobals
  171. {
  172. public:
  173.     BOOL m_bWinSock2Suck;
  174.     CHXSimpleList m_DNSQueue;
  175.     SockGlobals();
  176.     ~SockGlobals();
  177. };
  178. extern SockGlobals sockGlobals;
  179. #endif // __CASYNNET_H