Sparkle checkForUpdatesInBackground 不向网络服务器发出请求
Sparkle checkForUpdatesInBackground places no request on webserver
在我的命令行应用程序中,当调用 [[SUUpdater sharedUpdater] checkForUpdatesInBackground]
时,Sparkle 项目没有在我的网络服务器上发出 HTTPS 请求。我希望调用 checkForUpdatesInBackground
成功,所以我知道我的设置是正确的。我正在通过 HTTPS 使用 Nginx 网络服务器,并查看该服务器的日志以确保正在请求 appcast.xml 文件。
我试过调试Sparkle框架,调用checkForUpdatesInBackground
后发现框架确实在here中调用了dispatch_async
。这给出了以下堆栈跟踪。
2018-12-20 06:46:46.037297-0800 MyApplication[28705:224144] Stack trace : (
0 ??? 0x00000001005a7b0e 0x0 + 4300897038
1 MyApplication 0x0000000100001af0 main + 0
2 Sparkle 0x000000010036a5f9 -[SUAppcast fetchAppcastFromURL:inBackground:completionBlock:] + 1625
3 Sparkle 0x0000000100372fff -[SUBasicUpdateDriver checkForUpdatesAtURL:host:] + 1423
4 Sparkle 0x00000001003aabe5 -[SUUpdater checkForUpdatesWithDriver:] + 773
5 Sparkle 0x00000001003aa41e -[SUUpdater checkForUpdatesInBackground] + 494
6 MyApplication 0x0000000100001b9f main + 175
7 libdyld.dylib 0x00007fff5ddd1085 start + 1
)
我的Info.plist:
{
"SUAllowsAutomaticUpdates" = NO;
CFBundleIconFile = "myicon.icns";
CFBundleExecutable = MyApplication;
"SUAutomaticallyUpdate" = NO;
"SUScheduledCheckInterval" = 3600;
"SUEnableAutomaticChecks" = NO;
SUPublicEDKey = "0xe+xaH4VBOMIADOqOqBAZug/hnrCqBKUyCffx+8Qvw=";
SUFeedURL = "https://test.myurl.com/appcast.xml";
CFBundleVersion = "1.0.0.0";
"CFBundleShortVersionString" = "7.0";
CFBundleIdentifier = "nl.apps.myapp";
}
我的代码:
int main(int argc, const char * argv[]) {
@autoreleasepool {
[[SUUpdater sharedUpdater] checkForUpdatesInBackground];
}
}
Sparkle 会停止终止我的应用程序以等待请求结束。在我的网络服务器上,我没有看到 appcast.xml 被请求,并且 Sparkle 没有显示带有任何更新信息的 window。
在我的例子中,就像源代码中的 Rengers pointed out, Sparkle does not work because it is a command-line tool. This means there exists no main loop where Sparkle depends on. Sparkle places some of its actions on the main event queue using dispatch_async, for example here。
为了克服这个问题,我将我的命令行工具变成了 GUI,现在一切正常。
在我的命令行应用程序中,当调用 [[SUUpdater sharedUpdater] checkForUpdatesInBackground]
时,Sparkle 项目没有在我的网络服务器上发出 HTTPS 请求。我希望调用 checkForUpdatesInBackground
成功,所以我知道我的设置是正确的。我正在通过 HTTPS 使用 Nginx 网络服务器,并查看该服务器的日志以确保正在请求 appcast.xml 文件。
我试过调试Sparkle框架,调用checkForUpdatesInBackground
后发现框架确实在here中调用了dispatch_async
。这给出了以下堆栈跟踪。
2018-12-20 06:46:46.037297-0800 MyApplication[28705:224144] Stack trace : (
0 ??? 0x00000001005a7b0e 0x0 + 4300897038
1 MyApplication 0x0000000100001af0 main + 0
2 Sparkle 0x000000010036a5f9 -[SUAppcast fetchAppcastFromURL:inBackground:completionBlock:] + 1625
3 Sparkle 0x0000000100372fff -[SUBasicUpdateDriver checkForUpdatesAtURL:host:] + 1423
4 Sparkle 0x00000001003aabe5 -[SUUpdater checkForUpdatesWithDriver:] + 773
5 Sparkle 0x00000001003aa41e -[SUUpdater checkForUpdatesInBackground] + 494
6 MyApplication 0x0000000100001b9f main + 175
7 libdyld.dylib 0x00007fff5ddd1085 start + 1
)
我的Info.plist:
{
"SUAllowsAutomaticUpdates" = NO;
CFBundleIconFile = "myicon.icns";
CFBundleExecutable = MyApplication;
"SUAutomaticallyUpdate" = NO;
"SUScheduledCheckInterval" = 3600;
"SUEnableAutomaticChecks" = NO;
SUPublicEDKey = "0xe+xaH4VBOMIADOqOqBAZug/hnrCqBKUyCffx+8Qvw=";
SUFeedURL = "https://test.myurl.com/appcast.xml";
CFBundleVersion = "1.0.0.0";
"CFBundleShortVersionString" = "7.0";
CFBundleIdentifier = "nl.apps.myapp";
}
我的代码:
int main(int argc, const char * argv[]) {
@autoreleasepool {
[[SUUpdater sharedUpdater] checkForUpdatesInBackground];
}
}
Sparkle 会停止终止我的应用程序以等待请求结束。在我的网络服务器上,我没有看到 appcast.xml 被请求,并且 Sparkle 没有显示带有任何更新信息的 window。
在我的例子中,就像源代码中的 Rengers pointed out, Sparkle does not work because it is a command-line tool. This means there exists no main loop where Sparkle depends on. Sparkle places some of its actions on the main event queue using dispatch_async, for example here。
为了克服这个问题,我将我的命令行工具变成了 GUI,现在一切正常。