blob: 73a0699d0d529edf6aea7ff7d97e53101881f530 [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 Afanasyev83531a42013-01-19 16:21:54 -080060 // Events called from Fetcher
61 void
Alexander Afanasyevd6c2a902013-01-19 21:24:30 -080062 DidNoDataTimeout (Fetcher &fetcher);
Alexander Afanasyev83531a42013-01-19 16:21:54 -080063
64 void
Alexander Afanasyevd6c2a902013-01-19 21:24:30 -080065 DidFetchComplete (Fetcher &fetcher);
Alexander Afanasyev83531a42013-01-19 16:21:54 -080066
67private:
Alexander Afanasyevd6c2a902013-01-19 21:24:30 -080068 void
69 ScheduleFetches ();
70
71private:
72
Alexander Afanasyev49a18522013-01-18 17:49:04 -080073private:
74 Ccnx::CcnxWrapperPtr m_ccnx;
75 SyncLogPtr m_sync; // to access forwarding hints
Alexander Afanasyeve41e7d22013-01-19 15:13:47 -080076 SchedulerPtr m_scheduler;
Alexander Afanasyev83531a42013-01-19 16:21:54 -080077
78 uint32_t m_maxParallelFetches;
79 uint32_t m_currentParallelFetches;
80 boost::mutex m_parellelFetchMutex;
81
82 // optimized list structure for fetch queue
83 typedef boost::intrusive::member_hook< Fetcher,
84 boost::intrusive::list_member_hook<>, &Fetcher::m_managerListHook> MemberOption;
85 typedef boost::intrusive::list<Fetcher, MemberOption> FetchList;
Alexander Afanasyevd6c2a902013-01-19 21:24:30 -080086
Alexander Afanasyev83531a42013-01-19 16:21:54 -080087 FetchList m_fetchList;
Alexander Afanasyev49a18522013-01-18 17:49:04 -080088};
89
Alexander Afanasyev83531a42013-01-19 16:21:54 -080090Ccnx::CcnxWrapperPtr
91FetchManager::GetCcnx ()
92{
93 return m_ccnx;
94}
95
96SchedulerPtr
97FetchManager::GetScheduler ()
98{
99 return m_scheduler;
100}
Alexander Afanasyev49a18522013-01-18 17:49:04 -0800101
Alexander Afanasyevd6c2a902013-01-19 21:24:30 -0800102typedef boost::error_info<struct tag_errmsg, std::string> errmsg_info_str;
Alexander Afanasyev49a18522013-01-18 17:49:04 -0800103namespace Error {
Alexander Afanasyev83531a42013-01-19 16:21:54 -0800104struct FetchManager : virtual boost::exception, virtual std::exception { };
Alexander Afanasyev49a18522013-01-18 17:49:04 -0800105}
106
107typedef boost::shared_ptr<FetchManager> FetchManagerPtr;
108
109
110#endif // FETCHER_H