5 using namespace PlaQui::Model;
7 Union::Union(const std::string &_name):Transport(_name)
11 max_flow = actual_flow = 0.0f;
18 void Union::recieve_msg(int msg, IConector *who, void *data)
22 // Verifico si esta conectado a mi entrada
23 std::list<IConector *>::iterator i;
24 for(i=in_list.begin(); i!=in_list.end(); i++) {
25 if ((*i) == who) pos = IN;
29 case MSG_QUERY_MAX_FLOW: {
30 // Me preguntan por el flujo máximo.
31 // Primero me actualizo, y luego respondo
35 tmp = (actual_flow<max_flow)?actual_flow:max_flow;
37 // Si esta conectado a mi entrada, le puedo aceptar
38 // solo la mitad del flujo maximo
41 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp);
44 case MSG_RESPONSE_MAX_FLOW: {
45 float max = *((float *)data);
47 if (max < actual_flow) actual_flow = max;
49 if ((2*max) < actual_flow) actual_flow = 2*max;
54 Transport::recieve_msg(msg, who, data);
60 // Si ya me actualice, no lo tengo que hacer de nuevo
62 // Seteo mi actualizar en true para evitar entrar de nuevo
65 send_msg(OUT, MSG_QUERY_MAX_FLOW);
66 send_msg(IN, MSG_QUERY_MAX_FLOW);
69 void Union::simulate()
75 std::cout << name << "::Flujo actual = " << actual_flow << std::endl;