ARCEmu项目wow私服服务器网络模块分析(四)

编程入门 行业动态 更新时间:2024-10-09 11:22:00

ARCEmu项目wow<a href=https://www.elefans.com/category/jswz/34/1761480.html style=私服服务器网络模块分析(四)"/>

ARCEmu项目wow私服服务器网络模块分析(四)

线程池:

/** Thread Pool Class* Copyright (C) Burlex <burlex@gmail>** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU Affero General Public License as published by* the Free Software Foundation, either version 3 of the License, or* any later version.** This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the* GNU Affero General Public License for more details.** You should have received a copy of the GNU Affero General Public License* along with this program.  If not, see </>.**/#include "../Common.h"#ifndef __THREADPOOL_H
#define __THREADPOOL_H#ifdef WIN32class SERVER_DECL ThreadController
{public:HANDLE hThread;uint32 thread_id;void Setup(HANDLE h){hThread = h;// whoops! GetThreadId is for windows 2003 and up only! :<		 - Burlex//thread_id = (uint32)GetThreadId(h);}void Suspend(){// We can't be suspended by someone else. That is a big-no-no and will lead to crashes.ASSERT(GetCurrentThreadId() == thread_id);SuspendThread(hThread);}void Resume(){// This SHOULD be called by someone else.ASSERT(GetCurrentThreadId() != thread_id);if(ResumeThread(hThread) == DWORD(-1)){DWORD le = GetLastError();printf("lasterror: %u\n", le);}}void Join(){WaitForSingleObject(hThread, INFINITE);}uint32 GetId() { return thread_id; }
};#else
#ifndef HAVE_DARWIN
#include <semaphore.h>
int GenerateThreadId();class ThreadController
{sem_t sem;pthread_t handle;int thread_id;public:void Setup(pthread_t h){handle = h;sem_init(&sem, PTHREAD_PROCESS_PRIVATE, 0);thread_id = GenerateThreadId();}~ThreadController(){sem_destroy(&sem);}void Suspend(){ASSERT(pthread_equal(pthread_self(), handle));sem_wait(&sem);}void Resume(){ASSERT(!pthread_equal(pthread_self(), handle));sem_post(&sem);}void Join(){// waits until the thread finishes then returnspthread_join(handle, NULL);}ARCEMU_INLINE uint32 GetId() { return (uint32)thread_id; }
};#else
int GenerateThreadId();
class ThreadController
{pthread_cond_t cond;pthread_mutex_t mutex;int thread_id;pthread_t handle;public:void Setup(pthread_t h){handle = h;pthread_mutex_init(&mutex, NULL);pthread_cond_init(&cond, NULL);thread_id = GenerateThreadId();}~ThreadController(){pthread_mutex_destroy(&mutex);pthread_cond_destroy(&cond);}void Suspend(){pthread_cond_wait(&cond, &mutex);}void Resume(){pthread_cond_signal(&cond);}void Join(){pthread_join(handle, NULL);}ARCEMU_INLINE uint32 GetId() { return (uint32)thread_id; }
};#endif#endifstruct SERVER_DECL Thread
{ThreadBase* ExecutionTarget;ThreadController ControlInterface;Mutex SetupMutex;bool DeleteAfterExit;
};typedef std::set<Thread*> ThreadSet;class SERVER_DECL CThreadPool
{int GetNumCpus();uint32 _threadsRequestedSinceLastCheck;uint32 _threadsFreedSinceLastCheck;uint32 _threadsExitedSinceLastCheck;uint32 _threadsToExit;int32 _threadsEaten;Mutex _mutex;ThreadSet m_activeThreads;ThreadSet m_freeThreads;public:CThreadPool();// call every 2 minutes or so.void IntegrityCheck();// call at startupvoid Startup();// shutdown all threadsvoid Shutdown();// return true - suspend ourselves, and wait for a future task.// return false - exit, we're shutting down or no longer needed.bool ThreadExit(Thread* t);// creates a thread, returns a handle to it.Thread* StartThread(ThreadBase* ExecutionTarget);// grabs/spawns a thread, and tells it to execute a task.void ExecuteTask(ThreadBase* ExecutionTarget);// prints some neat debug statsvoid ShowStats();// kills x free threadsvoid KillFreeThreads(uint32 count);// resets the gobble counterARCEMU_INLINE void Gobble() { _threadsEaten = (int32)m_freeThreads.size(); }// gets active thread countARCEMU_INLINE uint32 GetActiveThreadCount() { return (uint32)m_activeThreads.size(); }// gets free thread countARCEMU_INLINE uint32 GetFreeThreadCount() { return (uint32)m_freeThreads.size(); }
};extern SERVER_DECL CThreadPool ThreadPool;#endif


 这还真是suspend,resume 方式的线程池,太贴切了。


可是在windows下,我更喜欢用iocp模型 做线程池,


windows下的线程池,大家有没有同感?

更多推荐

ARCEmu项目wow私服服务器网络模块分析(四)

本文发布于:2024-03-06 21:03:43,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1716367.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:私服   模块   服务器   项目   网络

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!