From 8cc6b6dd69cee050c16a1c871c986ed933141866 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Thu, 24 Jul 2014 23:35:20 +0200 Subject: Completely log simulations --- mmss/CMakeLists.txt | 1 + mmss/context.hpp | 10 ++++++++++ mmss/monitor.hpp | 3 +++ mmss/monitor_file.cpp | 14 ++++++++++++++ mmss/monitor_file.hpp | 3 +++ mmss/monitor_log.cpp | 9 ++++++++- mmss/monitor_log.hpp | 3 +++ mmss/network.cpp | 5 +++++ mmss/network.hpp | 3 +-- mmss/node.cpp | 39 +++++++++++++++++++++++++++++++++++++++ mmss/node.hpp | 5 +---- 11 files changed, 88 insertions(+), 7 deletions(-) create mode 100644 mmss/node.cpp (limited to 'mmss') diff --git a/mmss/CMakeLists.txt b/mmss/CMakeLists.txt index 2406508..9f586c0 100644 --- a/mmss/CMakeLists.txt +++ b/mmss/CMakeLists.txt @@ -14,6 +14,7 @@ add_executable(mmss monitor_file.cpp monitor_log.cpp network.cpp + node.cpp protocol.cpp ${BISON_mmss_config_parse_OUTPUTS} ) diff --git a/mmss/context.hpp b/mmss/context.hpp index 4c7e478..90ffea1 100644 --- a/mmss/context.hpp +++ b/mmss/context.hpp @@ -63,6 +63,16 @@ public: monitor->handle_init(node, node_id, len); } + void network(network_t *net) { + for (auto monitor : monitors) + monitor->handle_network(net); + } + + void node_iface(node_t *node, iface_t *iface) { + for (auto monitor : monitors) + monitor->handle_iface(node, iface); + } + void node_neigh(node_t *node, iface_t *iface, const gmrf_addr_t *addr, float rxcost, float txcost) { for (auto monitor : monitors) monitor->handle_neigh(node, iface, addr, rxcost, txcost); diff --git a/mmss/monitor.hpp b/mmss/monitor.hpp index 36855af..bfe43bb 100644 --- a/mmss/monitor.hpp +++ b/mmss/monitor.hpp @@ -41,6 +41,9 @@ public: virtual void handle_init(node_t *node, const uint8_t *node_id, size_t len) = 0; + virtual void handle_network(network_t *net) = 0; + virtual void handle_iface(node_t *node, iface_t *iface) = 0; + virtual void handle_neigh(node_t *node, iface_t *iface, const gmrf_addr_t *addr, float rxcost, float txcost) = 0; virtual void handle_neigh_lost(node_t *node, iface_t *iface, const gmrf_addr_t *addr) = 0; diff --git a/mmss/monitor_file.cpp b/mmss/monitor_file.cpp index 249d779..0de8a92 100644 --- a/mmss/monitor_file.cpp +++ b/mmss/monitor_file.cpp @@ -55,6 +55,20 @@ void monitor_file_t::handle_init(node_t *node, const uint8_t *node_id, size_t le std::fprintf(file, "\n"); } +void monitor_file_t::handle_network(network_t *net) { + std::fprintf(file, "%llu NETWORK %s\n", (unsigned long long)net->get_context()->now(), net->get_name().c_str()); +} + +void monitor_file_t::handle_iface(node_t *node, iface_t *iface) { + std::fprintf(file, "%llu IFACE %s %s %s ", (unsigned long long)node->get_context()->now(), node->get_name().c_str(), iface->get_name().c_str(), iface->get_network()->get_name().c_str()); + + const gmrf_addr_t *addr = iface->get_address(); + for (size_t i = 0; i < GMRF_ADDR_LEN; i++) + std::fprintf(file, "%02x", addr->d[i]); + + std::fprintf(file, "\n"); +} + void monitor_file_t::handle_neigh(node_t *node, iface_t *iface, const gmrf_addr_t *addr, float rxcost, float txcost) { std::fprintf(file, "%llu NEIGH %s %s ", (unsigned long long)node->get_context()->now(), node->get_name().c_str(), iface->get_name().c_str()); for (size_t i = 0; i < GMRF_ADDR_LEN; i++) diff --git a/mmss/monitor_file.hpp b/mmss/monitor_file.hpp index a125aee..37c018c 100644 --- a/mmss/monitor_file.hpp +++ b/mmss/monitor_file.hpp @@ -45,6 +45,9 @@ public: virtual void handle_init(node_t *node, const uint8_t *node_id, size_t len); + virtual void handle_network(network_t *net); + virtual void handle_iface(node_t *node, iface_t *iface); + virtual void handle_neigh(node_t *node, iface_t *iface, const gmrf_addr_t *addr, float rxcost, float txcost); virtual void handle_neigh_lost(node_t *node, iface_t *iface, const gmrf_addr_t *addr); diff --git a/mmss/monitor_log.cpp b/mmss/monitor_log.cpp index bbb56a4..9a21e03 100644 --- a/mmss/monitor_log.cpp +++ b/mmss/monitor_log.cpp @@ -32,12 +32,19 @@ namespace MMSS { void monitor_log_t::handle_log(node_t *node, int priority, const std::string &message) { - node->get_context()->logf(priority, "%s: %s", node->get_name().c_str(), message.c_str()); + if (priority < LOG_DEBUG) + node->get_context()->logf(priority, "%s: %s", node->get_name().c_str(), message.c_str()); } void monitor_log_t::handle_init(node_t *node UNUSED, const uint8_t *node_id UNUSED, size_t len UNUSED) { } +void monitor_log_t::handle_network(network_t *net UNUSED) { +} + +void monitor_log_t::handle_iface(node_t *node UNUSED, iface_t *iface UNUSED) { +} + void monitor_log_t::handle_neigh(node_t *node UNUSED, iface_t *iface UNUSED, const gmrf_addr_t *addr UNUSED, float rxcost UNUSED, float txcost UNUSED) { } diff --git a/mmss/monitor_log.hpp b/mmss/monitor_log.hpp index 084e8eb..262dd2d 100644 --- a/mmss/monitor_log.hpp +++ b/mmss/monitor_log.hpp @@ -36,6 +36,9 @@ public: virtual void handle_init(node_t *node, const uint8_t *node_id, size_t len); + virtual void handle_network(network_t *net); + virtual void handle_iface(node_t *node, iface_t *iface); + virtual void handle_neigh(node_t *node, iface_t *iface, const gmrf_addr_t *addr, float rxcost, float txcost); virtual void handle_neigh_lost(node_t *node, iface_t *iface, const gmrf_addr_t *addr); diff --git a/mmss/network.cpp b/mmss/network.cpp index 7550541..6e47240 100644 --- a/mmss/network.cpp +++ b/mmss/network.cpp @@ -34,6 +34,11 @@ namespace MMSS { +network_t::network_t(context_t *mmss0, const std::string &name0, unsigned rand_seed0) + : mmss(mmss0), name(name0), mtu(1500), rand_seed(rand_seed0), etx_min(1), etx_max(1) { + mmss->network(this); +} + float network_t::get_etx() const { if (etx_min == etx_max) return etx_min; diff --git a/mmss/network.hpp b/mmss/network.hpp index 7eca164..54e3f77 100644 --- a/mmss/network.hpp +++ b/mmss/network.hpp @@ -57,8 +57,7 @@ private: void enqueue(const void *data, size_t len, const iface_t *src_iface, const std::shared_ptr &dest_iface); public: - network_t(context_t *mmss0, const std::string &name0, unsigned rand_seed0) - : mmss(mmss0), name(name0), mtu(1500), rand_seed(rand_seed0), etx_min(1), etx_max(1) {} + network_t(context_t *mmss0, const std::string &name0, unsigned rand_seed0); void set_packet_loss(float etx) { etx_min = etx_max = etx; diff --git a/mmss/node.cpp b/mmss/node.cpp new file mode 100644 index 0000000..41461f5 --- /dev/null +++ b/mmss/node.cpp @@ -0,0 +1,39 @@ +/* + Copyright (c) 2013-2014, Matthias Schiffer + 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. +*/ + + +#include "node.hpp" +#include "context.hpp" + + +namespace MMSS { + +gmrf_iface_state_t * node_t::add_iface(const std::shared_ptr &iface) { + interfaces.insert(iface); + mmss->node_iface(this, iface.get()); + return proto->add_iface(gmrf_ctx, iface.get()); +} + +} diff --git a/mmss/node.hpp b/mmss/node.hpp index 06016cc..adebcf2 100644 --- a/mmss/node.hpp +++ b/mmss/node.hpp @@ -59,10 +59,7 @@ public: return node; } - gmrf_iface_state_t* add_iface(const std::shared_ptr &iface) { - interfaces.insert(iface); - return proto->add_iface(gmrf_ctx, iface.get()); - } + gmrf_iface_state_t* add_iface(const std::shared_ptr &iface); context_t* get_context() const { return mmss; -- cgit v1.2.3