schneiderklaus | d8197df | 2019-03-16 11:31:40 -0700 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright (c) 2016-2019, Regents of the University of California, |
| 3 | * Colorado State University, |
| 4 | * University Pierre & Marie Curie, Sorbonne University. |
Weiwei Liu | 245d791 | 2016-07-28 00:04:25 -0700 | [diff] [blame] | 5 | * |
| 6 | * This file is part of ndn-tools (Named Data Networking Essential Tools). |
| 7 | * See AUTHORS.md for complete list of ndn-tools authors and contributors. |
| 8 | * |
| 9 | * ndn-tools is free software: you can redistribute it and/or modify it under the terms |
| 10 | * of the GNU General Public License as published by the Free Software Foundation, |
| 11 | * either version 3 of the License, or (at your option) any later version. |
| 12 | * |
| 13 | * ndn-tools is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 14 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 15 | * PURPOSE. See the GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License along with |
| 18 | * ndn-tools, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 19 | * |
| 20 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| 21 | * |
| 22 | * @author Weiwei Liu |
| 23 | */ |
| 24 | |
schneiderklaus | d8197df | 2019-03-16 11:31:40 -0700 | [diff] [blame^] | 25 | #include "statistics-collector.hpp" |
Weiwei Liu | 245d791 | 2016-07-28 00:04:25 -0700 | [diff] [blame] | 26 | |
| 27 | namespace ndn { |
| 28 | namespace chunks { |
Weiwei Liu | 245d791 | 2016-07-28 00:04:25 -0700 | [diff] [blame] | 29 | |
schneiderklaus | d8197df | 2019-03-16 11:31:40 -0700 | [diff] [blame^] | 30 | StatisticsCollector::StatisticsCollector(PipelineInterestsAdaptive& pipeline, RttEstimator& rttEstimator, |
Weiwei Liu | 245d791 | 2016-07-28 00:04:25 -0700 | [diff] [blame] | 31 | std::ostream& osCwnd, std::ostream& osRtt) |
| 32 | : m_osCwnd(osCwnd) |
| 33 | , m_osRtt(osRtt) |
| 34 | { |
| 35 | m_osCwnd << "time\tcwndsize\n"; |
| 36 | m_osRtt << "segment\trtt\trttvar\tsrtt\trto\n"; |
| 37 | pipeline.afterCwndChange.connect( |
| 38 | [this] (Milliseconds timeElapsed, double cwnd) { |
| 39 | m_osCwnd << timeElapsed.count() / 1000 << '\t' << cwnd << '\n'; |
| 40 | }); |
| 41 | rttEstimator.afterRttMeasurement.connect( |
| 42 | [this] (const RttRtoSample& rttSample) { |
| 43 | m_osRtt << rttSample.segNo << '\t' |
| 44 | << rttSample.rtt.count() << '\t' |
| 45 | << rttSample.rttVar.count() << '\t' |
| 46 | << rttSample.sRtt.count() << '\t' |
| 47 | << rttSample.rto.count() << '\n'; |
| 48 | }); |
| 49 | } |
| 50 | |
Weiwei Liu | 245d791 | 2016-07-28 00:04:25 -0700 | [diff] [blame] | 51 | } // namespace chunks |
| 52 | } // namespace ndn |