zoukankan      html  css  js  c++  java
  • 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;
    }
    
  • 相关阅读:
    HDU 5107 线段树扫描线
    多线程之多生产多消费者
    matlab @
    全概率公式
    正确理解HTML,XHTML页面的头部doctype定义
    每天过的非常充实。
    struts2对action中的方法进行输入校验(2)
    Ubuntu下Chromium源码的编译
    LCA 最近公共祖先 tarjan离线 总结 结合3个例题
    VS2010-win32下cocos2dx控制台打印的方法
  • 原文地址:https://www.cnblogs.com/Clingingboy/p/2674800.html
Copyright © 2011-2022 走看看