blob: db9d6df70b78d15354970236c75d10f3469e885b [file] [log] [blame]
jianli@chromium.org51ceb752010-08-11 00:03:19 +00001/*
2 * Copyright (C) 2010 Google Inc. All rights reserved.
beidson@apple.com4d5f9b22016-07-01 19:10:35 +00003 * Copyright (C) 2013, 2014, 2016 Apple Inc. All rights reserved.
jianli@chromium.org51ceb752010-08-11 00:03:19 +00004 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met:
8 *
9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above
12 * copyright notice, this list of conditions and the following disclaimer
13 * in the documentation and/or other materials provided with the
14 * distribution.
15 * * Neither the name of Google Inc. nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
achristensen@apple.com0faecda2016-06-07 18:52:06 +000032#pragma once
jianli@chromium.org51ceb752010-08-11 00:03:19 +000033
ap@apple.combbc1eb52014-05-06 22:11:07 +000034#include "BlobData.h"
jianli@chromium.org51ceb752010-08-11 00:03:19 +000035#include "BlobRegistry.h"
jianli@chromium.org51ceb752010-08-11 00:03:19 +000036#include <wtf/HashMap.h>
keith_miller@apple.combb2f61c2018-12-01 03:28:36 +000037#include <wtf/URLHash.h>
jianli@chromium.org51ceb752010-08-11 00:03:19 +000038#include <wtf/text/StringHash.h>
weinig@apple.com3f5ab022012-09-06 17:36:48 +000039#include <wtf/text/WTFString.h>
jianli@chromium.org51ceb752010-08-11 00:03:19 +000040
41namespace WebCore {
42
jianli@chromium.org51ceb752010-08-11 00:03:19 +000043class ResourceHandle;
44class ResourceHandleClient;
45class ResourceRequest;
wenson_hsieh@apple.coma8a7a712018-01-05 23:48:35 +000046class ThreadSafeDataBuffer;
jianli@chromium.org51ceb752010-08-11 00:03:19 +000047
48// BlobRegistryImpl is not thread-safe. It should only be called from main thread.
youenn@apple.comd56bb512019-08-13 10:06:16 +000049class WEBCORE_EXPORT BlobRegistryImpl {
zoltan@webkit.org2eb7bec2012-09-14 09:12:48 +000050 WTF_MAKE_FAST_ALLOCATED;
jianli@chromium.org51ceb752010-08-11 00:03:19 +000051public:
ap@apple.com453a4372013-02-28 21:04:14 +000052 virtual ~BlobRegistryImpl();
jianli@chromium.org51ceb752010-08-11 00:03:19 +000053
commit-queue@webkit.org9faee6a2015-02-18 22:39:03 +000054 BlobData* getBlobDataFromURL(const URL&) const;
jianli@chromium.org51ceb752010-08-11 00:03:19 +000055
achristensen@apple.com0faecda2016-06-07 18:52:06 +000056 Ref<ResourceHandle> createResourceHandle(const ResourceRequest&, ResourceHandleClient*);
wenson_hsieh@apple.coma8a7a712018-01-05 23:48:35 +000057 void writeBlobToFilePath(const URL& blobURL, const String& path, Function<void(bool success)>&& completionHandler);
ap@apple.com549acce2012-03-07 17:47:13 +000058
ap@apple.combbc1eb52014-05-06 22:11:07 +000059 void appendStorageItems(BlobData*, const BlobDataItemList&, long long offset, long long length);
jianli@chromium.org51ceb752010-08-11 00:03:19 +000060
youenn@apple.comd56bb512019-08-13 10:06:16 +000061 void registerFileBlobURL(const URL&, Ref<BlobDataFileReference>&&, const String& contentType);
62 void registerBlobURL(const URL&, Vector<BlobPart>&&, const String& contentType);
63 void registerBlobURL(const URL&, const URL& srcURL);
64 void registerBlobURLOptionallyFileBacked(const URL&, const URL& srcURL, RefPtr<BlobDataFileReference>&&, const String& contentType);
65 void registerBlobURLForSlice(const URL&, const URL& srcURL, long long start, long long end);
66 void unregisterBlobURL(const URL&);
ap@apple.com453a4372013-02-28 21:04:14 +000067
youenn@apple.comd56bb512019-08-13 10:06:16 +000068 unsigned long long blobSize(const URL&);
ap@apple.com4135a752014-04-30 22:52:30 +000069
youenn@apple.comd56bb512019-08-13 10:06:16 +000070 void writeBlobsToTemporaryFiles(const Vector<String>& blobURLs, CompletionHandler<void(Vector<String>&& filePaths)>&&);
beidson@apple.comdfbb2ea2016-04-05 05:47:32 +000071
wenson_hsieh@apple.coma8a7a712018-01-05 23:48:35 +000072 struct BlobForFileWriting {
73 String blobURL;
74 Vector<std::pair<String, ThreadSafeDataBuffer>> filePathsOrDataBuffers;
75 };
76
77 bool populateBlobsForFileWriting(const Vector<String>& blobURLs, Vector<BlobForFileWriting>&);
youenn@apple.comd56bb512019-08-13 10:06:16 +000078 Vector<RefPtr<BlobDataFileReference>> filesInBlob(const URL&) const;
wenson_hsieh@apple.coma8a7a712018-01-05 23:48:35 +000079
commit-queue@webkit.org9d019d72019-02-06 02:10:50 +000080private:
ap@apple.combbc1eb52014-05-06 22:11:07 +000081 HashMap<String, RefPtr<BlobData>> m_blobs;
jianli@chromium.org51ceb752010-08-11 00:03:19 +000082};
83
84} // namespace WebCore