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

通讯编程

开发平台:

Visual C++

  1. //
  2. // diffapp.hh     : Base Class for Diffusion Apps and Filters
  3. // author         : Fabio Silva and Padma Haldar
  4. //
  5. // Copyright (C) 2000-2002 by the University of Southern California
  6. // $Id: diffapp.hh,v 1.9 2005/09/13 04:53:49 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. //
  43. //
  44. // This file defines the DiffApp class, the base class for diffusion's
  45. // applications and filters. In addition to provide the basic NR class
  46. // pointer and other diffusion related variables, it also implements a
  47. // basic command line parsing that can be used to set debug level,
  48. // diffusion port and an optional configuration file (its name will be
  49. // stored in the char *config_file_ variable for later processing by
  50. // the application/filter. Also, the file includes everything
  51. // necessary for creating a diffusion application/filter.
  52. #ifndef _DIFFAPP_HH_
  53. #define _DIFFAPP_HH_
  54. #ifdef HAVE_CONFIG_H
  55. #include "config.h"
  56. #endif // HAVE_CONFIG_H
  57. #include <stdlib.h>
  58. #include <stdio.h>
  59. #include "dr.hh"
  60. #ifdef NS_DIFFUSION
  61. #include "app.h"
  62. class DiffApp : public Application {
  63. #else
  64. class DiffApp {
  65. #endif // NS_DIFFUSION
  66. public:
  67.   virtual void run() = 0;
  68. #ifdef NS_DIFFUSION
  69.   int command(int argc, const char*const* argv);
  70. #endif // NS_DIFFUSION
  71. protected:
  72.   NR *dr_;
  73.   u_int16_t diffusion_port_;
  74.   char *config_file_;
  75. #ifndef NS_DIFFUSION
  76.   void usage(char *s);
  77.   void parseCommandLine(int argc, char **argv);
  78. #endif // !NS_DIFFUSION
  79. };
  80. #endif // !_DIFFAPP_HH_