-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cluster.cc
executable file
·186 lines (155 loc) · 5.92 KB
/
Cluster.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
#include "Cluster.hh"
using namespace std;
//CONSTRUCTOR
Cluster::Cluster() {}
//FUNCIONES PRIVADAS
void Cluster::leer_cluster(BinTree<string>& arbol_procesadores, map <string, Procesador>& procesadores){
BinTree<string> arbol_left, arbol_right;
string inp;
cin >> inp;
if (inp != "*") {
int mem;
cin >> mem;
Procesador proc_aux(inp, mem);
procesadores.insert(make_pair(inp, proc_aux));
leer_cluster(arbol_left, procesadores);
leer_cluster(arbol_right, procesadores);
arbol_procesadores = BinTree<string>(inp, arbol_left, arbol_right);
}
else arbol_procesadores = BinTree<string>();
}
bool Cluster::juntar_arboles(const string& procID, Cluster& c, BinTree<string>& arbol) {
if (arbol.empty()) return false;
BinTree<string> left = arbol.left();
BinTree<string> right = arbol.right();
if (arbol.value() == procID) { // lleva el arbol a la rama necesaria
if (left.empty() and right.empty()) {
arbol = c.get_cpu_tree();
return true;
}
else {
cout << "error: procesador con auxiliares" << endl;
return false;
}
}
else {
bool next = juntar_arboles(procID, c, left);
if (not next) next = juntar_arboles(procID, c, right);
arbol = BinTree<string>(arbol.value(), left, right);
return next;
} // posiblemente lo podría mejorar usando referencia en vez de copias
}
void Cluster::search_valid_proc(map<string, Procesador>::iterator& it, const BinTree<string>& avail_proc, int ID, int req_mem){
queue<BinTree<string>> q;
q.push(avail_proc);
int space = -1;
while (not q.empty()) {
BinTree<string> aux (q.front());
auto auxit = procesadores_mapa.find(aux.value());
int space_left;
if (not auxit->second.existe_proceso(ID) and auxit->second.get_free_space(req_mem, space_left)) {
if (it == procesadores_mapa.end() or space_left < space) {
it = auxit;
space = space_left;
}
else if (space_left == space and auxit->second.get_memoria_disponible() > it->second.get_memoria_disponible()) it = auxit;
}
if (not aux.left().empty()) q.push(aux.left());
if (not aux.right().empty()) q.push(aux.right());
q.pop();
}
}
map<string, Procesador> Cluster::get_cpu_map() const {
return procesadores_mapa;
}
BinTree<string> Cluster::get_cpu_tree() const {
return procesadores_arbol;
}
void Cluster::print_cluster(const BinTree<string>& arbol_procesadores) {
if (not arbol_procesadores.empty()) {
cout << '(';
cout << arbol_procesadores.value();
print_cluster(arbol_procesadores.left());
print_cluster(arbol_procesadores.right());
cout << ')';
}
else cout << ' ';
}
// FUNCIONES PUBLICAS
// Modificadoras
void Cluster::add_proc_cpu(const Proceso& proceso, const string& ID) {
auto it = procesadores_mapa.find(ID);
if (it == procesadores_mapa.end()) cout << "error: no existe procesador" << endl;
else {
if (it->second.existe_proceso(proceso.consultar_PID())) cout << "error: ya existe proceso" << endl;
else it->second.add_proceso(proceso);
}
}
bool Cluster::add_proc_ep(const Proceso& p) {
auto it = procesadores_mapa.end();
search_valid_proc(it, procesadores_arbol, p.consultar_PID(), p.consultar_mem_req());
if (it == procesadores_mapa.end()) return false;
it->second.add_proceso(p);
return true;
}
void Cluster::avanzar_tiempo(int segundos) {
map <string, Procesador>::iterator it;
for (it = procesadores_mapa.begin(); it != procesadores_mapa.end(); ++it) {
it->second.actualizar_tiempo(segundos);
}
}
void Cluster::eliminar_proceso(const string& cpuID, int PID) {
auto it = procesadores_mapa.find(cpuID);
if (it == procesadores_mapa.end()) cout << "error: no existe procesador" << endl;
else {
map <int, Proceso>::iterator null_iterator;
it->second.del_proceso(null_iterator, PID);
}
}
void Cluster::modificar_cluster(const string& procID, Cluster& c) {
auto it = procesadores_mapa.find(procID);
if (it == procesadores_mapa.end()) cout << "error: no existe procesador" << endl;
else {
if (it->second.en_marcha()) cout << "error: procesador con procesos" << endl;
else if (juntar_arboles(procID, c, procesadores_arbol)) {
procesadores_mapa.erase(it);
auto rama = c.get_cpu_map();
procesadores_mapa.insert(rama.begin(), rama.end());
}
}
}
void Cluster::compactar_memoria_cluster() {
auto it = procesadores_mapa.begin();
while (it != procesadores_mapa.end()) {
if (it->second.en_marcha()) it->second.compactar_memoria();
++it;
}
}
void Cluster::compactar_mem_proc(const string& ID) {
auto it = procesadores_mapa.find(ID);
if (it == procesadores_mapa.end()) cout << "error: no existe procesador" << endl;
else it->second.compactar_memoria();
}
void Cluster::leer_estructura_cluster() {
procesadores_mapa.clear();
leer_cluster(procesadores_arbol, procesadores_mapa);
}
// Lectura y escritura
void Cluster::imprimir_estructura_cluster() const {
print_cluster(procesadores_arbol);
cout << endl;
}
void Cluster::imprimir_procesadores_cluster() const{
for (auto it = procesadores_mapa.begin(); it != procesadores_mapa.end(); ++it) {
cout << it->first << endl;
imprimir_procesador("#", it);
}
}
void Cluster::imprimir_procesador(const string& procID, map<string, Procesador>::const_iterator& it) const{
if (procID != "#") {
it = procesadores_mapa.find(procID);
if (it == procesadores_mapa.end()) cout << "error: no existe procesador" << endl;
else if (it->second.en_marcha()) it->second.imprimir_procesador();
}
else if (it->second.en_marcha()) it->second.imprimir_procesador();
}