Changeset 238654 in webkit
- Timestamp:
- Nov 28, 2018, 6:18:37 PM (6 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 1 added
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r238653 r238654 1 2018-11-28 Alex Christensen <achristensen@webkit.org> 2 3 Move loadThrottleLatency from NetworkProcessCreationParameters to NetworkSessionCreationParameters 4 https://bugs.webkit.org/show_bug.cgi?id=192122 5 6 Reviewed by Dean Jackson. 7 8 This is part of an effort to reduce global variables in the NetworkProcess. 9 10 * NetworkProcess/NetworkLoad.cpp: 11 (WebKit::NetworkLoad::NetworkLoad): 12 (WebKit::NetworkLoad::didReceiveResponse): 13 * NetworkProcess/NetworkLoad.h: 14 * NetworkProcess/NetworkProcess.cpp: 15 (WebKit::NetworkProcess::initializeNetworkProcess): 16 * NetworkProcess/NetworkProcess.h: 17 (WebKit::NetworkProcess::loadThrottleLatency const): Deleted. 18 * NetworkProcess/NetworkProcessCreationParameters.cpp: 19 (WebKit::NetworkProcessCreationParameters::encode const): 20 (WebKit::NetworkProcessCreationParameters::decode): 21 * NetworkProcess/NetworkSession.h: 22 (WebKit::NetworkSession::loadThrottleLatency const): 23 * NetworkProcess/NetworkSessionCreationParameters.cpp: Added. 24 (WebKit::NetworkSessionCreationParameters::privateSessionParameters): 25 (WebKit::NetworkSessionCreationParameters::encode const): 26 (WebKit::NetworkSessionCreationParameters::decode): 27 * NetworkProcess/NetworkSessionCreationParameters.h: 28 (WebKit::NetworkSessionCreationParameters::encode const): Deleted. 29 (WebKit::NetworkSessionCreationParameters::decode): Deleted. 30 * NetworkProcess/cocoa/NetworkSessionCocoa.h: 31 * NetworkProcess/cocoa/NetworkSessionCocoa.mm: 32 (WebKit::NetworkSessionCocoa::NetworkSessionCocoa): 33 * Shared/WebsiteDataStoreParameters.cpp: 34 (WebKit::WebsiteDataStoreParameters::privateSessionParameters): 35 * Sources.txt: 36 * UIProcess/Cocoa/WebProcessPoolCocoa.mm: 37 (WebKit::WebProcessPool::platformInitializeNetworkProcess): 38 * UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm: 39 (WebKit::WebsiteDataStore::parameters): 40 * WebKit.xcodeproj/project.pbxproj: 41 1 42 2018-11-15 Megan Gardner <megan_gardner@apple.com> 2 43 -
trunk/Source/WebKit/NetworkProcess/NetworkLoad.cpp
r236463 r238654 71 71 : m_client(client) 72 72 , m_parameters(WTFMove(parameters)) 73 , m_loadThrottleLatency(networkSession.loadThrottleLatency()) 73 74 , m_currentRequest(m_parameters.request) 74 75 { … … 269 270 } 270 271 271 auto delay = NetworkProcess::singleton().loadThrottleLatency(); 272 if (delay > 0_s) { 273 m_throttle = std::make_unique<Throttle>(*this, delay, WTFMove(response), WTFMove(completionHandler)); 272 if (m_loadThrottleLatency > 0_s) { 273 m_throttle = std::make_unique<Throttle>(*this, m_loadThrottleLatency, WTFMove(response), WTFMove(completionHandler)); 274 274 return; 275 275 } -
trunk/Source/WebKit/NetworkProcess/NetworkLoad.h
r236463 r238654 98 98 struct Throttle; 99 99 std::unique_ptr<Throttle> m_throttle; 100 Seconds m_loadThrottleLatency; 100 101 101 102 WebCore::ResourceRequest m_currentRequest; // Updated on redirects. -
trunk/Source/WebKit/NetworkProcess/NetworkProcess.cpp
r238630 r238654 293 293 294 294 m_suppressMemoryPressureHandler = parameters.shouldSuppressMemoryPressureHandler; 295 m_loadThrottleLatency = parameters.loadThrottleLatency;296 295 if (!m_suppressMemoryPressureHandler) { 297 296 auto& memoryPressureHandler = MemoryPressureHandler::singleton(); -
trunk/Source/WebKit/NetworkProcess/NetworkProcess.h
r238630 r238654 170 170 #endif 171 171 172 Seconds loadThrottleLatency() const { return m_loadThrottleLatency; }173 174 172 using CacheStorageParametersCallback = CompletionHandler<void(const String&, uint64_t quota)>; 175 173 void cacheStorageParameters(PAL::SessionID, CacheStorageParametersCallback&&); … … 358 356 bool m_diskCacheIsDisabledForTesting; 359 357 bool m_canHandleHTTPSServerTrustEvaluation; 360 Seconds m_loadThrottleLatency;361 358 362 359 RefPtr<NetworkCache::Cache> m_cache; -
trunk/Source/WebKit/NetworkProcess/NetworkProcessCreationParameters.cpp
r238630 r238654 66 66 encoder << shouldSuppressMemoryPressureHandler; 67 67 encoder << shouldUseTestingNetworkSession; 68 encoder << loadThrottleLatency;69 68 encoder << urlSchemesRegisteredForCustomProtocols; 70 69 encoder << presentingApplicationPID; … … 182 181 if (!decoder.decode(result.shouldUseTestingNetworkSession)) 183 182 return false; 184 if (!decoder.decode(result.loadThrottleLatency))185 return false;186 183 if (!decoder.decode(result.urlSchemesRegisteredForCustomProtocols)) 187 184 return false; -
trunk/Source/WebKit/NetworkProcess/NetworkSession.h
r238630 r238654 30 30 #include <wtf/Ref.h> 31 31 #include <wtf/RefCounted.h> 32 #include <wtf/Seconds.h> 32 33 33 34 namespace WebCore { … … 49 50 virtual void clearCredentials() { }; 50 51 virtual bool shouldLogCookieInformation() const { return false; } 52 virtual Seconds loadThrottleLatency() const { return { }; } 51 53 52 54 PAL::SessionID sessionID() const { return m_sessionID; } -
trunk/Source/WebKit/NetworkProcess/NetworkSessionCreationParameters.h
r238630 r238654 26 26 #pragma once 27 27 28 #include "ArgumentCoders.h"29 28 #include <pal/SessionID.h> 29 #include <wtf/Seconds.h> 30 30 #include <wtf/text/WTFString.h> 31 31 32 #if PLATFORM(COCOA)33 #include "ArgumentCodersCF.h"34 #endif35 36 32 #if USE(CURL) 37 #include "WebCoreArgumentCoders.h"38 33 #include <WebCore/CurlProxySettings.h> 39 34 #endif 40 35 36 namespace IPC { 37 class Encoder; 38 class Decoder; 39 } 40 41 41 namespace WebKit { 42 42 43 class LegacyCustomProtocolManager; 44 45 enum class AllowsCellularAccess { No, Yes }; 43 enum class AllowsCellularAccess : bool { No, Yes }; 46 44 47 45 struct NetworkSessionCreationParameters { 48 46 void encode(IPC::Encoder&) const; 49 47 static std::optional<NetworkSessionCreationParameters> decode(IPC::Decoder&); 48 static NetworkSessionCreationParameters privateSessionParameters(const PAL::SessionID&); 50 49 51 50 PAL::SessionID sessionID { PAL::SessionID::defaultSessionID() }; … … 57 56 String sourceApplicationSecondaryIdentifier; 58 57 bool shouldLogCookieInformation { false }; 58 Seconds loadThrottleLatency; 59 59 #endif 60 60 #if USE(CURL) … … 63 63 }; 64 64 65 inline void NetworkSessionCreationParameters::encode(IPC::Encoder& encoder) const66 {67 encoder << sessionID;68 encoder << boundInterfaceIdentifier;69 encoder << allowsCellularAccess;70 #if PLATFORM(COCOA)71 IPC::encode(encoder, proxyConfiguration.get());72 encoder << sourceApplicationBundleIdentifier;73 encoder << sourceApplicationSecondaryIdentifier;74 encoder << shouldLogCookieInformation;75 #endif76 #if USE(CURL)77 encoder << proxySettings;78 #endif79 }80 81 inline std::optional<NetworkSessionCreationParameters> NetworkSessionCreationParameters::decode(IPC::Decoder& decoder)82 {83 PAL::SessionID sessionID;84 if (!decoder.decode(sessionID))85 return std::nullopt;86 87 std::optional<String> boundInterfaceIdentifier;88 decoder >> boundInterfaceIdentifier;89 if (!boundInterfaceIdentifier)90 return std::nullopt;91 92 std::optional<AllowsCellularAccess> allowsCellularAccess;93 decoder >> allowsCellularAccess;94 if (!allowsCellularAccess)95 return std::nullopt;96 97 #if PLATFORM(COCOA)98 RetainPtr<CFDictionaryRef> proxyConfiguration;99 if (!IPC::decode(decoder, proxyConfiguration))100 return std::nullopt;101 102 std::optional<String> sourceApplicationBundleIdentifier;103 decoder >> sourceApplicationBundleIdentifier;104 if (!sourceApplicationBundleIdentifier)105 return std::nullopt;106 107 std::optional<String> sourceApplicationSecondaryIdentifier;108 decoder >> sourceApplicationSecondaryIdentifier;109 if (!sourceApplicationSecondaryIdentifier)110 return std::nullopt;111 112 std::optional<bool> shouldLogCookieInformation;113 decoder >> shouldLogCookieInformation;114 if (!shouldLogCookieInformation)115 return std::nullopt;116 #endif117 118 #if USE(CURL)119 std::optional<WebCore::CurlProxySettings> proxySettings;120 decoder >> proxySettings;121 if (!proxySettings)122 return std::nullopt;123 #endif124 125 return {{126 sessionID127 , WTFMove(*boundInterfaceIdentifier)128 , WTFMove(*allowsCellularAccess)129 #if PLATFORM(COCOA)130 , WTFMove(proxyConfiguration)131 , WTFMove(*sourceApplicationBundleIdentifier)132 , WTFMove(*sourceApplicationSecondaryIdentifier)133 , WTFMove(*shouldLogCookieInformation)134 #endif135 #if USE(CURL)136 , WTFMove(*proxySettings)137 #endif138 }};139 }140 141 65 } // namespace WebKit 142 143 namespace WTF {144 template<> struct EnumTraits<WebKit::AllowsCellularAccess> {145 using values = EnumValues<146 WebKit::AllowsCellularAccess,147 WebKit::AllowsCellularAccess::No,148 WebKit::AllowsCellularAccess::Yes149 >;150 };151 } -
trunk/Source/WebKit/NetworkProcess/cocoa/NetworkSessionCocoa.h
r238630 r238654 72 72 void clearCredentials() override; 73 73 bool shouldLogCookieInformation() const override { return m_shouldLogCookieInformation; } 74 Seconds loadThrottleLatency() const override { return m_loadThrottleLatency; } 74 75 75 76 HashMap<NetworkDataTaskCocoa::TaskIdentifier, NetworkDataTaskCocoa*> m_dataTaskMapWithCredentials; … … 85 86 RetainPtr<CFDictionaryRef> m_proxyConfiguration; 86 87 bool m_shouldLogCookieInformation { false }; 88 Seconds m_loadThrottleLatency; 87 89 88 90 String m_sourceApplicationBundleIdentifier; -
trunk/Source/WebKit/NetworkProcess/cocoa/NetworkSessionCocoa.mm
r238630 r238654 646 646 , m_proxyConfiguration(parameters.proxyConfiguration) 647 647 , m_shouldLogCookieInformation(parameters.shouldLogCookieInformation) 648 , m_loadThrottleLatency(parameters.loadThrottleLatency) 648 649 { 649 650 ASSERT(hasProcessPrivilege(ProcessPrivilege::CanAccessRawCookies)); -
trunk/Source/WebKit/Shared/WebsiteDataStoreParameters.cpp
r236477 r238654 114 114 { 115 115 ASSERT(sessionID.isEphemeral()); 116 return { { }, { }, { }, { sessionID, { }, AllowsCellularAccess::Yes 117 #if PLATFORM(COCOA) 118 , nullptr , { } , { } 119 #endif 120 } 116 return { { }, { }, { }, NetworkSessionCreationParameters::privateSessionParameters(sessionID) 121 117 #if ENABLE(INDEXED_DATABASE) 122 118 , { }, { } -
trunk/Source/WebKit/Sources.txt
r238625 r238654 36 36 NetworkProcess/NetworkResourceLoader.cpp 37 37 NetworkProcess/NetworkSession.cpp 38 NetworkProcess/NetworkSessionCreationParameters.cpp 38 39 NetworkProcess/NetworkSocketStream.cpp 39 40 NetworkProcess/PingLoad.cpp -
trunk/Source/WebKit/UIProcess/Cocoa/WebProcessPoolCocoa.mm
r238630 r238654 76 76 77 77 static NSString * const WebKitSuppressMemoryPressureHandlerDefaultsKey = @"WebKitSuppressMemoryPressureHandler"; 78 static NSString * const WebKitNetworkLoadThrottleLatencyMillisecondsDefaultsKey = @"WebKitNetworkLoadThrottleLatencyMilliseconds";79 78 80 79 #if ENABLE(RESOURCE_LOAD_STATISTICS) && !RELEASE_LOG_DISABLED … … 284 283 285 284 parameters.shouldSuppressMemoryPressureHandler = [defaults boolForKey:WebKitSuppressMemoryPressureHandlerDefaultsKey]; 286 parameters.loadThrottleLatency = Seconds { [defaults integerForKey:WebKitNetworkLoadThrottleLatencyMillisecondsDefaultsKey] / 1000. };287 285 288 286 #if PLATFORM(MAC) -
trunk/Source/WebKit/UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm
r238630 r238654 52 52 } 53 53 54 static NSString * const WebKitNetworkLoadThrottleLatencyMillisecondsDefaultsKey = @"WebKitNetworkLoadThrottleLatencyMilliseconds"; 55 54 56 WebsiteDataStoreParameters WebsiteDataStore::parameters() 55 57 { … … 58 60 resolveDirectoriesIfNecessary(); 59 61 62 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; 60 63 #if ENABLE(RESOURCE_LOAD_STATISTICS) && !RELEASE_LOG_DISABLED 61 64 static NSString * const WebKitLogCookieInformationDefaultsKey = @"WebKitLogCookieInformation"; 62 bool shouldLogCookieInformation = [ [NSUserDefaults standardUserDefaults]boolForKey:WebKitLogCookieInformationDefaultsKey];65 bool shouldLogCookieInformation = [defaults boolForKey:WebKitLogCookieInformationDefaultsKey]; 63 66 #else 64 67 bool shouldLogCookieInformation = false; … … 74 77 m_configuration.sourceApplicationSecondaryIdentifier, 75 78 shouldLogCookieInformation, 79 Seconds { [defaults integerForKey:WebKitNetworkLoadThrottleLatencyMillisecondsDefaultsKey] / 1000. } 76 80 }; 77 81 -
trunk/Source/WebKit/WebKit.xcodeproj/project.pbxproj
r238625 r238654 3456 3456 5C84CF901F96AC4E00B6705A /* NetworkSessionCreationParameters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkSessionCreationParameters.h; sourceTree = "<group>"; }; 3457 3457 5C85C7861C3F23C50061A4FA /* PendingDownload.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PendingDownload.cpp; sourceTree = "<group>"; }; 3458 5C89DF5621AF61FF004645E8 /* NetworkSessionCreationParameters.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NetworkSessionCreationParameters.cpp; sourceTree = "<group>"; }; 3458 3459 5C8BC796218CB58A00813886 /* SafeBrowsing.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = SafeBrowsing.xcassets; path = Resources/SafeBrowsing.xcassets; sourceTree = "<group>"; }; 3459 3460 5C8DD37C1FE4501100F2A556 /* APIWebsitePolicies.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APIWebsitePolicies.h; sourceTree = "<group>"; }; … … 6435 6436 532159521DBAE6FC0054AA3C /* NetworkSession.cpp */, 6436 6437 5C20CB9E1BB0DD1800895BB1 /* NetworkSession.h */, 6438 5C89DF5621AF61FF004645E8 /* NetworkSessionCreationParameters.cpp */, 6437 6439 5C84CF901F96AC4E00B6705A /* NetworkSessionCreationParameters.h */, 6438 6440 5C0B177D1E7C886700E9123C /* NetworkSocketStream.cpp */,
Note:
See TracChangeset
for help on using the changeset viewer.