ATL 临界区

 

 

  • CComAutoCriticalSection Contains methods for obtaining and releasing a critical section. The critical section is automatically initialized.

  • CComCriticalSection Contains methods for obtaining and releasing a critical section. The critical section must be explicitly initialized.

  • CComFakeCriticalSection Mirrors the methods in CComCriticalSection without providing a critical section. The methods in CComFakeCriticalSection do nothing.

  • CComSafeDeleteCriticalSection When an instance of CComSafeDeleteCriticalSection goes out of scope or is explicitly deleted from memory, the underlying critical section object will automatically be cleaned up if it is still valid. In addition, the CComSafeDeleteCriticalSection::Term method will exit gracefully if the underlying critical section object has not yet been allocated or has already been released from memory.
class CComCriticalSection
{
public:
    CComCriticalSection() throw()
    {
        memset(&m_sec, 0, sizeof(CRITICAL_SECTION));
    }
    ~CComCriticalSection()
    {
    }
    HRESULT Lock() throw()
    {
        EnterCriticalSection(&m_sec);
        return S_OK;
    }
    HRESULT Unlock() throw()
    {
        LeaveCriticalSection(&m_sec);
        return S_OK;
    }
    HRESULT Init() throw()
    {
        HRESULT hRes = S_OK;

        if (!InitializeCriticalSectionAndSpinCount(&m_sec, 0))
        {
            hRes = HRESULT_FROM_WIN32(GetLastError());
        }

        return hRes;
    }

    HRESULT Term() throw()
    {
        DeleteCriticalSection(&m_sec);
        return S_OK;
    }
    CRITICAL_SECTION m_sec;
};

class CComAutoCriticalSection : 
    public CComCriticalSection
{
public:
    CComAutoCriticalSection()
    {
        HRESULT hr = CComCriticalSection::Init();
        if (FAILED(hr))
            AtlThrow(hr);
    }
    ~CComAutoCriticalSection() throw()
    {
        CComCriticalSection::Term();
    }
private :
    HRESULT Init(); // Not implemented. CComAutoCriticalSection::Init should never be called
    HRESULT Term(); // Not implemented. CComAutoCriticalSection::Term should never be called
};

class CComSafeDeleteCriticalSection : 
    public CComCriticalSection
{
public:
    CComSafeDeleteCriticalSection(): m_bInitialized(false)
    {
    }

    ~CComSafeDeleteCriticalSection() throw()
    {
        if (!m_bInitialized)
        {
            return;
        }
        m_bInitialized = false;
        CComCriticalSection::Term();
    }

    HRESULT Init() throw()
    {
        ATLASSERT( !m_bInitialized );
        HRESULT hr = CComCriticalSection::Init();
        if (SUCCEEDED(hr))
        {
            m_bInitialized = true;
        }
        return hr;
    }

    HRESULT Term() throw()
    {
        if (!m_bInitialized)
        {
            return S_OK;
        }
        m_bInitialized = false;
        return CComCriticalSection::Term();
    }

    HRESULT Lock()
    {
        // CComSafeDeleteCriticalSection::Init or CComAutoDeleteCriticalSection::Init
        // not called or failed.
        // m_critsec member of CComObjectRootEx is now of type
        // CComAutoDeleteCriticalSection. It has to be initialized
        // by calling CComObjectRootEx::_AtlInitialConstruct
        ATLASSUME(m_bInitialized);
        return CComCriticalSection::Lock();
    }

private:
    bool m_bInitialized;
};

class CComAutoDeleteCriticalSection : 
    public CComSafeDeleteCriticalSection
{
private:
    // CComAutoDeleteCriticalSection::Term should never be called
    HRESULT Term() throw();
};

class CComFakeCriticalSection
{
public:
    HRESULT Lock() throw()
    {
        return S_OK;
    }
    HRESULT Unlock() throw()
    {
        return S_OK;
    }
    HRESULT Init() throw()
    {
        return S_OK;
    }
    HRESULT Term() throw()
    {
        return S_OK;
    }
};

CComCritSecLock

This class provides methods for locking and unlocking a critical section object.

配合CComCriticalSection使用

template< class TLock >
class CComCritSecLock
{
public:
    CComCritSecLock(
        _Inout_ TLock& cs,
        _In_ bool bInitialLock = true );
    ~CComCritSecLock() throw();

    HRESULT Lock() throw();
    void Unlock() throw();

// Implementation
private:
    TLock& m_cs;
    bool m_bLocked;

// Private to avoid accidental use
    CComCritSecLock(_In_ const CComCritSecLock&) throw();
    CComCritSecLock& operator=(_In_ const CComCritSecLock&) throw();
};

template< class TLock >
inline CComCritSecLock< TLock >::CComCritSecLock(
        _Inout_ TLock& cs,
        _In_ bool bInitialLock) :
    m_cs( cs ),
    m_bLocked( false )
{
    if( bInitialLock )
    {
        HRESULT hr;

        hr = Lock();
        if( FAILED( hr ) )
        {
            AtlThrow( hr );
        }
    }
}

template< class TLock >
inline CComCritSecLock< TLock >::~CComCritSecLock() throw()
{
    if( m_bLocked )
    {
        Unlock();
    }
}

template< class TLock >
inline HRESULT CComCritSecLock< TLock >::Lock() throw()
{
    HRESULT hr;

    ATLASSERT( !m_bLocked );
    hr = m_cs.Lock();
    if( FAILED( hr ) )
    {
        return( hr );
    }
    m_bLocked = true;

    return( S_OK );
}

template< class TLock >
inline void CComCritSecLock< TLock >::Unlock() throw()
{
    ATLASSUME( m_bLocked );
    m_cs.Unlock();
    m_bLocked = false;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值