2 * Copyright (C) 2010 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23 * THE POSSIBILITY OF SUCH DAMAGE.
27 #include "WebProcessCreationParameters.h"
29 #include "ArgumentCoders.h"
30 #if USE(CFURLSTORAGESESSIONS) && PLATFORM(WIN)
31 #include "ArgumentCodersCF.h"
36 WebProcessCreationParameters::WebProcessCreationParameters()
37 : shouldTrackVisitedLinks(false)
38 , shouldAlwaysUseComplexTextCodePath(false)
39 , defaultRequestTimeoutInterval(INT_MAX)
41 , nsURLCacheMemoryCapacity(0)
42 , nsURLCacheDiskCapacity(0)
44 , shouldPaintNativeControls(false)
49 void WebProcessCreationParameters::encode(CoreIPC::ArgumentEncoder* encoder) const
51 encoder->encode(injectedBundlePath);
52 encoder->encode(injectedBundlePathExtensionHandle);
53 encoder->encode(applicationCacheDirectory);
54 encoder->encode(applicationCacheDirectoryExtensionHandle);
55 encoder->encode(databaseDirectory);
56 encoder->encode(localStorageDirectory);
57 encoder->encode(urlSchemesRegistererdAsEmptyDocument);
58 encoder->encode(urlSchemesRegisteredAsSecure);
59 encoder->encode(urlSchemesForWhichDomainRelaxationIsForbidden);
60 encoder->encode(mimeTypesWithCustomRepresentation);
61 encoder->encodeEnum(cacheModel);
62 encoder->encode(shouldTrackVisitedLinks);
63 encoder->encode(shouldAlwaysUseComplexTextCodePath);
64 encoder->encode(iconDatabaseEnabled);
65 encoder->encode(languageCode);
66 encoder->encode(textCheckerState);
67 encoder->encode(defaultRequestTimeoutInterval);
68 #if USE(CFURLSTORAGESESSIONS)
69 encoder->encode(uiProcessBundleIdentifier);
72 encoder->encode(parentProcessName);
73 encoder->encode(presenterApplicationPid);
74 encoder->encode(nsURLCachePath);
75 encoder->encode(nsURLCacheMemoryCapacity);
76 encoder->encode(nsURLCacheDiskCapacity);
77 encoder->encode(acceleratedCompositingPort);
78 encoder->encode(uiProcessBundleResourcePath);
80 encoder->encode(shouldPaintNativeControls);
81 encoder->encode(cfURLCachePath);
82 encoder->encode(cfURLCacheDiskCapacity);
83 encoder->encode(cfURLCacheMemoryCapacity);
84 encoder->encode(initialHTTPCookieAcceptPolicy);
85 #if USE(CFURLSTORAGESESSIONS)
86 if (CFDataRef data = serializedDefaultStorageSession.get())
87 CoreIPC::encode(encoder, data);
88 #endif // USE(CFURLSTORAGESESSIONS)
92 bool WebProcessCreationParameters::decode(CoreIPC::ArgumentDecoder* decoder, WebProcessCreationParameters& parameters)
94 if (!decoder->decode(parameters.injectedBundlePath))
96 if (!decoder->decode(parameters.injectedBundlePathExtensionHandle))
98 if (!decoder->decode(parameters.applicationCacheDirectory))
100 if (!decoder->decode(parameters.applicationCacheDirectoryExtensionHandle))
102 if (!decoder->decode(parameters.databaseDirectory))
104 if (!decoder->decode(parameters.localStorageDirectory))
106 if (!decoder->decode(parameters.urlSchemesRegistererdAsEmptyDocument))
108 if (!decoder->decode(parameters.urlSchemesRegisteredAsSecure))
110 if (!decoder->decode(parameters.urlSchemesForWhichDomainRelaxationIsForbidden))
112 if (!decoder->decode(parameters.mimeTypesWithCustomRepresentation))
114 if (!decoder->decodeEnum(parameters.cacheModel))
116 if (!decoder->decode(parameters.shouldTrackVisitedLinks))
118 if (!decoder->decode(parameters.shouldAlwaysUseComplexTextCodePath))
120 if (!decoder->decode(parameters.iconDatabaseEnabled))
122 if (!decoder->decode(parameters.languageCode))
124 if (!decoder->decode(parameters.textCheckerState))
126 if (!decoder->decode(parameters.defaultRequestTimeoutInterval))
128 #if USE(CFURLSTORAGESESSIONS)
129 if (!decoder->decode(parameters.uiProcessBundleIdentifier))
134 if (!decoder->decode(parameters.parentProcessName))
136 if (!decoder->decode(parameters.presenterApplicationPid))
138 if (!decoder->decode(parameters.nsURLCachePath))
140 if (!decoder->decode(parameters.nsURLCacheMemoryCapacity))
142 if (!decoder->decode(parameters.nsURLCacheDiskCapacity))
144 if (!decoder->decode(parameters.acceleratedCompositingPort))
146 if (!decoder->decode(parameters.uiProcessBundleResourcePath))
149 if (!decoder->decode(parameters.shouldPaintNativeControls))
151 if (!decoder->decode(parameters.cfURLCachePath))
153 if (!decoder->decode(parameters.cfURLCacheDiskCapacity))
155 if (!decoder->decode(parameters.cfURLCacheMemoryCapacity))
157 if (!decoder->decode(parameters.initialHTTPCookieAcceptPolicy))
159 #if USE(CFURLSTORAGESESSIONS)
160 if (parameters.serializedDefaultStorageSession && !CoreIPC::decode(decoder, parameters.serializedDefaultStorageSession))
162 #endif // USE(CFURLSTORAGESESSIONS)
168 } // namespace WebKit