Bumping manifests a=b2g-bump
[gecko.git] / rdf / base / nsNameSpaceMap.cpp
blobb486a233d80c542d520123807375d94e85901acc
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #include "nsNameSpaceMap.h"
8 #include "nsReadableUtils.h"
10 nsNameSpaceMap::nsNameSpaceMap()
11 : mEntries(nullptr)
13 MOZ_COUNT_CTOR(nsNameSpaceMap);
16 nsNameSpaceMap::~nsNameSpaceMap()
18 MOZ_COUNT_DTOR(nsNameSpaceMap);
20 while (mEntries) {
21 Entry* doomed = mEntries;
22 mEntries = mEntries->mNext;
23 delete doomed;
27 nsresult
28 nsNameSpaceMap::Put(const nsAString& aURI, nsIAtom* aPrefix)
30 nsCString uriUTF8;
31 AppendUTF16toUTF8(aURI, uriUTF8);
32 return Put(uriUTF8, aPrefix);
35 nsresult
36 nsNameSpaceMap::Put(const nsCSubstring& aURI, nsIAtom* aPrefix)
38 Entry* entry;
40 // Make sure we're not adding a duplicate
41 for (entry = mEntries; entry != nullptr; entry = entry->mNext) {
42 if (entry->mURI == aURI || entry->mPrefix == aPrefix)
43 return NS_ERROR_FAILURE;
46 entry = new Entry(aURI, aPrefix);
47 if (! entry)
48 return NS_ERROR_OUT_OF_MEMORY;
50 entry->mNext = mEntries;
51 mEntries = entry;
52 return NS_OK;
55 nsNameSpaceMap::const_iterator
56 nsNameSpaceMap::GetNameSpaceOf(const nsCSubstring& aURI) const
58 for (Entry* entry = mEntries; entry != nullptr; entry = entry->mNext) {
59 if (StringBeginsWith(aURI, entry->mURI))
60 return const_iterator(entry);
63 return last();