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

通讯编程

开发平台:

Visual C++

  1. //
  2. // tag.cc         : Tag Filter
  3. // author         : Fabio Silva
  4. //
  5. // Copyright (C) 2000-2002 by the Unversity of Southern California
  6. // $Id: tag.cc,v 1.2 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 "tag.hh"
  43. //TagFilter *app;
  44. #ifdef NS_DIFFUSION
  45. static class TagFilterClass : public TclClass {
  46. public:
  47.   TagFilterClass() : TclClass("Application/DiffApp/TagFilter") {}
  48.   TclObject * create(int argc, const char*const* argv) {
  49.     return(new TagFilter());
  50.   }
  51. } class_tag_filter;
  52. int TagFilter::command(int argc, const char*const* argv) {
  53.   if (argc == 2) {
  54.     if (strcmp(argv[1], "start") == 0) {
  55.       run();
  56.       return (TCL_OK);
  57.     }
  58.   }
  59.   return (DiffApp::command(argc, argv));
  60. }
  61. #endif // NS_DIFFUSION
  62. void TagFilterReceive::recv(Message *msg, handle h)
  63. {
  64.   app_->recv(msg, h);
  65. }
  66. void TagFilter::recv(Message *msg, handle h)
  67. {
  68.   if (h != filter_handle_){
  69.     DiffPrint(DEBUG_ALWAYS, "Error: TagFilter::recv received message for handle %ld when subscribing to handle %ld !n", h, filter_handle_);
  70.     return;
  71.   }
  72.   ProcessMessage(msg);
  73.   ((DiffusionRouting *)dr_)->sendMessage(msg, h);
  74. }
  75. void TagFilter::ProcessMessage(Message *msg)
  76. {
  77.   char *original_route;
  78.   char *new_route;
  79.   int len, total_len;
  80.   NRSimpleAttribute<char *> *route = NULL;
  81.   // Can't do anything if node id unknown
  82.   if (!id_)
  83.     return;
  84.   route = RouteAttr.find(msg->msg_attr_vec_);
  85.   if (!route){
  86.     DiffPrint(DEBUG_ALWAYS, "Error: Can't find the route attribute !n");
  87.     return;
  88.   }
  89.   original_route = route->getVal();
  90.   len = strlen(original_route);
  91.   if (len == 0){
  92.     total_len = strlen(id_);
  93.     // Route is empty, need to allocate memory
  94.     // for our id and the terminating ''
  95.     new_route = new char[(total_len + 1)];
  96.     strcpy(new_route, id_);
  97.     if (new_route[total_len] != '')
  98.       DiffPrint(DEBUG_ALWAYS, "Warning: String must end with NULL !n");
  99.   }
  100.   else{
  101.     // Route already exists. We need to allocate
  102.     // memory for the current route + ':' + our
  103.     // id + the terminating ''
  104.     total_len = len + strlen(id_) + 1;
  105.     new_route = new char[(total_len + 1)];
  106.     strcpy(new_route, original_route);
  107.     new_route[len] = ':';
  108.     strcpy(&new_route[len+1], id_);
  109.     if (new_route[total_len] != ''){
  110.       DiffPrint(DEBUG_ALWAYS, "Warning: String must end with NULL !n");
  111.     }
  112.   }
  113.   // Debug
  114.   DiffPrint(DEBUG_ALWAYS, "Tag Filter: Original route : %sn", original_route);
  115.   DiffPrint(DEBUG_ALWAYS, "Tag Filter: New route : %sn", new_route);
  116.   route->setVal(new_route);
  117.   // Free memory
  118.   delete [] new_route;
  119. }
  120. handle TagFilter::setupFilter()
  121. {
  122.   NRAttrVec attrs;
  123.   handle h;
  124.   // Match all packets with a Route Attribute
  125.   attrs.push_back(RouteAttr.make(NRAttribute::EQ_ANY, ""));
  126.   h = ((DiffusionRouting *)dr_)->addFilter(&attrs, TAG_FILTER_PRIORITY,
  127.    filter_callback_);
  128.   ClearAttrs(&attrs);
  129.   return h;
  130. }
  131. void TagFilter::run()
  132. {
  133. #ifdef NS_DIFFUSION
  134.   // Set up the filter
  135.   filter_handle_ = setupFilter();
  136.   DiffPrint(DEBUG_ALWAYS, "Tag Filter subscribed to *, received handle %dn",
  137.     (int) filter_handle_);
  138.   DiffPrint(DEBUG_ALWAYS, "Tag Filter initialized !n");
  139. #else
  140.   // Doesn't do anything
  141.   while (1){
  142.     sleep(1000);
  143.   }
  144. #endif // NS_DIFFUSION
  145. }
  146. void TagFilter::getNodeId()
  147. {
  148.   DiffPrint(DEBUG_ALWAYS, "Tag Filter: getNodeID function not yet implemented !n");
  149.   DiffPrint(DEBUG_ALWAYS, "Tag Filter: Please set scadds_addr to the node id !n");
  150.   exit(-1);
  151.   // Future implementation for the inter-module API
  152. }
  153. #ifdef NS_DIFFUSION
  154. TagFilter::TagFilter()
  155. #else
  156. TagFilter::TagFilter(int argc, char **argv)
  157. #endif // NS_DIFFUSION
  158. {
  159.   char *id_env = NULL;
  160.   char buffer[BUFFER_SIZE];
  161.   int flag;
  162.   int node_id;
  163.   id_ = NULL;
  164.   node_id = 0;
  165.   // Create Diffusion Routing class
  166. #ifndef NS_DIFFUSION
  167.   parseCommandLine(argc, argv);
  168.   dr_ = NR::createNR(diffusion_port_);
  169. #endif // !NS_DIFFUSION
  170.   filter_callback_ = new TagFilterReceive(this);
  171.   // Try to figure out the node ID
  172.   id_env = getenv("scadds_addr");
  173.   if (id_env){
  174.     node_id = atoi(id_env);
  175.     flag = snprintf(&buffer[0], BUFFER_SIZE, "%d", node_id);
  176.     if (flag == -1 || flag == BUFFER_SIZE){
  177.       DiffPrint(DEBUG_ALWAYS, "Error: Buffer too small !n");
  178.       exit(-1);
  179.     }
  180.     id_ = strdup(&buffer[0]);
  181.   }
  182.   else{
  183.     getNodeId();
  184.   }
  185. #ifndef NS_DIFFUSION
  186.   // Set up the filter
  187.   filter_handle_ = setupFilter();
  188.   DiffPrint(DEBUG_ALWAYS, "Tag Filter subscribed to *, received handle %ldn",
  189.   filter_handle_);
  190.   DiffPrint(DEBUG_ALWAYS, "Tag Filter initialized !n");
  191. #endif // !NS_DIFFUSION
  192. }
  193. #ifndef USE_SINGLE_ADDRESS_SPACE
  194. int main(int argc, char **argv)
  195. {
  196.   TagFilter *app;
  197.   // Initialize and run the Tag Filter
  198.   app = new TagFilter(argc, argv);
  199.   app->run();
  200.   return 0;
  201. }
  202. #endif // !USE_SINGLE_ADDRESS_SPACE