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> |
| 27 | #include <string> |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 28 | #include <list> |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 29 | #include <stdint.h> |
| 30 | #include "scheduler.h" |
| 31 | |
| 32 | #include "ccnx-wrapper.h" |
| 33 | #include "ccnx-tunnel.h" |
| 34 | #include "sync-log.h" |
| 35 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 36 | #include "fetcher.h" |
| 37 | |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 38 | class FetchManager |
| 39 | { |
| 40 | enum |
| 41 | { |
| 42 | PRIORITY_NORMAL, |
| 43 | PRIORITY_HIGH |
| 44 | }; |
| 45 | |
| 46 | public: |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 47 | FetchManager (Ccnx::CcnxWrapperPtr ccnx, SyncLogPtr sync, uint32_t parallelFetches = 3); |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 48 | virtual ~FetchManager (); |
| 49 | |
| 50 | void |
Alexander Afanasyev | e41e7d2 | 2013-01-19 15:13:47 -0800 | [diff] [blame] | 51 | Enqueue (const Ccnx::Name &deviceName, |
| 52 | uint32_t minSeqNo, uint32_t maxSeqNo, int priority=PRIORITY_NORMAL); |
| 53 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 54 | inline Ccnx::CcnxWrapperPtr |
Alexander Afanasyev | e41e7d2 | 2013-01-19 15:13:47 -0800 | [diff] [blame] | 55 | GetCcnx (); |
| 56 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 57 | inline SchedulerPtr |
Alexander Afanasyev | e41e7d2 | 2013-01-19 15:13:47 -0800 | [diff] [blame] | 58 | GetScheduler (); |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 59 | |
Alexander Afanasyev | 21a166e | 2013-01-20 16:04:41 -0800 | [diff] [blame^] | 60 | // Fetch Events |
| 61 | void |
| 62 | DidDataSegmentFetched (Fetcher &fetcher, uint32_t seqno, const Ccnx::Name &basename, |
| 63 | const Ccnx::Name &name, const Ccnx::Bytes &data); |
| 64 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 65 | void |
Alexander Afanasyev | d6c2a90 | 2013-01-19 21:24:30 -0800 | [diff] [blame] | 66 | DidNoDataTimeout (Fetcher &fetcher); |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 67 | |
| 68 | void |
Alexander Afanasyev | d6c2a90 | 2013-01-19 21:24:30 -0800 | [diff] [blame] | 69 | DidFetchComplete (Fetcher &fetcher); |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 70 | |
| 71 | private: |
Alexander Afanasyev | d6c2a90 | 2013-01-19 21:24:30 -0800 | [diff] [blame] | 72 | void |
| 73 | ScheduleFetches (); |
| 74 | |
| 75 | private: |
| 76 | |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 77 | private: |
| 78 | Ccnx::CcnxWrapperPtr m_ccnx; |
| 79 | SyncLogPtr m_sync; // to access forwarding hints |
Alexander Afanasyev | e41e7d2 | 2013-01-19 15:13:47 -0800 | [diff] [blame] | 80 | SchedulerPtr m_scheduler; |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 81 | |
| 82 | uint32_t m_maxParallelFetches; |
| 83 | uint32_t m_currentParallelFetches; |
| 84 | boost::mutex m_parellelFetchMutex; |
| 85 | |
| 86 | // optimized list structure for fetch queue |
| 87 | typedef boost::intrusive::member_hook< Fetcher, |
| 88 | boost::intrusive::list_member_hook<>, &Fetcher::m_managerListHook> MemberOption; |
| 89 | typedef boost::intrusive::list<Fetcher, MemberOption> FetchList; |
Alexander Afanasyev | d6c2a90 | 2013-01-19 21:24:30 -0800 | [diff] [blame] | 90 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 91 | FetchList m_fetchList; |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 92 | }; |
| 93 | |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 94 | Ccnx::CcnxWrapperPtr |
| 95 | FetchManager::GetCcnx () |
| 96 | { |
| 97 | return m_ccnx; |
| 98 | } |
| 99 | |
| 100 | SchedulerPtr |
| 101 | FetchManager::GetScheduler () |
| 102 | { |
| 103 | return m_scheduler; |
| 104 | } |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 105 | |
Alexander Afanasyev | d6c2a90 | 2013-01-19 21:24:30 -0800 | [diff] [blame] | 106 | typedef boost::error_info<struct tag_errmsg, std::string> errmsg_info_str; |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 107 | namespace Error { |
Alexander Afanasyev | 83531a4 | 2013-01-19 16:21:54 -0800 | [diff] [blame] | 108 | struct FetchManager : virtual boost::exception, virtual std::exception { }; |
Alexander Afanasyev | 49a1852 | 2013-01-18 17:49:04 -0800 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | typedef boost::shared_ptr<FetchManager> FetchManagerPtr; |
| 112 | |
| 113 | |
| 114 | #endif // FETCHER_H |