使用信号量的Threadsafe单例问题

时间:2017-09-02 20:47:23

标签: c++ multithreading semaphore

我写了一个简单的单例应用程序。

以下是我的样本主要课程

// ThreadsafeSingletonUsingSemaphore.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>
#include <conio.h>
#include "MySingleton.h"
using namespace std;

int i =0;
#define THREADCOUNT 100
DWORD WINAPI ThreadProc(LPVOID lParam);
HANDLE g_semaphore = NULL;

int _tmain(int argc, _TCHAR* argv[])
{
    g_semaphore = CreateSemaphore(NULL,1,1,_T("TreadOne"));
    HANDLE hThread[THREADCOUNT];
    DWORD aThreadID;

    for(int iCount = 0; iCount < THREADCOUNT ; iCount++)
    {
        hThread[iCount] = CreateThread(NULL, 0, ThreadProc, 0,0, &aThreadID);
        if( hThread[iCount] == NULL )
        {
            cout<<"CreateThread error: %d" << GetLastError() << endl;
            return 1;
        }
    }

    WaitForMultipleObjects(THREADCOUNT, hThread, TRUE, INFINITE);

    // Close thread and semaphore handles
    for(int i=0; i < THREADCOUNT; i++ )
        CloseHandle(hThread[i]);

    cout << MySingleton::getInstance().getCounter() << endl ;

    CloseHandle(g_semaphore);
    _getch();
    return 0;
}

DWORD WINAPI ThreadProc(LPVOID lpParam)
{
    //DWORD result = WaitForSingleObject(g_semaphore,INFINITE);
    //if(WAIT_OBJECT_0 == result)
        MySingleton::getInstance().incrementCouner();
    //ReleaseSemaphore(g_semaphore,1, NULL);
    return TRUE;
}

这是我的单例实现类。

#include "StdAfx.h"
#include "MySingleton.h"

MySingleton* MySingleton::m_instance = NULL;
HANDLE MySingleton::m_hSem = CreateSemaphore(NULL, 1, 1, _T("MySingleton"));
HANDLE MySingleton::m_One = CreateSemaphore(NULL, 1, 1, _T("MyOne"));

MySingleton::MySingleton(void) : m_counter(0)
{
}

MySingleton::~MySingleton(void)
{
    cout << "destructor" << endl;
    CloseHandle(m_hSem);
    CloseHandle(m_One);
}

MySingleton& MySingleton::getInstance()
{
    DWORD result = WaitForSingleObject(m_hSem, INFINITE);

    if(WAIT_OBJECT_0 == result)
    {
        if(m_instance == NULL)
        {
            cout << "creating" << endl;
            m_instance = new MySingleton();
        }
    }
    ReleaseSemaphore(m_hSem,1,NULL);
    return *m_instance;
}

void MySingleton::setCouner(int iCount_in)
{
    m_counter = iCount_in;
}
int MySingleton::getCounter()
{
    return m_counter;
}

void MySingleton::incrementCouner() 
{ 
    DWORD result = WaitForSingleObject(m_One, INFINITE);
    if(WAIT_OBJECT_0 == result)
        m_counter++;
    ReleaseSemaphore(m_One,1,NULL);
}

这是我的.h课程。

#pragma once
#include <windows.h>
#include <iostream>
#include <conio.h>
using namespace std;

class MySingleton
{
private:
    static HANDLE m_hSem, m_One;
    HANDLE m_hCountSem;
    static MySingleton* m_instance;
    int m_counter;
    MySingleton();
    MySingleton(const MySingleton& obj_in);
    MySingleton& operator=(const MySingleton& obj_in);
public:
    ~MySingleton(void);

    static MySingleton& getInstance();
    void setCouner(int iCount_in);
    int getCounter();

    void incrementCouner();
};

问题是计数器的最终价值永远不会是100.有人可以解释我为什么以及我做错了什么。我无法理解这个问题。当我在创建每个线程之前在main中引入sleep时,它工作正常。

2 个答案:

答案 0 :(得分:5)

问题是对WaitForMultipleObjects的调用最多处理MAXIMUM_WAIT_OBJECTS,至少在Visual Studio 2017中,它是64.

注意您对WaitForMultipleObjects加入线程的调用如何返回WAIT_FAILED

为了等待更多的对象,我应该according to the documentation

  

要等待超过MAXIMUM_WAIT_OBJECTS句柄,请使用以下方法之一:

     
      
  • 创建一个线程以等待MAXIMUM_WAIT_OBJECTS句柄,然后等待该线程加上其他句柄。使用此技术将句柄分成MAXIMUM_WAIT_OBJECTS组。
  •   
  • 调用RegisterWaitForSingleObject在每个句柄上等待。来自线程池的等待线程在MAXIMUM_WAIT_OBJECTS注册的对象上等待,并在发出对象信号或超时间隔到期后分配工作线程。
  •   

答案 1 :(得分:2)

您不需要编写所有代码。实现线程安全单例的最简单方法是使用Scott Meyer的单例习语:

class Singleton {
    int counter;
    mutable std::mutex counter_guard;
    Singleton() {}
public:
    Singleton(const Singleton&) = delete;
    Singleton(Singleton&&) = delete;
    Singleton& operator=(const Singleton&) = delete;
    Singleton& operator=(Singleton&&) = delete;

    static Singleton& instance() {
        static Singleton theInstance;
        return theInstance;
    }

    void setCounter(int newVal) {
        std::unique_lock<std::mutex> lock(counter_guard);
        counter = newVal;
    }  
    void incrementCounter() {
        std::unique_lock<std::mutex> lock(counter_guard);
        ++counter;
    }  
    int getCounter() const {
        std::unique_lock<std::mutex> lock(counter_guard);
        return counter;
    }  
};

更简单的方法是为counter成员变量使用std::atomic<int>类型。然后可以省略互斥锁和锁定防护装置。

相关问题