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

« back to all changes in this revision

Viewing changes to daemon/src/sflthread.cpp

  • Committer: Package Import Robot
  • Author(s): Francois Marier, Francois Marier, Mark Purcell
  • Date: 2014-10-18 15:08:50 UTC
  • mfrom: (1.1.12)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20141018150850-2exfk34ckb15pcwi
Tags: 1.4.1-0.1
[ Francois Marier ]
* Non-maintainer upload
* New upstream release (closes: #759576, #741130)
  - debian/rules +PJPROJECT_VERSION := 2.2.1
  - add upstream patch to fix broken TLS support
  - add patch to fix pjproject regression

[ Mark Purcell ]
* Build-Depends:
  - sflphone-daemon + libavformat-dev, libavcodec-dev, libswscale-dev,
  libavdevice-dev, libavutil-dev
  - sflphone-gnome + libclutter-gtk-1.0-dev

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 "sflthread.h"
33
 
#include "logger.h"
34
 
 
35
 
void* SFLThread::run_(void* data)
36
 
{
37
 
    SFLThread *obj = static_cast<SFLThread*>(data);
38
 
    obj->mainloop_();
39
 
    return nullptr;
40
 
}
41
 
 
42
 
void SFLThread::mainloop_()
43
 
{
44
 
    if (setup()) {
45
 
        while (running_)
46
 
            process();
47
 
        cleanup();
48
 
    } else
49
 
        ERROR("setup failed");
50
 
}
51
 
 
52
 
SFLThread::SFLThread() : thread_(), running_(false)
53
 
{}
54
 
 
55
 
SFLThread::~SFLThread()
56
 
{
57
 
    if (isRunning()) {
58
 
        stop();
59
 
        join();
60
 
    }
61
 
}
62
 
 
63
 
void SFLThread::start()
64
 
{
65
 
    if (!running_) {
66
 
        running_ = true;
67
 
        pthread_create(&thread_, NULL, &run_, this);
68
 
    }
69
 
}
70
 
 
71
 
void SFLThread::stop()
72
 
{
73
 
    running_ = false;
74
 
}
75
 
 
76
 
void SFLThread::join()
77
 
{
78
 
    if (thread_)
79
 
        pthread_join(thread_, NULL);
80
 
}
81
 
 
82
 
void SFLThread::exit()
83
 
{
84
 
    stop();
85
 
    pthread_exit(NULL);
86
 
}
87
 
 
88
 
bool SFLThread::isRunning()
89
 
{
90
 
    return running_;
91
 
}