OpenClonk
TstC4NetIO.cpp File Reference
#include "C4Include.h"
#include "network/C4NetIO.h"
#include "lib/C4Random.h"
#include <arpa/inet.h>
Include dependency graph for TstC4NetIO.cpp:

Go to the source code of this file.

Classes

class  MyCBClass
 

Macros

#define ASYNC_CONNECT
 
#define USE_UDP
 

Functions

int main (int argc, char *argv[])
 

Variables

bool fHost
 
int iCnt = 0
 
int iSize = 0
 
char DummyData [1024 *1024]
 

Macro Definition Documentation

◆ ASYNC_CONNECT

#define ASYNC_CONNECT

Definition at line 35 of file TstC4NetIO.cpp.

◆ USE_UDP

#define USE_UDP

Definition at line 38 of file TstC4NetIO.cpp.

Function Documentation

◆ main()

int main ( int  argc,
char *  argv[] 
)

Definition at line 95 of file TstC4NetIO.cpp.

96 {
97 
98  int i;
99  for (i = 0; i < sizeof(DummyData); i++)
100  DummyData[i] = 'A' + i % 100;
101 
102  FixedRandom(time(nullptr));
103 
104 #ifdef USE_UDP
105  C4NetIOUDP NetIO;
106 #else
107  C4NetIOTCP NetIO;
108 #endif
109 
110  C4NetIO *pNetIO = &NetIO;
111  MyCBClass CBClass;
112  CBClass.AddIO(pNetIO);
113 
114 #ifdef HAVE_WINSOCK
115  WSADATA wsaData;
116 
117  WSAStartup(0x0202, &wsaData);
118 #endif
119 
120  C4NetIO::addr_t addr;
121  // Default
122  addr.sin_addr.s_addr = inet_addr("127.0.0.1");
123  addr.sin_port = htons(11111);
124  addr.sin_family = AF_INET;
125  short iPort = 0;
126 
127  for (i = 1; i < argc; ++i)
128  {
129  std::string arg(argv[i]);
130  int n;
131  if (arg == "--server")
132  {
133  fHost = true;
134  if (!iPort) iPort = 11111;
135  }
136  else if ((n = arg.find("--port=")) != -1)
137  {
138  std::istringstream stream(std::string(arg.begin() + n + sizeof("--port="), arg.end()));
139  stream >> iPort;
140  }
141  else if ((n = arg.find("--size=")) != -1)
142  {
143  std::istringstream stream(std::string(arg.begin() + n + sizeof("--size="), arg.end()));
144  stream >> iSize;
145  }
146  else
147  {
148  if (!ResolveAddress(argv[i], &addr, 11111)) cout << "Fehler in ResolveAddress(" << argv[i] << ")" << std::endl;
149  if (!iPort) iPort = 11112;
150  }
151  }
152  if (argc == 1)
153  {
154 #ifndef _WIN32
155  cout << "Possible usage: " << argv[0] << " [--server] [address[:port]] --port=port --size=size" << std::endl << std::endl;
156 #endif
157 
158  cout << "Server? (j/n)";
159  char cChoice;
160  do
161  cin >> cChoice;
162  while (tolower(cChoice) != 'n' && tolower(cChoice) != 'j');
163 
164  fHost = (tolower(cChoice) == 'j');
165 
166  if (cChoice == 'J' || cChoice == 'N')
167  {
168  iPort = (cChoice == 'J' ? 11111 : 11112);
169  iCnt = 0;
170  iSize = 0;
171  }
172  else
173  {
174  cout << "Port?";
175  cin >> iPort;
176 
177  cout << "Dummys?";
178  do
179  cin >> iCnt;
180  while (iCnt < 0);
181 
182  cout << "Größe?";
183  do
184  cin >> iSize;
185  while (iSize < 1 || iSize > 1024);
186  }
187  if (!fHost)
188  {
189  char szAddr[1024];
190  int iDPort;
191  if (cChoice == 'N')
192  {
193  strcpy(szAddr, "127.0.0.1");
194  iDPort = 11111;
195  }
196  else
197  {
198  cout << "Wohin (Adresse)? ";
199  cin >> szAddr;
200 
201  cout << "Wohin (Port)? ";
202  cin >> iDPort;
203  }
204  addr.sin_addr.s_addr = inet_addr(szAddr);
205  addr.sin_port = htons(iDPort);
206  addr.sin_family = AF_INET;
207  }
208  }
209  cout << "\nC4NetIO Init...";
210 
211  if (!NetIO.Init(iPort))
212  {
213  cout << " Fehler: " << NetIO.GetError() << endl;
214  return 0;
215  }
216 
217  cout << " ok" << endl;
218 
219 
220  if (fHost)
221  {
222 
223  cout << " Broadcast...";
224  C4NetIO::addr_t addr;
225  if (!NetIO.InitBroadcast(&addr))
226  {
227  cout << " Fehler: " << NetIO.GetError() << endl;
228  return 0;
229  }
230 
231  cout << " ok" << endl;
232 
233  cout << " Thread...";
234 
235  if (!CBClass.Start())
236  {
237  cout << " Fehler!" << endl;
238  return 0;
239  }
240 
241  cout << " ok" << endl;
242 
243  cout << "listening... " << endl;
244 
245  }
246  else
247  {
248  cout << " Thread...";
249 
250  if (!CBClass.Start())
251  {
252  cout << " Fehler!" << endl;
253  return 0;
254  }
255 
256  cout << " ok" << endl;
257 
258  cout << "verbinden mit " << inet_ntoa(addr.sin_addr) << ":" << ntohs(addr.sin_port) << "...\n";
259 #ifdef ASYNC_CONNECT
260  NetIO.Connect(addr);
261 #else
262  if (!fHost)
263  {
264  int iBufLen = 5000;
265  char *pBuf = new char [iBufLen];
266  for (int i = 0; i < 10; i++)
267  {
268  *pBuf = i;
269  if (!pNetIO->Send(C4NetIOPacket(pBuf, iBufLen, true, addr)))
270  cout << " Fehler: " << (pNetIO->GetError() ? pNetIO->GetError() : "bla") << endl;
271  }
272  }
273 #endif
274  }
275 
276  while (std::cin.get() == 10);
277 
278  CBClass.Stop();
279  NetIO.Close();
280 
281  return 1;
282 }
void FixedRandom(uint64_t seed)
Definition: C4Random.cpp:37
char DummyData[1024 *1024]
Definition: TstC4NetIO.cpp:33
bool fHost
Definition: TstC4NetIO.cpp:31
int iCnt
Definition: TstC4NetIO.cpp:32
int iSize
Definition: TstC4NetIO.cpp:32
virtual const char * GetError() const
Definition: C4NetIO.h:286
virtual bool Send(const class C4NetIOPacket &rPacket)=0
void AddIO(C4NetIO *pNetIO, bool fSetCallback=true)
Definition: C4NetIO.cpp:3989
bool Connect(const addr_t &addr) override
Definition: C4NetIO.cpp:2717
bool InitBroadcast(addr_t *pBroadcastAddr) override
Definition: C4NetIO.cpp:2501
bool Init(uint16_t iPort=addr_t::IPPORT_NONE) override
Definition: C4NetIO.cpp:2472
bool Close() override
Definition: C4NetIO.cpp:2639

