// Random.cpp : Implementation of CConnectApp and DLL registration. // // This is a part of the Active Template Library. // Copyright (C) 1996-1998 Microsoft Corporation // All rights reserved. // // This source code is only intended as a supplement to the // Active Template Library Reference and related // electronic documentation provided with the library. // See these sources for detailed information regarding the // Active Template Library product. #include "preconn.h" #include "Connect.h" #include "Random.h" ///////////////////////////////////////////////////////////////////////////// // STDMETHODIMP CRandom::InterfaceSupportsErrorInfo(REFIID riid) { if (riid == IID_IRandom) return S_OK; return S_FALSE; } ///////////////////////////////////////////////////////////////////////////// // DWORD WINAPI RandomSessionThreadEntry(void* pv) { CRandom::RandomSessionData* pS = (CRandom::RandomSessionData*)pv; CRandom* p = pS->pRandom; while (WaitForSingleObject(pS->m_hEvent, 0) != WAIT_OBJECT_0) p->Fire(pS->m_nID); return 0; } CRandom::~CRandom() { StopAll(); } void CRandom::CreateRandomSession(RandomSessionData& rs) { DWORD dwThreadID = 0; ATLASSERT(rs.m_hEvent == NULL); ATLASSERT(rs.m_hThread == NULL); rs.pRandom = this; rs.m_hEvent = CreateEvent(NULL, FALSE, FALSE, NULL); rs.m_hThread = CreateThread(NULL, 0, &RandomSessionThreadEntry, &rs, 0, &dwThreadID); } STDMETHODIMP CRandom::Start(long* pnID) { if (pnID == NULL) return E_POINTER; *pnID = 0; HRESULT hRes = S_OK; m_cs.Lock(); for (long i=0;i* p = this; Lock(); HRESULT hr = S_OK; IUnknown** pp = p->m_vec.begin(); while (pp < p->m_vec.end() && hr == S_OK) { if (*pp != NULL) { IRandomEvent* pIRandomEvent = (IRandomEvent*)*pp; hr = pIRandomEvent->Fire(nID); } pp++; } Unlock(); return hr; }