Changeset 213682 in webkit
- Timestamp:
- Mar 9, 2017, 3:44:12 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 31 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r213681 r213682 1 2017-03-09 Joseph Pecoraro <pecoraro@apple.com> 2 3 Web Inspector: Show HTTP protocol version and other Network Load Metrics (IP Address, Priority, Connection ID) 4 https://bugs.webkit.org/show_bug.cgi?id=29687 5 <rdar://problem/19281586> 6 7 Reviewed by Matt Baker and Brian Burg. 8 9 * http/tests/inspector/network/resource-metrics-expected.txt: Added. 10 * http/tests/inspector/network/resource-metrics.html: Added. 11 1 12 2017-03-09 Ryan Haddad <ryanhaddad@apple.com> 2 13 -
trunk/Source/JavaScriptCore/ChangeLog
r213680 r213682 1 2017-03-09 Joseph Pecoraro <pecoraro@apple.com> 2 3 Web Inspector: Show HTTP protocol version and other Network Load Metrics (IP Address, Priority, Connection ID) 4 https://bugs.webkit.org/show_bug.cgi?id=29687 5 <rdar://problem/19281586> 6 7 Reviewed by Matt Baker and Brian Burg. 8 9 * inspector/protocol/Network.json: 10 Add metrics object with optional properties to loadingFinished event. 11 1 12 2017-03-09 Youenn Fablet <youenn@apple.com> 2 13 -
trunk/Source/JavaScriptCore/inspector/protocol/Network.json
r213666 r213682 75 75 { "name": "requestHeadersText", "type": "string", "optional": true, "description": "HTTP request headers text." }, 76 76 { "name": "timing", "$ref": "ResourceTiming", "optional": true, "description": "Timing information for the given request." } 77 ] 78 }, 79 { 80 "id": "Metrics", 81 "type": "object", 82 "description": "Network load metrics.", 83 "properties": [ 84 { "name": "protocol", "type": "string", "optional": true, "description": "Network protocol. ALPN Protocol ID Identification Sequence, as per RFC 7301 (for example, http/2, http/1.1, spdy/3.1)" }, 85 { "name": "priority", "type": "string", "enum": ["low", "medium", "high"], "optional": true, "description": "Network priority." }, 86 { "name": "connectionIdentifier", "type": "string", "optional": true, "description": "Connection identifier." }, 87 { "name": "remoteAddress", "type": "string", "optional": true, "description": "Remote IP address." } 77 88 ] 78 89 }, … … 230 241 { "name": "requestId", "$ref": "RequestId", "description": "Request identifier." }, 231 242 { "name": "timestamp", "$ref": "Timestamp", "description": "Timestamp." }, 232 { "name": "sourceMapURL", "type": "string", "optional": true, "description": "URL of source map associated with this resource (if any)." } 243 { "name": "sourceMapURL", "type": "string", "optional": true, "description": "URL of source map associated with this resource (if any)." }, 244 { "name": "metrics", "$ref": "Metrics", "optional": true, "description": "Network metrics." } 233 245 ] 234 246 }, -
trunk/Source/WebCore/ChangeLog
r213679 r213682 1 2017-03-09 Joseph Pecoraro <pecoraro@apple.com> 2 3 Web Inspector: Show HTTP protocol version and other Network Load Metrics (IP Address, Priority, Connection ID) 4 https://bugs.webkit.org/show_bug.cgi?id=29687 5 <rdar://problem/19281586> 6 7 Reviewed by Matt Baker and Brian Burg. 8 9 Test: http/tests/inspector/network/resource-metrics.html 10 11 * inspector/InspectorNetworkAgent.cpp: 12 (WebCore::toProtocol): 13 (WebCore::InspectorNetworkAgent::buildObjectForMetrics): 14 (WebCore::InspectorNetworkAgent::didFinishLoading): 15 Send metrics at didFinishLoading time, we do not have all of 16 these at didReceiveResponse time. 17 18 * inspector/InspectorInstrumentation.cpp: 19 (WebCore::InspectorInstrumentation::didFinishLoadingImpl): 20 * inspector/InspectorInstrumentation.h: 21 (WebCore::InspectorInstrumentation::didFinishLoading): 22 * inspector/InspectorNetworkAgent.h: 23 * loader/CrossOriginPreflightChecker.cpp: 24 (WebCore::CrossOriginPreflightChecker::validatePreflightResponse): 25 * loader/DocumentLoader.cpp: 26 (WebCore::DocumentLoader::finishedLoading): 27 * loader/ResourceLoadNotifier.cpp: 28 (WebCore::ResourceLoadNotifier::didFinishLoad): 29 (WebCore::ResourceLoadNotifier::dispatchDidFinishLoading): 30 (WebCore::ResourceLoadNotifier::sendRemainingDelegateMessages): 31 * loader/ResourceLoadNotifier.h: 32 * loader/SubresourceLoader.cpp: 33 (WebCore::SubresourceLoader::didFinishLoading): 34 * loader/appcache/ApplicationCacheGroup.cpp: 35 (WebCore::ApplicationCacheGroup::didFinishLoading): 36 Include or pass on NetworkLoadMetrics to Web Inspector. 37 38 * platform/network/NetworkLoadMetrics.h: 39 (WebCore::NetworkLoadMetrics::isolatedCopy): 40 (WebCore::NetworkLoadMetrics::reset): 41 (WebCore::NetworkLoadMetrics::operator==): 42 (WebCore::NetworkLoadMetrics::encode): 43 (WebCore::NetworkLoadMetrics::decode): 44 Add new optional metrics properties. 45 46 (WTF::Persistence::Coder<std::optional<WebCore::NetworkLoadPriority>>::encode): 47 (WTF::Persistence::Coder<std::optional<WebCore::NetworkLoadPriority>>::decode): 48 We never encode this but this is needed for the compiler. 49 50 * platform/spi/cocoa/NSURLConnectionSPI.h: 51 New SPI for NSURLSessionTaskTransactionMetrics details. 52 1 53 2017-03-09 Anders Carlsson <andersca@apple.com> 2 54 -
trunk/Source/WebCore/inspector/InspectorInstrumentation.cpp
r213626 r213682 600 600 } 601 601 602 void InspectorInstrumentation::didFinishLoadingImpl(InstrumentingAgents& instrumentingAgents, unsigned long identifier, DocumentLoader* loader )602 void InspectorInstrumentation::didFinishLoadingImpl(InstrumentingAgents& instrumentingAgents, unsigned long identifier, DocumentLoader* loader, const NetworkLoadMetrics& networkLoadMetrics) 603 603 { 604 604 if (!loader) … … 606 606 607 607 if (InspectorNetworkAgent* networkAgent = instrumentingAgents.inspectorNetworkAgent()) 608 networkAgent->didFinishLoading(identifier, *loader );608 networkAgent->didFinishLoading(identifier, *loader, networkLoadMetrics); 609 609 } 610 610 -
trunk/Source/WebCore/inspector/InspectorInstrumentation.h
r213621 r213682 72 72 class InspectorTimelineAgent; 73 73 class InstrumentingAgents; 74 class NetworkLoadMetrics; 74 75 class Node; 75 76 class PseudoElement; … … 157 158 static void didReceiveThreadableLoaderResponse(DocumentThreadableLoader&, unsigned long identifier); 158 159 static void didReceiveData(Frame*, unsigned long identifier, const char* data, int dataLength, int encodedDataLength); 159 static void didFinishLoading(Frame*, DocumentLoader*, unsigned long identifier );160 static void didFinishLoading(Frame*, DocumentLoader*, unsigned long identifier, const NetworkLoadMetrics&); 160 161 static void didFailLoading(Frame*, DocumentLoader*, unsigned long identifier, const ResourceError&); 161 162 static void continueAfterXFrameOptionsDenied(Frame&, unsigned long identifier, DocumentLoader&, const ResourceResponse&); … … 327 328 static void didReceiveThreadableLoaderResponseImpl(InstrumentingAgents&, DocumentThreadableLoader&, unsigned long identifier); 328 329 static void didReceiveDataImpl(InstrumentingAgents&, unsigned long identifier, const char* data, int dataLength, int encodedDataLength); 329 static void didFinishLoadingImpl(InstrumentingAgents&, unsigned long identifier, DocumentLoader* );330 static void didFinishLoadingImpl(InstrumentingAgents&, unsigned long identifier, DocumentLoader*, const NetworkLoadMetrics&); 330 331 static void didFailLoadingImpl(InstrumentingAgents&, unsigned long identifier, DocumentLoader*, const ResourceError&); 331 332 static void didFinishXHRLoadingImpl(InstrumentingAgents&, unsigned long identifier, std::optional<String> decodedText, const String& url, const String& sendURL, unsigned sendLineNumber, unsigned sendColumnNumber); … … 858 859 } 859 860 860 inline void InspectorInstrumentation::didFinishLoading(Frame* frame, DocumentLoader* loader, unsigned long identifier )861 { 862 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForFrame(frame)) 863 didFinishLoadingImpl(*instrumentingAgents, identifier, loader );861 inline void InspectorInstrumentation::didFinishLoading(Frame* frame, DocumentLoader* loader, unsigned long identifier, const NetworkLoadMetrics& networkLoadMetrics) 862 { 863 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForFrame(frame)) 864 didFinishLoadingImpl(*instrumentingAgents, identifier, loader, networkLoadMetrics); 864 865 } 865 866 -
trunk/Source/WebCore/inspector/InspectorNetworkAgent.cpp
r213666 r213682 197 197 } 198 198 199 static Inspector::Protocol::Network::Metrics::Priority toProtocol(NetworkLoadPriority priority) 200 { 201 switch (priority) { 202 case NetworkLoadPriority::Low: 203 return Inspector::Protocol::Network::Metrics::Priority::Low; 204 case NetworkLoadPriority::Medium: 205 return Inspector::Protocol::Network::Metrics::Priority::Medium; 206 case NetworkLoadPriority::High: 207 return Inspector::Protocol::Network::Metrics::Priority::High; 208 } 209 210 ASSERT_NOT_REACHED(); 211 return Inspector::Protocol::Network::Metrics::Priority::Medium; 212 } 213 214 Ref<Inspector::Protocol::Network::Metrics> InspectorNetworkAgent::buildObjectForMetrics(const NetworkLoadMetrics& networkLoadMetrics) 215 { 216 auto metrics = Inspector::Protocol::Network::Metrics::create().release(); 217 218 if (!networkLoadMetrics.protocol.isNull()) 219 metrics->setProtocol(networkLoadMetrics.protocol); 220 if (networkLoadMetrics.priority) 221 metrics->setPriority(toProtocol(*networkLoadMetrics.priority)); 222 if (networkLoadMetrics.remoteAddress) 223 metrics->setRemoteAddress(*networkLoadMetrics.remoteAddress); 224 if (networkLoadMetrics.connectionIdentifier) 225 metrics->setConnectionIdentifier(*networkLoadMetrics.connectionIdentifier); 226 227 return metrics; 228 } 229 199 230 static Ref<Inspector::Protocol::Network::Request> buildObjectForResourceRequest(const ResourceRequest& request) 200 231 { … … 392 423 } 393 424 394 void InspectorNetworkAgent::didFinishLoading(unsigned long identifier, DocumentLoader& loader )425 void InspectorNetworkAgent::didFinishLoading(unsigned long identifier, DocumentLoader& loader, const NetworkLoadMetrics& networkLoadMetrics) 395 426 { 396 427 if (m_hiddenRequestIdentifiers.remove(identifier)) 397 428 return; 398 429 399 // FIXME: Inspector should make use of NetworkLoadMetrics.430 // FIXME: We should use the NetworkLoadMetrics's responseEnd to match ResourceTiming. 400 431 double elapsedFinishTime = timestamp(); 401 432 … … 411 442 sourceMappingURL = InspectorPageAgent::sourceMapURLForResource(resourceData->cachedResource()); 412 443 413 m_frontendDispatcher->loadingFinished(requestId, elapsedFinishTime, !sourceMappingURL.isEmpty() ? &sourceMappingURL : nullptr); 444 RefPtr<Inspector::Protocol::Network::Metrics> metrics = buildObjectForMetrics(networkLoadMetrics); 445 446 m_frontendDispatcher->loadingFinished(requestId, elapsedFinishTime, !sourceMappingURL.isEmpty() ? &sourceMappingURL : nullptr, metrics); 414 447 } 415 448 -
trunk/Source/WebCore/inspector/InspectorNetworkAgent.h
r213621 r213682 79 79 void didReceiveResponse(unsigned long identifier, DocumentLoader&, const ResourceResponse&, ResourceLoader*); 80 80 void didReceiveData(unsigned long identifier, const char* data, int dataLength, int encodedDataLength); 81 void didFinishLoading(unsigned long identifier, DocumentLoader& );81 void didFinishLoading(unsigned long identifier, DocumentLoader&, const NetworkLoadMetrics&); 82 82 void didFailLoading(unsigned long identifier, DocumentLoader&, const ResourceError&); 83 83 void didLoadResourceFromMemoryCache(DocumentLoader&, CachedResource&); … … 118 118 119 119 Ref<Inspector::Protocol::Network::ResourceTiming> buildObjectForTiming(const NetworkLoadMetrics&, ResourceLoader&); 120 Ref<Inspector::Protocol::Network::Metrics> buildObjectForMetrics(const NetworkLoadMetrics&); 120 121 RefPtr<Inspector::Protocol::Network::Response> buildObjectForResourceResponse(const ResourceResponse&, ResourceLoader*); 121 122 Ref<Inspector::Protocol::Network::CachedResource> buildObjectForCachedResource(CachedResource*); -
trunk/Source/WebCore/loader/CrossOriginPreflightChecker.cpp
r212993 r213682 40 40 #include "DocumentThreadableLoader.h" 41 41 #include "InspectorInstrumentation.h" 42 #include "NetworkLoadMetrics.h" 42 43 #include "RuntimeEnabledFeatures.h" 43 44 … … 83 84 // This is only showing success preflight requests and responses but we should show network events 84 85 // for preflight failures and distinguish them better from non-preflight requests. 86 NetworkLoadMetrics emptyMetrics; 85 87 InspectorInstrumentation::didReceiveResourceResponse(*frame, identifier, frame->loader().documentLoader(), response, nullptr); 86 InspectorInstrumentation::didFinishLoading(frame, frame->loader().documentLoader(), identifier );88 InspectorInstrumentation::didFinishLoading(frame, frame->loader().documentLoader(), identifier, emptyMetrics); 87 89 88 90 CrossOriginPreflightResultCache::singleton().appendEntry(loader.securityOrigin().toString(), request.url(), WTFMove(result)); -
trunk/Source/WebCore/loader/DocumentLoader.cpp
r213182 r213682 63 63 #include "MainFrame.h" 64 64 #include "MemoryCache.h" 65 #include "NetworkLoadMetrics.h" 65 66 #include "Page.h" 66 67 #include "PolicyChecker.h" … … 391 392 // before calling dispatchDidFinishLoading so that we don't later try to 392 393 // cancel the already-finished substitute load. 394 NetworkLoadMetrics emptyMetrics; 393 395 unsigned long identifier = m_identifierForLoadWithoutResourceLoader; 394 396 m_identifierForLoadWithoutResourceLoader = 0; 395 frameLoader()->notifier().dispatchDidFinishLoading(this, identifier );397 frameLoader()->notifier().dispatchDidFinishLoading(this, identifier, emptyMetrics); 396 398 } 397 399 -
trunk/Source/WebCore/loader/ResourceLoadNotifier.cpp
r213182 r213682 88 88 } 89 89 90 void ResourceLoadNotifier::didFinishLoad(ResourceLoader* loader, const NetworkLoadMetrics& )90 void ResourceLoadNotifier::didFinishLoad(ResourceLoader* loader, const NetworkLoadMetrics& networkLoadMetrics) 91 91 { 92 92 if (Page* page = m_frame.page()) 93 93 page->progress().completeProgress(loader->identifier()); 94 94 95 // FIXME: Inspector should make use of NetworkLoadMetrics. 96 97 dispatchDidFinishLoading(loader->documentLoader(), loader->identifier()); 95 dispatchDidFinishLoading(loader->documentLoader(), loader->identifier(), networkLoadMetrics); 98 96 } 99 97 … … 163 161 } 164 162 165 void ResourceLoadNotifier::dispatchDidFinishLoading(DocumentLoader* loader, unsigned long identifier )163 void ResourceLoadNotifier::dispatchDidFinishLoading(DocumentLoader* loader, unsigned long identifier, const NetworkLoadMetrics& networkLoadMetrics) 166 164 { 167 165 // Notifying the FrameLoaderClient may cause the frame to be destroyed. … … 169 167 m_frame.loader().client().dispatchDidFinishLoading(loader, identifier); 170 168 171 InspectorInstrumentation::didFinishLoading(&m_frame, loader, identifier );169 InspectorInstrumentation::didFinishLoading(&m_frame, loader, identifier, networkLoadMetrics); 172 170 } 173 171 … … 197 195 dispatchDidReceiveData(loader, identifier, data, dataLength, encodedDataLength); 198 196 199 if (error.isNull()) 200 dispatchDidFinishLoading(loader, identifier); 201 else 197 if (error.isNull()) { 198 NetworkLoadMetrics emptyMetrics; 199 dispatchDidFinishLoading(loader, identifier, emptyMetrics); 200 } else 202 201 dispatchDidFailLoading(loader, identifier, error); 203 202 } -
trunk/Source/WebCore/loader/ResourceLoadNotifier.h
r212993 r213682 61 61 void dispatchDidReceiveResponse(DocumentLoader*, unsigned long identifier, const ResourceResponse&, ResourceLoader* = nullptr); 62 62 void dispatchDidReceiveData(DocumentLoader*, unsigned long identifier, const char* data, int dataLength, int encodedDataLength); 63 void dispatchDidFinishLoading(DocumentLoader*, unsigned long identifier );63 void dispatchDidFinishLoading(DocumentLoader*, unsigned long identifier, const NetworkLoadMetrics&); 64 64 void dispatchDidFailLoading(DocumentLoader*, unsigned long identifier, const ResourceError&); 65 65 -
trunk/Source/WebCore/loader/SubresourceLoader.cpp
r213621 r213682 560 560 m_resource->finish(); 561 561 ASSERT(!reachedTerminalState()); 562 didFinishLoadingOnePart( m_resource->response().deprecatedNetworkLoadMetrics());562 didFinishLoadingOnePart(networkLoadMetrics); 563 563 notifyDone(); 564 564 if (reachedTerminalState()) -
trunk/Source/WebCore/loader/appcache/ApplicationCacheGroup.cpp
r212993 r213682 42 42 #include "InspectorInstrumentation.h" 43 43 #include "ManifestParser.h" 44 #include "NetworkLoadMetrics.h" 44 45 #include "Page.h" 45 46 #include "ProgressTracker.h" … … 573 574 void ApplicationCacheGroup::didFinishLoading(ResourceHandle* handle) 574 575 { 575 InspectorInstrumentation::didFinishLoading(m_frame, m_frame->loader().documentLoader(), m_currentResourceIdentifier); 576 // FIXME: We should have NetworkLoadMetrics for ApplicationCache loads. 577 NetworkLoadMetrics emptyMetrics; 578 InspectorInstrumentation::didFinishLoading(m_frame, m_frame->loader().documentLoader(), m_currentResourceIdentifier, emptyMetrics); 576 579 577 580 if (handle == m_manifestHandle) { -
trunk/Source/WebCore/platform/network/NetworkLoadMetrics.h
r212993 r213682 27 27 #pragma once 28 28 29 #include <wtf/Optional.h> 29 30 #include <wtf/Seconds.h> 31 #include <wtf/persistence/Decoder.h> 32 #include <wtf/persistence/Encoder.h> 30 33 #include <wtf/text/WTFString.h> 31 34 … … 35 38 36 39 namespace WebCore { 40 41 enum class NetworkLoadPriority { 42 Low, 43 Medium, 44 High, 45 }; 37 46 38 47 class NetworkLoadMetrics { … … 58 67 copy.protocol = protocol.isolatedCopy(); 59 68 69 if (remoteAddress) 70 copy.remoteAddress = remoteAddress.value().isolatedCopy(); 71 if (connectionIdentifier) 72 copy.connectionIdentifier = connectionIdentifier.value().isolatedCopy(); 73 if (priority) 74 copy.priority = *priority; 75 60 76 return copy; 61 77 } … … 71 87 responseStart = Seconds(0); 72 88 responseEnd = Seconds(0); 89 complete = false; 73 90 protocol = String(); 74 complete = false; 91 remoteAddress = std::nullopt; 92 connectionIdentifier = std::nullopt; 93 priority = std::nullopt; 75 94 } 76 95 … … 86 105 && responseEnd == other.responseEnd 87 106 && complete == other.complete 88 && protocol == other.protocol; 107 && protocol == other.protocol 108 && remoteAddress == other.remoteAddress 109 && connectionIdentifier == other.connectionIdentifier 110 && priority == other.priority; 89 111 } 90 112 … … 116 138 // ALPN Protocol ID: https://w3c.github.io/resource-timing/#bib-RFC7301 117 139 String protocol; 140 141 std::optional<String> remoteAddress; 142 std::optional<String> connectionIdentifier; 143 std::optional<NetworkLoadPriority> priority; 118 144 }; 119 145 … … 139 165 encoder << complete; 140 166 encoder << protocol; 167 encoder << remoteAddress; 168 encoder << connectionIdentifier; 169 encoder << priority; 141 170 } 142 171 143 172 template<class Decoder> 144 bool NetworkLoadMetrics::decode(Decoder& decoder, NetworkLoadMetrics& timing)173 bool NetworkLoadMetrics::decode(Decoder& decoder, NetworkLoadMetrics& metrics) 145 174 { 146 return decoder.decode(timing.domainLookupStart) 147 && decoder.decode(timing.domainLookupEnd) 148 && decoder.decode(timing.connectStart) 149 && decoder.decode(timing.secureConnectionStart) 150 && decoder.decode(timing.connectEnd) 151 && decoder.decode(timing.requestStart) 152 && decoder.decode(timing.responseStart) 153 && decoder.decode(timing.responseEnd) 154 && decoder.decode(timing.complete) 155 && decoder.decode(timing.protocol); 175 return decoder.decode(metrics.domainLookupStart) 176 && decoder.decode(metrics.domainLookupEnd) 177 && decoder.decode(metrics.connectStart) 178 && decoder.decode(metrics.secureConnectionStart) 179 && decoder.decode(metrics.connectEnd) 180 && decoder.decode(metrics.requestStart) 181 && decoder.decode(metrics.responseStart) 182 && decoder.decode(metrics.responseEnd) 183 && decoder.decode(metrics.complete) 184 && decoder.decode(metrics.protocol) 185 && decoder.decode(metrics.remoteAddress) 186 && decoder.decode(metrics.connectionIdentifier) 187 && decoder.decode(metrics.priority); 156 188 } 157 189 158 } 190 } // namespace WebCore 191 192 // NetworkLoadMetrics should not be stored by the WTF::Persistence::Decoder. 193 namespace WTF { 194 namespace Persistence { 195 196 template<> struct Coder<std::optional<WebCore::NetworkLoadPriority>> { 197 static NO_RETURN_DUE_TO_ASSERT void encode(Encoder&, const std::optional<WebCore::NetworkLoadPriority>&) 198 { 199 ASSERT_NOT_REACHED(); 200 } 201 202 static bool decode(Decoder&, std::optional<WebCore::NetworkLoadPriority>&) 203 { 204 ASSERT_NOT_REACHED(); 205 return false; 206 } 207 }; 208 209 }} // namespace WTF::Persistence -
trunk/Source/WebCore/platform/spi/cocoa/NSURLConnectionSPI.h
r194156 r213682 47 47 @end 48 48 49 #if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300) || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 110000) 50 @interface NSURLSessionTaskTransactionMetrics () 51 @property (copy, readonly) NSString* _remoteAddressAndPort; 52 @property (copy, readonly) NSUUID* _connectionIdentifier; 53 @end 49 54 #endif 55 56 #endif -
trunk/Source/WebInspectorUI/ChangeLog
r213666 r213682 1 2017-03-09 Joseph Pecoraro <pecoraro@apple.com> 2 3 Web Inspector: Show HTTP protocol version and other Network Load Metrics (IP Address, Priority, Connection ID) 4 https://bugs.webkit.org/show_bug.cgi?id=29687 5 <rdar://problem/19281586> 6 7 Reviewed by Matt Baker and Brian Burg. 8 9 These columns are available in the Network DataGrids, but are 10 initially hidden. They can be shown by right clicking on the 11 table header and showing these columns. We are going to rework 12 the default list of visible columns later. 13 14 * Localizations/en.lproj/localizedStrings.js: 15 New localized strings for data grid headers and Low/Medium/High. 16 17 * UserInterface/Controllers/FrameResourceManager.js: 18 (WebInspector.FrameResourceManager.prototype.resourceRequestDidFinishLoading): 19 * UserInterface/Protocol/NetworkObserver.js: 20 (WebInspector.NetworkObserver.prototype.loadingFinished): 21 Pass metrics on to the Resource. 22 23 * UserInterface/Models/Resource.js: 24 (WebInspector.Resource): 25 (WebInspector.Resource.displayNameForType): 26 (WebInspector.Resource.responseSourceFromPayload): 27 (WebInspector.Resource.networkPriorityFromPayload): 28 (WebInspector.Resource.connectionIdentifierFromPayload): 29 (WebInspector.Resource.prototype.get protocol): 30 (WebInspector.Resource.prototype.get priority): 31 (WebInspector.Resource.prototype.get remoteAddress): 32 (WebInspector.Resource.prototype.get connectionIdentifier): 33 (WebInspector.Resource.prototype.updateWithMetrics): 34 Include metrics accessors and default values. 35 36 * UserInterface/Views/NetworkGridContentView.js: 37 (WebInspector.NetworkGridContentView): 38 * UserInterface/Views/NetworkTimelineView.js: 39 (WebInspector.NetworkTimelineView): 40 Add metrics columns if the backend may be sending them. 41 42 * UserInterface/Views/ResourceTimelineDataGridNode.js: 43 (WebInspector.ResourceTimelineDataGridNode.prototype.get data): 44 (WebInspector.ResourceTimelineDataGridNode.prototype.createCellContent): 45 (WebInspector.ResourceTimelineDataGridNode.prototype._displayNameForPriority): 46 (WebInspector.ResourceTimelineDataGridNode.prototype._cachedCellContent): 47 Display strings for new columns. 48 49 * UserInterface/Views/TimelineDataGridNode.js: 50 * UserInterface/Views/TimelineRecordBar.js: 51 (WebInspector.TimelineRecordBar.prototype.refresh): 52 Avoid assertions if Graph column is unavailable. 53 54 * UserInterface/Views/DataGrid.js: 55 (WebInspector.DataGrid): 56 (WebInspector.DataGrid.prototype.createSettings): 57 (WebInspector.DataGrid.prototype.setColumnVisible): 58 Better support for restoring user preference of initially 59 hidden columns which the user may have shown. 60 61 * UserInterface/Views/ResourceDetailsSidebarPanel.js: 62 (WebInspector.ResourceDetailsSidebarPanel): 63 (WebInspector.ResourceDetailsSidebarPanel.prototype._refreshRequestAndResponse): 64 Show the Protocol and Priority in the Resources sidebar. 65 1 66 2017-03-09 Nikita Vasilyev <nvasilyev@apple.com> 2 67 -
trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js
r213666 r213682 417 417 localizedStrings["Hide type information"] = "Hide type information"; 418 418 localizedStrings["Hierarchy Level"] = "Hierarchy Level"; 419 localizedStrings["High"] = "High"; 419 420 localizedStrings["Highest: %s"] = "Highest: %s"; 420 421 localizedStrings["Horizontal"] = "Horizontal"; … … 493 494 localizedStrings["Log: "] = "Log: "; 494 495 localizedStrings["Logs"] = "Logs"; 496 localizedStrings["Low"] = "Low"; 495 497 localizedStrings["Lowest: %s"] = "Lowest: %s"; 496 498 localizedStrings["MIME Type"] = "MIME Type"; … … 506 508 localizedStrings["Maximum maximum memory size in this recording"] = "Maximum maximum memory size in this recording"; 507 509 localizedStrings["Media: "] = "Media: "; 510 localizedStrings["Medium"] = "Medium"; 508 511 localizedStrings["Memory"] = "Memory"; 509 512 localizedStrings["Memory: %s"] = "Memory: %s"; … … 606 609 localizedStrings["Primary Key"] = "Primary Key"; 607 610 localizedStrings["Primary Key \u2014 %s"] = "Primary Key \u2014 %s"; 611 localizedStrings["Priority"] = "Priority"; 608 612 localizedStrings["Probe Expression"] = "Probe Expression"; 609 613 localizedStrings["Probe Sample Recorded"] = "Probe Sample Recorded"; … … 612 616 localizedStrings["Properties"] = "Properties"; 613 617 localizedStrings["Property"] = "Property"; 618 localizedStrings["Protocol"] = "Protocol"; 614 619 localizedStrings["Query Parameters"] = "Query Parameters"; 615 620 localizedStrings["Query String"] = "Query String"; … … 631 636 localizedStrings["Region announced in its entirety."] = "Region announced in its entirety."; 632 637 localizedStrings["Reload page (%s)\nReload ignoring cache (%s)"] = "Reload page (%s)\nReload ignoring cache (%s)"; 638 localizedStrings["Remote Address"] = "Remote Address"; 633 639 localizedStrings["Removals"] = "Removals"; 634 640 localizedStrings["Remove Watch Expression"] = "Remove Watch Expression"; -
trunk/Source/WebInspectorUI/UserInterface/Controllers/FrameResourceManager.js
r213666 r213682 415 415 } 416 416 417 resourceRequestDidFinishLoading(requestIdentifier, timestamp, sourceMapURL )417 resourceRequestDidFinishLoading(requestIdentifier, timestamp, sourceMapURL, metrics) 418 418 { 419 419 // Called from WebInspector.NetworkObserver. … … 430 430 return; 431 431 432 var elapsedTime = WebInspector.timelineManager.computeElapsedTime(timestamp); 432 if (metrics) 433 resource.updateWithMetrics(metrics); 434 435 let elapsedTime = WebInspector.timelineManager.computeElapsedTime(timestamp); 433 436 resource.markAsFinished(elapsedTime); 434 437 … … 454 457 return; 455 458 456 varelapsedTime = WebInspector.timelineManager.computeElapsedTime(timestamp);459 let elapsedTime = WebInspector.timelineManager.computeElapsedTime(timestamp); 457 460 resource.markAsFailed(canceled, elapsedTime); 458 461 -
trunk/Source/WebInspectorUI/UserInterface/Models/Resource.js
r213621 r213682 64 64 this._responseSource = WebInspector.Resource.ResponseSource.Unknown; 65 65 this._timingData = new WebInspector.ResourceTimingData(this); 66 this._protocol = null; 67 this._priority = WebInspector.Resource.NetworkPriority.Unknown; 68 this._remoteAddress = null; 69 this._connectionIdentifier = null; 66 70 this._target = targetId ? WebInspector.targetManager.targetForIdentifier(targetId) : WebInspector.mainTarget; 67 71 … … 129 133 return WebInspector.UIString("Other"); 130 134 default: 131 console.error("Unknown resource type :", type);135 console.error("Unknown resource type", type); 132 136 return null; 133 137 } … … 149 153 return WebInspector.Resource.ResponseSource.DiskCache; 150 154 default: 151 console.error("Unknown response source type :", source);155 console.error("Unknown response source type", source); 152 156 return WebInspector.Resource.ResponseSource.Unknown; 153 157 } 158 } 159 160 static networkPriorityFromPayload(priority) 161 { 162 switch (priority) { 163 case NetworkAgent.MetricsPriority.Low: 164 return WebInspector.Resource.NetworkPriority.Low; 165 case NetworkAgent.MetricsPriority.Medium: 166 return WebInspector.Resource.NetworkPriority.Medium; 167 case NetworkAgent.MetricsPriority.High: 168 return WebInspector.Resource.NetworkPriority.High; 169 default: 170 console.error("Unknown metrics priority", priority); 171 return WebInspector.Resource.NetworkPriority.Unknown; 172 } 173 } 174 175 static connectionIdentifierFromPayload(connectionIdentifier) 176 { 177 // Map backend connection identifiers to an easier to read number. 178 if (!WebInspector.Resource.connectionIdentifierMap) { 179 WebInspector.Resource.connectionIdentifierMap = new Map; 180 WebInspector.Resource.nextConnectionIdentifier = 1; 181 } 182 183 let id = WebInspector.Resource.connectionIdentifierMap.get(connectionIdentifier); 184 if (id) 185 return id; 186 187 id = WebInspector.Resource.nextConnectionIdentifier++; 188 WebInspector.Resource.connectionIdentifierMap.set(connectionIdentifier, id); 189 return id; 154 190 } 155 191 … … 166 202 get responseSource() { return this._responseSource; } 167 203 get timingData() { return this._timingData; } 204 get protocol() { return this._protocol; } 205 get priority() { return this._priority; } 206 get remoteAddress() { return this._remoteAddress; } 207 get connectionIdentifier() { return this._connectionIdentifier; } 168 208 169 209 get url() … … 519 559 this.dispatchEventToListeners(WebInspector.Resource.Event.ResponseReceived); 520 560 this.dispatchEventToListeners(WebInspector.Resource.Event.TimestampsDidChange); 561 } 562 563 updateWithMetrics(metrics) 564 { 565 if (metrics.protocol) 566 this._protocol = metrics.protocol; 567 if (metrics.priority) 568 this._priority = WebInspector.Resource.networkPriorityFromPayload(metrics.priority); 569 if (metrics.remoteAddress) 570 this._remoteAddress = metrics.remoteAddress; 571 if (metrics.connectionIdentifier) 572 this._connectionIdentifier = WebInspector.Resource.connectionIdentifierFromPayload(metrics.connectionIdentifier); 521 573 } 522 574 … … 798 850 MemoryCache: Symbol("memory-cache"), 799 851 DiskCache: Symbol("disk-cache"), 852 }; 853 854 WebInspector.Resource.NetworkPriority = { 855 Unknown: Symbol("unknown"), 856 Low: Symbol("low"), 857 Medium: Symbol("medium"), 858 High: Symbol("high"), 800 859 }; 801 860 -
trunk/Source/WebInspectorUI/UserInterface/Protocol/NetworkObserver.js
r213666 r213682 49 49 } 50 50 51 loadingFinished(requestId, timestamp, sourceMapURL )51 loadingFinished(requestId, timestamp, sourceMapURL, metrics) 52 52 { 53 WebInspector.frameResourceManager.resourceRequestDidFinishLoading(requestId, timestamp, sourceMapURL );53 WebInspector.frameResourceManager.resourceRequestDidFinishLoading(requestId, timestamp, sourceMapURL, metrics); 54 54 } 55 55 -
trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.js
r213622 r213682 38 38 this._sortOrder = WebInspector.DataGrid.SortOrder.Indeterminate; 39 39 this._sortOrderSetting = null; 40 this._ hiddenColumnSetting = null;40 this._columnVisibilitySetting = null; 41 41 this._columnChooserEnabled = false; 42 42 this._headerVisible = true; … … 363 363 this._sortColumnIdentifierSetting = new WebInspector.Setting(this._settingsIdentifier + "-sort", this._sortColumnIdentifier); 364 364 this._sortOrderSetting = new WebInspector.Setting(this._settingsIdentifier + "-sort-order", this._sortOrder); 365 this._ hiddenColumnSetting = new WebInspector.Setting(this._settingsIdentifier + "-hidden-columns", []);365 this._columnVisibilitySetting = new WebInspector.Setting(this._settingsIdentifier + "-column-visibility", {}); 366 366 367 367 if (!this.columns) … … 373 373 } 374 374 375 for (let columnIdentifier of this._hiddenColumnSetting.value) 376 this.setColumnVisible(columnIdentifier, false); 375 let visibilitySettings = this._columnVisibilitySetting.value; 376 for (let columnIdentifier in visibilitySettings) { 377 let visible = visibilitySettings[columnIdentifier]; 378 this.setColumnVisible(columnIdentifier, visible); 379 } 377 380 } 378 381 … … 920 923 column.hidden = !visible; 921 924 922 if (this._hiddenColumnSetting) { 923 let hiddenColumns = this._hiddenColumnSetting.value.slice(); 924 if (column.hidden) 925 hiddenColumns.push(columnIdentifier); 926 else 927 hiddenColumns.remove(columnIdentifier); 928 929 this._hiddenColumnSetting.value = hiddenColumns; 925 if (this._columnVisibilitySetting) { 926 if (this._columnVisibilitySetting.value[columnIdentifier] !== visible) { 927 let copy = Object.shallowCopy(this._columnVisibilitySetting.value); 928 copy[columnIdentifier] = visible; 929 this._columnVisibilitySetting.value = copy; 930 } 930 931 } 931 932 -
trunk/Source/WebInspectorUI/UserInterface/Views/NetworkGridContentView.js
r213621 r213682 40 40 this._contentTreeOutline.addEventListener(WebInspector.TreeOutline.Event.SelectionDidChange, this._treeSelectionDidChange, this); 41 41 42 var columns = {domain: {}, type: {}, method: {}, scheme: {}, statusCode: {}, cached: {}, size: {}, transferSize: {}, requestSent: {}, latency: {}, duration: {}, graph: {}};42 let columns = {domain: {}, type: {}, method: {}, scheme: {}, statusCode: {}, cached: {}, protocol: {}, priority: {}, remoteAddress: {}, connectionIdentifier: {}, size: {}, transferSize: {}, requestSent: {}, latency: {}, duration: {}, graph: {}}; 43 43 44 44 columns.domain.title = WebInspector.UIString("Domain"); … … 59 59 columns.cached.title = WebInspector.UIString("Cached"); 60 60 columns.cached.width = "8%"; 61 62 columns.protocol.title = WebInspector.UIString("Protocol"); 63 columns.protocol.width = "5%"; 64 columns.protocol.hidden = true; 65 66 columns.priority.title = WebInspector.UIString("Priority"); 67 columns.priority.width = "5%"; 68 columns.priority.hidden = true; 69 70 columns.remoteAddress.title = WebInspector.UIString("Remote Address"); 71 columns.remoteAddress.width = "8%"; 72 columns.remoteAddress.hidden = true; 73 74 columns.connectionIdentifier.title = WebInspector.UIString("Connection"); 75 columns.connectionIdentifier.width = "5%"; 76 columns.connectionIdentifier.hidden = true; 77 columns.connectionIdentifier.aligned = "right"; 61 78 62 79 columns.size.title = WebInspector.UIString("Size"); … … 80 97 columns.duration.aligned = "right"; 81 98 82 for ( varcolumn in columns)99 for (let column in columns) 83 100 columns[column].sortable = true; 84 101 … … 90 107 columns.graph.headerView = this._timelineRuler; 91 108 columns.graph.sortable = false; 109 110 // COMPATIBILITY(iOS 10.3): Network load metrics were not previously available. 111 if (!NetworkAgent.hasEventParameter("loadingFinished", "metrics")) { 112 delete columns.protocol; 113 delete columns.priority; 114 delete columns.remoteAddress; 115 delete columns.connectionIdentifier; 116 } 92 117 93 118 this._dataGrid = new WebInspector.TimelineDataGrid(columns, this._contentTreeOutline); … … 100 125 this.addSubview(this._dataGrid); 101 126 102 varnetworkTimeline = WebInspector.timelineManager.persistentNetworkTimeline;127 let networkTimeline = WebInspector.timelineManager.persistentNetworkTimeline; 103 128 networkTimeline.addEventListener(WebInspector.Timeline.Event.RecordAdded, this._networkTimelineRecordAdded, this); 104 129 networkTimeline.addEventListener(WebInspector.Timeline.Event.Reset, this._networkTimelineReset, this); -
trunk/Source/WebInspectorUI/UserInterface/Views/NetworkTimelineView.js
r213621 r213682 32 32 console.assert(timeline.type === WebInspector.TimelineRecord.Type.Network); 33 33 34 let columns = {name: {}, domain: {}, type: {}, method: {}, scheme: {}, statusCode: {}, cached: {}, size: {}, transferSize: {}, requestSent: {}, latency: {}, duration: {}, graph: {}};34 let columns = {name: {}, domain: {}, type: {}, method: {}, scheme: {}, statusCode: {}, cached: {}, protocol: {}, priority: {}, remoteAddress: {}, connectionIdentifier: {}, size: {}, transferSize: {}, requestSent: {}, latency: {}, duration: {}, graph: {}}; 35 35 36 36 columns.name.title = WebInspector.UIString("Name"); … … 45 45 columns.type.width = "7%"; 46 46 47 vartypeToLabelMap = new Map;48 for ( varkey in WebInspector.Resource.Type) {49 varvalue = WebInspector.Resource.Type[key];47 let typeToLabelMap = new Map; 48 for (let key in WebInspector.Resource.Type) { 49 let value = WebInspector.Resource.Type[key]; 50 50 typeToLabelMap.set(value, WebInspector.Resource.displayNameForType(value, true)); 51 51 } … … 65 65 columns.cached.title = WebInspector.UIString("Cached"); 66 66 columns.cached.width = "6%"; 67 68 columns.protocol.title = WebInspector.UIString("Protocol"); 69 columns.protocol.width = "5%"; 70 columns.protocol.hidden = true; 71 72 columns.priority.title = WebInspector.UIString("Priority"); 73 columns.priority.width = "5%"; 74 columns.priority.hidden = true; 75 76 columns.remoteAddress.title = WebInspector.UIString("Remote Address"); 77 columns.remoteAddress.width = "8%"; 78 columns.remoteAddress.hidden = true; 79 80 columns.connectionIdentifier.title = WebInspector.UIString("Connection"); 81 columns.connectionIdentifier.width = "5%"; 82 columns.connectionIdentifier.hidden = true; 83 columns.connectionIdentifier.aligned = "right"; 67 84 68 85 columns.size.title = WebInspector.UIString("Size"); … … 86 103 columns.duration.aligned = "right"; 87 104 88 for ( varcolumn in columns)105 for (let column in columns) 89 106 columns[column].sortable = true; 90 107 … … 96 113 columns.graph.headerView = this._timelineRuler; 97 114 columns.graph.sortable = false; 115 116 // COMPATIBILITY(iOS 10.3): Network load metrics were not previously available. 117 if (!NetworkAgent.hasEventParameter("loadingFinished", "metrics")) { 118 delete columns.protocol; 119 delete columns.priority; 120 delete columns.remoteAddress; 121 delete columns.connectionIdentifier; 122 } 98 123 99 124 this._dataGrid = new WebInspector.TimelineDataGrid(columns); -
trunk/Source/WebInspectorUI/UserInterface/Views/ResourceDetailsSidebarPanel.js
r212423 r213682 69 69 70 70 this._requestMethodRow = new WebInspector.DetailsSectionSimpleRow(WebInspector.UIString("Method")); 71 this._protocolRow = new WebInspector.DetailsSectionSimpleRow(WebInspector.UIString("Protocol")); 72 this._priorityRow = new WebInspector.DetailsSectionSimpleRow(WebInspector.UIString("Priority")); 71 73 this._cachedRow = new WebInspector.DetailsSectionSimpleRow(WebInspector.UIString("Cached")); 72 74 … … 81 83 this._compressionRow = new WebInspector.DetailsSectionSimpleRow(WebInspector.UIString("Compression")); 82 84 83 var requestGroup = new WebInspector.DetailsSectionGroup([this._requestMethodRow, this._cachedRow]);84 varstatusGroup = new WebInspector.DetailsSectionGroup([this._statusTextRow, this._statusCodeRow]);85 varsizeGroup = new WebInspector.DetailsSectionGroup([this._encodedSizeRow, this._decodedSizeRow, this._transferSizeRow]);86 varcompressionGroup = new WebInspector.DetailsSectionGroup([this._compressedRow, this._compressionRow]);85 let requestGroup = new WebInspector.DetailsSectionGroup([this._requestMethodRow, this._protocolRow, this._priorityRow, this._cachedRow]); 86 let statusGroup = new WebInspector.DetailsSectionGroup([this._statusTextRow, this._statusCodeRow]); 87 let sizeGroup = new WebInspector.DetailsSectionGroup([this._encodedSizeRow, this._decodedSizeRow, this._transferSizeRow]); 88 let compressionGroup = new WebInspector.DetailsSectionGroup([this._compressedRow, this._compressionRow]); 87 89 88 90 this._requestAndResponseSection = new WebInspector.DetailsSection("resource-request-response", WebInspector.UIString("Request & Response"), [requestGroup, statusGroup, sizeGroup, compressionGroup]); … … 291 293 _refreshRequestAndResponse() 292 294 { 293 var resource = this._resource; 294 if (!resource) 295 if (!this._resource) 295 296 return; 296 297 … … 298 299 // This keeps the UI from shifting around as data comes in. 299 300 300 this._requestMethodRow.value = resource.requestMethod || emDash; 301 302 this._cachedRow.value = resource.cached ? WebInspector.UIString("Yes") : WebInspector.UIString("No"); 303 304 this._statusCodeRow.value = resource.statusCode || emDash; 305 this._statusTextRow.value = resource.statusText || emDash; 301 this._requestMethodRow.value = this._resource.requestMethod || emDash; 302 303 // COMPATIBILITY(iOS 10.3): Network load metrics were not previously available. 304 if (NetworkAgent.hasEventParameter("loadingFinished", "metrics")) { 305 this._protocolRow.value = this._resource.protocol || emDash; 306 307 switch (this._resource.priority) { 308 case WebInspector.Resource.NetworkPriority.Low: 309 this._priorityRow.value = WebInspector.UIString("Low"); 310 break; 311 case WebInspector.Resource.NetworkPriority.Medium: 312 this._priorityRow.value = WebInspector.UIString("Medium"); 313 break; 314 case WebInspector.Resource.NetworkPriority.High: 315 this._priorityRow.value = WebInspector.UIString("High"); 316 break; 317 default: 318 this._priorityRow.value = emDash; 319 break; 320 } 321 } 322 323 this._cachedRow.value = this._resource.cached ? WebInspector.UIString("Yes") : WebInspector.UIString("No"); 324 325 this._statusCodeRow.value = this._resource.statusCode || emDash; 326 this._statusTextRow.value = this._resource.statusText || emDash; 306 327 307 328 this._refreshResponseHeaders(); -
trunk/Source/WebInspectorUI/UserInterface/Views/ResourceTimelineDataGridNode.js
r213621 r213682 81 81 data.duration = resource.receiveDuration; 82 82 data.latency = resource.latency; 83 data.protocol = resource.protocol; 84 data.priority = resource.priority; 85 data.remoteAddress = resource.remoteAddress; 86 data.connectionIdentifier = resource.connectionIdentifier; 83 87 } 84 88 … … 126 130 case "duration": 127 131 return isNaN(value) ? emDash : Number.secondsToString(value, true); 132 133 case "protocol": 134 case "remoteAddress": 135 case "connectionIdentifier": 136 return value || emDash; 137 138 case "priority": 139 return this._displayNameForPriority(value); 128 140 } 129 141 … … 188 200 189 201 // Private 202 203 _displayNameForPriority(priority) 204 { 205 switch (priority) { 206 case WebInspector.Resource.NetworkPriority.Low: 207 return WebInspector.UIString("Low"); 208 case WebInspector.Resource.NetworkPriority.Medium: 209 return WebInspector.UIString("Medium"); 210 case WebInspector.Resource.NetworkPriority.High: 211 return WebInspector.UIString("High"); 212 } 213 214 return emDash; 215 } 190 216 191 217 _createNameCellDocumentFragment() … … 227 253 let responseSource = this._resource.responseSource; 228 254 if (responseSource === WebInspector.Resource.ResponseSource.MemoryCache || responseSource === WebInspector.Resource.ResponseSource.DiskCache) { 229 console.assert(this._resource.cached, "This resource has a cache responseSource it should also be marked as cached", resource);255 console.assert(this._resource.cached, "This resource has a cache responseSource it should also be marked as cached", this._resource); 230 256 let span = document.createElement("span"); 231 257 let cacheType = document.createElement("span"); -
trunk/Source/WebInspectorUI/UserInterface/Views/TimelineDataGridNode.js
r212570 r213682 227 227 return; 228 228 229 var secondsPerPixel = this._graphDataSource.secondsPerPixel; 230 console.assert(isFinite(secondsPerPixel) && secondsPerPixel > 0); 229 let secondsPerPixel = this._graphDataSource.secondsPerPixel; 230 if (isNaN(secondsPerPixel)) 231 return; 232 233 console.assert(secondsPerPixel > 0); 231 234 232 235 var recordBarIndex = 0; -
trunk/Source/WebInspectorUI/UserInterface/Views/TimelineRecordBar.js
r205578 r213682 232 232 refresh(graphDataSource) 233 233 { 234 if (isNaN(graphDataSource.secondsPerPixel)) 235 return; 236 234 237 console.assert(graphDataSource.zeroTime); 235 238 console.assert(graphDataSource.startTime); -
trunk/Source/WebKit2/ChangeLog
r213676 r213682 1 2017-03-09 Joseph Pecoraro <pecoraro@apple.com> 2 3 Web Inspector: Show HTTP protocol version and other Network Load Metrics (IP Address, Priority, Connection ID) 4 https://bugs.webkit.org/show_bug.cgi?id=29687 5 <rdar://problem/19281586> 6 7 Reviewed by Matt Baker and Brian Burg. 8 9 * NetworkProcess/cocoa/NetworkSessionCocoa.mm: 10 (toNetworkLoadPriority): 11 (-[WKNetworkSessionDelegate URLSession:task:didFinishCollectingMetrics:]): 12 * Shared/WebCoreArgumentCoders.h: 13 Additional optional metrics on NetworkLoadMetrics. 14 1 15 2017-03-09 Daniel Bates <dabates@apple.com> 2 16 -
trunk/Source/WebKit2/NetworkProcess/cocoa/NetworkSessionCocoa.mm
r213441 r213682 81 81 } 82 82 83 static WebCore::NetworkLoadPriority toNetworkLoadPriority(float priority) 84 { 85 if (priority <= NSURLSessionTaskPriorityLow) 86 return WebCore::NetworkLoadPriority::Low; 87 if (priority >= NSURLSessionTaskPriorityHigh) 88 return WebCore::NetworkLoadPriority::High; 89 return WebCore::NetworkLoadPriority::Medium; 90 } 91 83 92 @interface WKNetworkSessionDelegate : NSObject <NSURLSessionDataDelegate> { 84 93 RefPtr<WebKit::NetworkSessionCocoa> _session; … … 291 300 networkLoadMetrics.responseEnd = Seconds(responseEndInterval); 292 301 networkLoadMetrics.markComplete(); 302 293 303 networkLoadMetrics.protocol = String(m.networkProtocolName); 304 networkLoadMetrics.priority = toNetworkLoadPriority(task.priority); 305 #if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300) || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 110000) 306 networkLoadMetrics.remoteAddress = String(m._remoteAddressAndPort); 307 networkLoadMetrics.connectionIdentifier = String([m._connectionIdentifier UUIDString]); 308 #endif 294 309 } 295 310 } -
trunk/Source/WebKit2/Shared/WebCoreArgumentCoders.h
r213601 r213682 31 31 #include <WebCore/FrameLoaderTypes.h> 32 32 #include <WebCore/IndexedDB.h> 33 #include <WebCore/NetworkLoadMetrics.h> 33 34 #include <WebCore/PaymentHeaders.h> 34 35 #include <WebCore/ScrollSnapOffsetsInfo.h> … … 679 680 }; 680 681 682 template<> struct EnumTraits<WebCore::NetworkLoadPriority> { 683 using values = EnumValues< 684 WebCore::NetworkLoadPriority, 685 WebCore::NetworkLoadPriority::Low, 686 WebCore::NetworkLoadPriority::Medium, 687 WebCore::NetworkLoadPriority::High 688 >; 689 }; 690 681 691 #if ENABLE(INDEXED_DATABASE) 682 692 template<> struct EnumTraits<WebCore::IndexedDB::GetAllType> {
Note:
See TracChangeset
for help on using the changeset viewer.