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

通讯编程

开发平台:

Visual C++

  1. /* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
  2. /*
  3.  * ns-process.h
  4.  * Copyright (C) 1997 by the University of Southern California
  5.  * $Id: ns-process.h,v 1.6 2005/08/25 18:58:02 johnh Exp $
  6.  *
  7.  * This program is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License,
  9.  * version 2, as published by the Free Software Foundation.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License along
  17.  * with this program; if not, write to the Free Software Foundation, Inc.,
  18.  * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  19.  *
  20.  *
  21.  * The copyright of this module includes the following
  22.  * linking-with-specific-other-licenses addition:
  23.  *
  24.  * In addition, as a special exception, the copyright holders of
  25.  * this module give you permission to combine (via static or
  26.  * dynamic linking) this module with free software programs or
  27.  * libraries that are released under the GNU LGPL and with code
  28.  * included in the standard release of ns-2 under the Apache 2.0
  29.  * license or under otherwise-compatible licenses with advertising
  30.  * requirements (or modified versions of such code, with unchanged
  31.  * license).  You may copy and distribute such a system following the
  32.  * terms of the GNU GPL for this module and the licenses of the
  33.  * other code concerned, provided that you include the source code of
  34.  * that other code when and as the GNU GPL requires distribution of
  35.  * source code.
  36.  *
  37.  * Note that people who make modified versions of this module
  38.  * are not obligated to grant this special exception for their
  39.  * modified versions; it is their choice whether to do so.  The GNU
  40.  * General Public License gives permission to release a modified
  41.  * version without this exception; this exception also makes it
  42.  * possible to release a modified version which carries forward this
  43.  * exception.
  44.  *
  45.  */
  46. // ADU and ADU processor
  47. //
  48. // $Header: /cvsroot/nsnam/ns-2/common/ns-process.h,v 1.6 2005/08/25 18:58:02 johnh Exp $
  49. #ifndef ns_process_h
  50. #define ns_process_h
  51. #include <assert.h>
  52. #include <string.h>
  53. #include "config.h"
  54. // Application-level data unit types
  55. enum AppDataType {
  56. // Illegal type
  57. ADU_ILLEGAL,
  58. // Old packet data ADU
  59. PACKET_DATA,
  60. // HTTP ADUs
  61. HTTP_DATA,
  62. HTTP_INVALIDATION, // Heartbeat that may contain invalidation
  63. HTTP_UPDATE, // Pushed page updates (version 1)
  64. HTTP_PROFORMA, // Pro forma sent when a direct request is sent
  65. HTTP_JOIN,
  66. HTTP_LEAVE,
  67. HTTP_PUSH, // Selectively pushed pages 
  68. HTTP_NORMAL, // Normal req/resp packets
  69. // TcpApp ADU
  70. TCPAPP_STRING,
  71. // Multimedia ADU
  72. MEDIA_DATA,
  73. MEDIA_REQUEST,
  74. // pub/sub ADU
  75. PUBSUB,
  76. //Diffusion ADU
  77. DIFFUSION_DATA,
  78. // Last ADU
  79. ADU_LAST
  80. };
  81. // Interface for generic application-level data unit. It should know its 
  82. // size and how to make itself persistent.
  83. class AppData {
  84. private:
  85. AppDataType type_;   // ADU type
  86. public:
  87. AppData(AppDataType type) { type_ = type; }
  88. AppData(AppData& d) { type_ = d.type_; }
  89. virtual ~AppData() {}
  90. AppDataType type() const { return type_; }
  91. // The following two methods MUST be rewrited for EVERY derived classes
  92. virtual int size() const { return sizeof(AppData); }
  93. virtual AppData* copy() = 0;
  94. };
  95. // Models any entity that is capable of process an ADU. 
  96. // The basic functionality of this entity is to (1) process data, 
  97. // (2) pass data to another entity, (3) request data from another entity.
  98. class Process : public TclObject {
  99. public: 
  100. Process() : target_(0) {}
  101. inline Process*& target() { return target_; }
  102. // Process incoming data
  103. virtual void process_data(int size, AppData* data);
  104. // Request data from the previous application in the chain
  105. virtual AppData* get_data(int& size, AppData* req_data = 0);
  106. // Send data to the next application in the chain
  107. virtual void send_data(int size, AppData* data = 0) {
  108. if (target_)
  109. target_->process_data(size, data);
  110. }
  111. protected:
  112. virtual int command(int argc, const char*const* argv);
  113. Process* target_;
  114. };
  115. #endif // ns_process_h