This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
gmrf/mmss/mmss.cpp

138 lines
3.9 KiB
C++
Raw Normal View History

/*
Copyright (c) 2013, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
2013-07-26 14:22:18 +02:00
#include "mmss.hpp"
2013-07-26 14:22:18 +02:00
#include <cassert>
#include <cstdio>
#include <cstdlib>
2013-03-18 22:02:28 +01:00
gmrf_time_t gmrf_now(gmrf_t *gmrf) {
return gmrf->mmss->now;
}
2013-03-18 23:38:04 +01:00
void gmrf_random_bytes(gmrf_t *gmrf, void *buffer, size_t len) {
2013-07-26 14:22:18 +02:00
uint8_t *data = reinterpret_cast<uint8_t*>(buffer);
2013-03-18 23:38:04 +01:00
size_t i;
for (i = 0; i < len; i++)
data[i] = rand_r(&gmrf->rand_seed);
}
2013-03-18 22:02:28 +01:00
static void init_nodes(gmrf_t *nodes) {
gmrf_t *node;
for (node = nodes; node; node = node->next) {
node->ctx = node->proto->init(node);
}
}
2013-03-18 18:06:24 +01:00
static inline int timeout_min(int a, int b) {
2013-03-23 20:27:41 +01:00
if (a < 0)
return b;
else if (b < 0)
return a;
else
return min(a, b);
2013-03-18 18:06:24 +01:00
}
static int get_queue_timeout(const mmss_t *mmss) {
return timeout_min(mmss_queue_timeout(mmss, &mmss->packet_queue), mmss_queue_timeout(mmss, &mmss->scheduled_queue));
}
2013-03-18 17:13:15 +01:00
int main(int argc, char *argv[]) {
if (argc != 2) {
fprintf(stderr, "usage: %s protocol_module\n", argv[0]);
return 1;
}
const mmss_protocol_t *proto = mmss_load_protocol(argv[1]);
if (!proto)
return 1;
mmss_t mmss = { .now = 0 };
2013-07-26 14:22:18 +02:00
mmss_config_t conf = {};
mmss_read_config(&mmss, &conf, "babel_test.mmss");
mmss_network_t net0 = { .mtu = 1500 }, net1 = { .mtu = 1500 };
2013-07-26 14:22:18 +02:00
gmrf_t node1 = { .name = strdup("node1"), .mmss = &mmss, .rand_seed = 1, .proto = proto };
gmrf_t node2 = { .name = strdup("node2"), .mmss = &mmss, .rand_seed = 2, .proto = proto };
gmrf_t node3 = { .name = strdup("node3"), .mmss = &mmss, .rand_seed = 3, .proto = proto };
node2.next = &node1;
node3.next = &node2;
gmrf_t *nodes = &node3;
init_nodes(nodes);
gmrf_addr_t addr1 = {{1}}, addr2 = {{2}}, addr3 = {{3}}, addr4 = {{4}};
mmss_add_iface(&node1, &net0, "mmss0", &addr1);
mmss_add_iface(&node2, &net0, "mmss0", &addr2);
mmss_add_iface(&node2, &net1, "mmss1", &addr3);
mmss_add_iface(&node3, &net1, "mmss1", &addr4);
2013-03-18 19:30:37 +01:00
while (true) {
2013-03-18 18:06:24 +01:00
int timeout = get_queue_timeout(&mmss);
if (timeout < 0) {
2013-03-18 19:09:25 +01:00
fprintf(stderr, "nothing queued, deadlock occured.\n");
break;
}
if (timeout > 0) {
assert(!mmss_queue_get(&mmss, &mmss.packet_queue));
2013-03-18 18:06:24 +01:00
assert(!mmss_queue_get(&mmss, &mmss.scheduled_queue));
mmss.now += timeout;
2013-03-18 18:06:24 +01:00
timeout = get_queue_timeout(&mmss);
}
assert(timeout == 0);
while (timeout == 0) {
2013-07-26 14:22:18 +02:00
mmss_packet_t *packet = reinterpret_cast<mmss_packet_t*>(mmss_queue_get(&mmss, &mmss.packet_queue));
mmss_scheduled_t *scheduled = reinterpret_cast<mmss_scheduled_t*>(mmss_queue_get(&mmss, &mmss.scheduled_queue));
2013-03-18 18:06:24 +01:00
assert(packet || scheduled);
2013-07-26 14:22:18 +02:00
if (packet)
2013-03-18 18:06:24 +01:00
mmss_dispatch(packet);
2013-03-18 18:06:24 +01:00
if (scheduled)
mmss_run_scheduled(scheduled);
2013-03-18 18:06:24 +01:00
timeout = get_queue_timeout(&mmss);
}
}
2013-03-18 01:36:34 +01:00
return 0;
}