Microsoft MVP성태의 닷넷 이야기
글쓴 사람
light
홈페이지
첨부 파일
 
부모글 보이기/감추기

현재 생성된 부분의 Thread 와 사용하는 스레드가 틀리므로, 어드레스 값은 같고 있지만, 실제적으로 호출이 안됨...

그러므로 , 처음에 생성한 com object을 global 쪽에 놓고 사용함.    


//----------------------------------------------------------------------------------------
#ifndef _RCCOMMARSHAL_H_
#define _RCCOMMARSHAL_H_
//----------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------
#include <vector>
using namespace std;
#include <windows.h>
//----------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------
class CRCComMarshal
{
    typedef struct
    {        
        IID m_iid;
        DWORD m_dwCookie;
    }SIIDCOOKIE;

public:
    CRCComMarshal();
    virtual ~CRCComMarshal();
    static CRCComMarshal * Instance();
    bool Register(IUnknown *pUnk, REFIID riid);
    bool UnRegister(REFIID riid);
    bool GetInterfacePointer(REFIID riid, void **ppInterface, int nInd=1);
protected:
private:
    bool Init();
    bool CheckIfAlreadyRegistered(REFIID riid);

    LPGLOBALINTERFACETABLE m_pGIT;
    typedef vector<SIIDCOOKIE*> COOKIEVEC;
    COOKIEVEC m_vecCookies;
    CRITICAL_SECTION m_CS;
};
//----------------------------------------------------------------------------------------
#endif //_RCCOMMARSHAL_H_
//----------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------



//----------------------------------------------------------------------------------------
// Contructor
/////////////////
CRCComMarshal::CRCComMarshal()
{
    m_pGIT = NULL;
    InitializeCriticalSection(&m_CS);
    Init();
}
//----------------------------------------------------------------------------------------

///////////////////////////////////////////////////////////////
CRCComMarshal::~CRCComMarshal()
{
    int nSize = m_vecCookies.size();
    if (nSize > 0)
    {
        SIIDCOOKIE *psiid = NULL;
        HRESULT hr = S_OK;
        for (int nIndex=0 ; nIndex<nSize ; nIndex++)
        {
            psiid = NULL;
            psiid = m_vecCookies[nIndex];
            if (NULL != psiid)
            {
                if (NULL != psiid)
                {
                    hr = S_OK;
                    hr = m_pGIT->RevokeInterfaceFromGlobal(psiid->m_dwCookie);
                }
                delete psiid;
            }
        }

        m_vecCookies.clear();
    }
}
//----------------------------------------------------------------------------------------

////////////////////////////////////////////////////////////////////
bool CRCComMarshal::Init()
{
    bool bRet = true;
    
    HRESULT hr = CoCreateInstance(CLSID_StdGlobalInterfaceTable, NULL, CLSCTX_SERVER,
        IID_IGlobalInterfaceTable, (void**)&m_pGIT);

    if (FAILED(hr))
        bRet = false;

    return bRet;
}


////////////////////////////////////////////////////////////////////
//----------------------------------------------------------------------------------------
bool CRCComMarshal::Register(IUnknown *pUnk, REFIID riid)
{
    CRCCriticalSectionLock Lock(&m_CS);

    bool bRet = true;
    HRESULT hr = S_OK;
    DWORD dwCookie=0;


    //////////////////////////////////////////
//    if (true == CheckIfAlreadyRegistered(riid))
//    {
//        return true;
//    }
    

    ///////////////////////////////////////////////////////////////
    hr = m_pGIT->RegisterInterfaceInGlobal(pUnk, riid, &dwCookie);

    // Exit if register not successfull
    //////////////////////////////////////
    if ((FAILED(hr)) || (0 == dwCookie))
    {
        bRet = false;
        return bRet;
    }

    // Insert the cookie into the vector
    ////////////////////////////////////
    SIIDCOOKIE *psiid = new SIIDCOOKIE;
    psiid->m_iid = riid;
    psiid->m_dwCookie = dwCookie;
    m_vecCookies.push_back(psiid);


    return bRet;
}

bool CRCComMarshal::GetInterfacePointer(REFIID riid, void **ppInterface, int nInd)
{
    CRCCriticalSectionLock Lock(&m_CS);

    bool bRet = true;
    HRESULT hr = S_OK;
    DWORD dwCookie=0;

    if (NULL == ppInterface)
    {
        bRet = false;
        return bRet;
    }

    *ppInterface = NULL;

    // Get the interface's Cookie from the vector
    /////////////////////////////////////////////
    int nSize = m_vecCookies.size();
    SIIDCOOKIE *psiid = NULL;
    bool bFound = false;
    int nCount=nInd;
    if (nCount < 1)
        nCount = 1;
    for (int nIndex=0 ; nIndex<nSize ; nIndex++)
    {
        psiid = NULL;
        psiid = m_vecCookies[nIndex];
        if (NULL != psiid)
        {
            if (riid == psiid->m_iid)
            {
                nCount--;
                if (0 == nCount)
                {
                    bFound = true;
                    dwCookie = psiid->m_dwCookie;
                    break;
                }
            }
        }

    }

    if (true != bFound)
    {
        return false;
    }

    // Retrieve the interface pointer from Glabal interface table
    ///////////////////////////////////////////////////////////////
    hr = m_pGIT->GetInterfaceFromGlobal(dwCookie, riid, ppInterface);
    if ((FAILED(hr)) || (NULL == *ppInterface))
    {
        bRet = false;
        return bRet;
    }

    return bRet;
}

