mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
148 lines
4.1 KiB
C
148 lines
4.1 KiB
C
/*
|
|
* Copyright (C) 2015 Daniel Krebs
|
|
* 2016 INRIA
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup net_gnrc_lwmac
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Timeout handling of LWMAC protocol
|
|
*
|
|
* @author Daniel Krebs <github@daniel-krebs.net>
|
|
* @author Shuguo Zhuo <shuguo.zhuo@inria.fr>
|
|
* @}
|
|
*/
|
|
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
|
|
#include "net/gnrc/lwmac/timeout.h"
|
|
|
|
#define ENABLE_DEBUG 0
|
|
#include "debug.h"
|
|
|
|
static const char *lwmac_timeout_names[] = {
|
|
[GNRC_LWMAC_TIMEOUT_DISABLED] = "DISABLED",
|
|
[GNRC_LWMAC_TIMEOUT_WR] = "WR",
|
|
[GNRC_LWMAC_TIMEOUT_NO_RESPONSE] = "NO_RESPONSE",
|
|
[GNRC_LWMAC_TIMEOUT_DATA] = "DATA",
|
|
[GNRC_LWMAC_TIMEOUT_WAIT_DEST_WAKEUP] = "WAIT_FOR_DEST_WAKEUP",
|
|
[GNRC_LWMAC_TIMEOUT_WAKEUP_PERIOD] = "WAKEUP_PERIOD",
|
|
};
|
|
|
|
static inline void _lwmac_clear_timeout(gnrc_lwmac_timeout_t *timeout)
|
|
{
|
|
assert(timeout);
|
|
|
|
xtimer_remove(&(timeout->timer));
|
|
timeout->type = GNRC_LWMAC_TIMEOUT_DISABLED;
|
|
}
|
|
|
|
/* Return index >= 0 if found, -ENONENT if not found */
|
|
static int _lwmac_find_timeout(gnrc_lwmac_t *lwmac, gnrc_lwmac_timeout_type_t type)
|
|
{
|
|
assert(lwmac);
|
|
|
|
for (unsigned i = 0; i < CONFIG_GNRC_LWMAC_TIMEOUT_COUNT; i++) {
|
|
if (lwmac->timeouts[i].type == type) {
|
|
return i;
|
|
}
|
|
}
|
|
return -ENOENT;
|
|
}
|
|
|
|
inline bool gnrc_lwmac_timeout_is_running(gnrc_netif_t *netif,
|
|
gnrc_lwmac_timeout_type_t type)
|
|
{
|
|
assert(netif);
|
|
return (_lwmac_find_timeout(&netif->mac.prot.lwmac, type) >= 0);
|
|
}
|
|
|
|
bool gnrc_lwmac_timeout_is_expired(gnrc_netif_t *netif, gnrc_lwmac_timeout_type_t type)
|
|
{
|
|
assert(netif);
|
|
|
|
int index = _lwmac_find_timeout(&netif->mac.prot.lwmac, type);
|
|
if (index >= 0) {
|
|
if (netif->mac.prot.lwmac.timeouts[index].expired) {
|
|
_lwmac_clear_timeout(&netif->mac.prot.lwmac.timeouts[index]);
|
|
}
|
|
return netif->mac.prot.lwmac.timeouts[index].expired;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
gnrc_lwmac_timeout_t *_lwmac_acquire_timeout(gnrc_netif_t *netif,
|
|
gnrc_lwmac_timeout_type_t type)
|
|
{
|
|
assert(netif);
|
|
|
|
if (gnrc_lwmac_timeout_is_running(netif, type)) {
|
|
return NULL;
|
|
}
|
|
|
|
for (unsigned i = 0; i < CONFIG_GNRC_LWMAC_TIMEOUT_COUNT; i++) {
|
|
if (netif->mac.prot.lwmac.timeouts[i].type == GNRC_LWMAC_TIMEOUT_DISABLED) {
|
|
netif->mac.prot.lwmac.timeouts[i].type = type;
|
|
return &netif->mac.prot.lwmac.timeouts[i];
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
void gnrc_lwmac_timeout_make_expire(gnrc_lwmac_timeout_t *timeout)
|
|
{
|
|
assert(timeout);
|
|
|
|
timeout->expired = true;
|
|
}
|
|
|
|
void gnrc_lwmac_clear_timeout(gnrc_netif_t *netif, gnrc_lwmac_timeout_type_t type)
|
|
{
|
|
assert(netif);
|
|
|
|
int index = _lwmac_find_timeout(&netif->mac.prot.lwmac, type);
|
|
if (index >= 0) {
|
|
_lwmac_clear_timeout(&netif->mac.prot.lwmac.timeouts[index]);
|
|
}
|
|
}
|
|
|
|
void gnrc_lwmac_set_timeout(gnrc_netif_t *netif,
|
|
gnrc_lwmac_timeout_type_t type,
|
|
uint32_t offset)
|
|
{
|
|
assert(netif);
|
|
|
|
gnrc_lwmac_timeout_t *timeout;
|
|
if ((timeout = _lwmac_acquire_timeout(netif, type))) {
|
|
DEBUG("[LWMAC] Set timeout %s in %" PRIu32 " us\n",
|
|
lwmac_timeout_names[type], offset);
|
|
timeout->expired = false;
|
|
timeout->msg.type = GNRC_LWMAC_EVENT_TIMEOUT_TYPE;
|
|
timeout->msg.content.ptr = (void *) timeout;
|
|
xtimer_set_msg(&(timeout->timer), offset,
|
|
&(timeout->msg), netif->pid);
|
|
}
|
|
else {
|
|
DEBUG("[LWMAC] Cannot set timeout %s, too many concurrent timeouts\n",
|
|
lwmac_timeout_names[type]);
|
|
}
|
|
}
|
|
|
|
void gnrc_lwmac_reset_timeouts(gnrc_netif_t *netif)
|
|
{
|
|
assert(netif);
|
|
|
|
for (unsigned i = 0; i < CONFIG_GNRC_LWMAC_TIMEOUT_COUNT; i++) {
|
|
if (netif->mac.prot.lwmac.timeouts[i].type != GNRC_LWMAC_TIMEOUT_DISABLED) {
|
|
_lwmac_clear_timeout(&netif->mac.prot.lwmac.timeouts[i]);
|
|
}
|
|
}
|
|
}
|