OpenClonk
C4NetIOMan Class Referenceabstract

#include <C4NetIO.h>

Inheritance diagram for C4NetIOMan:
[legend]
Collaboration diagram for C4NetIOMan:
[legend]

Public Member Functions

 C4NetIOMan ()
 
 ~C4NetIOMan () override
 
void Clear ()
 
void AddIO (C4NetIO *pNetIO, bool fSetCallback=true)
 
void RemoveIO (C4NetIO *pNetIO)
 
virtual bool OnConn (const addr_t &AddrPeer, const addr_t &AddrConnect, const addr_t *pOwnAddr, C4NetIO *pNetIO)
 
virtual void OnDisconn (const addr_t &AddrPeer, C4NetIO *pNetIO, const char *szReason)
 
virtual void OnPacket (const class C4NetIOPacket &rPacket, C4NetIO *pNetIO)=0
 
void Set (StdSchedulerProc **ppProcs, int iProcCnt)
 
void Add (StdSchedulerProc *pProc)
 
void Remove (StdSchedulerProc *pProc)
 
bool Start ()
 
void Stop ()
 
int getProcCnt () const
 
bool hasProc (StdSchedulerProc *pProc)
 
bool IsInManualLoop ()
 
void Added (StdSchedulerProc *pProc)
 
void Removing (StdSchedulerProc *pProc)
 
void Changed (StdSchedulerProc *pProc)
 
void StartOnCurrentThread ()
 
C4TimeMilliseconds GetNextTick (C4TimeMilliseconds tNow)
 
bool ScheduleProcs (int iTimeout=1000/36)
 
void UnBlock ()
 

Protected Member Functions

virtual void OnError (const char *strError, C4NetIO *pNetIO)
 
virtual bool DoScheduleProcs (int iTimeout)
 

Protected Attributes

int iNetIOCnt {0}
 
int iNetIOCapacity {0}
 
C4NetIO ** ppNetIO {nullptr}
 

Detailed Description

Definition at line 950 of file C4NetIO.h.

Constructor & Destructor Documentation

◆ C4NetIOMan()

C4NetIOMan::C4NetIOMan ( )

Definition at line 3971 of file C4NetIO.cpp.

3972  : StdSchedulerThread()
3973 
3974 {
3975 }

◆ ~C4NetIOMan()

C4NetIOMan::~C4NetIOMan ( )
override

Definition at line 3977 of file C4NetIO.cpp.

3978 {
3979  Clear();
3980 }
void Clear()
Definition: C4NetIO.cpp:3982

References Clear().

Here is the call graph for this function:

Member Function Documentation

◆ Add()

void StdSchedulerThread::Add ( StdSchedulerProc pProc)
inherited

Definition at line 183 of file StdScheduler.cpp.

184 {
185  // Thread is running? Stop it first
186  bool fGotThread = fThread;
187  if (fGotThread) Stop();
188  // Set
189  StdScheduler::Add(pProc);
190  // Restart
191  if (fGotThread) Start();
192 }
void Add(StdSchedulerProc *pProc)

References StdScheduler::Add(), StdSchedulerThread::Start(), and StdSchedulerThread::Stop().

Referenced by AddIO(), and C4InteractiveThread::AddProc().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ Added()

void StdScheduler::Added ( StdSchedulerProc pProc)
inherited

Definition at line 281 of file StdSchedulerMac.mm.

282 {
283  [[SCHAdditions requestAdditionsForScheduler:this] assignAdditionForProc:pProc];
284 }

References SCHAdditions::assignAdditionForProc:, and SCHAdditions::requestAdditionsForScheduler:.

Referenced by StdScheduler::Add().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ AddIO()

void C4NetIOMan::AddIO ( C4NetIO pNetIO,
bool  fSetCallback = true 
)

Definition at line 3989 of file C4NetIO.cpp.

