Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 1 | /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2012-2013 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 | |
| 22 | #ifndef FETCH_MANAGER_H |
| 23 | #define FETCH_MANAGER_H |
| 24 | |
| 25 | #include <boost/exception/all.hpp> |
| 26 | #include <boost/shared_ptr.hpp> |
Zhenkai Zhu | 3d1beca | 2013-01-23 14:55:32 -0800 | [diff] [blame] | 27 | #include <boost/function.hpp> |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 28 | #include <string> |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 29 | #include <list> |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 30 | #include <stdint.h> |
| 31 | #include "scheduler.h" |
Zhenkai Zhu | ab9215c | 2013-01-28 23:42:28 -0800 | [diff] [blame] | 32 | #include "executor.h" |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 33 | #include "ccnx-wrapper.h" |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 34 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 35 | #include "fetcher.h" |
| 36 | |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 37 | class FetchManager |
| 38 | { |
Alexander Afanasyev | f9978f8 | 2013-01-23 16:30:31 -0800 | [diff] [blame] | 39 | public: |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 40 | enum |
| 41 | { |
| 42 | PRIORITY_NORMAL, |
| 43 | PRIORITY_HIGH |
| 44 | }; |
| 45 | |
Zhenkai Zhu | 3d1beca | 2013-01-23 14:55:32 -0800 | [diff] [blame] | 46 | typedef boost::function<Ccnx::Name(const Ccnx::Name &)> Mapping; |
| 47 | typedef boost::function<void(Ccnx::Name &deviceName, Ccnx::Name &baseName, uint64_t seq, Ccnx::PcoPtr pco)> SegmentCallback; |
| 48 | typedef boost::function<void(Ccnx::Name &deviceName, Ccnx::Name &baseName)> FinishCallback; |
Zhenkai Zhu | a014738 | 2013-01-29 15:57:27 -0800 | [diff] [blame^] | 49 | FetchManager (Ccnx::CcnxWrapperPtr ccnx |
| 50 | , const Mapping &mapping |
| 51 | , uint32_t parallelFetches = 3 |
| 52 | , const SegmentCallback &defaultSegmentCallback = SegmentCallback() |
| 53 | , const FinishCallback &defaultFinishCallback = FinishCallback() |
| 54 | ); |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 55 | virtual ~FetchManager (); |
| 56 | |
| 57 | void |
Zhenkai Zhu | 3d1beca | 2013-01-23 14:55:32 -0800 | [diff] [blame] | 58 | Enqueue (const Ccnx::Name &deviceName, const Ccnx::Name &baseName, |
| 59 | const SegmentCallback &segmentCallback, const FinishCallback &finishCallback, |
| 60 | uint64_t minSeqNo, uint64_t maxSeqNo, int priority=PRIORITY_NORMAL); |
Alexander Afanasyev | e41e7d2 | 2013-01-19 15:13:47 -0800 | [diff] [blame] | 61 | |
Zhenkai Zhu | a014738 | 2013-01-29 15:57:27 -0800 | [diff] [blame^] | 62 | // Enqueue using default callbacks |
| 63 | void |
| 64 | Enqueue (const Ccnx::Name &deviceName, const Ccnx::Name &baseName, |
| 65 | uint64_t minSeqNo, uint64_t maxSeqNo, int priority=PRIORITY_NORMAL); |
| 66 | |
Zhenkai Zhu | 3d1beca | 2013-01-23 14:55:32 -0800 | [diff] [blame] | 67 | // only for Fetcher |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 68 | inline Ccnx::CcnxWrapperPtr |
Alexander Afanasyev | e41e7d2 | 2013-01-19 15:13:47 -0800 | [diff] [blame] | 69 | GetCcnx (); |
| 70 | |
Zhenkai Zhu | 3d1beca | 2013-01-23 14:55:32 -0800 | [diff] [blame] | 71 | private: |
Alexander Afanasyev | 21a166e | 2013-01-20 16:04:41 -0800 | [diff] [blame] | 72 | // Fetch Events |
| 73 | void |
Zhenkai Zhu | 3d1beca | 2013-01-23 14:55:32 -0800 | [diff] [blame] | 74 | DidDataSegmentFetched (Fetcher &fetcher, uint64_t seqno, const Ccnx::Name &basename, |
Alexander Afanasyev | f278db3 | 2013-01-21 14:41:01 -0800 | [diff] [blame] | 75 | const Ccnx::Name &name, Ccnx::PcoPtr data); |
Alexander Afanasyev | 21a166e | 2013-01-20 16:04:41 -0800 | [diff] [blame] | 76 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 77 | void |
Alexander Afanasyev | d6c2a90 | 2013-01-19 21:24:30 -0800 | [diff] [blame] | 78 | DidNoDataTimeout (Fetcher &fetcher); |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 79 | |
| 80 | void |
Alexander Afanasyev | d6c2a90 | 2013-01-19 21:24:30 -0800 | [diff] [blame] | 81 | DidFetchComplete (Fetcher &fetcher); |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 82 | |
Alexander Afanasyev | d6c2a90 | 2013-01-19 21:24:30 -0800 | [diff] [blame] | 83 | void |
| 84 | ScheduleFetches (); |
| 85 | |
| 86 | private: |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 87 | Ccnx::CcnxWrapperPtr m_ccnx; |
Zhenkai Zhu | 3d1beca | 2013-01-23 14:55:32 -0800 | [diff] [blame] | 88 | Mapping m_mapping; |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 89 | |
Alexander Afanasyev | f9978f8 | 2013-01-23 16:30:31 -0800 | [diff] [blame] | 90 | uint32_t m_maxParallelFetches; |
| 91 | uint32_t m_currentParallelFetches; |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 92 | boost::mutex m_parellelFetchMutex; |
| 93 | |
| 94 | // optimized list structure for fetch queue |
| 95 | typedef boost::intrusive::member_hook< Fetcher, |
| 96 | boost::intrusive::list_member_hook<>, &Fetcher::m_managerListHook> MemberOption; |
| 97 | typedef boost::intrusive::list<Fetcher, MemberOption> FetchList; |
Alexander Afanasyev | d6c2a90 | 2013-01-19 21:24:30 -0800 | [diff] [blame] | 98 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 99 | FetchList m_fetchList; |
Alexander Afanasyev | 548d38d | 2013-01-26 16:36:06 -0800 | [diff] [blame] | 100 | SchedulerPtr m_scheduler; |
Zhenkai Zhu | ab9215c | 2013-01-28 23:42:28 -0800 | [diff] [blame] | 101 | ExecutorPtr m_executor; |
Alexander Afanasyev | 548d38d | 2013-01-26 16:36:06 -0800 | [diff] [blame] | 102 | TaskPtr m_scheduleFetchesTask; |
Zhenkai Zhu | a014738 | 2013-01-29 15:57:27 -0800 | [diff] [blame^] | 103 | SegmentCallback m_defaultSegmentCallback; |
| 104 | FinishCallback m_defaultFinishCallback; |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 105 | }; |
| 106 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 107 | Ccnx::CcnxWrapperPtr |
| 108 | FetchManager::GetCcnx () |
| 109 | { |
| 110 | return m_ccnx; |
| 111 | } |
| 112 | |
Alexander Afanasyev | d6c2a90 | 2013-01-19 21:24:30 -0800 | [diff] [blame] | 113 | typedef boost::error_info<struct tag_errmsg, std::string> errmsg_info_str; |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 114 | namespace Error { |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 115 | struct FetchManager : virtual boost::exception, virtual std::exception { }; |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | typedef boost::shared_ptr<FetchManager> FetchManagerPtr; |
| 119 | |
| 120 | |
| 121 | #endif // FETCHER_H |