#include <QtWidgets>
#include <QtNetwork>
#include <stdlib.h>
#include "server.h"
: QDialog(parent
), tcpServer
(0), networkSession
(0) {
quitButton->setAutoDefault(false);
QNetworkConfigurationManager manager;
if (manager.capabilities() & QNetworkConfigurationManager::NetworkSessionRequired) {
// Get saved network configuration
settings.endGroup();
// If the saved network configuration is not currently discovered use the system default
QNetworkConfiguration config = manager.configurationFromIdentifier(id);
if ((config.state() & QNetworkConfiguration::Discovered) !=
QNetworkConfiguration::Discovered) {
config = manager.defaultConfiguration();
}
networkSession = new QNetworkSession(config, this);
connect(networkSession, SIGNAL(opened()), this, SLOT(sessionOpened()));
statusLabel->setText(tr("Opening network session."));
networkSession->open();
} else {
sessionOpened();
}
fortunes << tr("You've been leading a dog's life. Stay off the furniture.")
<< tr("You've got to think about tomorrow.")
<< tr("You will be surprised by a loud noise.")
<< tr("You will feel hungry again in another hour.")
<< tr("You might have mail.")
<< tr("You cannot kill time without injuring eternity.")
<< tr("Computers are not intelligent. They only think they are.");
connect(quitButton, SIGNAL(clicked()), this, SLOT(close()));
connect(tcpServer, SIGNAL(newConnection()), this, SLOT(sendFortune()));
buttonLayout->addStretch(1);
buttonLayout->addWidget(quitButton);
buttonLayout->addStretch(1);
mainLayout->addWidget(statusLabel);
mainLayout->addLayout(buttonLayout);
setLayout(mainLayout);
setWindowTitle(tr("Fortune Server"));
}
void Server::sessionOpened()
{
// Save the used configuration
if (networkSession) {
QNetworkConfiguration config = networkSession->configuration();
if (config.type() == QNetworkConfiguration::UserChoice)
id
= networkSession
->sessionProperty
(QLatin1String("UserChoiceConfiguration")).
toString();
else
id = config.identifier();
settings.
setValue(QLatin1String("DefaultNetworkConfiguration"), id
);
settings.endGroup();
}
if (!tcpServer->listen()) {
tr("Unable to start the server: %1.")
.arg(tcpServer->errorString()));
close();
return;
}
// use the first non-localhost IPv4 address
for (int i = 0; i < ipAddressesList.size(); ++i) {
ipAddressesList.at(i).toIPv4Address()) {
ipAddress = ipAddressesList.at(i).toString();
break;
}
}
// if we did not find one, use IPv4 localhost
if (ipAddress.isEmpty())
statusLabel->setText(tr("The server is running on\n\nIP: %1\nport: %2\n\n"
"Run the Fortune Client example now.")
.arg(ipAddress).arg(tcpServer->serverPort()));
}
void Server::sendFortune()
{
clientConnection = tcpServer->nextPendingConnection();
connect(clientConnection, SIGNAL(disconnected()),
clientConnection, SLOT(deleteLater()));
blockSize = 0;
connect(clientConnection, SIGNAL(readyRead()), this, SLOT(recvFortune()));
}
void Server::recvFortune()
{
if (blockSize == 0) {
if (clientConnection->bytesAvailable() < (int) sizeof(quint32))
return;
in >> blockSize;
qDebug() << blockSize;
}
if (clientConnection->bytesAvailable() < blockSize)
return;
in >> nextFortune;
qDebug() << nextFortune;
if (nextFortune == currentFortune) {
QTimer::singleShot(0,
this,
SLOT(requestNewFortune
()));
return;
}
QString fileName
= "/home/saman/Desktop/png/dest.png";
if (!file.
open(QIODevice::WriteOnly)) return;
file.write(nextFortune);
file.close();
currentFortune = nextFortune;
statusLabel->setText(currentFortune);
image.loadFromData(nextFortune);
imageLabel
->setPixmap
(QPixmap::fromImage(image
));
blockSize = 0;
}