Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/lib/network/connection_monitor.cc @ 5749

Last change on this file since 5749 was 5749, checked in by patrick, 18 years ago

network: fixed a little runtime error in the ConnectionMonitor class (see mail)

File size: 3.4 KB
RevLine 
[5523]1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11### File Specific:
12   main-programmer: Silvan Nellen
13   co-programmer: ...
[5550]14*/
[5523]15
[5547]16#include "connection_monitor.h"
[5618]17#include <debug.h>
18#include <SDL/SDL.h>
19#include <string.h>
[5526]20
[5564]21/* using namespace std is default, this needs to be here */
22using namespace std;
23
[5523]24ConnectionMonitor::ConnectionMonitor()
[5618]25{
[5523]26
[5618]27  /* set the class id for the base object and add ist to class list*/
28  this->setClassID(CL_CONNECTION_MONITOR, "ConnectionMonitor");
[5523]29
[5618]30  /*initialize variables*/
[5581]31
[5618]32  /*Data of the lifetime of the ConnectionMonitor Object*/
[5726]33  packetToAverage = 100;
34  protocollType = "default(TCP)";
[5523]35
[5618]36  startTime= SDL_GetTicks();
37  totalReceivedPackets=0;
38  averageDatarate=0;
39  totalLostPackets=0;
40  totalPacketloss=0;
[5523]41
[5618]42  /*Data of the current packet*/
43  currentPacketID=0;
44  currentPacketTick=0;
45  lastPacketID=0;
46  lastPacketTick=0;
47  currentDelay=0;
48
49  /*Data of the last n packets (n is specified by paxketsToAverage)*/
50  sizeOfLastFewPackets=0;
51  currentDatarate=0;
52  lastFewDelays = new unsigned int [packetToAverage];
53  lastFewPackets = new byte* [packetToAverage];
54  packetCounter=0;
55
56
57}
58
59
[5547]60ConnectionMonitor::~ConnectionMonitor()
[5618]61{
[5523]62
63
[5618]64}
[5523]65
66
67
[5618]68void ConnectionMonitor::processPacket(byte* currentPacket, unsigned int packetLength)
69{
[5726]70  /*Process the current Packet*/
[5618]71  currentPacketTick = SDL_GetTicks();
72  currentDelay = currentPacketTick - lastPacketTick;
[5550]73
[5618]74  /*Do whats needed for Averaging*/
[5581]75
[5618]76  if(packetCounter = packetToAverage)
77    {
[5720]78      computeCurrentDatarate();
[5618]79      displayStatistic();
80      packetCounter = 0;
[5720]81      sizeOfLastFewPackets = 0;
[5618]82    }
[5581]83
[5618]84  lastFewDelays[packetCounter] = currentDelay;
85  lastFewPackets[packetCounter] = currentPacket;
86  sizeOfLastFewPackets += packetLength;
[5581]87
[5618]88  /*Update the lifetime Variables*/
89  totalReceivedPackets ++;
90  averageDatarate = totalReceivedPackets/(currentPacketTick - startTime);
[5581]91
[5618]92  /*Preparefor the next Packet*/
93  lastPacketTick = currentPacketTick;
94  packetCounter++;
95}
[5581]96
97
[5618]98/* Compute the value of current Datarate*/
[5720]99void ConnectionMonitor::computeCurrentDatarate()
[5618]100{
[5726]101  int timeForLastFewPackets=0;
[5720]102  for(int i=0;i < packetToAverage;i++)
[5618]103    timeForLastFewPackets += lastFewDelays[i];
[5581]104
[5749]105  if( timeForLastFewPackets != 0)
106    currentDatarate = sizeOfLastFewPackets/timeForLastFewPackets;
[5618]107}
[5581]108
[5720]109void doUDPRelatedStuff()
110{
[5726]111  /*  Do protocol related stuff
[5581]112
[5726]113  Only for Udp:
114  "currentPacketID = getID from package";
115
116  if(currentPacketID - lastPacketID > 1)
117  {
118  totalLostPackets += currentPacketID - lastPacketID;
[5720]119}
120
[5726]121  totalPacketloss = (totalLostPackets/totalReceivedPackets)*100 ;
122  */
123}
[5720]124
125
[5726]126
[5720]127/* Display connectoin statistic*/
[5618]128void ConnectionMonitor::displayStatistic()
129{
130  PRINT(0)("============================================\n");
131  PRINT(0)("Connection Monitor Network Statistics:\n");
132  PRINT(0)("Total received packets:",totalReceivedPackets);
133  PRINT(0)("Average datarate :\n",averageDatarate);
134  PRINT(0)("Total lost packets:",totalLostPackets);
135  PRINT(0)("Packetloss [%] :\n",totalPacketloss);
136
137  PRINT(0)("Current datarate :\n",currentDatarate);
[5720]138  PRINT(0)("Delays of the last few packets :\n");
[5618]139  for(int i=1 ;i <= packetToAverage-1;i++)
140    PRINT(0)("%i ",lastFewDelays[i]);
141
142  PRINT(0)("============================================\n");
143
144}
145
Note: See TracBrowser for help on using the repository browser.