3990 {
3991  // Set callback
3992  if (fSetCallback)
3993  pNetIO->SetCallback(this);
3994  // Add to i/o list
3995  if (iNetIOCnt + 1 > iNetIOCapacity)
3996  EnlargeIO(1);
3997  ppNetIO[iNetIOCnt++] = pNetIO;
3998  // Register with scheduler
3999  Add(pNetIO);
4000 }
virtual void SetCallback(CBClass *pnCallback)=0
int iNetIOCnt
Definition: C4NetIO.h:964
C4NetIO ** ppNetIO
Definition: C4NetIO.h:965
int iNetIOCapacity
Definition: C4NetIO.h:964
void Add(StdSchedulerProc *pProc)

References StdSchedulerThread::Add(), iNetIOCapacity, iNetIOCnt, ppNetIO, and C4NetIO::SetCallback().

Referenced by main().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ Changed()

void StdScheduler::Changed ( StdSchedulerProc pProc)
inherited

Definition at line 294 of file StdSchedulerMac.mm.

295 {
296  [[[SCHAdditions requestAdditionsForScheduler:this] additionForProc:pProc] changed];
297 }

References SCHAdditions::additionForProc:, SCHAddition::changed, and SCHAdditions::requestAdditionsForScheduler:.

Here is the call graph for this function:

◆ Clear()

void C4NetIOMan::Clear ( )

Definition at line 3982 of file C4NetIO.cpp.

3983 {
3984  delete[] ppNetIO; ppNetIO = nullptr;
3985  iNetIOCnt = iNetIOCapacity = 0;
3987 }

References StdSchedulerThread::Clear(), iNetIOCapacity, iNetIOCnt, and ppNetIO.

Referenced by ~C4NetIOMan().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ DoScheduleProcs()

virtual bool StdScheduler::DoScheduleProcs ( int  iTimeout)
protectedvirtualinherited

Reimplemented in C4AbstractApp.

Referenced by C4AbstractApp::DoScheduleProcs(), and StdScheduler::ScheduleProcs().

Here is the caller graph for this function:

◆ GetNextTick()

C4TimeMilliseconds StdScheduler::GetNextTick ( C4TimeMilliseconds  tNow)
inherited

Definition at line 120 of file StdScheduler.cpp.

121 {
123  for (auto proc : procs)
124  {
125  tProcTick = std::min(tProcTick, proc->GetNextTick(tNow));
126  }
127  return tProcTick;
128 }

References C4TimeMilliseconds::PositiveInfinity.

Referenced by C4AbstractApp::Run(), and StdScheduler::ScheduleProcs().

Here is the caller graph for this function:

◆ getProcCnt()

int StdScheduler::getProcCnt ( ) const
inlineinherited

Definition at line 245 of file StdScheduler.h.

245 { return procs.size()-1; } // ignore internal NoopNotifyProc

Referenced by C4InteractiveThread::AddProc(), and C4InteractiveThread::RemoveProc().

Here is the caller graph for this function:

◆ hasProc()

bool StdScheduler::hasProc ( StdSchedulerProc pProc)
inlineinherited

Definition at line 246 of file StdScheduler.h.

246 { return std::find(procs.begin(), procs.end(), pProc) != procs.end(); }

Referenced by C4InteractiveThread::RemoveProc().

Here is the caller graph for this function:

◆ IsInManualLoop()

bool StdScheduler::IsInManualLoop ( )
inlineinherited

Definition at line 247 of file StdScheduler.h.

247 { return isInManualLoop; }

◆ OnConn()

virtual bool C4NetIO::CBClass::OnConn ( const addr_t AddrPeer,
const addr_t AddrConnect,
const addr_t pOwnAddr,
C4NetIO pNetIO 
)
inlinevirtualinherited

Reimplemented in C4Network2IO, and C4NetIO::CBProxy< T >.

Definition at line 221 of file C4NetIO.h.

221 { return true; }

Referenced by C4NetIOTCP::Accept(), and C4NetIOUDP::Peer::OnConn().

Here is the caller graph for this function:

◆ OnDisconn()

virtual void C4NetIO::CBClass::OnDisconn ( const addr_t AddrPeer,
C4NetIO pNetIO,
const char *  szReason 
)
inlinevirtualinherited

Reimplemented in C4Network2IO, MyCBClass, and C4NetIO::CBProxy< T >.

Definition at line 222 of file C4NetIO.h.

222 { }

