forked from mirrors/linphone-iphone
Add a timeout, because on Android wake locks have no limit in time. The timeout will secure that whatever happens, the wake lock is always released after a reasonable time.
79 lines
2.5 KiB
C++
79 lines
2.5 KiB
C++
/*
|
|
* background-task.cpp
|
|
* Copyright (C) 2010-2018 Belledonne Communications SARL
|
|
*
|
|
* This program 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; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program 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 this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "background-task.h"
|
|
#include "c-wrapper/internal/c-sal.h"
|
|
#include "logger/logger.h"
|
|
#include "core/core-p.h"
|
|
#include "private.h" //to get access to the Sal
|
|
|
|
// =============================================================================
|
|
|
|
LINPHONE_BEGIN_NAMESPACE
|
|
|
|
void BackgroundTask::sHandleTimeout(void *context) {
|
|
static_cast<BackgroundTask *>(context)->handleTimeout();
|
|
}
|
|
|
|
int BackgroundTask::sHandleSalTimeout(void *data, unsigned int events){
|
|
static_cast<BackgroundTask *>(data)->handleSalTimeout();
|
|
return BELLE_SIP_STOP;
|
|
}
|
|
|
|
void BackgroundTask::handleSalTimeout(){
|
|
lWarning() << "Background task [" << mId << "] with name : [" << mName << "] is now expiring.";
|
|
stop();
|
|
}
|
|
|
|
void BackgroundTask::start (const std::shared_ptr<Core> &core, int max_duration_seconds) {
|
|
if (mName.empty()) {
|
|
lError() << "No name was set on background task.";
|
|
return;
|
|
}
|
|
|
|
unsigned long newId = sal_begin_background_task(mName.c_str(), sHandleTimeout, this);
|
|
lInfo() << "Starting background task [" << newId << "] with name : [" << mName << "] and expiration of ["<<max_duration_seconds<<"].";
|
|
stop();
|
|
mId = newId;
|
|
if (max_duration_seconds > 0){
|
|
mSal = core->getCCore()->sal;
|
|
mTimeout = mSal->create_timer(sHandleSalTimeout, this, (unsigned int) max_duration_seconds * 1000, mName.c_str());
|
|
}
|
|
}
|
|
|
|
void BackgroundTask::stop () {
|
|
if (mId == 0)
|
|
return;
|
|
|
|
lInfo() << "Ending background task [" << mId << "] with name : [" << mName << "].";
|
|
sal_end_background_task(mId);
|
|
if (mTimeout){
|
|
mSal->cancel_timer(mTimeout);
|
|
belle_sip_object_unref(mTimeout);
|
|
mTimeout = NULL;
|
|
}
|
|
mId = 0;
|
|
}
|
|
|
|
void BackgroundTask::handleTimeout () {
|
|
lWarning() << "Background task [" << mId << "] with name : [" << mName << "] is expiring from OS before completion...";
|
|
stop();
|
|
}
|
|
|
|
LINPHONE_END_NAMESPACE
|