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

通讯编程

开发平台:

Visual C++

  1. //
  2. // srcrt.cc       : Source Route Filter
  3. // author         : Fabio Silva
  4. //
  5. // Copyright (C) 2000-2002 by the Unversity of Southern California
  6. // $Id: srcrt.cc,v 1.4 2005/09/13 04:53:48 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. #include "srcrt.hh"
  43. #ifdef NS_DIFFUSION
  44. class DiffAppAgent;
  45. #endif // NS_DIFFUSION
  46. #ifdef NS_DIFFUSION
  47. static class SourceRouteFilterClass : public TclClass {
  48. public:
  49.   SourceRouteFilterClass() : TclClass("Application/DiffApp/SourceRouteFilter") {}
  50.   TclObject* create(int argc, const char*const* argv) {
  51.     return(new SrcRtFilter());
  52.   }
  53. } class_source_route_filter;
  54. int SrcRtFilter::command(int argc, const char*const* argv) {
  55.   if (argc == 2) {
  56.     if (strcmp(argv[1], "start") == 0) {
  57.       run();
  58.       return (TCL_OK);
  59.     }
  60.   }
  61.   return (DiffApp::command(argc, argv));
  62. }
  63. #endif // NS_DIFFUSION
  64. void SrcRtFilterReceive::recv(Message *msg, handle h)
  65. {
  66.   app_->recv(msg, h);
  67. }
  68. void SrcRtFilter::recv(Message *msg, handle h)
  69. {
  70.   Message *return_msg = NULL;
  71.   if (h != filter_handle_){
  72.     DiffPrint(DEBUG_ALWAYS, "Error: Received a message for handle %ld when subscribing to handle %ld !n", h, filter_handle_);
  73.     return;
  74.   }
  75.   return_msg = ProcessMessage(msg);
  76.   if (return_msg){
  77.     ((DiffusionRouting *)dr_)->sendMessage(msg, h);
  78.     delete msg;
  79.   }
  80. }
  81. Message * SrcRtFilter::ProcessMessage(Message *msg)
  82. {
  83.   char *original_route, *new_route, *p;
  84.   int len;
  85.   int32_t next_hop;
  86.   NRSimpleAttribute<char *> *route = NULL;
  87.   route = SourceRouteAttr.find(msg->msg_attr_vec_);
  88.   if (!route){
  89.     DiffPrint(DEBUG_ALWAYS, "Error: Can't find the route attribute !n");
  90.     return msg;
  91.   }
  92.   original_route = route->getVal();
  93.   len = strlen(original_route);
  94.   // Check if we are the last hop
  95.   if (len == 0)
  96.     return msg;
  97.   // Get the next hop
  98.   next_hop = atoi(original_route);
  99.   // Remove last hop from source route
  100.   p = strstr(original_route, ":");
  101.   if (!p){
  102.     // There's just one more hop
  103.     new_route = new char[1];
  104.     new_route[0] = '';
  105.   }
  106.   else{
  107.     p++;
  108.     len = strlen(p);
  109.     new_route = new char[(len + 1)];
  110.     strncpy(new_route, p, (len + 1));
  111.     if (new_route[len] != '')
  112.       DiffPrint(DEBUG_ALWAYS, "Warning: String must end with NULL !n");
  113.   }
  114.   route->setVal(new_route);
  115.   // Free memory
  116.   delete [] new_route;
  117.   // Send the packet to the next hop
  118.   msg->next_hop_ = next_hop;
  119.   ((DiffusionRouting *)dr_)->sendMessage(msg, filter_handle_);
  120.   delete msg;
  121.   return NULL;
  122. }
  123. handle SrcRtFilter::setupFilter()
  124. {
  125.   NRAttrVec attrs;
  126.   handle h;
  127.   // Match all packets with a SourceRoute Attribute
  128.   attrs.push_back(SourceRouteAttr.make(NRAttribute::EQ_ANY, ""));
  129.   h = ((DiffusionRouting *)dr_)->addFilter(&attrs, SRCRT_FILTER_PRIORITY,
  130.    filter_callback_);
  131.   ClearAttrs(&attrs);
  132.   return h;
  133. }
  134. void SrcRtFilter::run()
  135. {
  136. #ifdef NS_DIFFUSION
  137.   filter_handle_ = setupFilter();
  138.   DiffPrint(DEBUG_ALWAYS, "SrcRtFilter filter received handle %ldn",
  139.     filter_handle_);
  140.   DiffPrint(DEBUG_ALWAYS, "SrcRtFilter filter initialized !n");
  141. #else
  142.   // Doesn't do anything
  143.   while (1){
  144.     sleep(1000);
  145.   }
  146. #endif // NS_DIFFUSION
  147. }
  148. #ifdef NS_DIFFUSION
  149. SrcRtFilter::SrcRtFilter()
  150. {
  151. #else
  152. SrcRtFilter::SrcRtFilter(int argc, char **argv)
  153. {
  154. #endif // NS_DIFFUSION
  155.   // Create Diffusion Routing class
  156. #ifndef NS_DIFFUSION
  157.   parseCommandLine(argc, argv);
  158.   dr_ = NR::createNR(diffusion_port_);
  159. #endif // !NS_DIFFUSION
  160.   filter_callback_ = new SrcRtFilterReceive(this);
  161. #ifndef NS_DIFFUSION
  162.   // Set up the filter
  163.   filter_handle_ = setupFilter();
  164.   DiffPrint(DEBUG_ALWAYS, "SrcRtFilter filter received handle %ldn",
  165.     filter_handle_);
  166.   DiffPrint(DEBUG_ALWAYS, "SrcRtFilter filter initialized !n");
  167. #endif // !NS_DIFFUSION
  168. }
  169. #ifndef NS_DIFFUSION
  170. #ifndef USE_SINGLE_ADDRESS_SPACE
  171. int main(int argc, char **argv)
  172. {
  173.   SrcRtFilter *app;
  174.   // Initialize and run the Source Route Filter
  175.   app = new SrcRtFilter(argc, argv);
  176.   app->run();
  177.   return 0;
  178. }
  179. #endif // !USE_SINGLE_ADDRESS_SPACE
  180. #endif // !NS_DIFFUSION