Referenced by C4NetIOTCP::Close(), C4NetIOSimpleUDP::Execute(), C4NetIOTCP::Execute(), and C4NetIOUDP::Peer::OnClose().

Here is the caller graph for this function:

◆ OnError()

virtual void C4NetIOMan::OnError ( const char *  strError,
C4NetIO pNetIO 
)
inlineprotectedvirtual

Reimplemented in MyCBClass.

Definition at line 968 of file C4NetIO.h.

968 { };

◆ OnPacket()

virtual void C4NetIO::CBClass::OnPacket ( const class C4NetIOPacket rPacket,
C4NetIO pNetIO 
)
pure virtualinherited

Implemented in C4Network2IODiscoverClient, C4Network2IODiscover, C4NetIO::CBProxy< T >, and MyCBClass.

Referenced by C4NetIOSimpleUDP::Execute(), and C4NetIOTCP::UnpackPacket().

Here is the caller graph for this function:

◆ Remove()

void StdSchedulerThread::Remove ( StdSchedulerProc pProc)
inherited

Definition at line 194 of file StdScheduler.cpp.

195 {
196  // Thread is running? Stop it first
197  bool fGotThread = fThread;
198  if (fGotThread) Stop();
199  // Set
200  StdScheduler::Remove(pProc);
201  // Restart
202  if (fGotThread) Start();
203 }
void Remove(StdSchedulerProc *pProc)

References StdScheduler::Remove(), StdSchedulerThread::Start(), and StdSchedulerThread::Stop().

Referenced by C4InteractiveThread::RemoveProc().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ RemoveIO()

void C4NetIOMan::RemoveIO ( C4NetIO pNetIO)

Definition at line 4002 of file C4NetIO.cpp.

4003 {
4004  // Search
4005  int i;
4006  for (i = 0; i < iNetIOCnt; i++)
4007  if (ppNetIO[i] == pNetIO)
4008  break;
4009  // Not found?
4010  if (i >= iNetIOCnt) return;
4011  // Remove
4012  for (i++; i < iNetIOCnt; i++)
4013  ppNetIO[i-1] = ppNetIO[i];
4014  iNetIOCnt--;
4015 }

References iNetIOCnt, and ppNetIO.

◆ Removing()

void StdScheduler::Removing ( StdSchedulerProc pProc)
inherited

Definition at line 286 of file StdSchedulerMac.mm.

287 {
288  auto x = [SCHAdditions requestAdditionsForScheduler:this];
289  [x removeAdditionForProc:pProc];
290  if ([x numberOfAdditions] == 0)
291  [SCHAdditions removeAdditions:x];
292 }

References SCHAdditions::requestAdditionsForScheduler:.

Referenced by StdScheduler::Remove().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ScheduleProcs()

bool StdScheduler::ScheduleProcs ( int  iTimeout = 1000/36)
inherited

Definition at line 130 of file StdScheduler.cpp.

131 {
132  // Needs at least one process to work properly
133  if (!procs.size()) return false;
134 
135  // Get timeout
137  C4TimeMilliseconds tProcTick = GetNextTick(tNow);
138  if (iTimeout == -1 || tNow + iTimeout > tProcTick)
139  {
140  iTimeout = std::max<decltype(iTimeout)>(tProcTick - tNow, 0);
141  }
142 
143  bool old = isInManualLoop;
144  isInManualLoop = true;
145  bool res = DoScheduleProcs(iTimeout);
146  isInManualLoop = old;
147  return res;
148 }
static C4TimeMilliseconds Now()
virtual bool DoScheduleProcs(int iTimeout)
C4TimeMilliseconds GetNextTick(C4TimeMilliseconds tNow)

References StdScheduler::DoScheduleProcs(), StdScheduler::GetNextTick(), and C4TimeMilliseconds::Now().

Referenced by C4AulDebug::DebugStep(), C4Network2::DoLobby(), C4GUI::Dialog::DoModal(), C4ScenarioListLoader::DoProcessCallback(), C4GUI::Dialog::Execute(), C4Network2::FinalInit(), C4Game::InitNetworkFromAddress(), C4Network2::LeaguePlrAuth(), C4Network2::LeagueStart(), C4AulDebug::Listen(), C4Network2::RetrieveRes(), and C4AbstractApp::Run().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ Set()

