File: ringbuf.hpp

package info (click to toggle)
vart 2.5-5
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 4,404 kB
  • sloc: cpp: 30,188; python: 7,493; sh: 969; makefile: 37; ansic: 36
file content (105 lines) | stat: -rw-r--r-- 2,463 bytes parent folder | download | duplicates (2)
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
/*
 * Copyright 2021 Xilinx Inc.
 *
 * 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 <algorithm>
#include <chrono>
#include <cstring>
#include <exception>
#include <fstream>
#include <iomanip>
#include <iostream>
#include <list>
#include <mutex>
#include <string>
#include <utility>

#include "event.hpp"
#include "vaitrace_dbg.hpp"

namespace vitis::ai::trace {
// MSVC NOTE: must not using namespace std; it trigger an error, 'byte':
// ambiguous symbol, because c++17 introduce std::byte and MSVC use byte
// internally
//
// using namespace std;
using std::list;
using std::lock_guard;
using std::mutex;
using std::cout;
using std::endl;
using std::vector;
using std::string;
template <typename T>
class RingBuf : public list<T*> {
 public:
  RingBuf(size_t size_mb = 1, size_t substitution_rate = 20)
      : cur_size_(0), substitution_rate(substitution_rate), m_lock{} {
    CHECK(size_mb > 0 && size_mb <= 32);
    max_size_ = size_mb * 1024 * 1024;
  }

  ~RingBuf() {}

  void push(T* data) {
    lock_guard<mutex> lock(m_lock);
    // m_lock.lock();
    this->push_back(data);
    cur_size_ += data->get_size();
    // m_lock.unlock();

    // This step can be asynchronous
    maintain();
  }

  void lock(void) {
      m_lock.lock();
  }

  void unlock(void) {
      m_lock.unlock();
  }

 private:
  size_t max_size_;
  size_t cur_size_;
  size_t substitution_rate;
  std::mutex m_lock;
  bool overflowed(void) { return (cur_size_ > max_size_); }

  void put_slots(void) {
    size_t put_bytes = int(max_size_ * substitution_rate / 100);

    CHECK(put_bytes <= cur_size_);

    for (size_t i = 0; i < put_bytes;) {
      auto entry = this->front();
      auto entry_size = entry->get_size();
      cur_size_ -= entry_size;
      i += entry_size;
      delete entry;
      this->pop_front();
    }
  }

  void maintain(void) {
    if (overflowed()) {
      put_slots();
    }
  }
};
}  // namespace vitis::ai::trace