aboutsummaryrefslogtreecommitdiffstats
path: root/apps/hiperf/src/server.cc
blob: 3f6c335f96edcf33eb733f8031c15a824ed868b6 (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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
/*
 * Copyright (c) 2021-2022 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.
 */

#include <server.h>

namespace hiperf {

using transport::core::ContentObject;
using transport::core::Interest;
using transport::core::Name;
using transport::interface::GeneralTransportOptions;
using transport::interface::ProducerCallbacksOptions;
using transport::interface::ProducerInterestCallback;
using transport::interface::ProducerSocket;
using transport::interface::ProductionProtocolAlgorithms;

/**
 * Hiperf server class: configure and setup an hicn producer following the
 * ServerConfiguration.
 */
class HIperfServer::Impl {
  static constexpr std::size_t klog2_content_object_buffer_size() { return 8; }
  static constexpr std::size_t kcontent_object_buffer_size() {
    return (1 << klog2_content_object_buffer_size());
  }
  static constexpr std::size_t kmask() {
    return (kcontent_object_buffer_size() - 1);
  }

  /**
   * @brief As we can (potentially) setup many producer sockets, we need to keep
   * a separate context for each one of them. The context contains parameters
   * and variable that are specific to a single producer socket.
   */
  class ProducerContext
      : public Base<ProducerContext, ServerConfiguration, Impl>,
        public ProducerSocket::Callback {
   public:
    using ConfType = ServerConfiguration;
    using ParentType = typename HIperfServer::Impl;
    static inline const auto getContextType() { return "ProducerContext"; }

    ProducerContext(HIperfServer::Impl &server, int producer_identifier)
        : Base(server, server.io_service_, producer_identifier) {
      // Allocate buffer to copy as content objects payload
      std::string buffer(configuration_.payload_size_, 'X');

      // Allocate array of content objects. They are share_ptr so that the
      // transport will only capture a reference to them instead of performing
      // an hard copy.
      for (std::size_t i = 0; i < kcontent_object_buffer_size(); i++) {
        const auto &element =
            content_objects_.emplace_back(std::make_shared<ContentObject>(
                configuration_.name_.makeName(), configuration_.packet_format_,
                0, (const uint8_t *)buffer.data(), buffer.size()));
        element->setLifetime(
            transport::interface::default_values::content_object_expiry_time);
      }
    }

    // To make vector happy (move or copy constructor is needed when vector
    // resizes)
    ProducerContext(ProducerContext &&other) noexcept
        : Base(std::move(other)),
          content_objects_(std::move(other.content_objects_)),
          unsatisfied_interests_(std::move(other.unsatisfied_interests_)),
          last_segment_(other.last_segment_),
          producer_socket_(std::move(other.producer_socket_)),
          content_objects_index_(other.content_objects_index_),
          payload_size_max_(other.payload_size_max_) {}

    virtual ~ProducerContext() = default;

    /**
     * @brief Produce datagram
     */
    void produceDatagram(const uint8_t *buffer, std::size_t buffer_size) const {
      assert(producer_socket_);

      auto size = std::min(buffer_size, payload_size_max_);

      producer_socket_->produceDatagram(flow_name_, buffer, size);
    }

    /**
     * @brief Create and setup the producer socket
     */
    int setup() {
      int ret;
      int production_protocol;
      std::shared_ptr<transport::auth::Signer> signer =
          std::make_shared<transport::auth::VoidSigner>();

      if (!configuration_.rtc_) {
        production_protocol = ProductionProtocolAlgorithms::BYTE_STREAM;
      } else {
        production_protocol = ProductionProtocolAlgorithms::RTC_PROD;
      }

      producer_socket_ = std::make_unique<ProducerSocket>(production_protocol);

      if (producer_socket_->setSocketOption(
              ProducerCallbacksOptions::PRODUCER_CALLBACK, this) ==
          SOCKET_OPTION_NOT_SET) {
        getOutputStream() << "Failed to set producer callback." << std::endl;
        return ERROR_SETUP;
      }

      if (producer_socket_->setSocketOption(
              GeneralTransportOptions::HASH_ALGORITHM,
              configuration_.hash_algorithm_) == SOCKET_OPTION_NOT_SET) {
        return ERROR_SETUP;
      }

      if (producer_socket_->setSocketOption(
              GeneralTransportOptions::MANIFEST_MAX_CAPACITY,
              configuration_.manifest_max_capacity_) == SOCKET_OPTION_NOT_SET) {
        return ERROR_SETUP;
      }

      if (producer_socket_->setSocketOption(transport::interface::PACKET_FORMAT,
                                            configuration_.packet_format_) ==
          SOCKET_OPTION_NOT_SET) {
        getOutputStream() << "ERROR -- Impossible to set the packet format."
                          << std::endl;
        return ERROR_SETUP;
      }

      if (!configuration_.passphrase_.empty()) {
        signer = std::make_shared<transport::auth::SymmetricSigner>(
            transport::auth::CryptoSuite::HMAC_SHA256,
            configuration_.passphrase_);
      }

      if (!configuration_.keystore_name_.empty()) {
        signer = std::make_shared<transport::auth::AsymmetricSigner>(
            configuration_.keystore_name_, configuration_.keystore_password_);
      }

      producer_socket_->setSocketOption(GeneralTransportOptions::SIGNER,
                                        signer);

      // Compute maximum payload size
      Packet::Format format = configuration_.packet_format_;
      if (!configuration_.manifest_max_capacity_)
        format = Packet::toAHFormat(format);
      payload_size_max_ = PayloadSize(format).getPayloadSizeMax(
          configuration_.rtc_ ? RTC_HEADER_SIZE : 0,
          configuration_.fec_type_.empty() ? 0 : FEC_HEADER_MAX_SIZE,
          !configuration_.manifest_max_capacity_
              ? signer->getSignatureFieldSize()
              : 0);

      if (configuration_.payload_size_ > payload_size_max_) {
        getOutputStream() << "WARNING: Payload has size "
                          << configuration_.payload_size_ << ", maximum is "
                          << payload_size_max_
                          << ". Payload will be truncated to fit." << std::endl;
      }

      // Verifier for aggregated interests
      std::shared_ptr<transport::auth::Verifier> verifier =
          std::make_shared<transport::auth::VoidVerifier>();
      if (!configuration_.aggr_interest_passphrase_.empty()) {
        verifier = std::make_unique<transport::auth::SymmetricVerifier>(
            configuration_.aggr_interest_passphrase_);
      }
      ret = producer_socket_->setSocketOption(GeneralTransportOptions::VERIFIER,
                                              verifier);
      if (ret == SOCKET_OPTION_NOT_SET) return ERROR_SETUP;

      if (configuration_.rtc_) {
        ret = producer_socket_->setSocketOption(
            transport::interface::RtcTransportOptions::AGGREGATED_DATA,
            configuration_.aggregated_data_);

        if (ret == SOCKET_OPTION_NOT_SET) {
          return ERROR_SETUP;
        }

        ret = producer_socket_->setSocketOption(
            GeneralTransportOptions::FEC_TYPE, configuration_.fec_type_);

        if (ret == SOCKET_OPTION_NOT_SET) {
          return ERROR_SETUP;
        }
      }

      if (producer_socket_->setSocketOption(
              GeneralTransportOptions::CONTENT_OBJECT_EXPIRY_TIME,
              configuration_.content_lifetime_) == SOCKET_OPTION_NOT_SET) {
        return ERROR_SETUP;
      }

      producer_socket_->registerPrefix(Prefix(flow_name_, 128));
      producer_socket_->connect();
      producer_socket_->start();

      if (configuration_.rtc_) {
        return ERROR_SUCCESS;
      }

      if (!configuration_.virtual_producer_) {
        if (producer_socket_->setSocketOption(
                GeneralTransportOptions::OUTPUT_BUFFER_SIZE, 200000U) ==
            SOCKET_OPTION_NOT_SET) {
          return ERROR_SETUP;
        }

        if (producer_socket_->setSocketOption(
                GeneralTransportOptions::MAX_SEGMENT_SIZE,
                static_cast<uint32_t>(configuration_.payload_size_)) ==
            SOCKET_OPTION_NOT_SET) {
          return ERROR_SETUP;
        }

        if (!configuration_.live_production_) {
          produceContent(*producer_socket_, configuration_.name_.makeName(), 0);
        } else {
          ret = producer_socket_->setSocketOption(
              ProducerCallbacksOptions::CACHE_MISS,
              (ProducerInterestCallback)bind(
                  &ProducerContext::asyncProcessInterest, this,
                  std::placeholders::_1, std::placeholders::_2));

          if (ret == SOCKET_OPTION_NOT_SET) {
            return ERROR_SETUP;
          }
        }
      } else {
        ret = producer_socket_->setSocketOption(
            GeneralTransportOptions::OUTPUT_BUFFER_SIZE, 0U);

        if (ret == SOCKET_OPTION_NOT_SET) {
          return ERROR_SETUP;
        }

        ret = producer_socket_->setSocketOption(
            ProducerCallbacksOptions::CACHE_MISS,
            (ProducerInterestCallback)bind(
                &ProducerContext::virtualProcessInterest, this,
                std::placeholders::_1, std::placeholders::_2));

        if (ret == SOCKET_OPTION_NOT_SET) {
          return ERROR_SETUP;
        }
      }

      ret = producer_socket_->setSocketOption(
          ProducerCallbacksOptions::CONTENT_PRODUCED,
          (transport::interface::ProducerContentCallback)bind(
              &ProducerContext::onContentProduced, this, std::placeholders::_1,
              std::placeholders::_2, std::placeholders::_3));
      if (ret == SOCKET_OPTION_NOT_SET) {
        return ERROR_SETUP;
      }

      return ERROR_SUCCESS;
    }

    int run() {
      getOutputStream() << "started to serve consumers with name " << flow_name_
                        << std::endl;
      return ERROR_SUCCESS;
    }

    void stop() {
      getOutputStream() << "stopped to serve consumers" << std::endl;
      producer_socket_->stop();
    }

   private:
    /**
     * @brief Produce an existing content object. Set the name as the
     * interest.
     */
    void virtualProcessInterest(ProducerSocket &p, const Interest &interest) {
      content_objects_[content_objects_index_ & kmask()]->setName(
          interest.getName());
      p.produce(*content_objects_[content_objects_index_++ & kmask()]);
    }

    /**
     * @brief Create and produce a buffer of configuration_.download_size_
     * length.
     */
    void produceContent(ProducerSocket &p, const Name &content_name,
                        uint32_t suffix) const {
      uint32_t total;

      auto b = utils::MemBuf::create(configuration_.download_size_);
      std::memset(b->writableData(), '?', configuration_.download_size_);
      b->append(configuration_.download_size_);

      utils::SteadyTime::TimePoint t0 = utils::SteadyTime::Clock::now();
      total = p.produceStream(content_name, std::move(b),
                              !configuration_.multiphase_produce_, suffix);
      utils::SteadyTime::TimePoint t1 = utils::SteadyTime::Clock::now();

      LoggerInfo() << "Written " << total
                   << " data packets in output buffer (Segmentation time: "
                   << utils::SteadyTime::getDurationUs(t0, t1).count() << " us)"
                   << std::endl;
    }

    /**
     * @brief Synchronously produce content upon reception of one interest
     */
    void processInterest(ProducerSocket &p, const Interest &interest) const {
      p.setSocketOption(
          ProducerCallbacksOptions::CACHE_MISS,
          (ProducerInterestCallback)transport::interface::VOID_HANDLER);
      p.setSocketOption(GeneralTransportOptions::CONTENT_OBJECT_EXPIRY_TIME,
                        configuration_.content_lifetime_);

      produceContent(p, interest.getName(), interest.getName().getSuffix());
      LoggerInfo() << "Received interest " << interest.getName().getSuffix()
                   << std::endl;
    }

    /**
     * @brief Async create and produce a buffer of
     * configuration_.download_size_ length.
     */
    void produceContentAsync(ProducerSocket &p, Name content_name,
                             uint32_t suffix) {
      parent_.produce_thread_.add([this, suffix, content_name, &p]() {
        auto b = utils::MemBuf::create(configuration_.download_size_);
        std::memset(b->writableData(), '?', configuration_.download_size_);
        b->append(configuration_.download_size_);

        last_segment_ =
            suffix + p.produceStream(content_name, std::move(b),
                                     !configuration_.multiphase_produce_,
                                     suffix);
      });
    }

    /**
     * @brief Asynchronously produce content upon reception of one interest
     */
    void asyncProcessInterest(ProducerSocket &p, const Interest &interest) {
      p.setSocketOption(ProducerCallbacksOptions::CACHE_MISS,
                        (ProducerInterestCallback)bind(
                            &ProducerContext::cacheMiss, this,
                            std::placeholders::_1, std::placeholders::_2));
      p.setSocketOption(GeneralTransportOptions::CONTENT_OBJECT_EXPIRY_TIME,
                        configuration_.content_lifetime_);
      uint32_t suffix = interest.getName().getSuffix();

      if (suffix == 0) {
        last_segment_ = 0;
        unsatisfied_interests_.clear();
      }

      // The suffix will either come from the received interest or will be set
      // to the smallest suffix of a previous interest not satisfied
      if (!unsatisfied_interests_.empty()) {
        auto it = std::lower_bound(unsatisfied_interests_.begin(),
                                   unsatisfied_interests_.end(), last_segment_);
        if (it != unsatisfied_interests_.end()) {
          suffix = *it;
        }
        unsatisfied_interests_.erase(unsatisfied_interests_.begin(), it);
      }

      getOutputStream() << " Received interest "
                        << interest.getName().getSuffix()
                        << ", starting production at " << suffix << end_mod_
                        << std::endl;
      getOutputStream() << unsatisfied_interests_.size()
                        << " interests still unsatisfied" << end_mod_
                        << std::endl;
      produceContentAsync(p, interest.getName(), suffix);
    }

    /**
     * @brief Register cache miss events
     */
    void cacheMiss([[maybe_unused]] const ProducerSocket &p,
                   const Interest &interest) {
      unsatisfied_interests_.push_back(interest.getName().getSuffix());
    }

    /**
     * @brief When content is produced, set cache miss callback so that we can
     * register any cache miss happening after the production.
     */
    void onContentProduced(ProducerSocket &p,
                           [[maybe_unused]] const std::error_code &err,
                           [[maybe_unused]] uint64_t bytes_written) {
      p.setSocketOption(ProducerCallbacksOptions::CACHE_MISS,
                        (ProducerInterestCallback)bind(
                            &ProducerContext::asyncProcessInterest, this,
                            std::placeholders::_1, std::placeholders::_2));
    }

    /**
     * @brief Internal producer error. When this callback is triggered
     * something important happened. Here we stop the program.
     */
    void produceError(const std::error_code &err) noexcept override {
      getOutputStream() << "Error from producer transport: " << err.message()
                        << std::endl;
      parent_.stop();
    }

    // Members initialized in constructor
    std::vector<ContentObject::Ptr> content_objects_;

    // Members initialized by in-class initializer
    std::vector<uint32_t> unsatisfied_interests_;
    std::uint32_t last_segment_{0};
    std::unique_ptr<ProducerSocket> producer_socket_{nullptr};
    std::uint16_t content_objects_index_{0};
    std::size_t payload_size_max_{0};
  };

 public:
  explicit Impl(const hiperf::ServerConfiguration &conf) : config_(conf) {
#ifndef _WIN32
    if (config_.interactive_) {
      input_.assign(::dup(STDIN_FILENO));
    }
#endif

    std::memset(rtc_payload_.data(), 'X', rtc_payload_.size());
  }

  ~Impl() = default;

  int setup() {
    int ret = ensureFlows(config_.name_, config_.parallel_flows_);
    if (ret != ERROR_SUCCESS) {
      return ret;
    }

    producer_contexts_.reserve(config_.parallel_flows_);
    for (uint32_t i = 0; i < config_.parallel_flows_; i++) {
      auto &ctx = producer_contexts_.emplace_back(*this, i);
      ret = ctx.setup();

      if (ret) {
        break;
      }
    }

    return ret;
  }

  void receiveStream() {
    socket_.async_receive_from(
        asio::buffer(recv_buffer_.writableData(), recv_buffer_.capacity()),
        remote_, [this](const std::error_code &ec, std::size_t length) {
          if (ec) return;
          sendRTCContentFromStream(recv_buffer_.writableData(), length);
          receiveStream();
        });
  }

  void sendRTCContentFromStream(const uint8_t *buff, std::size_t len) {
    // this is used to compute the data packet delay
    // Used only for performance evaluation
    // It requires clock synchronization between producer and consumer
    auto now = utils::SystemTime::nowMs().count();

    auto start = rtc_payload_.data();
    std::memcpy(start, &now, sizeof(uint64_t));
    std::memcpy(start + sizeof(uint64_t), buff, len);

    for (const auto &producer_context : producer_contexts_) {
      producer_context.produceDatagram(start, len + sizeof(uint64_t));
    }
  }

  void sendRTCContentObjectCallback(const std::error_code &ec) {
    if (ec) return;
    rtc_timer_.expires_from_now(
        config_.production_rate_.getMicrosecondsForPacket(
            config_.payload_size_));
    rtc_timer_.async_wait(std::bind(&Impl::sendRTCContentObjectCallback, this,
                                    std::placeholders::_1));

    auto start = rtc_payload_.data();

    // this is used to compute the data packet delay
    // Used only for performance evaluation
    // It requires clock synchronization between producer and consumer
    auto now = utils::SystemTime::nowMs().count();
    std::memcpy(start, &now, sizeof(uint64_t));

    for (const auto &producer_context : producer_contexts_) {
      producer_context.produceDatagram(start, config_.payload_size_);
    }
  }

  void sendRTCContentObjectCallbackWithTrace(const std::error_code &ec) {
    if (ec) return;

    std::size_t packet_len = config_.trace_[config_.trace_index_].size;

    // this is used to compute the data packet delay
    // used only for performance evaluation
    // it requires clock synchronization between producer and consumer
    auto now = utils::SystemTime::nowMs().count();
    auto start = rtc_payload_.data();
    std::memcpy(start, &now, sizeof(uint64_t));

    if (packet_len > config_.payload_size_) {
      packet_len = config_.payload_size_;
    }

    for (const auto &producer_context : producer_contexts_) {
      producer_context.produceDatagram(start, packet_len);
    }

    uint32_t next_index = config_.trace_index_ + 1;
    uint64_t schedule_next;
    if (next_index < config_.trace_.size()) {
      schedule_next = config_.trace_[next_index].timestamp -
                      config_.trace_[config_.trace_index_].timestamp;
    } else {
      // here we need to loop, schedule in a random time
      schedule_next = 1000;
    }

    config_.trace_index_ = (config_.trace_index_ + 1) % config_.trace_.size();
    rtc_timer_.expires_from_now(std::chrono::microseconds(schedule_next));
    rtc_timer_.async_wait(
        std::bind(&Impl::sendRTCContentObjectCallbackWithTrace, this,
                  std::placeholders::_1));
  }

  int parseTraceFile() {
    std::ifstream trace(config_.trace_file_);
    if (trace.fail()) {
      return -1;
    }
    std::string line;
    while (std::getline(trace, line)) {
      std::istringstream iss(line);
      hiperf::packet_t packet;
      iss >> packet.timestamp >> packet.size;
      config_.trace_.push_back(packet);
    }
    return 0;
  }

#ifndef _WIN32
  void handleInput(const std::error_code &error, std::size_t length) {
    if (error) {
      stop();
    }

    if (rtc_running_) {
      LoggerInfo() << "stop real time content production" << std::endl;
      rtc_running_ = false;
      rtc_timer_.cancel();
    } else {
      LoggerInfo() << "start real time content production" << std::endl;
      rtc_running_ = true;
      rtc_timer_.expires_from_now(
          config_.production_rate_.getMicrosecondsForPacket(
              config_.payload_size_));
      rtc_timer_.async_wait(std::bind(&Impl::sendRTCContentObjectCallback, this,
                                      std::placeholders::_1));
    }

    input_buffer_.consume(length);  // Remove newline from input.
    asio::async_read_until(
        input_, input_buffer_, '\n',
        std::bind(&Impl::handleInput, this, std::placeholders::_1,
                  std::placeholders::_2));
  }
#endif

  void stop() {
    for (auto &producer_context : producer_contexts_) {
      producer_context.stop();
    }

    io_service_.stop();
  }

  int run() {
    signals_.add(SIGINT);
    signals_.async_wait(
        [this](const std::error_code &, const int &) { stop(); });

    if (config_.rtc_) {
      if (config_.interactive_) {
        asio::async_read_until(
            input_, input_buffer_, '\n',
            std::bind(&Impl::handleInput, this, std::placeholders::_1,
                      std::placeholders::_2));
      } else if (config_.trace_based_) {
        LoggerInfo() << "trace-based mode enabled" << std::endl;
        if (config_.trace_file_ == nullptr) {
          LoggerErr() << "cannot find the trace file" << std::endl;
          return ERROR_SETUP;
        }
        if (parseTraceFile() < 0) {
          LoggerErr() << "cannot parse the trace file" << std::endl;
          return ERROR_SETUP;
        }
        rtc_running_ = true;
        rtc_timer_.expires_from_now(std::chrono::milliseconds(1));
        rtc_timer_.async_wait(
            std::bind(&Impl::sendRTCContentObjectCallbackWithTrace, this,
                      std::placeholders::_1));
      } else if (config_.input_stream_mode_) {
        rtc_running_ = true;
        // create socket
        remote_ = asio::ip::udp::endpoint(
            asio::ip::address::from_string("127.0.0.1"), config_.port_);
        socket_.open(asio::ip::udp::v4());
        socket_.bind(remote_);
        receiveStream();
      } else {
        rtc_running_ = true;
        rtc_timer_.expires_from_now(
            config_.production_rate_.getMicrosecondsForPacket(
                config_.payload_size_));
        rtc_timer_.async_wait(std::bind(&Impl::sendRTCContentObjectCallback,
                                        this, std::placeholders::_1));
      }
    }

    for (auto &producer_context : producer_contexts_) {
      producer_context.run();
    }

    io_service_.run();

    return ERROR_SUCCESS;
  }

  ServerConfiguration &getConfig() { return config_; }

 private:
  // Variables initialized by the constructor.
  ServerConfiguration config_;

  // Variable initialized in the in-class initializer list.
  asio::io_service io_service_;
  asio::signal_set signals_{io_service_};
  asio::steady_timer rtc_timer_{io_service_};
  asio::posix::stream_descriptor input_{io_service_};
  asio::ip::udp::socket socket_{io_service_};
  std::vector<ProducerContext> producer_contexts_;
  ::utils::EventThread produce_thread_;
  asio::streambuf input_buffer_;
  bool rtc_running_{false};
  asio::ip::udp::endpoint remote_;
  utils::MemBuf recv_buffer_{utils::MemBuf::CREATE, HIPERF_MTU};
  std::array<uint8_t, HIPERF_MTU> rtc_payload_;
};

HIperfServer::HIperfServer(const ServerConfiguration &conf)
    : impl_(std::make_unique<Impl>(conf)) {}

HIperfServer::~HIperfServer() = default;

int HIperfServer::setup() { return impl_->setup(); }

void HIperfServer::run() { impl_->run(); }

}  // namespace hiperf