aboutsummaryrefslogtreecommitdiffstats
path: root/libtransport/src/hicn/transport/core/portal.h
blob: 52a721a3589a8b42504a1403f9103bc72d9214fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
/*
 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#pragma once

#include <hicn/transport/config.h>
#include <hicn/transport/core/content_object.h>
#include <hicn/transport/core/forwarder_interface.h>
#include <hicn/transport/core/interest.h>
#include <hicn/transport/core/name.h>
#include <hicn/transport/core/pending_interest.h>
#include <hicn/transport/core/prefix.h>
#include <hicn/transport/core/socket_connector.h>
#include <hicn/transport/errors/errors.h>
#include <hicn/transport/portability/portability.h>
#include <hicn/transport/utils/log.h>

#ifdef __vpp__
#include <hicn/transport/core/memif_connector.h>
#endif

#include <asio.hpp>
#include <asio/steady_timer.hpp>
#include <future>
#include <memory>
#include <unordered_map>

#define UNSET_CALLBACK 0

namespace transport {

namespace core {

typedef std::unordered_map<Name, std::unique_ptr<PendingInterest>>
    PendingInterestHashTable;

template <typename PrefixType>
class BasicBindConfig {
  static_assert(std::is_same<Prefix, PrefixType>::value,
                "Prefix must be a Prefix type.");

  const uint32_t standard_cs_reserved = 5000;

 public:
  template <typename T>
  BasicBindConfig(T &&prefix)
      : prefix_(std::forward<T &&>(prefix)),
        content_store_reserved_(standard_cs_reserved) {}

  template <typename T>
  BasicBindConfig(T &&prefix, uint32_t cs_reserved)
      : prefix_(std::forward<T &&>(prefix)),
        content_store_reserved_(cs_reserved) {}

  TRANSPORT_ALWAYS_INLINE const PrefixType &prefix() const { return prefix_; }

  TRANSPORT_ALWAYS_INLINE uint32_t csReserved() const {
    return content_store_reserved_;
  }

 private:
  PrefixType prefix_;
  uint32_t content_store_reserved_;
};

using BindConfig = BasicBindConfig<Prefix>;

template <typename ForwarderInt>
class Portal {
  static_assert(
      std::is_base_of<ForwarderInterface<ForwarderInt,
                                         typename ForwarderInt::ConnectorType>,
                      ForwarderInt>::value,
      "ForwarderInt must inherit from ForwarderInterface!");

 public:
  class ConsumerCallback {
   public:
    virtual void onContentObject(Interest::Ptr &&i, ContentObject::Ptr &&c) = 0;
    virtual void onTimeout(Interest::Ptr &&i) = 0;
  };

  class ProducerCallback {
   public:
    virtual void onInterest(Interest::Ptr &&i) = 0;
  };

  Portal() : Portal(internal_io_service_) {
    internal_work_ = std::make_unique<asio::io_service::work>(io_service_);
  }

  Portal(asio::io_service &io_service)
      : io_service_(io_service),
        app_name_("libtransport_application"),
        consumer_callback_(nullptr),
        producer_callback_(nullptr),
        connector_(std::bind(&Portal::processIncomingMessages, this,
                             std::placeholders::_1),
                   std::bind(&Portal::setLocalRoutes, this), io_service_,
                   app_name_),
        forwarder_interface_(connector_) {}

  void setConsumerCallback(ConsumerCallback *consumer_callback) {
    consumer_callback_ = consumer_callback;
  }

  void setProducerCallback(ProducerCallback *producer_callback) {
    producer_callback_ = producer_callback;
  }

  TRANSPORT_ALWAYS_INLINE void setOutputInterface(
      const std::string &output_interface) {
    forwarder_interface_.setOutputInterface(output_interface);
  }

  TRANSPORT_ALWAYS_INLINE void connect(bool is_consumer = true) {
    forwarder_interface_.connect(is_consumer);
  }

  ~Portal() {
    connector_.close();
    stopEventsLoop();
  }

  TRANSPORT_ALWAYS_INLINE bool interestIsPending(const Name &name) {
    auto it = pending_interest_hash_table_.find(name);
    if (it != pending_interest_hash_table_.end())
      if (!it->second->isReceived()) return true;

    return false;
  }

  TRANSPORT_ALWAYS_INLINE void sendInterest(Interest::Ptr &&interest) {
    const Name name(interest->getName(), true);

    // Send it
    forwarder_interface_.send(*interest);

    pending_interest_hash_table_[name] = std::make_unique<PendingInterest>(
        std::move(interest), std::make_unique<asio::steady_timer>(io_service_));

    pending_interest_hash_table_[name]->startCountdown(
        std::bind(&Portal<ForwarderInt>::timerHandler, this,
                  std::placeholders::_1, name));
  }

  TRANSPORT_ALWAYS_INLINE void sendInterest(Interest::Ptr &&interest,
        const OnContentObjectCallback &&on_content_object_callback,
        const OnInterestTimeoutCallback &&on_interest_timeout_callback) {

    const Name name(interest->getName(), true);

    // Send it
    forwarder_interface_.send(*interest);

    pending_interest_hash_table_[name] = std::make_unique<PendingInterest>(
        std::move(interest), std::move(on_content_object_callback),
        std::move(on_interest_timeout_callback),
        std::make_unique<asio::steady_timer>(io_service_));

    pending_interest_hash_table_[name]->startCountdown(
        std::bind(&Portal<ForwarderInt>::timerHandler,
        this, std::placeholders::_1, name));

  }

  TRANSPORT_ALWAYS_INLINE void timerHandler(const std::error_code &ec,
                                            const Name &name) {
    bool is_stopped = io_service_.stopped();
    if (TRANSPORT_EXPECT_FALSE(is_stopped)) {
      return;
    }

    if (TRANSPORT_EXPECT_TRUE(!ec)) {
      std::unordered_map<Name, std::unique_ptr<PendingInterest>>::iterator it =
          pending_interest_hash_table_.find(name);
      if (it != pending_interest_hash_table_.end()) {
        std::unique_ptr<PendingInterest> ptr = std::move(it->second);
        pending_interest_hash_table_.erase(it);

        if(ptr->getOnTimeoutCallback() != UNSET_CALLBACK){
            ptr->on_interest_timeout_callback_(std::move(ptr->getInterest()));
        }else if (consumer_callback_) {
          consumer_callback_->onTimeout(std::move(ptr->getInterest()));
        }
      }
    }
  }

  TRANSPORT_ALWAYS_INLINE void bind(const BindConfig &config) {
    connector_.enableBurst();
    forwarder_interface_.setContentStoreSize(config.csReserved());
    served_namespaces_.push_back(config.prefix());
    registerRoute(served_namespaces_.back());
  }

  TRANSPORT_ALWAYS_INLINE void runEventsLoop() {
    if (io_service_.stopped()) {
      io_service_.reset();  // ensure that run()/poll() will do some work
    }

    this->io_service_.run();
  }

  TRANSPORT_ALWAYS_INLINE void runOneEvent() {
    if (io_service_.stopped()) {
      io_service_.reset();  // ensure that run()/poll() will do some work
    }

    this->io_service_.run_one();
  }

  TRANSPORT_ALWAYS_INLINE void sendContentObject(
      ContentObject &content_object) {
    forwarder_interface_.send(content_object);
  }

  TRANSPORT_ALWAYS_INLINE void stopEventsLoop() {
    internal_work_.reset();

    for (auto &pend_interest : pending_interest_hash_table_) {
      pend_interest.second->cancelTimer();
    }

    clear();

    io_service_.post([this]() { io_service_.stop(); });
  }

  TRANSPORT_ALWAYS_INLINE void killConnection() { connector_.close(); }

  TRANSPORT_ALWAYS_INLINE void clear() { pending_interest_hash_table_.clear(); }

  TRANSPORT_ALWAYS_INLINE asio::io_service &getIoService() {
    return io_service_;
  }

  TRANSPORT_ALWAYS_INLINE std::size_t getPITSize() {
    connector_.state();
    return pending_interest_hash_table_.size();
  }

  TRANSPORT_ALWAYS_INLINE void registerRoute(Prefix &prefix) {
    forwarder_interface_.registerRoute(prefix);
  }

 private:
  TRANSPORT_ALWAYS_INLINE void processIncomingMessages(
      Packet::MemBufPtr &&packet_buffer) {
    bool is_stopped = io_service_.stopped();
    if (TRANSPORT_EXPECT_FALSE(is_stopped)) {
      return;
    }

    if (packet_buffer->data()[0] == ForwarderInt::ack_code) {
      // Hicn forwarder message
      processControlMessage(std::move(packet_buffer));
      return;
    }

    bool is_interest = Packet::isInterest(packet_buffer->data());
    Packet::Format format = Packet::getFormatFromBuffer(packet_buffer->data());

    if (TRANSPORT_EXPECT_TRUE(_is_tcp(format))) {
      if (!is_interest) {
        processContentObject(
            ContentObject::Ptr(new ContentObject(std::move(packet_buffer))));
      } else {
        processInterest(Interest::Ptr(new Interest(std::move(packet_buffer))));
      }
    } else {
      TRANSPORT_LOGE("Received not supported packet. Ignoring it.");
    }
  }

  TRANSPORT_ALWAYS_INLINE void setLocalRoutes() {
    for (auto &name : served_namespaces_) {
      registerRoute(name);
    }
  }

  TRANSPORT_ALWAYS_INLINE void processInterest(Interest::Ptr &&interest) {
    // Interest for a producer
    if (TRANSPORT_EXPECT_TRUE(producer_callback_ != nullptr)) {
      producer_callback_->onInterest(std::move(interest));
    }
  }

  TRANSPORT_ALWAYS_INLINE void processContentObject(
      ContentObject::Ptr &&content_object) {
    PendingInterestHashTable::iterator it =
        pending_interest_hash_table_.find(content_object->getName());

    if (TRANSPORT_EXPECT_TRUE(it != pending_interest_hash_table_.end())) {
      std::unique_ptr<PendingInterest> interest_ptr = std::move(it->second);
      interest_ptr->cancelTimer();

      if (TRANSPORT_EXPECT_TRUE(!interest_ptr->isReceived())) {
        interest_ptr->setReceived();
        pending_interest_hash_table_.erase(content_object->getName());

        if(interest_ptr->getOnDataCallback() != UNSET_CALLBACK){
            interest_ptr->on_content_object_callback_(
                std::move(interest_ptr->getInterest()),
                std::move(content_object));
        }else if (consumer_callback_) {
          consumer_callback_->onContentObject(
              std::move(interest_ptr->getInterest()),
              std::move(content_object));
        }

      } else {
        TRANSPORT_LOGW(
            "Content already received (interest already satisfied).");
      }
    } else {
      TRANSPORT_LOGW("No pending interests for current content (%s)",
                     content_object->getName().toString().c_str());
    }
  }

  TRANSPORT_ALWAYS_INLINE void processControlMessage(
      Packet::MemBufPtr &&packet_buffer) {
    // Control message as response to the route set by a producer.
    // Do nothing
  }

 private:
  asio::io_service &io_service_;
  asio::io_service internal_io_service_;
  std::unique_ptr<asio::io_service::work> internal_work_;

  std::string app_name_;

  PendingInterestHashTable pending_interest_hash_table_;

  ConsumerCallback *consumer_callback_;
  ProducerCallback *producer_callback_;

  typename ForwarderInt::ConnectorType connector_;
  ForwarderInt forwarder_interface_;

  std::list<Prefix> served_namespaces_;

  ip_address_t locator4_;
  ip_address_t locator6_;
};

}  // end namespace core

}  // end namespace transport