summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/probe_rate_impl.h
blob: 473afb1f5d5b7f444a225773c6b7f8e0726f89bf (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
/* -*- c++ -*- */
/*
 * Copyright 2005,2013 Free Software Foundation, Inc.
 *
 * This file is part of GNU Radio
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 *
 */

#ifndef INCLUDED_GR_PROBE_RATE_IMPL_H
#define INCLUDED_GR_PROBE_RATE_IMPL_H

#include <gnuradio/blocks/probe_rate.h>

namespace gr {
namespace blocks {

class probe_rate_impl : public probe_rate
{
private:
    double d_alpha, d_beta, d_avg;
    const double d_min_update_time;
    boost::posix_time::ptime d_last_update;
    uint64_t d_lastthru;
    void setup_rpc() override;

    const pmt::pmt_t d_port;
    const pmt::pmt_t d_dict_avg, d_dict_now;

public:
    probe_rate_impl(size_t itemsize, double update_rate_ms, double alpha = 0.0001);
    ~probe_rate_impl() override;
    void set_alpha(double alpha) override;
    double rate() override;
    double timesincelast();
    bool start() override;
    bool stop() override;

    int work(int noutput_items,
             gr_vector_const_void_star& input_items,
             gr_vector_void_star& output_items) override;

}; // end class

} /* namespace blocks */
} /* namespace gr */

#endif