我有一个应用程序,它使用套接字连接来发送和接收来自另一个应用程序的数据。在创建套接字时,它使用端口4998。
这就是我的问题所在。一旦我启动我的应用程序,套接字就开始使用端口4998.所以如果我想再次执行应用程序,那么我会收到套接字绑定错误。
所以我想将我的应用程序实例限制为一个。这意味着如果应用程序已经运行并且某个人试图通过单击exe或快捷方式图标再次运行应用程序,则它不应该运行该程序,而应该将现有应用程序带到Top。
答案 0 :(得分:12)
您可以使用已命名的互斥锁。
来自article的代码示例:
WINAPI WinMain(
HINSTANCE, HINSTANCE, LPSTR, int)
{
try {
// Try to open the mutex.
HANDLE hMutex = OpenMutex(
MUTEX_ALL_ACCESS, 0, "MyApp1.0");
if (!hMutex)
// Mutex doesn’t exist. This is
// the first instance so create
// the mutex.
hMutex =
CreateMutex(0, 0, "MyApp1.0");
else
// The mutex exists so this is the
// the second instance so return.
return 0;
Application->Initialize();
Application->CreateForm(
__classid(TForm1), &Form1);
Application->Run();
// The app is closing so release
// the mutex.
ReleaseMutex(hMutex);
}
catch (Exception &exception) {
Application->
ShowException(&exception);
}
return 0;
}
答案 1 :(得分:5)
/ * 我找到了必要的编辑工作。添加了一些额外的代码和所需的编辑。现在对我来说非常合适。谢谢Kirill V. Lyadvinsky和Remy Lebeau的帮助!!
* /
bool CheckOneInstance()
{
HANDLE m_hStartEvent = CreateEventW( NULL, FALSE, FALSE, L"Global\\CSAPP" );
if(m_hStartEvent == NULL)
{
CloseHandle( m_hStartEvent );
return false;
}
if ( GetLastError() == ERROR_ALREADY_EXISTS ) {
CloseHandle( m_hStartEvent );
m_hStartEvent = NULL;
// already exist
// send message from here to existing copy of the application
return false;
}
// the only instance, start in a usual way
return true;
}
/ * 上面的代码即使在尝试打开第二个实例时也能正常工作,这个登录是在第一次登录时通过其实例运行打开的。 * /
答案 2 :(得分:5)
当您的应用程序初始化时,创建一个互斥锁。如果它已存在,请找到现有应用程序并将其置于前台。如果应用程序的主窗口具有固定标题,则可以使用FindWindow
轻松找到。
m_singleInstanceMutex = CreateMutex(NULL, TRUE, L"Some unique string for your app");
if (m_singleInstanceMutex == NULL || GetLastError() == ERROR_ALREADY_EXISTS) {
HWND existingApp = FindWindow(0, L"Your app's window title");
if (existingApp) SetForegroundWindow(existingApp);
return FALSE; // Exit the app. For MFC, return false from InitInstance.
}
答案 3 :(得分:3)
在开始时创建命名事件并检查结果。如果事件已存在,请关闭应用程序。
BOOL CheckOneInstance()
{
m_hStartEvent = CreateEventW( NULL, TRUE, FALSE, L"EVENT_NAME_HERE" );
if ( GetLastError() == ERROR_ALREADY_EXISTS ) {
CloseHandle( m_hStartEvent );
m_hStartEvent = NULL;
// already exist
// send message from here to existing copy of the application
return FALSE;
}
// the only instance, start in a usual way
return TRUE;
}
在应用退出中关闭m_hStartEvent
。
答案 4 :(得分:1)
您可以在WindowMain函数中通过在最开始使用类名和主窗口标题调用FindWindow函数来实现此目的。如果该窗口存在,则可以向用户显示一条消息,也可以简单地显示该窗口然后返回:
HWND hWnd = FindWindow(lzClassName, lzWindowText);
if(hWnd!=NULL)
{
ShowWindow(hWnd, SW_SHOW);
return 0;
}
WNDCLASSEX wcex;
/* register window class */
wcex.cbSize = sizeof(WNDCLASSEX);
wcex.style = CS_OWNDC;
wcex.lpfnWndProc = WindowProc;
wcex.cbClsExtra = 0;
wcex.cbWndExtra = 0;
...
答案 5 :(得分:0)
您是否已经有办法检查您的应用程序是否正在运行?谁需要Mutex,如果端口已被占用,您知道该应用正在运行!