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

通讯编程

开发平台:

Visual C++

  1. /* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
  2. /*
  3.  * Copyright (c) 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. #include "packet.h"
  35. #include "bi-connector.h"
  36. static class BiConnectorClass : public TclClass {
  37. public:
  38. BiConnectorClass() : TclClass("BiConnector") {}
  39. TclObject* create(int, const char*const*) {
  40. return (new BiConnector);
  41. }
  42. } class_biconnector;
  43. BiConnector::BiConnector() : uptarget_(0), downtarget_(0), drop_(0)
  44. {}
  45. int BiConnector::command(int argc, const char*const* argv)
  46. {
  47. Tcl& tcl = Tcl::instance();
  48. /*XXX*/
  49. if (argc == 2) {
  50. if (strcmp(argv[1], "up-target") == 0) {
  51. if (uptarget_ != 0)
  52. tcl.result(uptarget_->name());
  53. return (TCL_OK);
  54. }
  55. if (strcmp(argv[1], "down-target") == 0) {
  56. if (downtarget_ != 0)
  57. tcl.result(downtarget_->name());
  58. return (TCL_OK);
  59. }
  60. if (strcmp(argv[1], "drop-target") == 0) {
  61. if (drop_ != 0)
  62. tcl.resultf("%s", drop_->name());
  63. return (TCL_OK);
  64. }
  65. if (strcmp(argv[1], "isDynamic") == 0) {
  66. return TCL_OK;
  67. }
  68. }
  69. else if (argc == 3) {
  70. TclObject *obj;
  71. if( (obj = TclObject::lookup(argv[2])) == 0) {
  72. fprintf(stderr, "%s lookup failedn", argv[1]);
  73. return TCL_ERROR;
  74. }
  75. if (strcmp(argv[1], "up-target") == 0) {
  76. if (*argv[2] == '0') {
  77. uptarget_ = 0;
  78. return (TCL_OK);
  79. }
  80. uptarget_ = (NsObject*) obj;
  81. if (uptarget_ == 0) {
  82. tcl.resultf("no such object %s", argv[2]);
  83. return (TCL_ERROR);
  84. }
  85. return (TCL_OK);
  86. }
  87. if (strcmp(argv[1], "down-target") == 0) {
  88. if (*argv[2] == '0') {
  89. downtarget_ = 0;
  90. return (TCL_OK);
  91. }
  92. downtarget_ = (NsObject*) obj;
  93. if (downtarget_ == 0) {
  94. tcl.resultf("no such object %s", argv[2]);
  95. return (TCL_ERROR);
  96. }
  97. return (TCL_OK);
  98. }
  99. if (strcmp(argv[1], "drop-target") == 0) {
  100. drop_ = (NsObject*) obj;
  101. if (drop_ == 0) {
  102. tcl.resultf("no object %s", argv[2]);
  103. return (TCL_ERROR);
  104. }
  105. return (TCL_OK);
  106. }
  107. }
  108. return (NsObject::command(argc, argv));
  109. }
  110. void BiConnector::recv(Packet* p, Handler* h)
  111. {
  112. hdr_cmn *ch = HDR_CMN(p);
  113. switch (ch->direction()) {
  114. case hdr_cmn::UP :
  115. sendUp(p, h);
  116. break;
  117. case hdr_cmn::DOWN :
  118. sendDown(p, h);
  119. break;
  120. default:
  121. printf("Error: Packet Direction not specified; Using default 'UP' directionnn");
  122. sendUp(p, h);
  123. }
  124. }
  125. void BiConnector::drop(Packet* p)
  126. {
  127. if (drop_ != 0)
  128. drop_->recv(p);
  129. else
  130. Packet::free(p);
  131. }
  132. void BiConnector::drop(Packet* p, const char *s)
  133. {
  134. if (drop_ != 0)
  135. drop_->recv(p, s);
  136. else
  137. Packet::free(p);
  138. }