summaryrefslogtreecommitdiffstats
path: root/src/UiGuiIndentServer.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2022-08-05 10:54:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2022-08-05 11:10:14 +0900
commit430373ae38565e0d7f62b8fca0cbad73de73ec7f (patch)
tree670a7322ddd2732c8824b1fb73090b937e2a1f82 /src/UiGuiIndentServer.cpp
parentd833de5bbe40d780fe02dc95d1c981a4b1007108 (diff)
downloaduniversal-indent-gui-tqt-430373ae38565e0d7f62b8fca0cbad73de73ec7f.tar.gz
universal-indent-gui-tqt-430373ae38565e0d7f62b8fca0cbad73de73ec7f.zip
Format code using uncrustify
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/UiGuiIndentServer.cpp')
-rw-r--r--[-rwxr-xr-x]src/UiGuiIndentServer.cpp209
1 files changed, 114 insertions, 95 deletions
diff --git a/src/UiGuiIndentServer.cpp b/src/UiGuiIndentServer.cpp
index ad0dd3e..91c5ec7 100755..100644
--- a/src/UiGuiIndentServer.cpp
+++ b/src/UiGuiIndentServer.cpp
@@ -43,114 +43,133 @@
matter for which application the plugin/client is developed.
*/
-UiGuiIndentServer::UiGuiIndentServer(void) : TQObject() {
- _tcpServer = NULL;
- _currentClientConnection = NULL;
- _readyForHandleRequest = false;
+UiGuiIndentServer::UiGuiIndentServer(void) :
+ TQObject()
+{
+ _tcpServer = NULL;
+ _currentClientConnection = NULL;
+ _readyForHandleRequest = false;
}
-
-UiGuiIndentServer::~UiGuiIndentServer(void) {
+UiGuiIndentServer::~UiGuiIndentServer(void)
+{
}
-
-void UiGuiIndentServer::startServer() {
- if ( _tcpServer == NULL ) {
- _tcpServer = new TQTcpServer(this);
- }
-
- if ( !_tcpServer->isListening() ) {
- if ( !_tcpServer->listen(TQHostAddress::Any, tquint16(84484)) ) {
- TQMessageBox::critical( NULL, tr("UiGUI Server"), tr("Unable to start the server: %1.").arg(_tcpServer->errorString()) );
- return;
- }
- }
-
- connect( _tcpServer, SIGNAL(newConnection()), this, SLOT(handleNewConnection()) );
- _readyForHandleRequest = true;
- _blockSize = 0;
+void UiGuiIndentServer::startServer()
+{
+ if (_tcpServer == NULL)
+ {
+ _tcpServer = new TQTcpServer(this);
+ }
+
+ if (!_tcpServer->isListening())
+ {
+ if (!_tcpServer->listen(TQHostAddress::Any, tquint16(84484)))
+ {
+ TQMessageBox::critical(NULL, tr("UiGUI Server"),
+ tr("Unable to start the server: %1.").arg(_tcpServer->errorString()));
+ return;
+ }
+ }
+
+ connect(_tcpServer, SIGNAL(newConnection()), this, SLOT(handleNewConnection()));
+ _readyForHandleRequest = true;
+ _blockSize = 0;
}
-
-void UiGuiIndentServer::stopServer() {
- if ( _tcpServer != NULL ) {
- _tcpServer->close();
- delete _tcpServer;
- _tcpServer = NULL;
- }
- _currentClientConnection = NULL;
- _readyForHandleRequest = false;
+void UiGuiIndentServer::stopServer()
+{
+ if (_tcpServer != NULL)
+ {
+ _tcpServer->close();
+ delete _tcpServer;
+ _tcpServer = NULL;
+ }
+ _currentClientConnection = NULL;
+ _readyForHandleRequest = false;
}
+void UiGuiIndentServer::handleNewConnection()
+{
+ TQTcpSocket *clientConnection = _tcpServer->nextPendingConnection();
+ connect(clientConnection, SIGNAL(disconnected()), clientConnection, SLOT(deleteLater()));
-void UiGuiIndentServer::handleNewConnection() {
- TQTcpSocket *clientConnection = _tcpServer->nextPendingConnection();
- connect( clientConnection, SIGNAL(disconnected()), clientConnection, SLOT(deleteLater()) );
-
- connect( clientConnection, SIGNAL(readyRead()), this, SLOT(handleReceivedData()) );
+ connect(clientConnection, SIGNAL(readyRead()), this, SLOT(handleReceivedData()));
}
-
-void UiGuiIndentServer::handleReceivedData() {
- if ( !_readyForHandleRequest ) {
- return;
- }
-
- _currentClientConnection = qobject_cast<TQTcpSocket*>( sender() );
- TQString receivedData = "";
-
- if ( _currentClientConnection != NULL ) {
- TQDataStream in(_currentClientConnection);
- in.setVersion(TQDataStream::TQt_4_0);
-
- if ( _blockSize == 0 ) {
- if ( _currentClientConnection->bytesAvailable() < (int)sizeof(tquint32) )
- return;
-
- in >> _blockSize;
- }
-
- if ( _currentClientConnection->bytesAvailable() < _blockSize )
- return;
-
- TQString receivedMessage;
- in >> receivedMessage;
-
- _blockSize = 0;
-
- tqDebug() << "receivedMessage: " << receivedMessage;
-
- if ( receivedMessage == "ts" ) {
- sendMessage("Toll");
- }
- else {
- sendMessage("irgendwas");
- }
- }
+void UiGuiIndentServer::handleReceivedData()
+{
+ if (!_readyForHandleRequest)
+ {
+ return;
+ }
+
+ _currentClientConnection = qobject_cast<TQTcpSocket*>(sender());
+ TQString receivedData = "";
+
+ if (_currentClientConnection != NULL)
+ {
+ TQDataStream in(_currentClientConnection);
+ in.setVersion(TQDataStream::TQt_4_0);
+
+ if (_blockSize == 0)
+ {
+ if (_currentClientConnection->bytesAvailable() < (int)sizeof(tquint32))
+ {
+ return;
+ }
+
+ in >> _blockSize;
+ }
+
+ if (_currentClientConnection->bytesAvailable() < _blockSize)
+ {
+ return;
+ }
+
+ TQString receivedMessage;
+ in >> receivedMessage;
+
+ _blockSize = 0;
+
+ tqDebug() << "receivedMessage: " << receivedMessage;
+
+ if (receivedMessage == "ts")
+ {
+ sendMessage("Toll");
+ }
+ else
+ {
+ sendMessage("irgendwas");
+ }
+ }
}
-
-void UiGuiIndentServer::sendMessage( const TQString &message ) {
- _readyForHandleRequest = false;
-
- _dataToSend = "";
- TQDataStream out(&_dataToSend, TQIODevice::WriteOnly);
- out.setVersion(TQDataStream::TQt_4_0);
- out << (tquint32)0;
- out << message;
- out.device()->seek(0);
- out << (tquint32)(_dataToSend.size() - sizeof(tquint32));
-
- connect(_currentClientConnection, SIGNAL(bytesWritten(qint64)), this, SLOT(checkIfReadyForHandleRequest()));
- _currentClientConnection->write(_dataToSend);
+void UiGuiIndentServer::sendMessage(const TQString &message)
+{
+ _readyForHandleRequest = false;
+
+ _dataToSend = "";
+ TQDataStream out(&_dataToSend, TQIODevice::WriteOnly);
+ out.setVersion(TQDataStream::TQt_4_0);
+ out << (tquint32)0;
+ out << message;
+ out.device()->seek(0);
+ out << (tquint32)(_dataToSend.size() - sizeof(tquint32));
+
+ connect(_currentClientConnection, SIGNAL(bytesWritten(qint64)), this,
+ SLOT(checkIfReadyForHandleRequest()));
+ _currentClientConnection->write(_dataToSend);
}
-
-void UiGuiIndentServer::checkIfReadyForHandleRequest() {
- if ( _currentClientConnection->bytesToWrite() == 0 ) {
- TQString dataToSendStr = _dataToSend.right( _dataToSend.size() - sizeof(tquint32) );
- tqDebug() << "checkIfReadyForHandleRequest _dataToSend was: " << dataToSendStr;
- disconnect(_currentClientConnection, SIGNAL(bytesWritten(qint64)), this, SLOT(checkIfReadyForHandleRequest()));
- _readyForHandleRequest = true;
- }
+void UiGuiIndentServer::checkIfReadyForHandleRequest()
+{
+ if (_currentClientConnection->bytesToWrite() == 0)
+ {
+ TQString dataToSendStr = _dataToSend.right(_dataToSend.size() - sizeof(tquint32));
+ tqDebug() << "checkIfReadyForHandleRequest _dataToSend was: " << dataToSendStr;
+ disconnect(_currentClientConnection, SIGNAL(bytesWritten(qint64)), this,
+ SLOT(checkIfReadyForHandleRequest()));
+ _readyForHandleRequest = true;
+ }
}