程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 只允許運行一個進程,允許運行進程

只允許運行一個進程,允許運行進程

編輯:C++入門知識

只允許運行一個進程,允許運行進程


// Copyright (c) 
// All rights reserved.
//
//Describe : Only can run single program.
//Author   : Qing
//Date     : 2014-08-14

#ifndef __SINGLE_PROGRAM_H__
#define __SINGLE_PROGRAM_H__

#include <string>
#include <Windows.h>

namespace Qing
{
    class SingleProgram
    {
    public:

        SingleProgram(void) : m_Mutex(NULL)
        {
        }

        ~SingleProgram(void)
        {
            MandatoryDestoryInstance();
        }

        bool CreateSingleInstance(const std::string &ProgramName)
        {
            m_Mutex = ::CreateMutexA(NULL, TRUE, ProgramName.c_str());
            DWORD LastError =::GetLastError();

            if(m_Mutex != NULL)
            {
                ::ReleaseMutex(m_Mutex);
            }

            if(LastError == ERROR_ALREADY_EXISTS)
            {
                m_Mutex = NULL;
                return false;
            }

            return true;
        }

        void MandatoryDestoryInstance()
        {
            if(m_Mutex != NULL)
            {
                ::CloseHandle(m_Mutex);
                m_Mutex = NULL;
            }
        }

    private:

        SingleProgram(const SingleProgram&);
        SingleProgram& operator=(const SingleProgram&);

    private:

        HANDLE m_Mutex;
    };
}

#endif

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved