mirror of
https://gitlab.com/manzerbredes/loosely-coupled-dss-extended.git
synced 2025-04-05 19:16:26 +02:00
Debug parser and cleaning
This commit is contained in:
parent
b7abfc66f0
commit
9bc9ab691a
3 changed files with 33 additions and 18 deletions
27
parser.awk
27
parser.awk
|
@ -1,21 +1,24 @@
|
||||||
#!/usr/bin/awk -f
|
#!/usr/bin/awk -f
|
||||||
|
|
||||||
BEGIN {
|
BEGIN {
|
||||||
RS=" "
|
RS="\n"
|
||||||
|
FS=" "
|
||||||
CSV_HEADER=""
|
CSV_HEADER=""
|
||||||
CSV_DATA=""
|
CSV_DATA=""
|
||||||
|
# ENERGY created below
|
||||||
}
|
}
|
||||||
|
|
||||||
/LOG2PARSE/{
|
/LOG2PARSE/{
|
||||||
# First extract what we need
|
# First extract what we need
|
||||||
to_parse=$1
|
split($0,fields," ")
|
||||||
|
to_parse=fields[8]
|
||||||
gsub(/\[LOG2PARSE\]\(/,"",to_parse)
|
gsub(/\[LOG2PARSE\]\(/,"",to_parse)
|
||||||
gsub(/\)/,"",to_parse)
|
gsub(/\)/,"",to_parse)
|
||||||
split(to_parse,tokens,"|")
|
split(to_parse,tokens,"|")
|
||||||
|
|
||||||
# Check if we have to build the csv header
|
# Check if we have to build the csv header
|
||||||
if(CSV_HEADER==""){
|
if(CSV_HEADER==""){
|
||||||
for(i = 1; i<length(tokens);i++){
|
for(i = 1; i<=length(tokens);i++){
|
||||||
split(tokens[i],h,":")
|
split(tokens[i],h,":")
|
||||||
if(CSV_HEADER=="")
|
if(CSV_HEADER=="")
|
||||||
CSV_HEADER=h[1]
|
CSV_HEADER=h[1]
|
||||||
|
@ -26,7 +29,7 @@ BEGIN {
|
||||||
|
|
||||||
# Build a row
|
# Build a row
|
||||||
row=""
|
row=""
|
||||||
for(i = 1; i<length(tokens);i++){
|
for(i = 1; i<=length(tokens);i++){
|
||||||
split(tokens[i],h,":")
|
split(tokens[i],h,":")
|
||||||
if(row=="")
|
if(row=="")
|
||||||
row=h[2]
|
row=h[2]
|
||||||
|
@ -42,7 +45,19 @@ BEGIN {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/\[surf_energy\/INFO\] Energy/ {
|
||||||
|
$7=substr($7, 1, length($7)-1)
|
||||||
|
ENERGY[$7]=$8
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
END {
|
END {
|
||||||
print(CSV_HEADER);
|
print(CSV_HEADER",energy");
|
||||||
print(CSV_DATA)
|
|
||||||
|
# Print data and add up energy values
|
||||||
|
split(CSV_DATA,rows, "\n")
|
||||||
|
for(i=1;i<=length(rows);i++){
|
||||||
|
split(rows[i],fields, ",")
|
||||||
|
print(rows[i]","ENERGY[fields[1]])
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -5,7 +5,7 @@
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
|
|
||||||
Inputs::Inputs(std::string node_name){
|
Inputs::Inputs(std::string node_name){
|
||||||
// Here we doing all the boring stuff
|
// Here we do all the boring stuff
|
||||||
FILE* input_file = fopen(INPUTS_FILE, "rb");
|
FILE* input_file = fopen(INPUTS_FILE, "rb");
|
||||||
char input_file_buffer[JSON_BUFFER_SIZE];
|
char input_file_buffer[JSON_BUFFER_SIZE];
|
||||||
rapidjson::FileReadStream is(input_file, input_file_buffer, sizeof(input_file_buffer));
|
rapidjson::FileReadStream is(input_file, input_file_buffer, sizeof(input_file_buffer));
|
||||||
|
@ -64,7 +64,7 @@ void Inputs::MergeEvents(){
|
||||||
}
|
}
|
||||||
|
|
||||||
double Inputs::GetNextTS(){
|
double Inputs::GetNextTS(){
|
||||||
// Ensure the caller is smart
|
// Ensure that the caller is smart
|
||||||
if(wake_duration.size()<2){
|
if(wake_duration.size()<2){
|
||||||
std::cerr << "You are trying to access to the next timestamp but it does not exists" <<std::endl;
|
std::cerr << "You are trying to access to the next timestamp but it does not exists" <<std::endl;
|
||||||
exit(1);
|
exit(1);
|
||||||
|
@ -73,7 +73,7 @@ double Inputs::GetNextTS(){
|
||||||
}
|
}
|
||||||
|
|
||||||
double Inputs::GetNextDuration(){
|
double Inputs::GetNextDuration(){
|
||||||
// Ensure the caller is smart
|
// Ensure that the caller is smart
|
||||||
if(wake_duration.size()<2){
|
if(wake_duration.size()<2){
|
||||||
std::cerr << "You are trying to access to the next duration but it does not exists" <<std::endl;
|
std::cerr << "You are trying to access to the next duration but it does not exists" <<std::endl;
|
||||||
exit(1);
|
exit(1);
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
/// @brief Required by SimGrid
|
/// @brief Required by SimGrid
|
||||||
XBT_LOG_NEW_DEFAULT_CATEGORY(simulator, "[DAO]");
|
XBT_LOG_NEW_DEFAULT_CATEGORY(simulator, "[DAO]");
|
||||||
|
|
||||||
/// @brief For convenience
|
/// @brief For convenience sake
|
||||||
typedef unsigned int u32;
|
typedef unsigned int u32;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -61,7 +61,7 @@ int main(int argc, char **argv) {
|
||||||
simgrid::s4u::Actor::create("ON", simgrid::s4u::Host::by_name(ss.str()), obs_node, args);
|
simgrid::s4u::Actor::create("ON", simgrid::s4u::Host::by_name(ss.str()), obs_node, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Setup/Run simulation
|
// Launch the simulation
|
||||||
engine.run();
|
engine.run();
|
||||||
XBT_INFO("Simulation took %fs", simgrid::s4u::Engine::get_clock());
|
XBT_INFO("Simulation took %fs", simgrid::s4u::Engine::get_clock());
|
||||||
XBT_INFO("The simulated platform file is available in \"%s\"",PLATFORM_FILE);
|
XBT_INFO("The simulated platform file is available in \"%s\"",PLATFORM_FILE);
|
||||||
|
@ -109,11 +109,11 @@ static void obs_node(std::vector<std::string> args) {
|
||||||
}
|
}
|
||||||
if(i.extended){
|
if(i.extended){
|
||||||
// We use a trick here
|
// We use a trick here
|
||||||
// First we send an instantanous message (size=0) with a timeout
|
// First we send an instantaneous message (size=0) with the usual timeout
|
||||||
// to check whether there is a receiver!
|
// to check whether there is a receiver!
|
||||||
// If there is one, we are sure that a put in the "medium"+selfName
|
// If there is one, we are sure that a put in the "medium"+selfName
|
||||||
// will not lead to a deadlock (cf anchor:5623) and we are using a exclusive
|
// will not lead to a deadlock (cf anchor:5623) and we are using a exclusive
|
||||||
// channel (to avoid another receiver to get the message)
|
// channel (to avoid other receivers to get the message)
|
||||||
m->put(p,0,i.GetDuration());
|
m->put(p,0,i.GetDuration());
|
||||||
simgrid::s4u::Mailbox *m_ext= simgrid::s4u::Mailbox::by_name("medium"+selfName);
|
simgrid::s4u::Mailbox *m_ext= simgrid::s4u::Mailbox::by_name("medium"+selfName);
|
||||||
m_ext->put(p,data_size);
|
m_ext->put(p,data_size);
|
||||||
|
@ -121,7 +121,7 @@ static void obs_node(std::vector<std::string> args) {
|
||||||
else{
|
else{
|
||||||
m->put(p,data_size,i.GetDuration());
|
m->put(p,data_size,i.GetDuration());
|
||||||
}
|
}
|
||||||
XBT_INFO("%s send data successfully",selfName.c_str());
|
XBT_INFO("%s sent data successfully",selfName.c_str());
|
||||||
isObserver=true; // Do one send for now...
|
isObserver=true; // Do one send for now...
|
||||||
isSender=false;
|
isSender=false;
|
||||||
}
|
}
|
||||||
|
@ -130,7 +130,7 @@ static void obs_node(std::vector<std::string> args) {
|
||||||
if(i.extended){
|
if(i.extended){
|
||||||
// anchor:5623 We can see here that
|
// anchor:5623 We can see here that
|
||||||
// we first receive the instantaneous message
|
// we first receive the instantaneous message
|
||||||
// and then use the mailbox specific to the sender (to have an exclusive channel)
|
// and then we use a mailbox specific to the sender (to have an exclusive channel)
|
||||||
p=m->get<Payload>(i.GetDuration());
|
p=m->get<Payload>(i.GetDuration());
|
||||||
simgrid::s4u::Mailbox *m_ext_sender = simgrid::s4u::Mailbox::by_name("medium"+p->node);
|
simgrid::s4u::Mailbox *m_ext_sender = simgrid::s4u::Mailbox::by_name("medium"+p->node);
|
||||||
p=m_ext_sender->get<Payload>();
|
p=m_ext_sender->get<Payload>();
|
||||||
|
@ -149,18 +149,18 @@ static void obs_node(std::vector<std::string> args) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
XBT_INFO("%s is observing is environment...",selfName.c_str());
|
XBT_INFO("%s is observing his environment...",selfName.c_str());
|
||||||
simgrid::s4u::this_actor::sleep_until(i.GetDuration());
|
simgrid::s4u::this_actor::sleep_until(i.GetDuration());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (...)
|
catch (...)
|
||||||
{
|
{
|
||||||
if(isSender){
|
if(isSender){
|
||||||
XBT_INFO("%s failed to send data",selfName.c_str());
|
XBT_INFO("%s could not send any data",selfName.c_str());
|
||||||
nSendFail++;
|
nSendFail++;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
XBT_INFO("%s failed to receive data",selfName.c_str());
|
XBT_INFO("%s could not receive any data",selfName.c_str());
|
||||||
nRcvFail++;
|
nRcvFail++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue