2013-03-18 00:04:29 +01:00
|
|
|
/*
|
|
|
|
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-03-18 00:04:29 +01:00
|
|
|
|
2013-07-27 13:38:55 +02:00
|
|
|
#include <algorithm>
|
2013-07-26 14:22:18 +02:00
|
|
|
#include <cassert>
|
|
|
|
#include <cstdio>
|
2013-03-18 02:00:48 +01:00
|
|
|
|
2013-03-18 00:04:29 +01:00
|
|
|
|
2013-07-26 17:45:15 +02:00
|
|
|
namespace MMSS {
|
2013-03-18 22:02:28 +01:00
|
|
|
|
2013-07-26 19:47:09 +02:00
|
|
|
static void init_nodes(std::list<std::shared_ptr<node_t>> &nodes) {
|
|
|
|
for (auto node : nodes)
|
|
|
|
node->ctx = node->proto->init(node.get());
|
2013-03-18 03:34:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-26 17:45:15 +02:00
|
|
|
void main(int argc, char *argv[]) {
|
2013-03-18 17:13:15 +01:00
|
|
|
if (argc != 2) {
|
2013-07-26 17:45:15 +02:00
|
|
|
std::fprintf(stderr, "usage: %s protocol_module\n", argv[0]);
|
|
|
|
std::exit(1);
|
2013-03-18 17:13:15 +01:00
|
|
|
}
|
|
|
|
|
2013-07-27 14:21:46 +02:00
|
|
|
std::shared_ptr<const protocol_t> proto = load_protocol(argv[1]);
|
2013-03-18 17:13:15 +01:00
|
|
|
if (!proto)
|
2013-07-26 17:45:15 +02:00
|
|
|
std::exit(1);
|
2013-03-18 17:13:15 +01:00
|
|
|
|
2013-07-26 17:45:15 +02:00
|
|
|
context_t mmss;
|
|
|
|
config_t conf = {};
|
2013-07-26 14:22:18 +02:00
|
|
|
|
2013-07-27 00:33:10 +02:00
|
|
|
//read_config(&mmss, &conf, "babel_test.mmss");
|
2013-03-18 00:04:29 +01:00
|
|
|
|
2013-07-26 19:47:09 +02:00
|
|
|
std::shared_ptr<network_t> net0 = std::make_shared<network_t>();
|
|
|
|
std::shared_ptr<network_t> net1 = std::make_shared<network_t>();
|
|
|
|
|
2013-07-26 20:35:31 +02:00
|
|
|
net0->mtu = 1500;
|
|
|
|
net1->mtu = 1500;
|
2013-07-26 19:47:09 +02:00
|
|
|
|
2013-07-27 18:31:10 +02:00
|
|
|
std::shared_ptr<node_t> node1 = std::make_shared<node_t>(&mmss, "node1", 1, proto);
|
|
|
|
std::shared_ptr<node_t> node2 = std::make_shared<node_t>(&mmss, "node2", 2, proto);
|
|
|
|
std::shared_ptr<node_t> node3 = std::make_shared<node_t>(&mmss, "node3", 3, proto);
|
2013-07-26 19:47:09 +02:00
|
|
|
|
|
|
|
std::list<std::shared_ptr<node_t>> nodes;
|
2013-03-18 00:04:29 +01:00
|
|
|
|
2013-07-26 19:47:09 +02:00
|
|
|
nodes.push_back(node1);
|
|
|
|
nodes.push_back(node2);
|
|
|
|
nodes.push_back(node3);
|
2013-03-18 03:34:12 +01:00
|
|
|
|
|
|
|
init_nodes(nodes);
|
2013-03-18 02:00:48 +01:00
|
|
|
|
2013-03-26 03:36:49 +01:00
|
|
|
gmrf_addr_t addr1 = {{1}}, addr2 = {{2}}, addr3 = {{3}}, addr4 = {{4}};
|
2013-07-26 19:47:09 +02:00
|
|
|
add_iface(node1, net0, "mmss0", &addr1);
|
|
|
|
add_iface(node2, net0, "mmss0", &addr2);
|
|
|
|
add_iface(node2, net1, "mmss1", &addr3);
|
|
|
|
add_iface(node3, net1, "mmss1", &addr4);
|
2013-03-18 19:30:37 +01:00
|
|
|
|
2013-03-18 02:00:48 +01:00
|
|
|
while (true) {
|
2013-07-27 18:31:10 +02:00
|
|
|
if (mmss.now() > 10000000)
|
2013-07-27 00:33:10 +02:00
|
|
|
break;
|
|
|
|
|
2013-07-27 18:31:10 +02:00
|
|
|
int timeout = mmss.event_queue.timeout();
|
2013-03-18 02:00:48 +01:00
|
|
|
|
|
|
|
if (timeout < 0) {
|
2013-03-18 19:09:25 +01:00
|
|
|
fprintf(stderr, "nothing queued, deadlock occured.\n");
|
2013-03-18 02:00:48 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (timeout > 0) {
|
2013-07-27 18:31:10 +02:00
|
|
|
assert(!mmss.event_queue.get());
|
2013-03-18 02:00:48 +01:00
|
|
|
|
2013-07-27 13:38:55 +02:00
|
|
|
mmss.time += timeout;
|
2013-07-27 18:31:10 +02:00
|
|
|
timeout = mmss.event_queue.timeout();
|
2013-03-18 02:00:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
assert(timeout == 0);
|
|
|
|
|
2013-07-27 18:31:10 +02:00
|
|
|
mmss.event_queue.get()->handle(&mmss);
|
2013-03-18 02:00:48 +01:00
|
|
|
}
|
2013-07-26 17:45:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
MMSS::main(argc, argv);
|
2013-03-18 01:36:34 +01:00
|
|
|
|
2013-03-18 00:04:29 +01:00
|
|
|
return 0;
|
|
|
|
}
|