- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个在 powerpc 上运行的跨平台嵌入式 libCurl 客户端应用程序,它的行为与 Windows 对应程序不同。基本问题是我的客户端上传文件的远程服务器在返回 226 响应(表示上传成功)之前执行了很长的操作。此时远程 FTP 服务器实际上正在执行闪存回收,此操作最多可能需要 900 秒。实际上,我正在尝试在等待远程 226 或错误响应时使用数据不活动超时。
在 Windows 上这工作正常,但是在 PowerPC 嵌入式客户端上(我们链接到使用 Mentor Graphics Code Sourcery 工具链为 PowerGNU 编译的最新 libCurl-7.39.0 库)客户端在 FTP 不活动正好 60 秒后超时。
我设置计时器的方式如下面的代码片段所示(请注意,我确保 CURLOPT_FTP_RESPONSE_TIMEOUT 的值比 CURLOPT_TIMEOUT 低 1 秒。此外,值得注意的是 CURLOPT_CONNECTTIMEOUT 设置为 60秒(也许这是巧合,但在 powerPC linux 客户端上,不活动超时需要 CURLOPT_CONNECTTIMEOUT(即 60)秒)。我想知道是否有一些错误潜伏在 CURLOPT_CONNECTTIMEOUT 中是否覆盖或破坏了 linux 客户端上的 CURLOPT_FTP_RESPONSE_TIMEOUT?
除此之外,我的 curl 选项似乎工作正常。我读了 article关于 libCurl 中定时器的实现,似乎定时器是以某种“先过期”顺序组织的,也许在我更新默认 CURLOPT_FTP_RESPONSE_TIMEOUT(默认为无限期)时,它的插入会导致损坏定时器队列。
// if updating the module could potentially
// cause flash reclamation, set the command to response FTP
// timer to include both delivery time + the max expected
// time for the file put for the biggest file over BASE2 or BASET
auto flashReclTimeout = rContext.getFlashReclTimeout();
if (flashReclTimeout) {
auto timeoutSecs = duration_cast<seconds>(flashReclTimeout.get());
auto res = curl_easy_setopt(rContext.getCurlHandle(),
CURLOPT_TIMEOUT, timeoutSecs.count()+1);
res = curl_easy_setopt(rContext.getCurlHandle(),
CURLOPT_FTP_RESPONSE_TIMEOUT, timeoutSecs.count());
ss << ", [flash reclamation timeout "
<< timeoutSecs.count()
<< "(s)]";
}
LOG_EVT_INFO(gEvtLog) << rLogPrefix << ss.str() << std::endl;
我的默认 libCurl 选项设置如下
/**
* Sets the curl options using the current mContextInfo.
*
* This never sets the URI curl field as this must be
* done outside the context object.
*/
void
SLDBContext::setCurlOptions() {
CURL* pCurl = mCurlHandle.get();
// reset all curl context info
curl_easy_reset(pCurl);
// DEOS does not support EPSV or EPRT
auto res = curl_easy_setopt(pCurl, CURLOPT_FTP_USE_EPSV, 0L);
res = curl_easy_setopt(pCurl, CURLOPT_FTP_USE_EPRT, 0L);
res = curl_easy_setopt(pCurl, CURLOPT_NOSIGNAL, 1L);
#if 0
// send out TCP keep-alive probes - not required
res = curl_easy_setopt(pCurl, CURLOPT_TCP_KEEPALIVE, 1L);
// check to ensure that this is supported
if (res == CURLE_OK) {
// wait for at least 30 seconds before sending keep-alive probes
// every 2 seconds
res = curl_easy_setopt(pCurl, CURLOPT_TCP_KEEPIDLE, 30L);
res = curl_easy_setopt(pCurl, CURLOPT_TCP_KEEPINTVL, 30L);
}
#endif
// do not perform CWD when traversing the pseudo directories
res = curl_easy_setopt(pCurl, CURLOPT_FTP_FILEMETHOD, CURLFTPMETHOD_NOCWD);
res = curl_easy_setopt(pCurl, CURLOPT_CONNECTTIMEOUT, getConnectTimeoutSecs());
if (!isPASVMode()) {
res = curl_easy_setopt(pCurl, CURLOPT_FTPPORT, "-");
}
// used to capture header traffic
if (mHeaderCallback) {
res = curl_easy_setopt(pCurl, CURLOPT_WRITEHEADER, mpHeaderStream);
res = curl_easy_setopt(pCurl, CURLOPT_HEADERFUNCTION, mHeaderCallback);
}
// for FTP GET operations
if (mWriteDataCallback) {
res = curl_easy_setopt(pCurl, CURLOPT_WRITEDATA, &mScratchBuffer);
res = curl_easy_setopt(pCurl, CURLOPT_WRITEFUNCTION, mWriteDataCallback);
}
// for FTP PUT operations
if (mReadFileCallback) {
res = curl_easy_setopt(pCurl, CURLOPT_READFUNCTION, mReadFileCallback);
}
// @JC this feature may be causing slowdowns on the target platform
#if 0
// capture error details to this buffer
res = curl_easy_setopt(pCurl, CURLOPT_ERRORBUFFER, mErrorBuffer.get());
#endif
// progress callback used to track upload progress only
if (mProgressCallback) {
res = curl_easy_setopt(pCurl, CURLOPT_XFERINFOFUNCTION, mProgressCallback);
res = curl_easy_setopt(pCurl, CURLOPT_NOPROGRESS, 0L);
res = curl_easy_setopt(pCurl, CURLOPT_XFERINFODATA, nullptr);
}
// verbose logging
if (mDebuggingCallback) {
res = curl_easy_setopt(pCurl, CURLOPT_VERBOSE, 1L);
res = curl_easy_setopt(pCurl, CURLOPT_DEBUGFUNCTION, mDebuggingCallback);
res = curl_easy_setopt(pCurl, CURLOPT_DEBUGDATA, nullptr);
} else {
res = curl_easy_setopt(pCurl, CURLOPT_VERBOSE, 0L);
res = curl_easy_setopt(pCurl, CURLOPT_DEBUGDATA, nullptr);
}
// disable Nagle algorithm - to fix slowdown in bulk transfers
// with large data files @JC not necessary
// res = curl_easy_setopt(pCurl, CURLOPT_TCP_NODELAY, 1L);
if (mSocketOptionCallback) {
res = curl_easy_setopt(pCurl, CURLOPT_SOCKOPTDATA, nullptr);
res = curl_easy_setopt(pCurl, CURLOPT_SOCKOPTFUNCTION, mSocketOptionCallback);
}
}
最佳答案
实际上我发现了问题 - 结果主要是我的问题:
在我们的目标平台上进行了大量调试和打印输出后,事实证明错误的来源是 75% 的应用程序问题(我的)和 25%(在我看来)由于 using 的弱点导致的 libCurl 问题松散耦合的 va_args 在设置 libCurl 选项时从可变长度参数列表中提取参数。该问题与隐含的“long long”到“long”转换以及 PowerPC 平台上的 Endian 相关问题有关,而这在 Windows 平台上不是问题。
我在 C++ 应用程序中使用 libCurl 来满足我们的 FTP 客户端需求 - 链接到标准模板 C++ 库。我使用 std::chrono::seconds 对象来设置时间和持续时间 libCurl 选项。然而,在幕后,std::chrono::seconds 是一个相当复杂的模板类型,内部表示为 n 个 8 字节 PPC 'long long',它不同于在下面的选项中硬编码的 4 字节 PPC 'long' .由于传入的“long long”参数与实际的“long”之间存在松耦合,在 CURLOPT_SERVER_RESPONSE_TIMEOUT 中设置的值实际上是 power PC 平台上 8 字节的“long long”中不正确的 4 字节。我通过编写一段代码来验证它在 Windows 上的工作方式而不是在我们的 32 位 PPC 嵌入式目标上的工作方式来证实这一点。
我在应用程序级别设置固定代码的方法是确保有一个显式转换为与 va_arg 第二个参数相同的类型——这是必需的,因为 seconds::count() 方法返回一个 long long,没有这个 CURLOPT_SERVER_RESPONSE_TIMEOUT 选项令人惊讶地设置为 0。希望这对您有帮助
if (flashReclTimeout) {
// fix for broken flash reclamation timer on target platform
// caused by 'long long' to 'long' conversion always
// setting a 0 in the associated timers.
auto timeoutSecs = duration_cast<seconds>(flashReclTimeout.get());
/*auto res = */curl_easy_setopt(rContext.getCurlHandle(),
CURLOPT_TIMEOUT, static_cast<long>(timeoutSecs.count() + 1));
/*auto res = */curl_easy_setopt(rContext.getCurlHandle(),
CURLOPT_FTP_RESPONSE_TIMEOUT, static_cast<long>(timeoutSecs.count()));
ss << ", [flash reclamation timeout "
<< timeoutSecs.count()
<< "(s)]";
}
这是 libCurl 中的实现,其中设置了 CURLOPT_SERVER_RESPONSE_TIMEOUT(是我在我的应用程序中使用的 CURLOPT_FTP_RESPONSE_TIMEOUT 选项的同义词。
CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option,
va_list param)
{
char *argptr;
CURLcode result = CURLE_OK;
long arg;
#ifndef CURL_DISABLE_HTTP
curl_off_t bigsize;
#endif
switch(option) {
case CURLOPT_DNS_CACHE_TIMEOUT:
. . .
case CURLOPT_SERVER_RESPONSE_TIMEOUT:
/*
* Option that specifies how quickly an server response must be obtained
* before it is considered failure. For pingpong protocols.
*/
data->set.server_response_timeout = va_arg( param , long ) * 1000;
break;
libCurl 用户论坛上的 Dan Fandrich 正确指出:
CURLOPT_FTP_RESPONSE_TIMEOUT (formerly CURLOPT_SERVER_RESPONSE_TIMEOUT) is documented to take a long. There's no ambiguity about that. Since curl_easy_setopt uses varargs, there's not much choice other than casting in this situation, or with any other argument to curl_easy_setopt that doesn't match the requested type. I'm glad you found the source of problems in your program, but as the man page for curl_easy_setopt says:
Read this manual carefully as bad input values may cause libcurl to behave badly!
大多数 LibCurl 的维护者/作者 Dan Steinberg 回应了我关于 varargs 是一个容易出现用户错误的弱 api 的断言:
Yeah, using varargs for this was probably not the wisest design choice when we created the API some 14 years ago but it also why we continously stress the exact variable type to pass in for each option.
The typecheck-gcc.h macromania is another way we try to help users to discover these mistakes.
总而言之,实际问题是我的 - 没有正确阅读文档,但是 varargs api 的潜在弱点导致了 API 的固有弱点 - 吸取的教训是阅读手册并非常非常小心任何在我的特定情况下,从 std::chrono::duration 类型自动转换底层类型。
关于c++ - libCurl 上传数据不活动超时不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27337649/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!