1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
|
/*
* Copyright (C) 2017 Igalia S.L.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "WebKitWebsiteData.h"
#include "WebKitSecurityOriginPrivate.h"
#include "WebKitWebsiteDataPrivate.h"
#include <glib/gi18n-lib.h>
#include <wtf/HashTable.h>
#include <wtf/Vector.h>
using namespace WebKit;
/**
* WebKitWebsiteData: (ref-func webkit_website_data_ref) (unref-func webkit_website_data_unref)
* @See_also: #WebKitWebsiteDataManager
*
* Data stored locally by a web site.
*
* WebKitWebsiteData represents data stored in the client by a particular website.
* A website is normally a set of URLs grouped by domain name. You can get the website name,
* which is usually the domain, with webkit_website_data_get_name().
* Documents loaded from the file system, like file:// URIs, are all grouped in the same WebKitWebsiteData
* with the name "Local files".
*
* A website can store different types of data in the client side. #WebKitWebsiteDataTypes is an enum containing
* all the possible data types; use webkit_website_data_get_types() to get the bitmask of data types.
* It's also possible to know the size of the data stored for some of the #WebKitWebsiteDataTypes by using
* webkit_website_data_get_size().
*
* A list of WebKitWebsiteData can be retrieved with webkit_website_data_manager_fetch(). See #WebKitWebsiteDataManager
* for more information.
*
* Since: 2.16
*/
struct _WebKitWebsiteData {
explicit _WebKitWebsiteData(WebsiteDataRecord&& websiteDataDecord)
: record(WTFMove(websiteDataDecord))
{
}
WebsiteDataRecord record;
CString displayName;
int referenceCount { 1 };
};
G_DEFINE_BOXED_TYPE(WebKitWebsiteData, webkit_website_data, webkit_website_data_ref, webkit_website_data_unref)
static bool recordContainsSupportedDataTypes(const WebsiteDataRecord& record)
{
return record.types.containsAny({
WebsiteDataType::MemoryCache,
WebsiteDataType::DiskCache,
WebsiteDataType::OfflineWebApplicationCache,
WebsiteDataType::SessionStorage,
WebsiteDataType::LocalStorage,
#if !ENABLE(2022_GLIB_API)
WebsiteDataType::WebSQLDatabases,
#endif
WebsiteDataType::IndexedDBDatabases,
WebsiteDataType::HSTSCache,
WebsiteDataType::Cookies,
WebsiteDataType::DeviceIdHashSalt,
WebsiteDataType::ResourceLoadStatistics,
#if ENABLE(SERVICE_WORKER)
WebsiteDataType::ServiceWorkerRegistrations,
#endif
WebsiteDataType::DOMCache
});
}
static WebKitWebsiteDataTypes toWebKitWebsiteDataTypes(OptionSet<WebsiteDataType> types)
{
uint32_t returnValue = 0;
if (types.contains(WebsiteDataType::MemoryCache))
returnValue |= WEBKIT_WEBSITE_DATA_MEMORY_CACHE;
if (types.contains(WebsiteDataType::DiskCache))
returnValue |= WEBKIT_WEBSITE_DATA_DISK_CACHE;
if (types.contains(WebsiteDataType::OfflineWebApplicationCache))
returnValue |= WEBKIT_WEBSITE_DATA_OFFLINE_APPLICATION_CACHE;
if (types.contains(WebsiteDataType::SessionStorage))
returnValue |= WEBKIT_WEBSITE_DATA_SESSION_STORAGE;
if (types.contains(WebsiteDataType::LocalStorage))
returnValue |= WEBKIT_WEBSITE_DATA_LOCAL_STORAGE;
#if !ENABLE(2022_GLIB_API)
if (types.contains(WebsiteDataType::WebSQLDatabases))
returnValue |= WEBKIT_WEBSITE_DATA_WEBSQL_DATABASES;
#endif
if (types.contains(WebsiteDataType::IndexedDBDatabases))
returnValue |= WEBKIT_WEBSITE_DATA_INDEXEDDB_DATABASES;
if (types.contains(WebsiteDataType::HSTSCache))
returnValue |= WEBKIT_WEBSITE_DATA_HSTS_CACHE;
if (types.contains(WebsiteDataType::Cookies))
returnValue |= WEBKIT_WEBSITE_DATA_COOKIES;
if (types.contains(WebsiteDataType::DeviceIdHashSalt))
returnValue |= WEBKIT_WEBSITE_DATA_DEVICE_ID_HASH_SALT;
if (types.contains(WebsiteDataType::ResourceLoadStatistics))
returnValue |= WEBKIT_WEBSITE_DATA_ITP;
#if ENABLE(SERVICE_WORKER)
if (types.contains(WebsiteDataType::ServiceWorkerRegistrations))
returnValue |= WEBKIT_WEBSITE_DATA_SERVICE_WORKER_REGISTRATIONS;
#endif
if (types.contains(WebsiteDataType::DOMCache))
returnValue |= WEBKIT_WEBSITE_DATA_DOM_CACHE;
return static_cast<WebKitWebsiteDataTypes>(returnValue);
}
WebKitWebsiteData* webkitWebsiteDataCreate(WebsiteDataRecord&& record)
{
if (!recordContainsSupportedDataTypes(record))
return nullptr;
WebKitWebsiteData* websiteData = static_cast<WebKitWebsiteData*>(fastMalloc(sizeof(WebKitWebsiteData)));
new (websiteData) WebKitWebsiteData(WTFMove(record));
return websiteData;
}
const WebKit::WebsiteDataRecord& webkitWebsiteDataGetRecord(WebKitWebsiteData* websiteData)
{
ASSERT(websiteData);
return websiteData->record;
}
/**
* webkit_website_data_ref:
* @website_data: a #WebKitWebsiteData
*
* Atomically increments the reference count of @website_data by one.
*
* This function is MT-safe and may be called from any thread.
*
* Returns: The passed #WebKitWebsiteData
*
* Since: 2.16
*/
WebKitWebsiteData* webkit_website_data_ref(WebKitWebsiteData* websiteData)
{
g_return_val_if_fail(websiteData, nullptr);
g_atomic_int_inc(&websiteData->referenceCount);
return websiteData;
}
/**
* webkit_website_data_unref:
* @website_data: A #WebKitWebsiteData
*
* Atomically decrements the reference count of @website_data by one.
*
* If the reference count drops to 0, all memory allocated by
* #WebKitWebsiteData is released. This function is MT-safe and may be
* called from any thread.
*
* Since: 2.16
*/
void webkit_website_data_unref(WebKitWebsiteData* websiteData)
{
g_return_if_fail(websiteData);
if (g_atomic_int_dec_and_test(&websiteData->referenceCount)) {
websiteData->~WebKitWebsiteData();
fastFree(websiteData);
}
}
/**
* webkit_website_data_get_name:
* @website_data: a #WebKitWebsiteData
*
* Gets the name of #WebKitWebsiteData.
*
* This is the website name, normally represented by
* a domain or host name. All local documents are grouped in the same #WebKitWebsiteData using
* the name "Local files".
*
* Returns: the website name of @website_data.
*
* Since: 2.16
*/
const char* webkit_website_data_get_name(WebKitWebsiteData* websiteData)
{
g_return_val_if_fail(websiteData, nullptr);
if (websiteData->displayName.isNull()) {
if (websiteData->record.displayName == "Local documents on your computer"_s)
websiteData->displayName = _("Local files");
else
websiteData->displayName = websiteData->record.displayName.utf8();
}
return websiteData->displayName.data();
}
/**
* webkit_website_data_get_types:
* @website_data: a #WebKitWebsiteData
*
* Gets the types of data stored in the client for a #WebKitWebsiteData.
*
* These are the
* types actually present, not the types queried with webkit_website_data_manager_fetch().
*
* Returns: a bitmask of #WebKitWebsiteDataTypes in @website_data
*
* Since: 2.16
*/
WebKitWebsiteDataTypes webkit_website_data_get_types(WebKitWebsiteData* websiteData)
{
g_return_val_if_fail(websiteData, static_cast<WebKitWebsiteDataTypes>(0));
return toWebKitWebsiteDataTypes(websiteData->record.types);
}
/**
* webkit_website_data_get_size:
* @website_data: a #WebKitWebsiteData
* @types: a bitmask of #WebKitWebsiteDataTypes
*
* Gets the size of the data of types @types in a #WebKitWebsiteData.
*
* Note that currently the data size is only known for %WEBKIT_WEBSITE_DATA_DISK_CACHE data type
* so for all other types 0 will be returned.
*
* Returns: the size of @website_data for the given @types.
*
* Since: 2.16
*/
guint64 webkit_website_data_get_size(WebKitWebsiteData* websiteData, WebKitWebsiteDataTypes types)
{
g_return_val_if_fail(websiteData, 0);
if (!types || !websiteData->record.size)
return 0;
guint64 totalSize = 0;
for (auto type : websiteData->record.size->typeSizes.keys()) {
if (type & types)
totalSize += websiteData->record.size->typeSizes.get(type);
}
return totalSize;
}
|