/* The stellarium telescope library helps building telescope server programs, that can communicate with stellarium by means of the stellarium TCP telescope protocol. It also contains smaple server classes (dummy, Meade LX200). Author and Copyright of this file and of the stellarium telescope library: Johannes Gajdosik, 2006, modified for NexStar telescopes by Michael Heinz. This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "NexStarConnection.hpp" #include "NexStarCommand.hpp" #include "TelescopeClientDirectNexStar.hpp" #include "LogFile.hpp" #include using namespace std; NexStarConnection::NexStarConnection(Server &server, const char *serial_device) : SerialPort(server, serial_device) { } void NexStarConnection::resetCommunication(void) { while (!command_list.empty()) { delete command_list.front(); command_list.pop_front(); } read_buff_end = read_buff; write_buff_end = write_buff; #ifdef DEBUG4 *log_file << Now() << "NexStarConnection::resetCommunication" << endl; #endif } void NexStarConnection::sendGoto(unsigned int ra_int, int dec_int) { sendCommand(new NexStarCommandGotoPosition(server, ra_int, dec_int)); } void NexStarConnection::dataReceived(const char *&p,const char *read_buff_end) { if (isClosed()) { *log_file << Now() << "NexStarConnection::dataReceived: strange: fd is closed" << endl; } else if (command_list.empty()) { #ifdef DEBUG4 *log_file << Now() << "NexStarConnection::dataReceived: " "error: command_list is empty" << endl; #endif resetCommunication(); static_cast(&server)->communicationResetReceived(); } else if (command_list.front()->needsNoAnswer()) { *log_file << Now() << "NexStarConnection::dataReceived: " "strange: command(" << *command_list.front() << ") needs no answer" << endl; } else { while(true) { const int rc=command_list.front()->readAnswerFromBuffer(p, read_buff_end); //*log_file << Now() << "NexStarConnection::dataReceived: " // << *command_list.front() << "->readAnswerFromBuffer returned " // << rc << endl; if (rc <= 0) { if (rc < 0) { resetCommunication(); static_cast(&server)->communicationResetReceived(); } break; } delete command_list.front(); command_list.pop_front(); if (command_list.empty()) break; if (!command_list.front()->writeCommandToBuffer( write_buff_end, write_buff+sizeof(write_buff))) break; } } } void NexStarConnection::sendCommand(NexStarCommand *command) { if (command) { #ifdef DEBUG4 *log_file << Now() << "NexStarConnection::sendCommand(" << *command << ")" << endl; #endif command_list.push_back(command); while (!command_list.front()->hasBeenWrittenToBuffer()) { if (command_list.front()->writeCommandToBuffer( write_buff_end, write_buff+sizeof(write_buff))) { //*log_file << Now() << "NexStarConnection::sendCommand: " // << (*command_list.front()) // << "::writeCommandToBuffer ok" << endl; if (command_list.front()->needsNoAnswer()) { delete command_list.front(); command_list.pop_front(); if (command_list.empty()) break; } else { break; } } else { //*log_file << Now() << "NexStarConnection::sendCommand: " // << (*command_list.front()) // << "::writeCommandToBuffer failed" << endl; break; } } //*log_file << Now() << "NexStarConnection::sendCommand(" << *command << ") end" // << endl; } }