mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 11:38:19 +00:00
49 lines
935 B
C++
49 lines
935 B
C++
#include "fifoconsole.h"
|
|
|
|
#include <engine/shared/config.h>
|
|
|
|
#include <fstream>
|
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
|
|
|
#include <pthread.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
|
|
FifoConsole::FifoConsole(IConsole *pConsole, char *pFifoFile, int flag)
|
|
{
|
|
void *m_pFifoThread = thread_create(ListenFifoThread, this);
|
|
m_pConsole = pConsole;
|
|
m_pFifoFile = pFifoFile;
|
|
m_flag = flag;
|
|
pthread_detach((pthread_t)m_pFifoThread);
|
|
}
|
|
|
|
void FifoConsole::ListenFifoThread(void *pUser)
|
|
{
|
|
FifoConsole *pData = (FifoConsole *)pUser;
|
|
|
|
if (str_comp(pData->m_pFifoFile, "") == 0)
|
|
return;
|
|
|
|
mkfifo(pData->m_pFifoFile, 0600);
|
|
|
|
struct stat attribute;
|
|
stat(pData->m_pFifoFile, &attribute);
|
|
|
|
if(!S_ISFIFO(attribute.st_mode))
|
|
return;
|
|
|
|
std::ifstream f;
|
|
char aBuf[8192];
|
|
|
|
while (true)
|
|
{
|
|
f.open(pData->m_pFifoFile);
|
|
while (f.getline(aBuf, sizeof(aBuf)))
|
|
pData->m_pConsole->ExecuteLineFlag(aBuf, pData->m_flag, -1);
|
|
f.close();
|
|
}
|
|
}
|
|
#endif
|