weinig@apple.com | 79dc7d5 | 2010-08-13 21:33:40 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 Apple 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 |
| 6 | * are met: |
| 7 | * 1. Redistributions of source code must retain the above copyright |
| 8 | * notice, this list of conditions and the following disclaimer. |
| 9 | * 2. Redistributions in binary form must reproduce the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer in the |
| 11 | * documentation and/or other materials provided with the distribution. |
| 12 | * |
| 13 | * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
| 14 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| 15 | * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 16 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
| 17 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 18 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 19 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 20 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 21 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 22 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| 23 | * THE POSSIBILITY OF SUCH DAMAGE. |
| 24 | */ |
| 25 | |
laszlo.1.gombos@nokia.com | 4818396 | 2011-01-28 05:37:44 +0000 | [diff] [blame] | 26 | #include "config.h" |
weinig@apple.com | 79dc7d5 | 2010-08-13 21:33:40 +0000 | [diff] [blame] | 27 | #include "ImmutableDictionary.h" |
| 28 | |
andersca@apple.com | fee681d | 2013-11-13 22:05:12 +0000 | [diff] [blame] | 29 | #include "APIArray.h" |
weinig@apple.com | fbc87ee | 2013-12-15 01:09:47 +0000 | [diff] [blame] | 30 | #include "APIString.h" |
weinig@apple.com | 4791075 | 2010-08-19 15:47:52 +0000 | [diff] [blame] | 31 | |
weinig@apple.com | 79dc7d5 | 2010-08-13 21:33:40 +0000 | [diff] [blame] | 32 | namespace WebKit { |
| 33 | |
andersca@apple.com | c3661aa | 2013-12-12 20:28:47 +0000 | [diff] [blame] | 34 | RefPtr<ImmutableDictionary> ImmutableDictionary::create() |
weinig@apple.com | 79dc7d5 | 2010-08-13 21:33:40 +0000 | [diff] [blame] | 35 | { |
andersca@apple.com | c3661aa | 2013-12-12 20:28:47 +0000 | [diff] [blame] | 36 | return create({ }); |
weinig@apple.com | 79dc7d5 | 2010-08-13 21:33:40 +0000 | [diff] [blame] | 37 | } |
| 38 | |
andersca@apple.com | c3661aa | 2013-12-12 20:28:47 +0000 | [diff] [blame] | 39 | RefPtr<ImmutableDictionary> ImmutableDictionary::create(MapType map) |
weinig@apple.com | 79dc7d5 | 2010-08-13 21:33:40 +0000 | [diff] [blame] | 40 | { |
andersca@apple.com | c3661aa | 2013-12-12 20:28:47 +0000 | [diff] [blame] | 41 | return adoptRef(new ImmutableDictionary(std::move(map))); |
| 42 | } |
| 43 | |
| 44 | ImmutableDictionary::ImmutableDictionary(MapType map) |
| 45 | : m_map(std::move(map)) |
| 46 | { |
weinig@apple.com | 79dc7d5 | 2010-08-13 21:33:40 +0000 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | ImmutableDictionary::~ImmutableDictionary() |
| 50 | { |
| 51 | } |
| 52 | |
andersca@apple.com | fee681d | 2013-11-13 22:05:12 +0000 | [diff] [blame] | 53 | PassRefPtr<API::Array> ImmutableDictionary::keys() const |
weinig@apple.com | 4791075 | 2010-08-19 15:47:52 +0000 | [diff] [blame] | 54 | { |
| 55 | if (m_map.isEmpty()) |
andersca@apple.com | fee681d | 2013-11-13 22:05:12 +0000 | [diff] [blame] | 56 | return API::Array::create(); |
weinig@apple.com | 4791075 | 2010-08-19 15:47:52 +0000 | [diff] [blame] | 57 | |
andersca@apple.com | a6271e5 | 2013-11-13 00:57:38 +0000 | [diff] [blame] | 58 | Vector<RefPtr<API::Object>> keys; |
andersca@apple.com | 59e5655 | 2013-11-12 18:32:53 +0000 | [diff] [blame] | 59 | keys.reserveInitialCapacity(m_map.size()); |
weinig@apple.com | 4791075 | 2010-08-19 15:47:52 +0000 | [diff] [blame] | 60 | |
andersca@apple.com | 59e5655 | 2013-11-12 18:32:53 +0000 | [diff] [blame] | 61 | for (const auto& key : m_map.keys()) |
weinig@apple.com | fbc87ee | 2013-12-15 01:09:47 +0000 | [diff] [blame] | 62 | keys.uncheckedAppend(API::String::create(key)); |
weinig@apple.com | 4791075 | 2010-08-19 15:47:52 +0000 | [diff] [blame] | 63 | |
andersca@apple.com | fee681d | 2013-11-13 22:05:12 +0000 | [diff] [blame] | 64 | return API::Array::create(std::move(keys)); |
weinig@apple.com | 4791075 | 2010-08-19 15:47:52 +0000 | [diff] [blame] | 65 | } |
| 66 | |
weinig@apple.com | 79dc7d5 | 2010-08-13 21:33:40 +0000 | [diff] [blame] | 67 | } // namespace WebKit |