VC++ 自动锁

ⅰ亾dé卋堺 提交于 2019-12-27 04:04:26

头文件声明(CAutoLock.h):

#ifndef AUTO_LOCKER_HEAD_FILE
#define AUTO_LOCKER_HEAD_FILE

#pragma once

//数据锁定
class CAutoLocker
{
	//变量定义
private:
	INT								m_nLockRef;					    //锁定计数
	CCriticalSection &				m_CriticalSection;				//锁定对象

	//函数定义
public:
	//构造函数
	CAutoLocker(CCriticalSection & CriticalSection);
	//析构函数
	virtual ~CAutoLocker();

	//操作函数
public:
	//锁定函数
	VOID Lock();
	//解锁函数 
	VOID UnLock();

	//状态函数
public:
	//锁定次数
	inline INT GetLockRef() { return m_nLockRef; }
};

#endif

源码实现(CAutoLock.cpp):

#include "StdAfx.h"
#include "CAutoLocker.h"

//构造函数
CAutoLocker::CAutoLocker(CCriticalSection & CriticalSection) 
	: m_CriticalSection(CriticalSection)
{
	//设置变量
	m_nLockRef=0;

	//锁定对象
	Lock();

	return;
}

//析构函数
CAutoLocker::~CAutoLocker()
{
	//解除锁定
	while (m_nLockRef>0)
	{
		UnLock();
	}

	return;
}

//锁定函数
VOID CAutoLocker::Lock()
{
	//锁定对象
	m_CriticalSection.Lock();

	//设置变量
	m_nLockRef++;

	return;
}

//解锁函数
VOID CAutoLocker::UnLock()
{
	//效验状态
	ASSERT(m_nLockRef>0);
	if (m_nLockRef==0) return;

	//设置变量
	m_nLockRef--;

	//解除锁定
	m_CriticalSection.Unlock();

	return;
}

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!