/////////////////////////////////////////////////////////////////////
bool CRCComMarshal::CheckIfAlreadyRegistered(REFIID riid)
{
    int nSize = m_vecCookies.size();
    bool bFound = false;
    SIIDCOOKIE *psiid = NULL;
    for (int nIndex=0 ; nIndex<nSize ; nIndex++)
    {
        psiid = NULL;
        psiid = m_vecCookies[nIndex];
        if (NULL != psiid)
        {
            if (riid == psiid->m_iid)
            {
                bFound = true;
                break;
            }
        }

    }

    return bFound;
}
//----------------------------------------------------------------------------------------

////////////////////////////////////////////////////////////////////
bool CRCComMarshal::UnRegister(REFIID riid)
{
    CRCCriticalSectionLock Lock(&m_CS);

    int nSize = m_vecCookies.size();
    bool bFound = false;
    SIIDCOOKIE *psiid = NULL;
    for (int nIndex=0 ; nIndex<nSize ; nIndex++)
    {
        psiid = NULL;
        psiid = m_vecCookies[nIndex];
        if (NULL != psiid)
        {
            if (riid == psiid->m_iid)
            {
                bFound = true;
                break;
            }
        }
    }

    HRESULT hr = S_OK;
    if ((NULL != psiid) && (true == bFound))
    {
        hr = m_pGIT->RevokeInterfaceFromGlobal(psiid->m_dwCookie);
        m_vecCookies.erase(m_vecCookies.begin() + nIndex);
        if (FAILED(hr))
        {
            return false;
        }
    }

    return true;
}
저는 이렇게 사용했습니다...

전에 SSL질문을 했는데, 잘알려줘서, 제가 아는 범위로 답변했습니다.
그댄 아직 해결 못했어요...ㅠㅠ.환경설정을 잘 못하겠네요








[최초 등록일: ]
[최종 수정일: 10/30/2006]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 181  182  183  184  185  186  [187]  188  189  190  191  192  193  194  195  ...
NoWriterDateCnt.TitleFile(s)
281정성태8/11/200627378    답변글 개발 환경 구성: 3.2. VS.NET 2005 원격 디버깅 설정
315정성태8/11/200628038        답변글 개발 환경 구성: 3.3. VS.NET 2005 원격 디버깅 설정 - ASP.NET F5 디버깅
278정성태6/11/200624576오류 유형: 8. [Outlook] 0x8004011D 에러 - "Exchange over the Internet" 환경
276정성태6/7/200618156Team Foundation Server: 7. 외부 빌드 머신 구성
287정성태6/24/200615727    답변글 Team Foundation Server: 7.1. 외부 빌드 머신 구성 - 다른 블로그 자료
275정성태6/7/200623561디버깅 기술: 4. VC++ 8.0 원격 디버깅 구성 - Side-by-Side DLL 문제.
269정성태6/6/200620791Team Foundation Server: 6. HTTPS를 통한 Team Server 접근 [1]
270정성태6/5/200617725    답변글 Team Foundation Server: 6.1. HTTPS를 통한 Team Server 접근 [1]
273정성태6/6/200620464    답변글 Team Foundation Server: 6.2. 두번째 방법 - HTTPS 를 통한 Team Server 접근 [1]
267정성태6/4/200619775Team Foundation Server: 5. 인터넷으로 Team Server 접근 [2]
266정성태6/8/200616401오류 유형: 7. [설치] mpoai9.dll 관련 오류
265정성태6/1/200624101디버깅 기술: 3. 원격 컴퓨터 디버깅 - VPC 설정
314정성태8/11/200621097    답변글 디버깅 기술: 3.1. Managed 원격 디버깅과 WinDBG 원격 디버깅
264정성태6/1/200630211오류 유형: 6. [VC++ 컴파일] already defined in ntdll.lib(ntdll.dll)
263정성태6/1/200631195디버깅 기술: 2. 커널 구조체 살펴보기 [5]
262정성태6/1/200623496오류 유형: 5. [설치] WinFX Beta2 - 설치시 문제점 해결
261정성태6/1/200619974웹: 3. IIS 6.0 - AppPool을 활용하여 실 서버(운영 서버)에서 디버깅
258정성태6/1/200627856디버깅 기술: 1. 디버깅 방법 - CLR 프로파일러 [1]파일 다운로드1
274정성태6/7/200620785    답변글 디버깅 기술: 1.1. 디버깅 방법 - CLR 프로파일러 ( on Vista )
254정성태6/1/200617317개발 환경 구성: 2. VPC에 Vista 설치하는 방법 [2]
255정성태6/1/200617012    답변글 개발 환경 구성: 2.1. msconfig 설정과 Windows Activation
259정성태6/1/200616101    답변글 개발 환경 구성: 2.2. Vista VPC에 터미널 서비스 - 원격 접속
253정성태6/1/200614475기타: 14. .NET 2.0 이 지원되는 NDoc 2.0 을 배포합니다.
251정성태6/1/200617421오류 유형: 4. [OS 지원 API] SHParseDisplayName과 Windows 2000
252정성태6/1/200617341    답변글 오류 유형: 4.1. NET BCL 에서 제공되는 FolderBrowserDialog [2]
249정성태6/1/200616697.NET Framework: 71. VB.NET 이외의 언어에서 My 네임스페이스 사용
... 181  182  183  184  185  186  [187]  188  189  190  191  192  193  194  195  ...