iostats.hh
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:4k
源码类别:

通讯编程

开发平台:

Visual C++

  1. // 
  2. // iostats.hh      : Collect various statistics for Diffusion
  3. // authors         : Chalermek Intanagonwiwat and Fabio Silva
  4. //
  5. // Copyright (C) 2000-2003 by the University of Southern California
  6. // $Id: iostats.hh,v 1.2 2005/09/13 04:53:47 tomh Exp $
  7. //
  8. // This program is free software; you can redistribute it and/or
  9. // modify it under the terms of the GNU General Public License,
  10. // version 2, as published by the Free Software Foundation.
  11. //
  12. // This program is distributed in the hope that it will be useful,
  13. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. // GNU General Public License for more details.
  16. //
  17. // You should have received a copy of the GNU General Public License along
  18. // with this program; if not, write to the Free Software Foundation, Inc.,
  19. // 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  20. //
  21. // Linking this file statically or dynamically with other modules is making
  22. // a combined work based on this file.  Thus, the terms and conditions of
  23. // the GNU General Public License cover the whole combination.
  24. //
  25. // In addition, as a special exception, the copyright holders of this file
  26. // give you permission to combine this file with free software programs or
  27. // libraries that are released under the GNU LGPL and with code included in
  28. // the standard release of ns-2 under the Apache 2.0 license or under
  29. // otherwise-compatible licenses with advertising requirements (or modified
  30. // versions of such code, with unchanged license).  You may copy and
  31. // distribute such a system following the terms of the GNU GPL for this
  32. // file and the licenses of the other code concerned, provided that you
  33. // include the source code of that other code when and as the GNU GPL
  34. // requires distribution of source code.
  35. //
  36. // Note that people who make modified versions of this file are not
  37. // obligated to grant this special exception for their modified versions;
  38. // it is their choice whether to do so.  The GNU General Public License
  39. // gives permission to release a modified version without this exception;
  40. // this exception also makes it possible to release a modified version
  41. // which carries forward this exception.
  42. #ifndef _STATS_HH_
  43. #define _STATS_HH_
  44. #ifdef HAVE_CONFIG_H
  45. #include "config.h"
  46. #endif // HAVE_CONFIG_H
  47. #include <list>
  48. #include "main/message.hh"
  49. #include "main/tools.hh"
  50. using namespace std;
  51. class NeighborStatsEntry {
  52. public:
  53.   int id_;
  54.   int recv_messages_;
  55.   int recv_bcast_messages_;
  56.   int sent_messages_;
  57.   NeighborStatsEntry(int id) : id_(id)
  58.   {
  59.     recv_messages_ = 0;
  60.     recv_bcast_messages_ = 0;
  61.     sent_messages_ = 0;
  62.   }
  63. };
  64. typedef list<NeighborStatsEntry *> NeighborStatsList;
  65. class DiffusionStats {
  66. public:
  67.   DiffusionStats(int id, int warm_up_time = 0);
  68.   void logIncomingMessage(Message *msg);
  69.   void logOutgoingMessage(Message *msg);
  70.   void printStats(FILE *output);
  71.   bool ignoreEvent();
  72. private:
  73.   int node_id_;
  74.   int warm_up_time_;
  75.   struct timeval start_;
  76.   struct timeval finish_;
  77.   NeighborStatsList nodes_;
  78.   // Counters
  79.   int num_bytes_recv_;
  80.   int num_bytes_sent_;
  81.   int num_packets_recv_;
  82.   int num_packets_sent_;
  83.   int num_bcast_bytes_recv_;
  84.   int num_bcast_bytes_sent_;
  85.   int num_bcast_packets_recv_;
  86.   int num_bcast_packets_sent_;
  87.   // Message counter
  88.   int num_interest_messages_sent_;
  89.   int num_interest_messages_recv_;
  90.   int num_data_messages_sent_;
  91.   int num_data_messages_recv_;
  92.   int num_exploratory_data_messages_sent_;
  93.   int num_exploratory_data_messages_recv_;
  94.   int num_pos_reinforcement_messages_sent_;
  95.   int num_pos_reinforcement_messages_recv_;
  96.   int num_neg_reinforcement_messages_sent_;
  97.   int num_neg_reinforcement_messages_recv_;
  98.   int num_new_messages_sent_;
  99.   int num_new_messages_recv_;
  100.   int num_old_messages_sent_;
  101.   int num_old_messages_recv_;
  102.   NeighborStatsEntry * getNeighbor(int id);
  103. };
  104. #endif // !_STATS_HH_