blob: cac14035d3e83ecb77dd8522f54c13d4f3024a54 [file] [log] [blame]
weinig@apple.com79dc7d52010-08-13 21:33:40 +00001/*
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.com48183962011-01-28 05:37:44 +000026#include "config.h"
weinig@apple.com79dc7d52010-08-13 21:33:40 +000027#include "ImmutableDictionary.h"
28
andersca@apple.comfee681d2013-11-13 22:05:12 +000029#include "APIArray.h"
weinig@apple.comfbc87ee2013-12-15 01:09:47 +000030#include "APIString.h"
weinig@apple.com47910752010-08-19 15:47:52 +000031
weinig@apple.com79dc7d52010-08-13 21:33:40 +000032namespace WebKit {
33
andersca@apple.comc3661aa2013-12-12 20:28:47 +000034RefPtr<ImmutableDictionary> ImmutableDictionary::create()
weinig@apple.com79dc7d52010-08-13 21:33:40 +000035{
andersca@apple.comc3661aa2013-12-12 20:28:47 +000036 return create({ });
weinig@apple.com79dc7d52010-08-13 21:33:40 +000037}
38
andersca@apple.comc3661aa2013-12-12 20:28:47 +000039RefPtr<ImmutableDictionary> ImmutableDictionary::create(MapType map)
weinig@apple.com79dc7d52010-08-13 21:33:40 +000040{
andersca@apple.comc3661aa2013-12-12 20:28:47 +000041 return adoptRef(new ImmutableDictionary(std::move(map)));
42}
43
44ImmutableDictionary::ImmutableDictionary(MapType map)
45 : m_map(std::move(map))
46{
weinig@apple.com79dc7d52010-08-13 21:33:40 +000047}
48
49ImmutableDictionary::~ImmutableDictionary()
50{
51}
52
andersca@apple.comfee681d2013-11-13 22:05:12 +000053PassRefPtr<API::Array> ImmutableDictionary::keys() const
weinig@apple.com47910752010-08-19 15:47:52 +000054{
55 if (m_map.isEmpty())
andersca@apple.comfee681d2013-11-13 22:05:12 +000056 return API::Array::create();
weinig@apple.com47910752010-08-19 15:47:52 +000057
andersca@apple.coma6271e52013-11-13 00:57:38 +000058 Vector<RefPtr<API::Object>> keys;
andersca@apple.com59e56552013-11-12 18:32:53 +000059 keys.reserveInitialCapacity(m_map.size());
weinig@apple.com47910752010-08-19 15:47:52 +000060
andersca@apple.com59e56552013-11-12 18:32:53 +000061 for (const auto& key : m_map.keys())
weinig@apple.comfbc87ee2013-12-15 01:09:47 +000062 keys.uncheckedAppend(API::String::create(key));
weinig@apple.com47910752010-08-19 15:47:52 +000063
andersca@apple.comfee681d2013-11-13 22:05:12 +000064 return API::Array::create(std::move(keys));
weinig@apple.com47910752010-08-19 15:47:52 +000065}
66
weinig@apple.com79dc7d52010-08-13 21:33:40 +000067} // namespace WebKit