blob: 496d0fd413d200069a8fb55241b558c54f6b148d [file] [log] [blame]
Alexander Afanasyev49a18522013-01-18 17:49:04 -08001/* -*- 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 Afanasyev83531a42013-01-19 16:21:54 -080028#include <list>
Alexander Afanasyev49a18522013-01-18 17:49:04 -080029#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 Afanasyev83531a42013-01-19 16:21:54 -080036#include "fetcher.h"
37
Alexander Afanasyev49a18522013-01-18 17:49:04 -080038class FetchManager
39{
40 enum
41 {
42 PRIORITY_NORMAL,
43 PRIORITY_HIGH
44 };
45
46public:
Alexander Afanasyev83531a42013-01-19 16:21:54 -080047 FetchManager (Ccnx::CcnxWrapperPtr ccnx, SyncLogPtr sync, uint32_t parallelFetches = 3);
Alexander Afanasyev49a18522013-01-18 17:49:04 -080048 virtual ~FetchManager ();
49
50 void
Alexander Afanasyeve41e7d22013-01-19 15:13:47 -080051 Enqueue (const Ccnx::Name &deviceName,
52 uint32_t minSeqNo, uint32_t maxSeqNo, int priority=PRIORITY_NORMAL);
53
Alexander Afanasyev83531a42013-01-19 16:21:54 -080054 inline Ccnx::CcnxWrapperPtr
Alexander Afanasyeve41e7d22013-01-19 15:13:47 -080055 GetCcnx ();
56
Alexander Afanasyev83531a42013-01-19 16:21:54 -080057 inline SchedulerPtr
Alexander Afanasyeve41e7d22013-01-19 15:13:47 -080058 GetScheduler ();
Alexander Afanasyev83531a42013-01-19 16:21:54 -080059
Alexander Afanasyev21a166e2013-01-20 16:04:41 -080060 // 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 Afanasyev83531a42013-01-19 16:21:54 -080065 void
Alexander Afanasyevd6c2a902013-01-19 21:24:30 -080066 DidNoDataTimeout (Fetcher &fetcher);
Alexander Afanasyev83531a42013-01-19 16:21:54 -080067
68 void
Alexander Afanasyevd6c2a902013-01-19 21:24:30 -080069 DidFetchComplete (Fetcher &fetcher);
Alexander Afanasyev83531a42013-01-19 16:21:54 -080070
71private:
Alexander Afanasyevd6c2a902013-01-19 21:24:30 -080072 void
73 ScheduleFetches ();
74
75private:
76
Alexander Afanasyev49a18522013-01-18 17:49:04 -080077private:
78 Ccnx::CcnxWrapperPtr m_ccnx;
79 SyncLogPtr m_sync; // to access forwarding hints
Alexander Afanasyeve41e7d22013-01-19 15:13:47 -080080 SchedulerPtr m_scheduler;
Alexander Afanasyev83531a42013-01-19 16:21:54 -080081
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 Afanasyevd6c2a902013-01-19 21:24:30 -080090
Alexander Afanasyev83531a42013-01-19 16:21:54 -080091 FetchList m_fetchList;
Alexander Afanasyev49a18522013-01-18 17:49:04 -080092};
93
Alexander Afanasyev83531a42013-01-19 16:21:54 -080094Ccnx::CcnxWrapperPtr
95FetchManager::GetCcnx ()
96{
97 return m_ccnx;
98}
99
100SchedulerPtr
101FetchManager::GetScheduler ()
102{
103 return m_scheduler;
104}
Alexander Afanasyev49a18522013-01-18 17:49:04 -0800105
Alexander Afanasyevd6c2a902013-01-19 21:24:30 -0800106typedef boost::error_info<struct tag_errmsg, std::string> errmsg_info_str;
Alexander Afanasyev49a18522013-01-18 17:49:04 -0800107namespace Error {
Alexander Afanasyev83531a42013-01-19 16:21:54 -0800108struct FetchManager : virtual boost::exception, virtual std::exception { };
Alexander Afanasyev49a18522013-01-18 17:49:04 -0800109}
110
111typedef boost::shared_ptr<FetchManager> FetchManagerPtr;
112
113
114#endif // FETCHER_H