mirror of
https://gitlab.com/manzerbredes/loosely-coupled-dss.git
synced 2025-04-06 11:36:25 +02:00
Refactoring and start extended version
This commit is contained in:
parent
87dd421913
commit
0ba773d913
4 changed files with 52 additions and 43 deletions
39
inputs.json
39
inputs.json
|
@ -1,20 +1,23 @@
|
||||||
{
|
{
|
||||||
"on0":{
|
"extended":false,
|
||||||
"is_sender": true,
|
"nodes":{
|
||||||
"power_off": 0,
|
"on0":{
|
||||||
"power_on":10,
|
"is_sender": true,
|
||||||
"use_hint": true,
|
"power_off": 0,
|
||||||
"wake_ts": [ 1, 7, 7 ],
|
"power_on":10,
|
||||||
"wake_duration": [ 5, 1, 2],
|
"use_hint": true,
|
||||||
"data_size": 50
|
"wake_ts": [ 1, 7, 7 ],
|
||||||
},
|
"wake_duration": [ 5, 1, 2],
|
||||||
"on1":{
|
"data_size": 50
|
||||||
"is_sender": false,
|
},
|
||||||
"power_off": 0,
|
"on1":{
|
||||||
"power_on":10,
|
"is_sender": false,
|
||||||
"use_hint": false,
|
"power_off": 0,
|
||||||
"wake_ts": [ 1, 7 ],
|
"power_on":10,
|
||||||
"wake_duration": [ 5, 1],
|
"use_hint": false,
|
||||||
"data_size": 50
|
"wake_ts": [ 1, 7 ],
|
||||||
|
"wake_duration": [ 5, 1],
|
||||||
|
"data_size": 50
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
#include "inputs.hpp"
|
#include "Inputs.hpp"
|
||||||
#include "xbt/log.h"
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#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 doing all the boring stuff
|
||||||
FILE* input_file = fopen(INPUTS_FILE, "rb");
|
FILE* input_file = fopen(INPUTS_FILE, "rb");
|
||||||
|
@ -14,13 +13,18 @@ Inputs::Inputs(std::string node_name){
|
||||||
fclose(input_file);
|
fclose(input_file);
|
||||||
|
|
||||||
// Init all variables
|
// Init all variables
|
||||||
is_sender=d[node_name.c_str()]["is_sender"].GetBool();
|
is_sender=d["nodes"][node_name.c_str()]["is_sender"].GetBool();
|
||||||
use_hint=d[node_name.c_str()]["use_hint"].GetBool();
|
use_hint=d["nodes"][node_name.c_str()]["use_hint"].GetBool();
|
||||||
data_size=d[node_name.c_str()]["data_size"].GetInt();
|
data_size=d["nodes"][node_name.c_str()]["data_size"].GetInt();
|
||||||
for(auto& v:d[node_name.c_str()]["wake_ts"].GetArray()){
|
extended=d["extended"].GetBool();
|
||||||
|
|
||||||
|
// Instantiate wake_ts
|
||||||
|
for(auto& v:d["nodes"][node_name.c_str()]["wake_ts"].GetArray()){
|
||||||
wake_ts.push_back(v.GetDouble());
|
wake_ts.push_back(v.GetDouble());
|
||||||
}
|
}
|
||||||
for(auto& v:d[node_name.c_str()]["wake_duration"].GetArray()){
|
|
||||||
|
// Instantiate wake_duration
|
||||||
|
for(auto& v:d["nodes"][node_name.c_str()]["wake_duration"].GetArray()){
|
||||||
wake_duration.push_back(v.GetDouble());
|
wake_duration.push_back(v.GetDouble());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -130,6 +134,7 @@ void Inputs::AddEvent(double ts, double duration){
|
||||||
}
|
}
|
||||||
|
|
||||||
void Inputs::GeneratePlatform(std::string p){
|
void Inputs::GeneratePlatform(std::string p){
|
||||||
|
|
||||||
// The boring stuff
|
// 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];
|
||||||
|
@ -137,7 +142,7 @@ void Inputs::GeneratePlatform(std::string p){
|
||||||
rapidjson::Document d;
|
rapidjson::Document d;
|
||||||
d.ParseStream(is);
|
d.ParseStream(is);
|
||||||
fclose(input_file);
|
fclose(input_file);
|
||||||
|
|
||||||
// Write platform file
|
// Write platform file
|
||||||
std::ofstream pf;
|
std::ofstream pf;
|
||||||
pf.open (p);
|
pf.open (p);
|
||||||
|
@ -145,13 +150,12 @@ void Inputs::GeneratePlatform(std::string p){
|
||||||
pf << "<!DOCTYPE platform SYSTEM \"http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd\">\n";
|
pf << "<!DOCTYPE platform SYSTEM \"http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd\">\n";
|
||||||
pf << "<platform version=\"4.1\">\n <AS id=\"AS0\" routing=\"Cluster\">\n";
|
pf << "<platform version=\"4.1\">\n <AS id=\"AS0\" routing=\"Cluster\">\n";
|
||||||
pf << " <link id=\"link\" bandwidth=\"1Mbps\" latency=\"0ms\" sharing_policy=\"SHARED\"></link>\n";
|
pf << " <link id=\"link\" bandwidth=\"1Mbps\" latency=\"0ms\" sharing_policy=\"SHARED\"></link>\n";
|
||||||
for (Value::ConstMemberIterator itr = d.MemberBegin(); itr != d.MemberEnd(); ++itr)
|
for (Value::ConstMemberIterator itr = d["nodes"].MemberBegin(); itr != d["nodes"].MemberEnd(); ++itr)
|
||||||
{
|
{
|
||||||
std::string name=itr->name.GetString();
|
std::string name=itr->name.GetString();
|
||||||
double power_on=d[itr->name.GetString()]["power_on"].GetDouble();
|
double power_on=d["nodes"][itr->name.GetString()]["power_on"].GetDouble();
|
||||||
double power_off=d[itr->name.GetString()]["power_off"].GetDouble();
|
double power_off=d["nodes"][itr->name.GetString()]["power_off"].GetDouble();
|
||||||
|
// Create node
|
||||||
//db=d[itr->name.GetString()]["wake_interval"].GetDouble();
|
|
||||||
pf << " <host id=\""<<name<<"\" speed=\"100.0f,100.0f\" pstate=\"0\">\n";
|
pf << " <host id=\""<<name<<"\" speed=\"100.0f,100.0f\" pstate=\"0\">\n";
|
||||||
pf << " <prop id=\"wattage_per_state\" value=\""<< power_off<<":"<<power_off<<", "<< power_on<<":"<<power_on<<"\" />\n";
|
pf << " <prop id=\"wattage_per_state\" value=\""<< power_off<<":"<<power_off<<", "<< power_on<<":"<<power_on<<"\" />\n";
|
||||||
pf << " <prop id=\"wattage_off\" value=\"0\" />\n </host>\n";
|
pf << " <prop id=\"wattage_off\" value=\"0\" />\n </host>\n";
|
|
@ -1,11 +1,9 @@
|
||||||
#include "rapidjson/document.h"
|
#include <rapidjson/document.h>
|
||||||
#include "rapidjson/filereadstream.h"
|
#include <rapidjson/filereadstream.h>
|
||||||
|
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <iostream>
|
|
||||||
#include <algorithm>
|
|
||||||
#include "xbt/log.h"
|
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
|
|
||||||
#define INPUTS_FILE "inputs.json"
|
#define INPUTS_FILE "inputs.json"
|
||||||
|
@ -77,6 +75,7 @@ public:
|
||||||
/// @brief These are public attributes, please take care they are fragile
|
/// @brief These are public attributes, please take care they are fragile
|
||||||
bool is_sender;
|
bool is_sender;
|
||||||
bool use_hint;
|
bool use_hint;
|
||||||
|
bool extended;
|
||||||
int data_size;
|
int data_size;
|
||||||
|
|
||||||
};
|
};
|
|
@ -1,11 +1,14 @@
|
||||||
#include "simgrid/s4u.hpp"
|
#include <simgrid/s4u.hpp>
|
||||||
#include <simgrid/s4u/Mailbox.hpp>
|
#include <simgrid/s4u/Mailbox.hpp>
|
||||||
|
#include <simgrid/s4u/Host.hpp>
|
||||||
|
#include <simgrid/plugins/energy.h>
|
||||||
|
#include <xbt/log.h>
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include "inputs.hpp"
|
|
||||||
#include "simgrid/s4u/Host.hpp"
|
#include "Inputs.hpp"
|
||||||
#include "simgrid/plugins/energy.h"
|
|
||||||
#include "xbt/log.h"
|
|
||||||
|
|
||||||
#define PLATFORM_FILE "platform.xml"
|
#define PLATFORM_FILE "platform.xml"
|
||||||
#define TURN_OFF() simgrid::s4u::this_actor::get_host()->set_pstate(0);
|
#define TURN_OFF() simgrid::s4u::this_actor::get_host()->set_pstate(0);
|
||||||
|
@ -74,7 +77,7 @@ static void obs_node(std::vector<std::string> args) {
|
||||||
Inputs i(selfName);
|
Inputs i(selfName);
|
||||||
simgrid::s4u::Mailbox *m = simgrid::s4u::Mailbox::by_name("medium");
|
simgrid::s4u::Mailbox *m = simgrid::s4u::Mailbox::by_name("medium");
|
||||||
XBT_INFO("Deploying observation node %s",selfName.c_str());
|
XBT_INFO("Deploying observation node %s",selfName.c_str());
|
||||||
|
|
||||||
// Init convenient variables
|
// Init convenient variables
|
||||||
bool isSender=i.is_sender;
|
bool isSender=i.is_sender;
|
||||||
bool useHint=i.use_hint;
|
bool useHint=i.use_hint;
|
||||||
|
|
Loading…
Add table
Reference in a new issue