Автор работы: Пользователь скрыл имя, 14 Февраля 2013 в 21:48, дипломная работа
Метою дослідження є перевірка навичок програмування на QT, отримання розробленої системи автоматичного мережевого розподілення навчального матеріалу у комп’ютерному класі з урахуванням IP-адрес комп’ютерів й інструкції з її використання та закріплення знань, отриманих в процесі теоретичної діяльності.
Задачі дослідження наступні:
Робота над програмним продуктом та реалізацією програмного забезпечення;
Застосування знань про мережну роботу засобами QT;
Застосування знань про маніпулювання файловою системою й роботою з нею засобами QT;
Отримання нового досвіду з проектування на платформі QT;
ВСТУП 6
РОЗДІЛ 1. АНАЛІЗ ДЖЕРЕЛ СТОСОВНО МЕТОДІВ РОЗРОБКИ 9
Вибір середи програмування 9
Технологія клієнт – сервер: взаємодія клієнта з сервером 11
Робота з мережею засобами QT 13
Використання TCP за допомогою класів QTcpSocket та QTcpServer 14
Робота з файловою системою засобами QT 16
Клас QFileSystemModel 17
Клас QDir. Перегляд вмісту директорії за допомогою QDir 17
Клас QFile 19
Клас QFileInfo 20
Робота з потоками засобами QT 21
Клас QThread 22
Класи QRunnable та QThreadPool 24
Клас QtConcurrent 24
РОЗДІЛ 2. ОСНОВНІ ПРОБЛЕМИ РОЗРОБКИ ТА ЇХ РІШЕННЯ 26
Мета розробки 26
Основні задачі та проблеми 26
Крос-платформність 27
Робота з мережею: захист від збоїв 28
Власний протокол взаємодії клієнта з сервером 29
Маніпулювання файловою системою 30
Алгоритм роботи програми 32
Алгоритм роботи сервера 32
Алгоритм роботи клієнта 34
Алгоритм роботи графічного клієнта 35
РОЗДІЛ 3.РЕАЛІЗАЦІЯ СИСТЕМИ АВТОМАТИЧНОГО МЕРЕЖЕВОГО РОЗПОДІЛЕННЯ НАВЧАЛЬНОГО МАТЕРІАЛУ У КОМПЬЮТЕРНОМУ КЛАСІ 36
Програмна реалізація сервера 38
Програмна реалізація клієнта 40
Програмна реалізація графічного клієнта 42
Інструкція з використання програми 44
РОЗДІЛ 4. ОХОРОНА ПРАЦІ 48
Основні поняття охорони праці 48
Загальні положення 50
Вимоги до виробничого персоналу 51
Вимоги безпеки під час роботи 53
Вимоги безпеки в аварійних ситуаціях 54
Інструкція із заходів пожежної безпеки є службових кабінетах і лабораторіях 55
Загальні положення 55
Співробітники зобов'язані 55
Забороняється 55
Дії при пожежі 55
Обов'язки особи, відповідального за протипожежний стан приміщення 56
Відповідальність особи, відповідального за протипожежний стан приміщенні 56
ВИСНОВКИ 57
СПИСОК ВИКОРИСТАНИХ ДЖЕРЕЛ 59
//qint64 bytes = buffer->write(client->readAll(
//in >> buffer; // go back as many bytes as we just wrote so that it can be read
QImage image;
// Construct a new QImage
//image.loadFromData(buffer->
in >> image;
if (image.isNull())
// Check if the image was indeed received
qDebug("The image is null. Something failed.");
//mainWindow->label->
//QListWidgetItem *item1=new QListWidgetItem(QPixmap::
}
}
void ModelServer::disconnected()
{ QTcpSocket *client = (QTcpSocket*)sender();
qDebug() << "Client disconnected:"
<< client->peerAddress().
clients.remove(clients.
}
Лістинг MainWindow
#include "ModelClient.h"
#include <ModelFileSystem.h>
#include "MainWindow.h"
//#include "ModelClient.h"
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent)
{ // When using Designer, you should always call setupUi(this)
// in your constructor. This creates and lays out all the widgets
// on the MainWindow that you setup in Designer.
setupUi(this);
modelFileSystem = new ModelFileSystem(this,"/");
modelClient = new ModelClient(this);
modelClient->
modelClient->
modelClient->
this->updateExplorerView();
}
void MainWindow::
{ this->explorerView_1->
QVector<ModelFileSystemItem*> fileList =
modelFileSystem->
int rowCount = modelFileSystem->
for(int i=0;i<rowCount;i++)
{this->explorerView_1->
QTableWidgetItem *item
= new QTableWidgetItem(QIcon(
item->setFlags(Qt::
this->explorerView_1->setItem(
item = new QTableWidgetItem(fileList[i]->
item->setFlags(Qt::
this->explorerView_1->setItem(
}
this->pathEdit1->setText(
if(modelFileSystem->
this->backButton1->setEnabled(
else
this->backButton1->setEnabled(
if(modelFileSystem->
this->forwardButton1->
else
this->forwardButton1->
}
void MainWindow::on_explorerView_1_
{ modelClient->initiateGoTo(
}
void MainWindow::on_explorerView_2_
{ modelClient->initiateGoTo(
}
void MainWindow::on_backButton1_
modelClient->initiateGoBack(
}
void MainWindow::on_backButton2_
{
modelClient->initiateGoBack(
}
void MainWindow::on_forwardButton1_
{
modelClient->
void MainWindow::on_forwardButton2_
{
modelClient->
}
void MainWindow::on_homeButton1_
{
modelClient->initiateGoHome(
}
void MainWindow::on_homeButton2_
{
modelClient->initiateGoHome(
}
void MainWindow::on_driveBox_1_
{ //this->updateExplorerView();
}
void MainWindow::on_actionUpdate_
{}
void MainWindow::on_clientBox1_
{ modelClient->
}
void MainWindow::on_clientBox2_
{ modelClient->
}
void MainWindow::on_driveBox_1_
{ modelClient->
}
void MainWindow::on_driveBox_2_
{
modelClient->
}
void MainWindow::updateClientsList(
{
this->clientBox1->clear();
this->clientBox1->insertItems(
this->clientBox2->clear();
this->clientBox2->insertItems(
}
void MainWindow::on_copyButton_
{
w.show();
/* modelClient->initiateCopy(
{
qDebug()<<"Source "<< pathEdit1->text()+this->
qDebug()<<"Dest
"<< pathEdit2->text()+this->
*/
}
void MainWindow::on_actionSettings_
{
settingsForm.show();
}
void MainWindow::on_actionCopy_to_
{
selectDialog.show();
Лістинг ModelClient
#include "ModelClient.h"
#include "MainWindow.h"
ModelClient::ModelClient(
socket = new QTcpSocket(this);
modelFileSystem = new ModelFileSystem(this,"C:/");
avalibleClientsList.push_back(
m_nNextBlockSize=0;
connect(socket, SIGNAL(readyRead()), this, SLOT(readyRead()));
connect(socket, SIGNAL(connected()), this, SLOT(connected()));
socket->connectToHost("178.
QByteArray block;
QDataStream out(&block, QIODevice::WriteOnly);
out.setVersion(QDataStream::
out << quint64(0);
out << (quint8)7;
out << QString("777");
out.device()->seek(0);
out << quint64(block.size() - sizeof(quint64));
socket->write(block);
mainWindow=wnd;
}
void ModelClient::readyRead()
{
QDataStream in(socket);
in.setVersion(QDataStream::Qt_
quint8 command;
QStringList driveList;
QByteArray block;
QImage image;
QString caption;
QString size;
QString path;
QString ip;
QString drive;
QDataStream out(&block, QIODevice::WriteOnly);
out.setVersion(QDataStream::
quint8 count;
quint8 rowCount;
// QString line = QString::fromUtf8(socket->
//qDebug()<<"
for (;;)
{
m_nNextBlockSize=0;
//if (!m_nNextBlockSize)
{
if (socket->bytesAvailable() < sizeof(quint64)) {
break;
}
in >> m_nNextBlockSize;
}
if (socket->bytesAvailable() < m_nNextBlockSize) {
break;
}
qDebug()<<"ba " << socket->bytesAvailable();
qDebug()<<"b " << m_nNextBlockSize;
in >> command;
qDebug() << "Received command " << command;
switch(command)
{
case 11:
in >> count;
qDebug() << "Received count "<<count;
for(int i=0;i<count;i++)
{
in >> ip ;
in >> caption;
qDebug() << "Received count "<<ip<<caption;
bool found=false;
for(int i=0;i<avalibleClientsList.
if(QString(
found=true;
if(!found)
{
if(ip.compare("server")==0)
avalibleClientsList.push_back(
else
avalibleClientsList.push_back(
clients.push_back(new ModelClientItem(ip,caption));
}
qDebug() << "Received ip " << caption+" - "+ip;
}
static_cast<MainWindow *>(mainWindow)->
break;
case 12:
driveList;
in >> count;
qDebug() << "Received count "<<count;
for(int i=0;i<count;i++)
{
in >> drive ;
driveList.push_back(drive);
qDebug() << "Received drive " << drive;
}
if(requestModel==1)
{
static_cast<MainWindow *>(mainWindow)->driveBox_1->
static_cast<MainWindow *>(mainWindow)->driveBox_1->
}
else
{
static_cast<MainWindow *>(mainWindow)->driveBox_2->
static_cast<MainWindow *>(mainWindow)->driveBox_2->
}
break;
case 13:
in >> ip ;
initiateFileItemsList(ip, requestModel);
qDebug() << "llllllllll "<<ip;
break;
case 14:
in >> ip;
in >> count;
if(requestModel==1)
{
//static_cast<MainWindow *>(mainWindow)->explorerView_
static_cast<MainWindow *>(mainWindow)->explorerView_
}
else
{
//static_cast<MainWindow *>(mainWindow)->explorerView_
static_cast<MainWindow *>(mainWindow)->explorerView_
}
qDebug() << "Received count 141414141414141414"<<count;
// block.clear();
in >> path;
if(requestModel==1)
static_cast<MainWindow *>(mainWindow)->pathEdit1->
else
static_cast<MainWindow *>(mainWindow)->pathEdit2->
quint8 a1,a2;
in >> a1;
in >> a2;
if(requestModel==1)
{
if(a1==1)
static_cast<MainWindow *>(mainWindow)->backButton1->
else
static_cast<MainWindow *>(mainWindow)->backButton1->
if(a2==1)
static_cast<MainWindow *>(mainWindow)->
else
static_cast<MainWindow *>(mainWindow)->
}
else
{
if(a1==1)
static_cast<MainWindow *>(mainWindow)->backButton2->
else
static_cast<MainWindow *>(mainWindow)->backButton2->
if(a2==1)
static_cast<MainWindow *>(mainWindow)->
else
static_cast<MainWindow *>(mainWindow)->
}
block.clear();
out << quint64(0);
out << (quint8)15;
out << ip;
out << quint8(count);
out << quint8(0);
out.device()->seek(0);
out << quint64(block.size() - sizeof(quint64));
socket->write(block);
break;
case 15:
qDebug("Message 15");
in >> ip;
in >> rowCount;
in >> count;
count=count+1;
block.clear();
out << quint64(0);
out << (quint8)15;
out << ip;
out << quint8(rowCount);
out << quint8(count);
out.device()->seek(0);
out << quint64(block.size() - sizeof(quint64));
socket->write(block);
in >>image;
//>> image;
if (image.isNull()) // Check if the image was indeed received
qDebug("The image is null. Something failed.");
in >> caption ;
in >> size;
if(requestModel==1)
{
static_cast<MainWindow *>(mainWindow)->explorerView_
QTableWidgetItem *item = new QTableWidgetItem(QIcon(
item->setFlags(Qt::
static_cast<MainWindow *>(mainWindow)->explorerView_
item = new QTableWidgetItem(size);
item->setFlags(Qt::
static_cast<MainWindow *>(mainWindow)->explorerView_
}
else
{
static_cast<MainWindow *>(mainWindow)->explorerView_
QTableWidgetItem *item = new QTableWidgetItem(QIcon(
item->setFlags(Qt::
static_cast<MainWindow *>(mainWindow)->explorerView_
item = new QTableWidgetItem(size);
item->setFlags(Qt::
static_cast<MainWindow *>(mainWindow)->explorerView_
}
// in >>image;
//in >> caption ;
//in >> size;
/*
static_cast<MainWindow *>(mainWindow)->explorerView_
QTableWidgetItem *item = new QTableWidgetItem(QIcon(
item->setFlags(Qt::
static_cast<MainWindow *>(mainWindow)->explorerView_
item = new QTableWidgetItem(size);
item->setFlags(Qt::
static_cast<MainWindow *>(mainWindow)->explorerView_
*/ // block.clear();
break;
/*
static_cast<MainWindow *>(mainWindow)->explorerView_
QVector<ModelFileSystemItem*> fileList =
modelFileSystem->
int rowCount = modelFileSystem->
for(int i=0;i<rowCount;i++)
{
static_cast<MainWindow
*>(mainWindow)->explorerView_
Информация о работе Розробка системи автоматизованого мережевого розподілення навчального матеріалу