RESOLVED FIXED 192021
Add SPI to publish NSProgress on active downloads
https://bugs.webkit.org/show_bug.cgi?id=192021
Summary Add SPI to publish NSProgress on active downloads
David Quesada
Reported 2018-11-27 11:28:31 PST
Attachments
Patch (65.71 KB, patch)
2018-11-28 19:59 PST, David Quesada
no flags
Patch v2 (65.90 KB, patch)
2018-11-28 20:12 PST, David Quesada
no flags
Patch v3 (73.69 KB, patch)
2018-11-28 21:36 PST, David Quesada
no flags
Patch v4 (74.26 KB, patch)
2018-11-28 22:33 PST, David Quesada
no flags
Patch v5 (74.18 KB, patch)
2018-11-29 10:33 PST, David Quesada
no flags
David Quesada
Comment 1 2018-11-28 19:59:31 PST
David Quesada
Comment 2 2018-11-28 20:12:24 PST
Created attachment 355971 [details] Patch v2 Try to fix the mac-wk2 build.
David Quesada
Comment 3 2018-11-28 21:36:31 PST
Created attachment 355976 [details] Patch v3 Attempted build fixes for ios, ios-sim, and mac-wk2
David Quesada
Comment 4 2018-11-28 22:33:08 PST
Created attachment 355981 [details] Patch v4 Add the _addSubscriber… and _removeSubscriber: methods to NSProgressSPI.h
Alex Christensen
Comment 5 2018-11-29 09:00:16 PST
Comment on attachment 355981 [details] Patch v4 View in context: https://bugs.webkit.org/attachment.cgi?id=355981&action=review > Source/WebKit/NetworkProcess/Downloads/DownloadManager.cpp:165 > + if (Download* download = m_downloads.get(downloadID)) auto* > Source/WebKit/NetworkProcess/Downloads/cocoa/WKDownloadProgress.h:44 > +- (instancetype)initWithDownloadTask:(NSURLSessionDownloadTask *)task download:(WebKit::Download *)download URL:(NSURL *)fileURL sandboxExtension:(WTF::RefPtr<WebKit::SandboxExtension>)sandboxExtension; WTF:: should be unnecessary. > Source/WebKit/NetworkProcess/Downloads/cocoa/WKDownloadProgress.mm:57 > +#if !PLATFORM(MAC) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300 We're trying to give platform checks names in WebKit now. > Source/WebKit/NetworkProcess/Downloads/cocoa/WKDownloadProgress.mm:62 > + [self setUserInfoObject:fileURL forKey:NSProgressFileURLKey]; Documentation is a little lacking in https://developer.apple.com/documentation/foundation/nsprogressfileurlkey?language=objc and https://developer.apple.com/documentation/foundation/nsprogress/1416782-publish?language=objc Could you help me understand what this file URL is used for? > Source/WebKit/NetworkProcess/Downloads/cocoa/WKDownloadProgress.mm:66 > + WeakObjCPtr<WKDownloadProgress> weakSelf { self }; This can be inside the lambda capture. > Source/WebKit/NetworkProcess/Downloads/cocoa/WKDownloadProgress.mm:74 > + WebKit::Download* download = strongSelf.get()->m_download; > + if (download) if (auto* download = ...) > Source/WebKit/NetworkProcess/Downloads/cocoa/WKDownloadProgress.mm:116 > + [m_task.get() removeObserver:self forKeyPath:@"countOfBytesExpectedToReceive"]; > + [m_task.get() removeObserver:self forKeyPath:@"countOfBytesReceived"]; These strings should be given a name and instantiated once. > Source/WebKit/UIProcess/API/Cocoa/_WKDownload.mm:52 > +- (void)publishProgressAtURL:(NSURL *)URL WK_API_AVAILABLE(macosx(WK_MAC_TBA), ios(WK_IOS_TBA)) Availability macros only go in the header. > Source/WebKit/UIProcess/API/Cocoa/_WKDownload.mm:54 > + _download->publishProgress({ URL }); initializer list is probably unnecessary. > Source/WebKit/UIProcess/Downloads/DownloadProxy.cpp:110 > + if (NetworkProcessProxy* networkProcess = m_processPool->networkProcess()) { auto*
David Quesada
Comment 6 2018-11-29 09:56:33 PST
(In reply to Alex Christensen from comment #5) > Comment on attachment 355981 [details] > Patch v4 > > View in context: > https://bugs.webkit.org/attachment.cgi?id=355981&action=review > > > Source/WebKit/NetworkProcess/Downloads/DownloadManager.cpp:165 > > + if (Download* download = m_downloads.get(downloadID)) > > auto* > > > Source/WebKit/NetworkProcess/Downloads/cocoa/WKDownloadProgress.h:44 > > +- (instancetype)initWithDownloadTask:(NSURLSessionDownloadTask *)task download:(WebKit::Download *)download URL:(NSURL *)fileURL sandboxExtension:(WTF::RefPtr<WebKit::SandboxExtension>)sandboxExtension; > > WTF:: should be unnecessary. > > > Source/WebKit/NetworkProcess/Downloads/cocoa/WKDownloadProgress.mm:57 > > +#if !PLATFORM(MAC) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300 > > We're trying to give platform checks names in WebKit now. Sure. Would adding #define HAVE_NSPROGRESS_FILE_PROPERTIES (!PLATFORM(MAC) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300) to the top of the file be ok? > > > Source/WebKit/NetworkProcess/Downloads/cocoa/WKDownloadProgress.mm:62 > > + [self setUserInfoObject:fileURL forKey:NSProgressFileURLKey]; > > Documentation is a little lacking in > https://developer.apple.com/documentation/foundation/ > nsprogressfileurlkey?language=objc and > https://developer.apple.com/documentation/foundation/nsprogress/1416782- > publish?language=objc > Could you help me understand what this file URL is used for? In order to make an NSProgress available across processes, it needs to have an associated file URL to look it up. e.g. if process A says "I'm operating on file:///foo and file:///bar right now" and process B says "I want to display the progress of any operations on file:///bar", then the system will give process B an NSProgress that acts as a proxy to the NSProgress that process A published on file:///bar. (i.e. Updates that process A makes to the process will be sent to process B; and process B can -cancel, -pause, or -resume its NSProgress, and the system will invoke handlers on process A's NSProgress). Without the file URLs (or other types of identifiers that would serve a similar purpose), the workflow above would be Process A saying "I'm operating on two things right now, but I'm not going to say what they are.", Process B saying "Let me know if somebody is working on a thing.", and the system having no idea what process B wants to be notified of or who process A is trying to share its progresses with. > > > Source/WebKit/NetworkProcess/Downloads/cocoa/WKDownloadProgress.mm:66 > > + WeakObjCPtr<WKDownloadProgress> weakSelf { self }; > > This can be inside the lambda capture. > > > Source/WebKit/NetworkProcess/Downloads/cocoa/WKDownloadProgress.mm:74 > > + WebKit::Download* download = strongSelf.get()->m_download; > > + if (download) > > if (auto* download = ...) > > > Source/WebKit/NetworkProcess/Downloads/cocoa/WKDownloadProgress.mm:116 > > + [m_task.get() removeObserver:self forKeyPath:@"countOfBytesExpectedToReceive"]; > > + [m_task.get() removeObserver:self forKeyPath:@"countOfBytesReceived"]; > > These strings should be given a name and instantiated once. > > > Source/WebKit/UIProcess/API/Cocoa/_WKDownload.mm:52 > > +- (void)publishProgressAtURL:(NSURL *)URL WK_API_AVAILABLE(macosx(WK_MAC_TBA), ios(WK_IOS_TBA)) > > Availability macros only go in the header. > > > Source/WebKit/UIProcess/API/Cocoa/_WKDownload.mm:54 > > + _download->publishProgress({ URL }); > > initializer list is probably unnecessary. > > > Source/WebKit/UIProcess/Downloads/DownloadProxy.cpp:110 > > + if (NetworkProcessProxy* networkProcess = m_processPool->networkProcess()) { > > auto*
David Quesada
Comment 7 2018-11-29 10:33:27 PST
Created attachment 356020 [details] Patch v5 w/ Alex's suggested changes
WebKit Commit Bot
Comment 8 2018-11-29 16:38:37 PST
Comment on attachment 356020 [details] Patch v5 Clearing flags on attachment: 356020 Committed r238710: <https://trac.webkit.org/changeset/238710>
WebKit Commit Bot
Comment 9 2018-11-29 16:38:38 PST
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.