AP_HAL_Linux: add PollerThread

This is the infrastructure needed by both SPIDevice and I2CDevice to
start a poller thread per bus.
This commit is contained in:
Lucas De Marchi 2016-07-26 17:14:14 -03:00
parent 7d451ac876
commit 11ddbb8fb8
2 changed files with 222 additions and 0 deletions

View File

@ -0,0 +1,139 @@
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
/*
* Copyright (C) 2016 Intel Corporation. All rights reserved.
*
* This file 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 3 of the License, or
* (at your option) any later version.
*
* This file 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, see <http://www.gnu.org/licenses/>.
*/
#include "PollerThread.h"
#include <algorithm>
#include <poll.h>
#include <sys/epoll.h>
#include <sys/timerfd.h>
#include <AP_Math/AP_Math.h>
namespace Linux {
void TimerPollable::on_can_read()
{
if (_removeme) {
return;
}
uint64_t nevents = 0;
int r = read(_fd, &nevents, sizeof(nevents));
if (r < 0) {
return;
}
if (_wrapper) {
_wrapper->start_cb();
}
if (!_cb()) {
_removeme = true;
}
if (_wrapper) {
_wrapper->end_cb();
}
}
bool TimerPollable::setup_timer(uint32_t timeout_usec)
{
if (_fd >= 0) {
return false;
}
_fd = timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC|TFD_NONBLOCK);
if (_fd < 0) {
return false;
}
if (!adjust_timer(timeout_usec)) {
::close(_fd);
_fd = -1;
return false;
}
return true;
}
bool TimerPollable::adjust_timer(uint32_t timeout_usec)
{
if (_fd < 0) {
return false;
}
struct itimerspec spec = { };
spec.it_interval.tv_nsec = timeout_usec * NSEC_PER_USEC;
spec.it_value.tv_nsec = timeout_usec * NSEC_PER_USEC;
if (timerfd_settime(_fd, 0, &spec, nullptr) < 0) {
return false;
}
return true;
}
TimerPollable *PollerThread::add_timer(TimerPollable::PeriodicCb cb,
TimerPollable::WrapperCb *wrapper,
uint32_t timeout_usec)
{
TimerPollable *p = new TimerPollable(cb, wrapper);
if (!p || !p->setup_timer(timeout_usec) ||
!_poller.register_pollable(p, POLLIN)) {
delete p;
return nullptr;
}
_timers.push_back(p);
return p;
}
bool PollerThread::adjust_timer(TimerPollable *p, uint32_t timeout_usec)
{
/* Make sure the handle points to a valid timer */
auto it = std::find(_timers.begin(), _timers.end(), p);
if (it == _timers.end()) {
return false;
}
return (*it)->adjust_timer(timeout_usec);
}
void PollerThread::_cleanup_timers()
{
for (auto it = _timers.begin(); it != _timers.end(); it++) {
TimerPollable *p = *it;
if (p->_removeme) {
_timers.erase(it);
_poller.unregister_pollable(p);
delete p;
}
}
}
void PollerThread::mainloop()
{
while (true) {
_poller.poll();
_cleanup_timers();
}
}
}

View File

@ -0,0 +1,83 @@
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
/*
* Copyright (C) 2016 Intel Corporation. All rights reserved.
*
* This file 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 3 of the License, or
* (at your option) any later version.
*
* This file 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, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include <inttypes.h>
#include <vector>
#include <AP_HAL/Device.h>
#include "Poller.h"
#include "Thread.h"
namespace Linux {
class TimerPollable : public Pollable {
friend class PollerThread;
public:
class WrapperCb {
public:
virtual ~WrapperCb() { }
virtual void start_cb() { }
virtual void end_cb() { }
};
using PeriodicCb = AP_HAL::Device::PeriodicCb;
virtual ~TimerPollable() { }
void on_can_read() override;
bool setup_timer(uint32_t timeout_usec);
bool adjust_timer(uint32_t timeout_usec);
protected:
TimerPollable(PeriodicCb cb, WrapperCb *wrapper)
: _cb(cb)
, _wrapper(wrapper)
{
}
PeriodicCb _cb;
WrapperCb *_wrapper;
bool _removeme;
};
class PollerThread : public Thread {
public:
PollerThread() : Thread{FUNCTOR_BIND_MEMBER(&PollerThread::mainloop, void)} { }
virtual ~PollerThread() { }
TimerPollable *add_timer(TimerPollable::PeriodicCb cb,
TimerPollable::WrapperCb *wrapper,
uint32_t timeout_usec);
bool adjust_timer(TimerPollable *p, uint32_t timeout_usec);
void mainloop();
protected:
void _cleanup_timers();
Poller _poller{};
std::vector<TimerPollable*> _timers;
};
}