| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | |
| 3 * Copyright (C) 2013 Intel Corporation. All rights reserved. | |
| 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 | |
| 32 #include "config.h" | |
| 33 | |
| 34 #include "core/platform/network/BlobData.h" | |
| 35 #include "public/platform/WebBlobData.h" | |
| 36 #include "wtf/PassOwnPtr.h" | |
| 37 | |
| 38 using namespace WebCore; | |
| 39 | |
| 40 namespace WebKit { | |
| 41 | |
| 42 WebBlobData::WebBlobData() | |
| 43 { | |
| 44 } | |
| 45 | |
| 46 WebBlobData::~WebBlobData() | |
| 47 { | |
| 48 m_private.reset(0); | |
| 49 } | |
| 50 | |
| 51 size_t WebBlobData::itemCount() const | |
| 52 { | |
| 53 ASSERT(!isNull()); | |
| 54 return m_private->items().size(); | |
| 55 } | |
| 56 | |
| 57 bool WebBlobData::itemAt(size_t index, Item& result) const | |
| 58 { | |
| 59 ASSERT(!isNull()); | |
| 60 | |
| 61 if (index >= m_private->items().size()) | |
| 62 return false; | |
| 63 | |
| 64 const BlobDataItem& item = m_private->items()[index]; | |
| 65 result.data.reset(); | |
| 66 result.filePath.reset(); | |
| 67 result.blobUUID.reset(); | |
| 68 result.offset = item.offset; | |
| 69 result.length = item.length; | |
| 70 result.expectedModificationTime = item.expectedModificationTime; | |
| 71 | |
| 72 switch (item.type) { | |
| 73 case BlobDataItem::Data: | |
| 74 result.type = Item::TypeData; | |
| 75 result.data = item.data; | |
| 76 return true; | |
| 77 case BlobDataItem::File: | |
| 78 result.type = Item::TypeFile; | |
| 79 result.filePath = item.path; | |
| 80 return true; | |
| 81 case BlobDataItem::Blob: | |
| 82 result.type = Item::TypeBlob; | |
| 83 result.blobUUID = item.blobDataHandle->uuid(); | |
| 84 return true; | |
| 85 case BlobDataItem::FileSystemURL: | |
| 86 result.type = Item::TypeFileSystemURL; | |
| 87 result.fileSystemURL = item.fileSystemURL; | |
| 88 return true; | |
| 89 } | |
| 90 ASSERT_NOT_REACHED(); | |
| 91 return false; | |
| 92 } | |
| 93 | |
| 94 WebString WebBlobData::contentType() const | |
| 95 { | |
| 96 ASSERT(!isNull()); | |
| 97 return m_private->contentType(); | |
| 98 } | |
| 99 | |
| 100 WebString WebBlobData::contentDisposition() const | |
| 101 { | |
| 102 ASSERT(!isNull()); | |
| 103 return m_private->contentDisposition(); | |
| 104 } | |
| 105 | |
| 106 WebBlobData::WebBlobData(const PassOwnPtr<BlobData>& data) | |
| 107 : m_private(data) | |
| 108 { | |
| 109 } | |
| 110 | |
| 111 WebBlobData& WebBlobData::operator=(const PassOwnPtr<BlobData>& data) | |
| 112 { | |
| 113 m_private.reset(data); | |
| 114 return *this; | |
| 115 } | |
| 116 | |
| 117 WebBlobData::operator PassOwnPtr<BlobData>() | |
| 118 { | |
| 119 return m_private.release(); | |
| 120 } | |
| 121 | |
| 122 } // namespace WebKit | |
| OLD | NEW |