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

通讯编程

开发平台:

Visual C++

  1. /* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
  2. /*
  3.  * Copyright (c) 1996-1997 Regents of the University of California.
  4.  * All rights reserved.
  5.  * 
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 1. Redistributions of source code must retain the above copyright
  10.  *    notice, this list of conditions and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in the
  13.  *    documentation and/or other materials provided with the distribution.
  14.  * 3. All advertising materials mentioning features or use of this software
  15.  *    must display the following acknowledgement:
  16.  *  This product includes software developed by the MASH Research
  17.  *  Group at the University of California Berkeley.
  18.  * 4. Neither the name of the University nor of the Research Group may be
  19.  *    used to endorse or promote products derived from this software without
  20.  *    specific prior written permission.
  21.  * 
  22.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  23.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  26.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  27.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  28.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  29.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  30.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  31.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  32.  * SUCH DAMAGE.
  33.  *
  34.  * @(#) $Header: /cvsroot/nsnam/ns-2/classifier/classifier.h,v 1.33 2005/09/26 09:12:46 lacage Exp $ (LBL)
  35.  */
  36. #ifndef ns_classifier_h
  37. #define ns_classifier_h
  38. #include "object.h"
  39. class Packet;
  40. class Classifier : public NsObject {
  41. public:
  42. Classifier();
  43. virtual ~Classifier();
  44. inline int maxslot() const { return maxslot_; }
  45. inline NsObject* slot(int slot) {
  46. if ((slot >= 0) && (slot < nslot_))
  47. return slot_[slot];
  48. return 0;
  49. }
  50. inline int mshift(int val) { return ((val >> shift_) & mask_); }
  51. inline void set_default_target(NsObject *obj) { 
  52. default_target_ = obj;
  53. }
  54. virtual void recv(Packet* p, Handler* h);
  55. virtual NsObject* find(Packet*);
  56. virtual int classify(Packet *);
  57. virtual void clear(int slot);
  58. enum classify_ret {ONCE= -2, TWICE= -1};
  59. virtual void do_install(char* dst, NsObject *target) {
  60. int slot = atoi(dst);
  61. install(slot, target); }
  62. int install_next(NsObject *node);
  63. virtual void install(int slot, NsObject*);
  64. // function to set the rtg table size
  65. void set_table_size(int nn);
  66. // hierarchical specific
  67. virtual void set_table_size(int level, int nn) {}
  68. int allocPort (NsObject *);
  69. protected:
  70. virtual int getnxt(NsObject *);
  71. virtual int command(int argc, const char*const* argv);
  72. void alloc(int);
  73. NsObject** slot_; /* table that maps slot number to a NsObject */
  74. int nslot_;
  75. int maxslot_;
  76. int offset_; // offset for Packet::access()
  77. int shift_;
  78. int mask_;
  79. NsObject *default_target_;
  80. int nsize_;       //what size of nslot_ should be
  81. };
  82. #endif