void StdSchedulerThread::Set ( StdSchedulerProc **  ppProcs,
int  iProcCnt 
)
inherited

Definition at line 172 of file StdScheduler.cpp.

173 {
174  // Thread is running? Stop it first
175  bool fGotThread = fThread;
176  if (fGotThread) Stop();
177  // Set
178  StdScheduler::Set(ppProcs, iProcCnt);
179  // Restart
180  if (fGotThread) Start();
181 }
void Set(StdSchedulerProc **ppProcs, int iProcCnt)

References StdScheduler::Set(), StdSchedulerThread::Start(), and StdSchedulerThread::Stop().

Here is the call graph for this function:

◆ Start()

bool StdSchedulerThread::Start ( )
inherited

Definition at line 205 of file StdScheduler.cpp.

206 {
207  // already running? stop
208  if (fThread) Stop();
209  // begin thread
210  fRunThreadRun = true;
211 #ifdef HAVE_WINTHREAD
212  iThread = _beginthread(_ThreadFunc, 0, this);
213  fThread = (iThread != -1);
214 #elif defined(HAVE_PTHREAD)
215  fThread = !pthread_create(&Thread, nullptr, _ThreadFunc, this);
216 #endif
217  // success?
218  return fThread;
219 }

References StdSchedulerThread::Stop().

Referenced by StdSchedulerThread::Add(), C4InteractiveThread::AddProc(), main(), StdSchedulerThread::Remove(), and StdSchedulerThread::Set().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ StartOnCurrentThread()

void StdScheduler::StartOnCurrentThread ( )
inherited

Definition at line 276 of file StdSchedulerMac.mm.

277 {
278  [[SCHAdditions requestAdditionsForScheduler:this] start];
279 }

References SCHAdditions::requestAdditionsForScheduler:, and SCHAdditions::start.

Here is the call graph for this function:

◆ Stop()

void StdSchedulerThread::Stop ( )
inherited

Definition at line 221 of file StdScheduler.cpp.

222 {
223  // Not running?
224  if (!fThread) return;
225  // Set flag
226  fRunThreadRun = false;
227  // Unblock
228  UnBlock();
229 #ifdef HAVE_WINTHREAD
230  // Wait for thread to terminate itself
231  HANDLE hThread = reinterpret_cast<HANDLE>(iThread);
232  if (WaitForSingleObject(hThread, 10000) == WAIT_TIMEOUT)
233  // ... or kill it in case it refuses to do so
234  TerminateThread(hThread, -1);
235 #elif defined(HAVE_PTHREAD)
236  // wait for thread to terminate itself
237  // (without security - let's trust these unwashed hackers for once)
238  pthread_join(Thread, nullptr);
239 #endif
240  fThread = false;
241  // ok
242  return;
243 }

References StdScheduler::UnBlock().

Referenced by StdSchedulerThread::Add(), StdSchedulerThread::Clear(), main(), StdSchedulerThread::Remove(), C4InteractiveThread::RemoveProc(), StdSchedulerThread::Set(), and StdSchedulerThread::Start().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ UnBlock()

void StdScheduler::UnBlock ( )
inherited

Definition at line 150 of file StdScheduler.cpp.

151 {
152  Unblocker.Notify();
153 }

Referenced by StdSchedulerThread::Stop().

Here is the caller graph for this function:

Member Data Documentation

◆ iNetIOCapacity

int C4NetIOMan::iNetIOCapacity {0}
protected

Definition at line 964 of file C4NetIO.h.

Referenced by AddIO(), and Clear().

◆ iNetIOCnt

int C4NetIOMan::iNetIOCnt {0}
protected

Definition at line 964 of file C4NetIO.h.

Referenced by AddIO(), Clear(), and RemoveIO().

◆ ppNetIO

C4NetIO** C4NetIOMan::ppNetIO {nullptr}
protected

Definition at line 965 of file C4NetIO.h.

Referenced by AddIO(), Clear(), and RemoveIO().


The documentation for this class was generated from the following files: