blob: 8b80aa8ac671539bca0911596a2dbf2ec790f370 [file] [log] [blame]
Alexander Afanasyevd6c2a902013-01-19 21:24:30 -08001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 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: Zhenkai Zhu <zhenkai@cs.ucla.edu>
19 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
20 */
21
Zhenkai Zhu974c5a62012-12-28 14:15:30 -080022#ifndef CCNX_CLOSURE_H
23#define CCNX_CLOSURE_H
24
25#include "ccnx-common.h"
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -080026#include "ccnx-name.h"
Zhenkai Zhu1888f742013-01-28 12:47:33 -080027#include "executor.h"
Zhenkai Zhu974c5a62012-12-28 14:15:30 -080028
Zhenkai Zhu974c5a62012-12-28 14:15:30 -080029namespace Ccnx {
30
Alexander Afanasyevf278db32013-01-21 14:41:01 -080031class ParsedContentObject;
32typedef boost::shared_ptr<ParsedContentObject> PcoPtr;
33
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -080034class Closure
Zhenkai Zhu974c5a62012-12-28 14:15:30 -080035{
36public:
Zhenkai Zhu1888f742013-01-28 12:47:33 -080037 typedef boost::function<void (Name, PcoPtr pco)> DataCallback;
Zhenkai Zhu974c5a62012-12-28 14:15:30 -080038
39 typedef enum
40 {
41 RESULT_OK,
42 RESULT_REEXPRESS
43 } TimeoutCallbackReturnValue;
44
Zhenkai Zhu1888f742013-01-28 12:47:33 -080045 typedef boost::function<TimeoutCallbackReturnValue (Name )> TimeoutCallback;
Zhenkai Zhu974c5a62012-12-28 14:15:30 -080046
Zhenkai Zhu8339e912013-01-18 18:10:17 -080047 Closure(const DataCallback &dataCallback, const TimeoutCallback &timeoutCallback = TimeoutCallback());
Zhenkai Zhu974c5a62012-12-28 14:15:30 -080048 virtual ~Closure();
Alexander Afanasyevd6c2a902013-01-19 21:24:30 -080049
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -080050 virtual void
Zhenkai Zhu1888f742013-01-28 12:47:33 -080051 runDataCallback(Name name, Ccnx::PcoPtr pco);
Alexander Afanasyevd6c2a902013-01-19 21:24:30 -080052
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -080053 virtual TimeoutCallbackReturnValue
Zhenkai Zhu1888f742013-01-28 12:47:33 -080054 runTimeoutCallback(Name interest);
Zhenkai Zhu19f81de2013-01-04 22:27:47 -080055
Zhenkai Zhu974c5a62012-12-28 14:15:30 -080056protected:
Alexander Afanasyevd6c2a902013-01-19 21:24:30 -080057 TimeoutCallback m_timeoutCallback;
58 DataCallback m_dataCallback;
Zhenkai Zhu974c5a62012-12-28 14:15:30 -080059};
60
Zhenkai Zhu1888f742013-01-28 12:47:33 -080061class ExecutorClosure : public Closure
62{
63public:
64 ExecutorClosure(const Closure &closure, ExecutorPtr executor);
65 virtual ~ExecutorClosure();
66
67 virtual void
68 runDataCallback(Name name, PcoPtr pco);
69
70private:
71 void
72 execute(Name nae, PcoPtr content);
73
74private:
75 ExecutorPtr m_executor;
76};
77
78class ExecutorInterestClosure
79{
80public:
81 typedef boost::function<void (Name)> InterestCallback;
82 ExecutorInterestClosure(const InterestCallback &callback, ExecutorPtr executor);
83 ~ExecutorInterestClosure() {}
84
85 void
86 runInterestCallback(Name interest);
87
88 void
89 execute(Name interest);
90
91private:
92 InterestCallback m_callback;
93 ExecutorPtr m_executor;
94};
95
Zhenkai Zhu974c5a62012-12-28 14:15:30 -080096} // Ccnx
97
98#endif