summaryrefslogtreecommitdiff
path: root/src/controller/signal_handler.h
blob: b7cebbec92621b354613539f1cfac72620b7bdbd (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
//------------------------------------------------------------------------------
// Author: Pavel Karneliuk
// Description: Handling signals and map them to exceptions.
// Copyright (c) 2013 EPAM Systems
//------------------------------------------------------------------------------
/*
    This file is part of Nfstrace.

    Nfstrace is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, version 2 of the License.

    Nfstrace is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Nfstrace.  If not, see <http://www.gnu.org/licenses/>.
*/
//------------------------------------------------------------------------------
#ifndef SIGNAL_HANDLER_H
#define SIGNAL_HANDLER_H
//------------------------------------------------------------------------------
#include <atomic>
#include <stdexcept>
#include <thread>

#include "controller/running_status.h"
//------------------------------------------------------------------------------
namespace NST
{
namespace controller
{

class SignalHandler
{
public:
    class Signal : public std::runtime_error
    {
    public:
        explicit Signal(int sig);
        const int signal_number;
    };

    SignalHandler(RunningStatus&);
    SignalHandler(const SignalHandler&)            = delete;
    SignalHandler& operator=(const SignalHandler&) = delete;
    ~SignalHandler();

private:
    std::thread handler;
    std::atomic_flag running;
};

} // namespace controller
} // namespace NST
//------------------------------------------------------------------------------
#endif//SIGNAL_HANDLER_H
//------------------------------------------------------------------------------