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 | 548d38d | 2013-01-26 16:36:06 -0800 | [diff] [blame^] | 99 | m_scheduler->rescheduleTaskAt (m_scheduleFetchesTask, 0); |
| 100 | // 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] | 101 | } |
Alexander Afanasyev | e41e7d2 | 2013-01-19 15:13:47 -0800 | [diff] [blame] | 102 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 103 | void |
| 104 | FetchManager::ScheduleFetches () |
Alexander Afanasyev | e41e7d2 | 2013-01-19 15:13:47 -0800 | [diff] [blame] | 105 | { |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 106 | unique_lock<mutex> lock (m_parellelFetchMutex); |
| 107 | |
Alexander Afanasyev | 548d38d | 2013-01-26 16:36:06 -0800 | [diff] [blame^] | 108 | boost::posix_time::ptime currentTime = date_time::second_clock<boost::posix_time::ptime>::universal_time (); |
| 109 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 110 | for (FetchList::iterator item = m_fetchList.begin (); |
| 111 | m_currentParallelFetches < m_maxParallelFetches && item != m_fetchList.end (); |
| 112 | item++) |
| 113 | { |
Alexander Afanasyev | 21a166e | 2013-01-20 16:04:41 -0800 | [diff] [blame] | 114 | if (item->IsActive ()) |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 115 | continue; |
| 116 | |
Alexander Afanasyev | 548d38d | 2013-01-26 16:36:06 -0800 | [diff] [blame^] | 117 | if (currentTime < item->GetNextScheduledRetry ()) |
| 118 | continue; |
| 119 | |
Alexander Afanasyev | ff8d9dc | 2013-01-26 00:45:08 -0800 | [diff] [blame] | 120 | _LOG_DEBUG ("Start fetching of " << item->GetName ()); |
| 121 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 122 | m_currentParallelFetches ++; |
| 123 | item->RestartPipeline (); |
| 124 | } |
Alexander Afanasyev | e41e7d2 | 2013-01-19 15:13:47 -0800 | [diff] [blame] | 125 | } |
| 126 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 127 | void |
Alexander Afanasyev | d6c2a90 | 2013-01-19 21:24:30 -0800 | [diff] [blame] | 128 | FetchManager::DidNoDataTimeout (Fetcher &fetcher) |
Alexander Afanasyev | e41e7d2 | 2013-01-19 15:13:47 -0800 | [diff] [blame] | 129 | { |
Alexander Afanasyev | ff8d9dc | 2013-01-26 00:45:08 -0800 | [diff] [blame] | 130 | _LOG_DEBUG ("No data timeout for " << fetcher.GetName () << " with forwarding hint: " << fetcher.GetForwardingHint ()); |
| 131 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 132 | { |
| 133 | unique_lock<mutex> lock (m_parellelFetchMutex); |
| 134 | m_currentParallelFetches --; |
| 135 | // no need to do anything with the m_fetchList |
| 136 | } |
Alexander Afanasyev | d6c2a90 | 2013-01-19 21:24:30 -0800 | [diff] [blame] | 137 | |
Alexander Afanasyev | 548d38d | 2013-01-26 16:36:06 -0800 | [diff] [blame^] | 138 | if (fetcher.GetForwardingHint () == BROADCAST_DOMAIN) |
| 139 | { |
| 140 | // try again directly (hopefully with different forwarding hint |
| 141 | |
| 142 | /// @todo Handle potential exception |
| 143 | Name forwardingHint; |
| 144 | forwardingHint = m_mapping (fetcher.GetDeviceName ()); |
| 145 | fetcher.SetForwardingHint (forwardingHint); |
| 146 | } |
| 147 | else |
| 148 | { |
| 149 | fetcher.SetForwardingHint (BROADCAST_DOMAIN); |
| 150 | } |
| 151 | |
| 152 | double delay = fetcher.GetRetryPause (); |
| 153 | if (delay < 1) // first time |
| 154 | { |
| 155 | delay = 1; |
| 156 | } |
| 157 | else |
| 158 | { |
| 159 | delay = std::min (2*delay, 300.0); // 5 minutes max |
| 160 | } |
| 161 | |
| 162 | fetcher.SetRetryPause (delay); |
| 163 | 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] | 164 | } |
| 165 | |
| 166 | void |
Alexander Afanasyev | d6c2a90 | 2013-01-19 21:24:30 -0800 | [diff] [blame] | 167 | FetchManager::DidFetchComplete (Fetcher &fetcher) |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 168 | { |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 169 | { |
| 170 | unique_lock<mutex> lock (m_parellelFetchMutex); |
| 171 | m_currentParallelFetches --; |
| 172 | m_fetchList.erase_and_dispose (FetchList::s_iterator_to (fetcher), fetcher_disposer ()); |
| 173 | } |
Alexander Afanasyev | d6c2a90 | 2013-01-19 21:24:30 -0800 | [diff] [blame] | 174 | |
Alexander Afanasyev | e41e7d2 | 2013-01-19 15:13:47 -0800 | [diff] [blame] | 175 | } |