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

通讯编程

开发平台:

Visual C++

  1. /* Copyright (c) 2002 Tom Kelly, University of Cambridge
  2.  * All rights reserved.
  3.  * 
  4.  * Redistribution and use in source and binary forms, with or without
  5.  * modification, are permitted provided that the following conditions
  6.  * are met:
  7.  * 1. Redistributions of source code must retain the above copyright
  8.  *    notice, this list of conditions and the following disclaimer.
  9.  * 2. Redistributions in binary form must reproduce the above copyright
  10.  *    notice, this list of conditions and the following disclaimer in the
  11.  *    documentation and/or other materials provided with the distribution.
  12.  * 3. All advertising materials mentioning features or use of this software
  13.  *    must display the following acknowledgement:
  14.  *  This product includes software developed by the MASH Research
  15.  *  Group at the University of California Berkeley.
  16.  * 4. Neither the name of the University nor of the Research Group may be
  17.  *    used to endorse or promote products derived from this software without
  18.  *    specific prior written permission.
  19.  * 
  20.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  21.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  23.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  24.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  25.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  26.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  27.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  28.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  29.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  30.  * SUCH DAMAGE.
  31.  *
  32.  */
  33. #include <stdlib.h>
  34. #include <stdio.h>
  35. #include "scoreboard-rq.h"
  36. // Implementation of a ScoreBoard shim for 
  37. // the FullTCP reassembly queue code
  38. int ScoreBoardRQ::IsEmpty(){
  39. printf("ScoreBoardRQ::IsEmpty not implementedn");
  40. exit(1);
  41. return 0;
  42. }
  43. int ScoreBoardRQ::GetNextRetran(){
  44. int seq;
  45. int fcnt;
  46. int fbytes;
  47. if(h_seqno_ < sack_min) h_seqno_ = sack_min;
  48. seq = h_seqno_;
  49. if((seq = rq_.nexthole(seq, fcnt, fbytes)) > 0) {
  50. // adjust h_seqno, as we may have
  51. // been "jumped ahead" by learning
  52. // about a filled hole
  53. if(fcnt <= 0) return (-1); // no holes above
  54. //printf("%.4f ", Scheduler::instance().clock());
  55. //printf("GetNextRetran sack_min: %i h_seqno: %i seq: %in", sack_min, h_seqno_, seq);
  56. if(seq > h_seqno_)
  57. h_seqno_ = seq;
  58. return (seq);
  59. }
  60. return (-1);
  61. }
  62. int ScoreBoardRQ::UpdateScoreBoard(int last_ack_, hdr_tcp* tcph){
  63. int old_total = rq_.total();
  64. changed_ = 0;
  65. if(sack_min <= last_ack_){
  66. // beginning of retransmission queue is one beyond last_ack
  67. sack_min = last_ack_+1; 
  68. if(!rq_.empty()){
  69. rq_.cleartonxt();
  70. changed_ = 1;
  71. }
  72. }
  73. for(int i = 0 ; i < tcph->sa_length() ; i++){
  74. //printf("l: %i r: %in", tcph->sa_left(i), tcph->sa_right(i));
  75. rq_.add(tcph->sa_left(i), tcph->sa_right(i), 0); 
  76. }
  77. changed_ = changed_  || (old_total != rq_.total());
  78. return 0;
  79. //printf("UpdateScoreBoard dump changed_: %in", changed_);
  80. //printf("%.4f ", Scheduler::instance().clock());
  81. //rq_.dumplist();
  82. }
  83. /*
  84.  * GetNextUnacked returns sequence number of next unacked pkt,
  85.  * starting with seqno.
  86.  * Returns -1 if there is no unacked packet in that range.
  87.  */
  88. int ScoreBoardRQ::GetNextUnacked (int seqno)
  89. {
  90.       int nxtcnt; // not used
  91.       int nxtbytes; // not used
  92.       int unacked = rq_.nexthole(seqno, nxtcnt, nxtbytes);
  93.       return (unacked);
  94. }
  95. int ScoreBoardRQ::CheckSndNxt(hdr_tcp* h) {
  96. printf("ScoreBoardRQ::CheckSndNxt not implementedn");
  97. exit(1);
  98. return 0;
  99. }
  100. void ScoreBoardRQ::Dump() {
  101.   rq_.dumplist();
  102. }