jianli@chromium.org | 51ceb75 | 2010-08-11 00:03:19 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 Google Inc. All rights reserved. |
beidson@apple.com | 4d5f9b2 | 2016-07-01 19:10:35 +0000 | [diff] [blame] | 3 | * Copyright (C) 2013, 2014, 2016 Apple Inc. All rights reserved. |
jianli@chromium.org | 51ceb75 | 2010-08-11 00:03:19 +0000 | [diff] [blame] | 4 | * |
| 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.com | 0faecda | 2016-06-07 18:52:06 +0000 | [diff] [blame] | 32 | #pragma once |
jianli@chromium.org | 51ceb75 | 2010-08-11 00:03:19 +0000 | [diff] [blame] | 33 | |
ap@apple.com | bbc1eb5 | 2014-05-06 22:11:07 +0000 | [diff] [blame] | 34 | #include "BlobData.h" |
jianli@chromium.org | 51ceb75 | 2010-08-11 00:03:19 +0000 | [diff] [blame] | 35 | #include "BlobRegistry.h" |
jianli@chromium.org | 51ceb75 | 2010-08-11 00:03:19 +0000 | [diff] [blame] | 36 | #include <wtf/HashMap.h> |
keith_miller@apple.com | bb2f61c | 2018-12-01 03:28:36 +0000 | [diff] [blame] | 37 | #include <wtf/URLHash.h> |
jianli@chromium.org | 51ceb75 | 2010-08-11 00:03:19 +0000 | [diff] [blame] | 38 | #include <wtf/text/StringHash.h> |
weinig@apple.com | 3f5ab02 | 2012-09-06 17:36:48 +0000 | [diff] [blame] | 39 | #include <wtf/text/WTFString.h> |
jianli@chromium.org | 51ceb75 | 2010-08-11 00:03:19 +0000 | [diff] [blame] | 40 | |
| 41 | namespace WebCore { |
| 42 | |
jianli@chromium.org | 51ceb75 | 2010-08-11 00:03:19 +0000 | [diff] [blame] | 43 | class ResourceHandle; |
| 44 | class ResourceHandleClient; |
| 45 | class ResourceRequest; |
wenson_hsieh@apple.com | a8a7a71 | 2018-01-05 23:48:35 +0000 | [diff] [blame] | 46 | class ThreadSafeDataBuffer; |
jianli@chromium.org | 51ceb75 | 2010-08-11 00:03:19 +0000 | [diff] [blame] | 47 | |
| 48 | // BlobRegistryImpl is not thread-safe. It should only be called from main thread. |
youenn@apple.com | d56bb51 | 2019-08-13 10:06:16 +0000 | [diff] [blame] | 49 | class WEBCORE_EXPORT BlobRegistryImpl { |
zoltan@webkit.org | 2eb7bec | 2012-09-14 09:12:48 +0000 | [diff] [blame] | 50 | WTF_MAKE_FAST_ALLOCATED; |
jianli@chromium.org | 51ceb75 | 2010-08-11 00:03:19 +0000 | [diff] [blame] | 51 | public: |
ap@apple.com | 453a437 | 2013-02-28 21:04:14 +0000 | [diff] [blame] | 52 | virtual ~BlobRegistryImpl(); |
jianli@chromium.org | 51ceb75 | 2010-08-11 00:03:19 +0000 | [diff] [blame] | 53 | |
commit-queue@webkit.org | 9faee6a | 2015-02-18 22:39:03 +0000 | [diff] [blame] | 54 | BlobData* getBlobDataFromURL(const URL&) const; |
jianli@chromium.org | 51ceb75 | 2010-08-11 00:03:19 +0000 | [diff] [blame] | 55 | |
achristensen@apple.com | 0faecda | 2016-06-07 18:52:06 +0000 | [diff] [blame] | 56 | Ref<ResourceHandle> createResourceHandle(const ResourceRequest&, ResourceHandleClient*); |
wenson_hsieh@apple.com | a8a7a71 | 2018-01-05 23:48:35 +0000 | [diff] [blame] | 57 | void writeBlobToFilePath(const URL& blobURL, const String& path, Function<void(bool success)>&& completionHandler); |
ap@apple.com | 549acce | 2012-03-07 17:47:13 +0000 | [diff] [blame] | 58 | |
ap@apple.com | bbc1eb5 | 2014-05-06 22:11:07 +0000 | [diff] [blame] | 59 | void appendStorageItems(BlobData*, const BlobDataItemList&, long long offset, long long length); |
jianli@chromium.org | 51ceb75 | 2010-08-11 00:03:19 +0000 | [diff] [blame] | 60 | |
youenn@apple.com | d56bb51 | 2019-08-13 10:06:16 +0000 | [diff] [blame] | 61 | 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.com | 453a437 | 2013-02-28 21:04:14 +0000 | [diff] [blame] | 67 | |
youenn@apple.com | d56bb51 | 2019-08-13 10:06:16 +0000 | [diff] [blame] | 68 | unsigned long long blobSize(const URL&); |
ap@apple.com | 4135a75 | 2014-04-30 22:52:30 +0000 | [diff] [blame] | 69 | |
youenn@apple.com | d56bb51 | 2019-08-13 10:06:16 +0000 | [diff] [blame] | 70 | void writeBlobsToTemporaryFiles(const Vector<String>& blobURLs, CompletionHandler<void(Vector<String>&& filePaths)>&&); |
beidson@apple.com | dfbb2ea | 2016-04-05 05:47:32 +0000 | [diff] [blame] | 71 | |
wenson_hsieh@apple.com | a8a7a71 | 2018-01-05 23:48:35 +0000 | [diff] [blame] | 72 | 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.com | d56bb51 | 2019-08-13 10:06:16 +0000 | [diff] [blame] | 78 | Vector<RefPtr<BlobDataFileReference>> filesInBlob(const URL&) const; |
wenson_hsieh@apple.com | a8a7a71 | 2018-01-05 23:48:35 +0000 | [diff] [blame] | 79 | |
commit-queue@webkit.org | 9d019d7 | 2019-02-06 02:10:50 +0000 | [diff] [blame] | 80 | private: |
ap@apple.com | bbc1eb5 | 2014-05-06 22:11:07 +0000 | [diff] [blame] | 81 | HashMap<String, RefPtr<BlobData>> m_blobs; |
jianli@chromium.org | 51ceb75 | 2010-08-11 00:03:19 +0000 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | } // namespace WebCore |