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

通讯编程

开发平台:

Visual C++

  1. //
  2. // push_sender.cc : Ping Server Main File
  3. // author         : Fabio Silva
  4. //
  5. // Copyright (C) 2000-2002 by the University of Southern California
  6. // $Id: push_sender.cc,v 1.3 2005/09/13 04:53:46 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 "push_sender.hh"
  43. #include <unistd.h>
  44. #ifdef NS_DIFFUSION
  45. static class PushSenderAppClass : public TclClass {
  46. public:
  47.   PushSenderAppClass() : TclClass("Application/DiffApp/PushSender") {}
  48.   TclObject* create(int , const char*const*) {
  49.     return(new PushSenderApp());
  50.   }
  51. } class_ping_sender;
  52. void PushSendDataTimer::expire(Event *e) {
  53.   a_->send();
  54. }
  55. void PushSenderApp::send()
  56. {
  57.   struct timeval tmv;
  58.   int retval;
  59.   // Update time in the packet
  60.   GetTime(&tmv);
  61.   lastEventTime_->seconds_ = tmv.tv_sec;
  62.   lastEventTime_->useconds_ = tmv.tv_usec;
  63.   // Send data probe
  64.   DiffPrint(DEBUG_ALWAYS, "Node%d: Sending Data %dn", ((DiffusionRouting *)dr_)->getNodeId(), last_seq_sent_);
  65.   retval = dr_->send(pubHandle_, &data_attr_);
  66.   // Update counter
  67.   last_seq_sent_++;
  68.   counterAttr_->setVal(last_seq_sent_);
  69.   // re-schedule the timer 
  70.   sdt_.resched(SEND_DATA_INTERVAL);
  71. }
  72. int PushSenderApp::command(int argc, const char*const* argv) {
  73.   if (argc == 2) {
  74.     if (strcmp(argv[1], "publish") == 0) {
  75.       run();
  76.       return TCL_OK;
  77.     }
  78.   }
  79.   return DiffApp::command(argc, argv);
  80. }
  81. #endif // NS_DIFFUSION
  82. handle PushSenderApp::setupPublication()
  83. {
  84.   NRAttrVec attrs;
  85.   attrs.push_back(NRClassAttr.make(NRAttribute::IS, NRAttribute::DATA_CLASS));
  86.   attrs.push_back(NRScopeAttr.make(NRAttribute::IS, NRAttribute::GLOBAL_SCOPE));
  87.   attrs.push_back(LatitudeAttr.make(NRAttribute::LE, 70.00));
  88.   attrs.push_back(LatitudeAttr.make(NRAttribute::GT, 50.00));
  89.   attrs.push_back(LongitudeAttr.make(NRAttribute::LE, 85.00));
  90.   attrs.push_back(LongitudeAttr.make(NRAttribute::GT, 50.00));
  91.   attrs.push_back(TargetAttr.make(NRAttribute::IS, "F117A"));
  92.   handle h = dr_->publish(&attrs);
  93.   ClearAttrs(&attrs);
  94.   return h;
  95. }
  96. void PushSenderApp::run()
  97. {
  98.   struct timeval tmv;
  99. #ifndef NS_DIFFUSION
  100.   int retval;
  101. #endif // !NS_DIFFUSION
  102. #ifdef INTERACTIVE
  103.   char input;
  104.   fd_set FDS;
  105. #endif // INTERATIVE
  106.   // Setup publication and subscription
  107.   pubHandle_ = setupPublication();
  108.   // Create time attribute
  109.   GetTime(&tmv);
  110.   lastEventTime_ = new EventTime;
  111.   lastEventTime_->seconds_ = tmv.tv_sec;
  112.   lastEventTime_->useconds_ = tmv.tv_usec;
  113.   timeAttr_ = TimeAttr.make(NRAttribute::IS, (void *) &lastEventTime_,
  114.     sizeof(EventTime));
  115.   data_attr_.push_back(timeAttr_);
  116.   // Change pointer to point to attribute's payload
  117.   delete lastEventTime_;
  118.   lastEventTime_ = (EventTime *) timeAttr_->getVal();
  119.   // Create counter attribute
  120.   counterAttr_ = AppCounterAttr.make(NRAttribute::IS, last_seq_sent_);
  121.   data_attr_.push_back(counterAttr_);
  122. #ifndef NS_DIFFUSION
  123.   // Main thread will send ping probes
  124.   while(1){
  125. #ifdef INTERACTIVE
  126.     FD_SET(0, &FDS);
  127.     fprintf(stdout, "Press <Enter> to send a ping probe...");
  128.     fflush(NULL);
  129.     select(1, &FDS, NULL, NULL, NULL);
  130.     input = getc(stdin);
  131. #else
  132.     sleep(5);
  133. #endif // INTERACTIVE
  134.     // Update time in the packet
  135.     GetTime(&tmv);
  136.     lastEventTime_->seconds_ = tmv.tv_sec;
  137.     lastEventTime_->useconds_ = tmv.tv_usec;
  138.     // Send data probe
  139.     DiffPrint(DEBUG_ALWAYS, "Sending Data %dn", last_seq_sent_);
  140.     retval = dr_->send(pubHandle_, &data_attr_);
  141.     // Update counter
  142.     last_seq_sent_++;
  143.     counterAttr_->setVal(last_seq_sent_);
  144.   }
  145. #else
  146.   send();
  147. #endif // NS_DIFFUSION
  148. }
  149. #ifdef NS_DIFFUSION
  150. PushSenderApp::PushSenderApp() : sdt_(this)
  151. #else
  152. PushSenderApp::PushSenderApp(int argc, char **argv)
  153. #endif // NS_DIFFUSION
  154. {
  155.   last_seq_sent_ = 0;
  156. #ifndef NS_DIFFUSION
  157.   parseCommandLine(argc, argv);
  158.   dr_ = NR::createNR(diffusion_port_);
  159. #endif // NS_DIFFUSION
  160. }
  161. #ifndef NS_DIFFUSION
  162. int main(int argc, char **argv)
  163. {
  164.   PushSenderApp *app;
  165.   app = new PushSenderApp(argc, argv);
  166.   app->run();
  167.   return 0;
  168. }
  169. #endif // NS_DIFFUSION