blob: cc50f62da0e2b45db372d37c5cfebb2170197ab0 (
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
|
/* -*- c++ -*- */
/*
* Copyright 2008,2009,2013 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_THREAD_BODY_WRAPPER_H
#define INCLUDED_THREAD_BODY_WRAPPER_H
#include <gnuradio/api.h>
#include <gnuradio/logger.h>
#include <gnuradio/thread/thread.h>
#include <exception>
namespace gr {
namespace thread {
GR_RUNTIME_API void mask_signals();
template <class F>
class thread_body_wrapper
{
private:
F d_f;
std::string d_name;
bool d_catch_exceptions;
gr::logger_ptr d_logger;
gr::logger_ptr d_debug_logger;
public:
explicit thread_body_wrapper(F f,
const std::string& name = "",
bool catch_exceptions = true)
: d_f(f), d_name(name), d_catch_exceptions(catch_exceptions)
{
gr::configure_default_loggers(d_logger, d_debug_logger, "thread_body_wrapper");
}
void operator()()
{
mask_signals();
if (d_catch_exceptions) {
try {
d_f();
} catch (boost::thread_interrupted const&) {
} catch (std::exception const& e) {
std::ostringstream msg;
msg << "ERROR thread[" << d_name << "]: " << e.what();
GR_LOG_ERROR(d_logger, msg.str());
} catch (...) {
std::ostringstream msg;
msg << "ERROR thread[" << d_name << "]: caught unrecognized exception";
GR_LOG_ERROR(d_logger, msg.str());
}
} else {
try {
d_f();
} catch (boost::thread_interrupted const&) {
}
}
}
};
} /* namespace thread */
} /* namespace gr */
#endif /* INCLUDED_THREAD_BODY_WRAPPER_H */
|