References C4NetIOMan::AddIO(), C4NetIOUDP::Close(), C4NetIOUDP::Connect(), DummyData, fHost, FixedRandom(), C4NetIO::GetError(), iCnt, C4NetIOUDP::Init(), C4NetIOUDP::InitBroadcast(), iSize, C4NetIO::Send(), StdSchedulerThread::Start(), and StdSchedulerThread::Stop().

Here is the call graph for this function:

Variable Documentation

◆ DummyData

char DummyData[1024 *1024]

Definition at line 33 of file TstC4NetIO.cpp.

Referenced by main(), MyCBClass::OnConn(), and MyCBClass::OnPacket().

◆ fHost

◆ iCnt

◆ iSize

int iSize = 0

Definition at line 32 of file TstC4NetIO.cpp.

Referenced by AddDbgRec(), C4Group_CopyEntry(), C4Playback::Check(), C4Set< T >::CompileFunc(), C4ValueNumbers::CompileFunc(), StdSTLContainerAdapt< C >::CompileFunc(), StdHexAdapt::CompileFunc(), C4FindObject::CreateByValue(), C4SortObject::CreateByValue(), C4GameControl::DbgRec(), C4RankSystem::DrawRankSymbol(), C4MCCallbackArray::EnablePixel(), C4UpdatePackage::Execute(), C4FindObject::FindMany(), DirSizeHelper::GetDirSize(), GetFileCRC(), GetFileSHA1(), C4ValueMapData::GetItem(), GetLogSection(), C4FoWLight::getNormalSize(), C4NetIOTCP::Peer::GetRecvBuf(), C4FoWLight::getSize(), C4Network2Res::GetStandalone(), C4FontLoader::InitFont(), CPNGFile::Load(), C4RankSystem::Load(), main(), C4UpdatePackage::MakeUpdate(), mkArrayAdapt(), mkArrayAdaptDefArr(), mkArrayAdaptDefArrMap(), mkArrayAdaptMap(), mkHexAdapt(), mkRawAdapt(), MyCBClass::OnConn(), C4DownloadDlg::OnIdle(), MyCBClass::OnPacket(), C4NetIOTCP::Peer::OnRecv(), C4NetIOTCP::PackPacket(), C4MCParser::ParseFile(), StdCompilerBinWrite::Raw(), StdCompilerBinRead::Raw(), StdCompilerINIWrite::Raw(), StdCompilerINIRead::Raw(), CStdFile::Read(), C4Surface::ReadPNG(), SCopyEnclosed(), C4Network2ResChunk::Set(), C4Network2ResCore::SetLoadable(), C4NetIOSimpleUDP::SetMCLoopback(), C4ValueArray::SetSize(), C4ValueArray::SetSlice(), SGetModule(), C4ValueArray::Sort(), C4ValueArray::SortByArrayElement(), C4ValueArray::SortByProperty(), C4Facet::Truncate(), CStdFile::Write(), and StdCompilerBinWrite::WriteData().