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

通讯编程

开发平台:

Visual C++

  1. // 
  2. // filter.hh     : Filter definitions
  3. // authors       : Fabio Silva
  4. //
  5. // Copyright (C) 2000-2003 by the University of Southern California
  6. // $Id: filter.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. #ifndef _FILTER_HH_
  43. #define _FILTER_HH_
  44. #ifdef HAVE_CONFIG_H
  45. #include "config.h"
  46. #endif // HAVE_CONFIG_H
  47. #include <sys/time.h>
  48. #include <unistd.h>
  49. #include <list>
  50. #include "message.hh"
  51. using namespace std;
  52. // Filter priority definitions
  53. #define FILTER_ZERO_PRIORITY 0
  54. #define FILTER_MIN_PRIORITY 1
  55. #define FILTER_MAX_PRIORITY 254
  56. #define FILTER_KEEP_PRIORITY 255
  57. #define FILTER_INVALID_PRIORITY 256
  58. // The following definitions should help people pick a priority when
  59. // writing filters.
  60. // If a filter is a pre-processing filter (e.g. logging) which should
  61. // receive messages before they get to a routing protocol, it should
  62. // have a priority between FILTER_MAX_PRIORITY and
  63. // PRE_PROCESSING_COMPLETED_PRIORITY.
  64. #define PRE_PROCESSING_COMPLETED_PRIORITY 200
  65. // Filters implementing routing protocols, should have a priority
  66. // between PRE_PROCESSING_COMPLETED_PRIORITY and
  67. // ROUTING_COMPLETED_PRIORITY.
  68. #define ROUTING_COMPLETED_PRIORITY 50
  69. // If a filter is a post-processing filter, it should use a priority
  70. // between ROUTING_COMPLETED_PRIORITY and FILTER_MIN_PRIORITY.
  71. class FilterEntry;
  72. class FilterCallback;
  73. typedef list<FilterEntry *> FilterList;
  74. typedef long handle;
  75. class FilterEntry {
  76. public:
  77.   NRAttrVec *filter_attrs_;
  78.   int16_t handle_;
  79.   u_int16_t priority_;
  80.   u_int16_t agent_;
  81.   FilterCallback *cb_;
  82.   struct timeval tmv_;
  83.   bool valid_;
  84.    
  85.   FilterEntry(int16_t handle, u_int16_t priority, u_int16_t agent) :
  86.     handle_(handle), priority_(priority), agent_(agent)
  87.   {
  88.     valid_ = true;
  89.     cb_ = NULL;
  90.     GetTime(&tmv_);
  91.   }
  92.   ~FilterEntry()
  93.   {
  94.     if (filter_attrs_){
  95.       ClearAttrs(filter_attrs_);
  96.       delete filter_attrs_;
  97.     }
  98.   }
  99. };
  100. class FilterCallback {
  101. public:
  102.   virtual ~FilterCallback () {}
  103.   virtual void recv(Message *msg, handle h) = 0;
  104. };
  105. #endif // !_FILTER_HH_