1 // vim: set noexpandtab tabstop=4 shiftwidth=4:
2 //----------------------------------------------------------------------------
4 //----------------------------------------------------------------------------
5 // This file is part of PlaQui.
7 // PlaQui is free software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the Free Software
9 // Foundation; either version 2 of the License, or (at your option) any later
12 // PlaQui is distributed in the hope that it will be useful, but WITHOUT ANY
13 // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 // FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 // You should have received a copy of the GNU General Public License along
18 // with PlaQui; if not, write to the Free Software Foundation, Inc., 59 Temple
19 // Place, Suite 330, Boston, MA 02111-1307 USA
20 //----------------------------------------------------------------------------
21 // Creado: dom nov 16 13:03:33 ART 2003
22 // Autores: Leandro Lucarella <llucare@fi.uba.ar>
23 //----------------------------------------------------------------------------
28 #include "plaqui/server/plant.h"
29 #include <glibmm/timer.h>
30 #include <sigc++/class_slot.h>
44 cerr << __FILE__ << "(" << __LINE__ << ")"
45 << ": destructor." << endl;
47 // Mando a terminar todas las transmisiones.
48 transmissions_mutex.lock();
49 for (TransmitterList::iterator trans = transmissions.begin();
50 trans != transmissions.end(); trans++) {
53 TransmitterList::size_type count = transmissions.size();
54 transmissions_mutex.unlock();
55 // Espero que terminen realmente.
57 Glib::usleep(10000); // 10 milisegundos
58 transmissions_mutex.lock();
59 count = transmissions.size();
60 transmissions_mutex.unlock();
64 Plant::Plant(const string& filename): simulator(filename), filename(filename) {
66 cerr << __FILE__ << "(" << __LINE__ << ")"
67 << ": constructor. filename = " << filename << endl;
70 /* simulator.add_pump("bomba1");
71 simulator.add_conduct("c");
72 simulator.add_conduct("c1");
73 simulator.add_drainage("d");
74 simulator.add_tank("tanque");
76 simulator.connect("bomba1", "c", Model::IConector::OUT);
77 simulator.connect("c", "tanque", Model::IConector::OUT);
78 simulator.connect("tanque", "c1", Model::IConector::OUT);
79 simulator.connect("c1", "d", Model::IConector::OUT);
83 void Plant::real_run(void) {
85 cerr << __FILE__ << "(" << __LINE__ << ")"
86 << ": real_run." << endl;
89 simulator_mutex.lock();
91 string plantstatus = simulator.get_state_as_xml();
92 simulator_mutex.unlock();
93 transmissions_mutex.lock();
94 for (TransmitterList::iterator i = transmissions.begin();
95 i != transmissions.end(); i++) {
96 (*i)->send(plantstatus);
98 transmissions_mutex.unlock();
103 bool Plant::transmission_start(string& host, Connection::Port& port) {
105 cerr << __FILE__ << "(" << __LINE__ << ")"
106 << ": transmission_start(host = " << host <<
107 ", port = " << port << ")." << endl;
109 Glib::Mutex::Lock lock(transmissions_mutex);
110 for (TransmitterList::iterator i = transmissions.begin();
111 i != transmissions.end(); i++) {
112 if (((*i)->get_host() == host) && ((*i)->get_port() == port)) {
114 cerr << __FILE__ << "(" << __LINE__ << ")"
115 << ": transmission_start ERROR: ya existe."
123 trans = new Transmitter(host, port);
124 } catch (const sockerr& e) { // TODO - Hace mas selectivo el catch?
126 cerr << __FILE__ << "(" << __LINE__ << ")"
127 << ": transmission_start ERROR (" << e.serrno()
128 << "): " << e.errstr() << endl;
132 // } catch (...) { // TODO - Hace mas selectivo el catch?
134 // cerr << __FILE__ << "(" << __LINE__ << ")"
135 // << ": transmission_start ERROR: desconocido."
141 transmissions.push_back(trans);
142 trans->signal_finished().connect(SigC::bind<Transmitter*>(
143 SigC::slot_class(*this, &Plant::on_transmission_finished),
146 host = trans->get_host();
147 port = trans->get_port();
151 bool Plant::transmission_stop(const string& host,
152 const Connection::Port& port) {
154 cerr << __FILE__ << "(" << __LINE__ << ")"
155 << ": transmission_stop(host = " << host <<
156 ", port = " << port << ")." << endl;
158 Glib::Mutex::Lock lock(transmissions_mutex);
159 for (TransmitterList::iterator i = transmissions.begin();
160 i != transmissions.end(); i++) {
161 if (((*i)->get_host() == host) && ((*i)->get_port() == port)) {
166 return false; // No la encontró.
169 void Plant::on_transmission_finished(Transmitter* transmission) {
171 cerr << __FILE__ << "(" << __LINE__ << ")"
172 << ": on_transmission_finished(transmission = "
173 << transmission << ")" << endl;
175 Glib::Mutex::Lock lock(transmissions_mutex);
176 transmissions.remove(transmission);
178 cerr << __FILE__ << "(" << __LINE__ << ")"
179 << ": lista de conexiones" << endl;
180 for (TransmitterList::const_iterator i = transmissions.begin();
181 i != transmissions.end(); i++) {
182 cerr << "\t " << *i << endl;
187 bool Plant::set_open(const std::string& element, bool open) {
189 cerr << __FILE__ << "(" << __LINE__ << ")"
190 << ": set_open(element = " << element <<
191 ", open = " << open << ")." << endl;
193 Glib::Mutex::Lock lock(simulator_mutex);
194 return simulator.set_open(element, open);
197 const string Plant::get_xml(void) const {
199 cerr << __FILE__ << "(" << __LINE__ << ")"
200 << ": get_xml()." << endl;
203 ifstream ifs(filename.c_str());
209 bool Plant::transmission_exists(const string& host,
210 const Connection::Port& port) {
211 Glib::Mutex::Lock lock(transmissions_mutex);
212 for (TransmitterList::const_iterator i = transmissions.begin();
213 i != transmissions.end(); i++) {
214 if (((*i)->get_host() == host) && ((*i)->get_oprt() == port)) {
218 return false; // No la encontró.
222 //const std::string& Plant::get_filename(void) const {
226 /// \todo FIXME esto deberia estar protegido por un mutex.
227 //Plant::SignalUpdated& Plant::signal_updated(void) {
231 } // namespace Server
233 } // namespace PlaQui