Alexander Afanasyev | 8811b35 | 2013-01-02 12:51:15 -0800 | [diff] [blame] | 1 | /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2012 University of California, Los Angeles |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation; |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | * |
| 18 | * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 19 | * Zhenkai Zhu <zhenkai@cs.ucla.edu> |
| 20 | */ |
| 21 | |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 22 | #include "fetch-manager.h" |
| 23 | #include <boost/make_shared.hpp> |
| 24 | #include <boost/ref.hpp> |
| 25 | #include <boost/throw_exception.hpp> |
Alexander Afanasyev | 548d38d | 2013-01-26 16:36:06 -0800 | [diff] [blame] | 26 | |
| 27 | #include "simple-interval-generator.h" |
Alexander Afanasyev | fc72036 | 2013-01-24 21:49:48 -0800 | [diff] [blame] | 28 | #include "logging.h" |
| 29 | |
Alexander Afanasyev | ff8d9dc | 2013-01-26 00:45:08 -0800 | [diff] [blame] | 30 | INIT_LOGGER ("FetchManager"); |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 31 | |
| 32 | using namespace boost; |
| 33 | using namespace std; |
| 34 | using namespace Ccnx; |
| 35 | |
Alexander Afanasyev | 548d38d | 2013-01-26 16:36:06 -0800 | [diff] [blame] | 36 | static const Name BROADCAST_DOMAIN = Name ("/ndn/broadcast/chronoshare"); |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 37 | //The disposer object function |
| 38 | struct fetcher_disposer { void operator() (Fetcher *delete_this) { delete delete_this; } }; |
| 39 | |
Alexander Afanasyev | 548d38d | 2013-01-26 16:36:06 -0800 | [diff] [blame] | 40 | static const string SCHEDULE_FETCHES_TAG = "ScheduleFetches"; |
| 41 | |
Alexander Afanasyev | f9978f8 | 2013-01-23 16:30:31 -0800 | [diff] [blame] | 42 | FetchManager::FetchManager (CcnxWrapperPtr ccnx, const Mapping &mapping, uint32_t parallelFetches/* = 3*/) |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 43 | : m_ccnx (ccnx) |
Zhenkai Zhu | 3d1beca | 2013-01-23 14:55:32 -0800 | [diff] [blame] | 44 | , m_mapping (mapping) |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 45 | , m_maxParallelFetches (parallelFetches) |
| 46 | , m_currentParallelFetches (0) |
Alexander Afanasyev | 548d38d | 2013-01-26 16:36:06 -0800 | [diff] [blame] | 47 | , m_scheduler (new Scheduler) |
Alexander Afanasyev | 8811b35 | 2013-01-02 12:51:15 -0800 | [diff] [blame] | 48 | { |
Alexander Afanasyev | 548d38d | 2013-01-26 16:36:06 -0800 | [diff] [blame] | 49 | m_scheduler->start (); |
| 50 | |
| 51 | m_scheduleFetchesTask = Scheduler::schedulePeriodicTask (m_scheduler, |
| 52 | make_shared<SimpleIntervalGenerator> (1), |
| 53 | bind (&FetchManager::ScheduleFetches, this), SCHEDULE_FETCHES_TAG); |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 54 | } |
Alexander Afanasyev | a199f97 | 2013-01-02 19:37:26 -0800 | [diff] [blame] | 55 | |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 56 | FetchManager::~FetchManager () |
| 57 | { |
Alexander Afanasyev | 548d38d | 2013-01-26 16:36:06 -0800 | [diff] [blame] | 58 | m_scheduler->shutdown (); |
| 59 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 60 | m_fetchList.clear_and_dispose (fetcher_disposer ()); |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 61 | } |
Alexander Afanasyev | 8811b35 | 2013-01-02 12:51:15 -0800 | [diff] [blame] | 62 | |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 63 | void |
Zhenkai Zhu | 3d1beca | 2013-01-23 14:55:32 -0800 | [diff] [blame] | 64 | FetchManager::Enqueue (const Ccnx::Name &deviceName, const Ccnx::Name &baseName, |
| 65 | const SegmentCallback &segmentCallback, const FinishCallback &finishCallback, |
| 66 | uint64_t minSeqNo, uint64_t maxSeqNo, int priority/*PRIORITY_NORMAL*/) |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 67 | { |
Zhenkai Zhu | 454bae2 | 2013-01-24 19:27:54 -0800 | [diff] [blame] | 68 | // Assumption for the following code is minSeqNo <= maxSeqNo |
| 69 | if (minSeqNo > maxSeqNo) |
| 70 | { |
| 71 | return; |
| 72 | } |
| 73 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 74 | // we may need to guarantee that LookupLocator will gives an answer and not throw exception... |
Alexander Afanasyev | 21a166e | 2013-01-20 16:04:41 -0800 | [diff] [blame] | 75 | Name forwardingHint; |
Zhenkai Zhu | 3d1beca | 2013-01-23 14:55:32 -0800 | [diff] [blame] | 76 | forwardingHint = m_mapping (deviceName); |
Alexander Afanasyev | 21a166e | 2013-01-20 16:04:41 -0800 | [diff] [blame] | 77 | |
| 78 | Fetcher &fetcher = *(new Fetcher (m_ccnx, |
Zhenkai Zhu | 3d1beca | 2013-01-23 14:55:32 -0800 | [diff] [blame] | 79 | segmentCallback, |
| 80 | finishCallback, |
Alexander Afanasyev | 21a166e | 2013-01-20 16:04:41 -0800 | [diff] [blame] | 81 | bind (&FetchManager::DidFetchComplete, this, _1), |
| 82 | bind (&FetchManager::DidNoDataTimeout, this, _1), |
Alexander Afanasyev | 28ca3ed | 2013-01-24 23:17:15 -0800 | [diff] [blame] | 83 | deviceName, baseName, minSeqNo, maxSeqNo, |
| 84 | boost::posix_time::seconds (30), |
| 85 | forwardingHint)); |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 86 | |
| 87 | switch (priority) |
| 88 | { |
| 89 | case PRIORITY_HIGH: |
| 90 | m_fetchList.push_front (fetcher); |
| 91 | break; |
| 92 | |
| 93 | case PRIORITY_NORMAL: |
| 94 | default: |
| 95 | m_fetchList.push_back (fetcher); |
| 96 | break; |
| 97 | } |
| 98 | |
Alexander Afanasyev | f8b22bf | 2013-01-26 17:28:11 -0800 | [diff] [blame^] | 99 | _LOG_DEBUG ("Reschedule fetcher task"); |
Alexander Afanasyev | 548d38d | 2013-01-26 16:36:06 -0800 | [diff] [blame] | 100 | m_scheduler->rescheduleTaskAt (m_scheduleFetchesTask, 0); |
| 101 | // ScheduleFetches (); // will start a fetch if m_currentParallelFetches is less than max, otherwise does nothing |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 102 | } |
Alexander Afanasyev | e41e7d2 | 2013-01-19 15:13:47 -0800 | [diff] [blame] | 103 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 104 | void |
| 105 | FetchManager::ScheduleFetches () |
Alexander Afanasyev | e41e7d2 | 2013-01-19 15:13:47 -0800 | [diff] [blame] | 106 | { |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 107 | unique_lock<mutex> lock (m_parellelFetchMutex); |
| 108 | |
Alexander Afanasyev | 548d38d | 2013-01-26 16:36:06 -0800 | [diff] [blame] | 109 | boost::posix_time::ptime currentTime = date_time::second_clock<boost::posix_time::ptime>::universal_time (); |
| 110 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 111 | for (FetchList::iterator item = m_fetchList.begin (); |
| 112 | m_currentParallelFetches < m_maxParallelFetches && item != m_fetchList.end (); |
| 113 | item++) |
| 114 | { |
Alexander Afanasyev | 21a166e | 2013-01-20 16:04:41 -0800 | [diff] [blame] | 115 | if (item->IsActive ()) |
Alexander Afanasyev | f8b22bf | 2013-01-26 17:28:11 -0800 | [diff] [blame^] | 116 | { |
| 117 | _LOG_DEBUG ("Item is active"); |
| 118 | continue; |
| 119 | } |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 120 | |
Alexander Afanasyev | 548d38d | 2013-01-26 16:36:06 -0800 | [diff] [blame] | 121 | if (currentTime < item->GetNextScheduledRetry ()) |
Alexander Afanasyev | f8b22bf | 2013-01-26 17:28:11 -0800 | [diff] [blame^] | 122 | { |
| 123 | _LOG_DEBUG ("Item is delayed"); |
| 124 | continue; |
| 125 | } |
Alexander Afanasyev | 548d38d | 2013-01-26 16:36:06 -0800 | [diff] [blame] | 126 | |
Alexander Afanasyev | ff8d9dc | 2013-01-26 00:45:08 -0800 | [diff] [blame] | 127 | _LOG_DEBUG ("Start fetching of " << item->GetName ()); |
| 128 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 129 | m_currentParallelFetches ++; |
| 130 | item->RestartPipeline (); |
| 131 | } |
Alexander Afanasyev | e41e7d2 | 2013-01-19 15:13:47 -0800 | [diff] [blame] | 132 | } |
| 133 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 134 | void |
Alexander Afanasyev | d6c2a90 | 2013-01-19 21:24:30 -0800 | [diff] [blame] | 135 | FetchManager::DidNoDataTimeout (Fetcher &fetcher) |
Alexander Afanasyev | e41e7d2 | 2013-01-19 15:13:47 -0800 | [diff] [blame] | 136 | { |
Alexander Afanasyev | ff8d9dc | 2013-01-26 00:45:08 -0800 | [diff] [blame] | 137 | _LOG_DEBUG ("No data timeout for " << fetcher.GetName () << " with forwarding hint: " << fetcher.GetForwardingHint ()); |
| 138 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 139 | { |
| 140 | unique_lock<mutex> lock (m_parellelFetchMutex); |
| 141 | m_currentParallelFetches --; |
| 142 | // no need to do anything with the m_fetchList |
| 143 | } |
Alexander Afanasyev | d6c2a90 | 2013-01-19 21:24:30 -0800 | [diff] [blame] | 144 | |
Alexander Afanasyev | 548d38d | 2013-01-26 16:36:06 -0800 | [diff] [blame] | 145 | if (fetcher.GetForwardingHint () == BROADCAST_DOMAIN) |
| 146 | { |
| 147 | // try again directly (hopefully with different forwarding hint |
| 148 | |
| 149 | /// @todo Handle potential exception |
| 150 | Name forwardingHint; |
| 151 | forwardingHint = m_mapping (fetcher.GetDeviceName ()); |
| 152 | fetcher.SetForwardingHint (forwardingHint); |
| 153 | } |
| 154 | else |
| 155 | { |
| 156 | fetcher.SetForwardingHint (BROADCAST_DOMAIN); |
| 157 | } |
| 158 | |
| 159 | double delay = fetcher.GetRetryPause (); |
| 160 | if (delay < 1) // first time |
| 161 | { |
| 162 | delay = 1; |
| 163 | } |
| 164 | else |
| 165 | { |
| 166 | delay = std::min (2*delay, 300.0); // 5 minutes max |
| 167 | } |
| 168 | |
| 169 | fetcher.SetRetryPause (delay); |
| 170 | fetcher.SetNextScheduledRetry (date_time::second_clock<boost::posix_time::ptime>::universal_time () + posix_time::seconds (delay)); |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 171 | } |
| 172 | |
| 173 | void |
Alexander Afanasyev | d6c2a90 | 2013-01-19 21:24:30 -0800 | [diff] [blame] | 174 | FetchManager::DidFetchComplete (Fetcher &fetcher) |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 175 | { |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 176 | { |
| 177 | unique_lock<mutex> lock (m_parellelFetchMutex); |
| 178 | m_currentParallelFetches --; |
| 179 | m_fetchList.erase_and_dispose (FetchList::s_iterator_to (fetcher), fetcher_disposer ()); |
| 180 | } |
Alexander Afanasyev | d6c2a90 | 2013-01-19 21:24:30 -0800 | [diff] [blame] | 181 | |
Alexander Afanasyev | e41e7d2 | 2013-01-19 15:13:47 -0800 | [diff] [blame] | 182 | } |