~ubuntu-branches/ubuntu/wily/sflphone/wily

« back to all changes in this revision

Viewing changes to daemon/src/threadloop.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2015-01-07 14:51:16 UTC
  • mfrom: (4.3.5 sid)
  • Revision ID: package-import@ubuntu.com-20150107145116-yxnafinf4lrdvrmx
Tags: 1.4.1-0.1ubuntu1
* Merge with Debian, remaining changes:
 - Drop soprano, nepomuk build-dep
* Drop ubuntu patches, now upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Copyright (C) 2013 Savoir-Faire Linux Inc.
 
3
 *
 
4
 *  Author: Guillaume Roguez <Guillaume.Roguez@savoirfairelinux.com>
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; either version 3 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
11
 *  This program is distributed in the hope that it will be useful,
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *  GNU General Public License for more details.
 
15
 *
 
16
 *  You should have received a copy of the GNU General Public License
 
17
 *  along with this program; if not, write to the Free Software
 
18
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
 
19
 *
 
20
 *  Additional permission under GNU GPL version 3 section 7:
 
21
 *
 
22
 *  If you modify this program, or any covered work, by linking or
 
23
 *  combining it with the OpenSSL project's OpenSSL library (or a
 
24
 *  modified version of that library), containing parts covered by the
 
25
 *  terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
 
26
 *  grants you additional permission to convey the resulting work.
 
27
 *  Corresponding Source for a non-source form of such a combination
 
28
 *  shall include the source code for the parts of OpenSSL used as well
 
29
 *  as that of the covered work.
 
30
 */
 
31
 
 
32
#include "threadloop.h"
 
33
#include "logger.h"
 
34
 
 
35
void ThreadLoop::mainloop()
 
36
{
 
37
    try {
 
38
        if (setup_()) {
 
39
            while (running_)
 
40
                process_();
 
41
            cleanup_();
 
42
        } else {
 
43
            ERROR("setup failed");
 
44
        }
 
45
    } catch (const ThreadLoopException &e) {
 
46
        ERROR("%s", e.what());
 
47
    }
 
48
}
 
49
 
 
50
ThreadLoop::ThreadLoop(const std::function<bool()> &setup,
 
51
                       const std::function<void()> &process,
 
52
                       const std::function<void()> &cleanup)
 
53
    : setup_(setup), process_(process), cleanup_(cleanup)
 
54
{}
 
55
 
 
56
ThreadLoop::~ThreadLoop()
 
57
{
 
58
    if (isRunning()) {
 
59
        ERROR("join() should be explicitly called in owner's destructor");
 
60
        join();
 
61
    }
 
62
}
 
63
 
 
64
void ThreadLoop::start()
 
65
{
 
66
    if (!running_.exchange(true)) {
 
67
        // a previous stop() call may be pending
 
68
        if (thread_.joinable())
 
69
            thread_.join();
 
70
        thread_ = std::thread(&ThreadLoop::mainloop, this);
 
71
    } else {
 
72
        ERROR("Thread already started");
 
73
    }
 
74
}
 
75
 
 
76
void ThreadLoop::stop()
 
77
{
 
78
    running_ = false;
 
79
}
 
80
 
 
81
void ThreadLoop::join()
 
82
{
 
83
    stop();
 
84
    if (thread_.joinable())
 
85
        thread_.join();
 
86
}
 
87
 
 
88
void ThreadLoop::exit()
 
89
{
 
90
    stop();
 
91
    throw ThreadLoopException();
 
92
}
 
93
 
 
94
bool ThreadLoop::isRunning() const
 
95
{
 
96
    return running_;
 
97
}