| OLD | NEW |
| (Empty) | |
| 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * |
| 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are |
| 6 * met: |
| 7 * |
| 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above |
| 11 * copyright notice, this list of conditions and the following disclaimer |
| 12 * in the documentation and/or other materials provided with the |
| 13 * distribution. |
| 14 * * Neither the name of Google Inc. nor the names of its |
| 15 * contributors may be used to endorse or promote products derived from |
| 16 * this software without specific prior written permission. |
| 17 * |
| 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ |
| 30 |
| 31 #include "config.h" |
| 32 #include "WebStorageAreaImpl.h" |
| 33 |
| 34 #if ENABLE(DOM_STORAGE) |
| 35 |
| 36 #include "ExceptionCode.h" |
| 37 #include "WebString.h" |
| 38 |
| 39 namespace WebKit { |
| 40 |
| 41 WebStorageAreaImpl::WebStorageAreaImpl(PassRefPtr<WebCore::StorageArea> storageArea) |
| 42 : m_storageArea(storageArea) |
| 43 { |
| 44 } |
| 45 |
| 46 WebStorageAreaImpl::~WebStorageAreaImpl() |
| 47 { |
| 48 } |
| 49 |
| 50 void WebStorageAreaImpl::lock(bool& invalidateCache, size_t& bytesLeftInQuota) |
| 51 { |
| 52 // FIXME: Enable locking. http://crbug.com/16877 |
| 53 invalidateCache = false; |
| 54 // FIXME: Enable quota support. http://crbug.com/16876 |
| 55 bytesLeftInQuota = 0; |
| 56 } |
| 57 |
| 58 void WebStorageAreaImpl::unlock() |
| 59 { |
| 60 // FIXME: Enable locking. http://crbug.com/16877 |
| 61 } |
| 62 |
| 63 unsigned WebStorageAreaImpl::length() |
| 64 { |
| 65 return m_storageArea->length(); |
| 66 } |
| 67 |
| 68 WebString WebStorageAreaImpl::key(unsigned index, bool& keyException) |
| 69 { |
| 70 int exceptionCode = 0; |
| 71 WebString value = m_storageArea->key(index, exceptionCode); |
| 72 if (exceptionCode != 0) { |
| 73 ASSERT(exceptionCode == WebCore::INDEX_SIZE_ERR); |
| 74 keyException = true; |
| 75 } else { |
| 76 keyException = false; |
| 77 } |
| 78 return value; |
| 79 } |
| 80 |
| 81 WebString WebStorageAreaImpl::getItem(const WebString& key) |
| 82 { |
| 83 return m_storageArea->getItem(key); |
| 84 } |
| 85 |
| 86 void WebStorageAreaImpl::setItem(const WebString& key, const WebString& value, bool& quotaException) |
| 87 { |
| 88 int exceptionCode = 0; |
| 89 // FIXME: Can we do any better than just passing 0 for the frame? |
| 90 m_storageArea->setItem(key, value, exceptionCode, 0); |
| 91 if (exceptionCode != 0) { |
| 92 ASSERT(exceptionCode == WebCore::QUOTA_EXCEEDED_ERR); |
| 93 quotaException = true; |
| 94 } else { |
| 95 quotaException = false; |
| 96 } |
| 97 } |
| 98 |
| 99 void WebStorageAreaImpl::removeItem(const WebString& key) |
| 100 { |
| 101 // FIXME: Can we do any better than just passing 0 for the frame? |
| 102 m_storageArea->removeItem(key, 0); |
| 103 } |
| 104 |
| 105 void WebStorageAreaImpl::clear() |
| 106 { |
| 107 // FIXME: Can we do any better than just passing 0 for the frame? |
| 108 m_storageArea->clear(0); |
| 109 } |
| 110 |
| 111 } // namespace WebKit |
| 112 |
| 113 #endif // ENABLE(DOM_STORAGE) |
| OLD | NEW |