- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我写了一个客户端/服务器 TCP/IP 程序,在服务器生成一个更大的文件之前它运行良好。那时它坏了,虽然不是一直坏,但经常足以让它成为一个真正的问题。我写了一个只有 TCP/IP 的小版本,它重现了我觉得非常令人印象深刻的问题。
我尝试了各种方法来解决这个问题,但我不太确定下一步该怎么做!
/*
* Test showing that at times a socket close() + exit(0) prevents all the
* data from reaching the client.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <QCoreApplication>
#include <QByteArray>
#include <QFile>
#include <QTcpSocket>
#include <QTcpServer>
#include <QHostAddress>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/socket.h>
void
client()
{
QHostAddress a("192.168.2.1");
int port = 4004;
QTcpSocket socket;
socket.connectToHost(a, port);
if(socket.waitForConnected())
{
// if we get here then we can just copy the output of the child to Apache2
// the wait will flush all the writes as necessary
if(!socket.waitForReadyRead())
{
fprintf(stderr, "error: waitForReadyRead() timed out.\n");
exit(1);
}
// buffer somewhere to check the output validity
FILE *f = fopen("/tmp/out.html", "w");
if(f == NULL)
{
fprintf(stderr, "error: could not create /tmp/out.html file.\n");
exit(1);
}
for(;;)
{
char buf[64 * 1024];
qint64 r(socket.read(buf, sizeof(buf)));
if(r > 0)
{
fwrite(buf, r, 1, f);
}
else if(r == -1)
{
fprintf(stderr, "error: an error occured while read()'ing from the socket.\n");
break;
}
else if(r == 0)
{
// no more data (since our socket is blocking this really
// only happens when no more data is available)
break;
}
}
fclose(f);
return;
}
fprintf(stderr, "error: client could not connect to server.\n");
exit(1);
}
void
server()
{
QTcpServer s;
QHostAddress a("0.0.0.0");
if(!s.listen(a, 4004))
{
fprintf(stderr, "error: server is not able to listen, port 4004 not available?\n");
exit(1);
}
pid_t pid(0);
for(;;)
{
if(pid > 0)
{
int status;
if(waitpid(pid, &status, WNOHANG) == pid)
{
pid = 0;
}
}
s.waitForNewConnection(-1);
if(pid > 0)
{
int status;
if(waitpid(pid, &status, 0) == pid)
{
pid = 0;
}
}
QTcpSocket *socket(s.nextPendingConnection());
pid = fork();
if(pid == 0)
{
// this makes it work a bit better but we still have the
// early disconnection
int optval(1);
socklen_t optlen(sizeof(optval));
if(setsockopt(socket->socketDescriptor(), SOL_SOCKET, SO_KEEPALIVE, &optval, optlen) < 0) {
fprintf(stderr, "warning: could not mark the new connection with keepalive flag.\n");
}
// we are the child, write in the socket and close it
QFile f("example.html");
f.open(QIODevice::ReadOnly);
QByteArray buffer(f.readAll());
f.close();
socket->write(buffer);
// the sleep makes it slow, but it doesn't make any difference
//sleep(2);
socket->flush();
// extra sleep/flush don't make any difference
//sleep(1);
//socket->flush();
//sleep(1);
//socket->flush();
// the read doesn't seem to fix anything
socket->waitForReadyRead();
socket->disconnectFromHost();
delete socket;
exit(0);
}
else {
if(pid == -1) {
fprintf(stderr, "error: could not create child process to handle the socket.\n");
}
socket->close();
}
}
}
int
main(int argc, char *argv[])
{
if(argc == 1)
{
client();
}
else if(strcmp(argv[1], "-s") == 0)
{
server();
}
else
{
printf("Usage: %s [-s]\n", argv[0]);
exit(1);
}
exit(0);
}
我使用 CMakeLists.txt 文件来编译服务器和客户端。一旦编译,我们就有了一个可执行文件:tcp-bug。以 -s 作为服务器启动它。然后在不带 -s 的不同控制台中启动相同的可执行文件。我写了一个 shell 脚本来重复测试,因为它一般不会第一次发生,虽然它一般在 20 次以内。
这是我的 CMakeLists.txt 文件:
cmake_minimum_required(VERSION 2.8)
project(tcp-bug)
find_package(Qt4 4.8.1 REQUIRED QtCore QtNetwork)
include(${QT_USE_FILE})
include_directories(${QT_INCLUDES})
add_definitions(${QT_DEFINITIONS})
add_executable(tcp-bug tcp-bug.cpp)
target_link_libraries(tcp-bug ${QT_LIBRARIES})
set(CPACK_PACKAGE_NAME "tcp-bug")
set(CPACK_SOURCE_IGNORE_FILES ".swp$;/BUILD/")
include(CPack)
还有我的 shell 脚本:
#!/bin/sh
for g in a b c d e f g h i j k l m n o p q r s t u v w x y z
do
for f in 1 2 3 4 5 6 7 8 9 10
do
BUILD/tcp-bug
if [ `stat -c %s /tmp/out.html` -ne 41812 ]
then
echo "Error occured! Iteration: $g - $f"
ls -l /tmp/out.html
exit 1
fi
done
done
请注意,该脚本需要在下一页的 .tar.gz 中提供一个恰好 41,812 字节的文件(您也可以创建自己的 example.html 文件,服务器读取并发送给客户端的内容):
http://linux.m2osw.com/breaking-tcpip-simple-clientserver-implementation-qt
最佳答案
添加一个答案,因为我认为很多人会遇到类似的问题,我已经解决了它......尽管那是根本不使用 Qt。
问题是 Qt 打开套接字并将其置于 O_NONBLOCK
模式,因此,它将忽略正确的关闭信号/刷新。当您点击 exit(0)
时,它会立即关闭,并且客户端不会刷新任何内容,因此服务器无法获取最终数据,反之亦然。
当时,我试图删除 O_NONBLOCK
认为这可能有所帮助,但出于某种原因(至少在 2012 年左右),它不会真正回到阻塞套接字。所以那是没用的。如果您对套接字不小心,阻塞也可能导致其他问题(即您的应用程序可能会阻止尝试从套接字读取或写入)。
我的解决方案是实现我自己的事件库,现在称为 eventdispatcher .该库支持 TCP、UDP、Unix 套接字(DGRAM/Stream),也可用于监视文件更改、Unix 信号、线程终止、线程间通信。所有这些连接都支持定时器,定时器也可以单独使用(没有套接字连接)。每个连接还支持消息实现,这意味着您可以将库用作 RPC 系统。该消息可以是我们内部基于文本的消息(优化)或 JSON(更大的消息)。这工作得很好,我真的不后悔为了所有网络功能而放弃 Qt。
为了在 Qt 应用程序中支持这些类型的连接,我还有一个特殊的 Qt 连接,它使用 Qt 套接字(实际上是 X11),因此它仍然可以与 Qt 一起使用。只是有点不同。使用 eventdispatcher,您必须在它完全退出之前删除所有连接,因此它使正确清理套接字变得容易得多,因为它变得显式。
关于qt - 服务器 QTcpSocket "breaks"太快了,客户端没有收到所有数据,知道为什么吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13971048/
我正在使用 Qt 语言学家翻译一个 ui 文件。我使用 lupdate 获取了它的 ts 文件,并翻译了这些单词和短语。现在我想将它添加到我的代码中,但我从它的教程中发现我似乎必须将 tr() 添加到
我想在 Qt Creator 中创建下面的简单控制台应用程序: #include int main(int argc, char* argv[]) { std::cout #include
我想将 libQtGui.so.4 libQtNetwork.so.4 和 libQtCore.so.4 包含在与我的应用程序所在的目录相同的目录中。我如何让 Qt 理解这一点? y 目的是拥有一个使
我有一个充满 QPushButtons 和 QLabels 以及各种其他有趣的 QWidget 的窗口,所有这些都使用各种 QLayout 对象动态布局...而我想做的是偶尔制作一些这些小部件变得不可
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 7 年前。 Improve
我想知道 Qt 是否将下面代码的“版本 1”之类的东西放在堆上?在版本 1 中,Qt 会将 dirStuff 放在堆栈上还是堆上?我问是因为我有一种感觉,Java 将所有数据结构放在堆上......不
这个问题是关于 Qt Installer Framework 2.0 版的。 在这一点上,使用 Qt 安装程序框架的人都知道,如果不进行自定义,您根本无法通过安装程序覆盖现有安装。这样做显然是为了解决
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 8年前关闭。 Improve this q
因为我在我的计算机上安装了 Qt 4.8.4 和 Qt 5.1,所以我遇到了问题。 当只有 Qt 4.8.4 存在时,一切都很好。 当我添加 Qt 5.1 时,这个工作正常,但 Qt 4.8.4 给了
我无法在我的 Ubuntu 12 中安装更多软件包。我尝试了 apt-get install -f ,以及许多其他类似的技巧,但在找到解决方案方面没有进展。 这是属于 Qt 的损坏包: 以下包具有未满
我正在尝试使用 Virtual Box 中的 Ubuntu 机器复制我们目前在物理 Ubuntu 服务器上运行的应用程序。它是一个 QT 应用程序,但在服务器上我们使用 NPM 的 pm2 运行它。安
问题: Qt Creator 是用 Qt Creator 构建的吗? 同样,Qt Designer 是用 Qt Designer 构建的吗? 顺便说一句,为什么有两个 Qt IDE?他们是竞争对手吗?
当我使用 QWidget设计用户界面时,我总是对它的大小属性有点困惑。有size policy , geometry和 hintSize . 我只知道size policy之间的关系和 hintSiz
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我想知道是否有一种很好的方法可以让用户像 LabView 一样创建节点图(有限制)。 像这样的东西: 我见过http://www.pyqtgraph.org/ ,这似乎有类似的东西,我确实打算使用 P
在 Qt 中是否有一种跨平台的方式来获得用户喜欢的固定宽度和比例字体? 例如,在 cocoa 中,有 NSFont *proportional = [NSFont userFontOfSize:12.
我想使用 Qt 和 C++ 制作这样的交互式图表:http://jsxgraph.uni-bayreuth.de/wiki/index.php/Cubic_spline_interpolation 关
我正在编写一个嵌入式设备屏幕的模拟(其中包含主 QWidget 顶部的自定义小部件),虽然屏幕的原始尺寸是 800x600,但我希望能够按比例放大和缩小它拖动窗口的角。如果不使用网格布局和担架(不会向
在下面的示例中,我是否必须从堆中删除对象?如果是的话,怎么办? #include #include #include #include #include int main(int argc,
来自 Web 开发背景,我现在进入 QT 应用程序开发。 使用 QFonts 我已经看到我显然只有两个选择,在 QT 中定义字体大小;按像素大小或点大小。 在制作网页布局时,我习惯于以相对方式定义所有
我是一名优秀的程序员,十分优秀!