gecko/dom/base/URLSearchParams.cpp

442 lines
9.5 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
2013-12-12 11:30:10 -08:00
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "URLSearchParams.h"
#include "mozilla/dom/URLSearchParamsBinding.h"
#include "mozilla/dom/EncodingUtils.h"
#include "nsDOMString.h"
2013-12-12 11:30:10 -08:00
namespace mozilla {
namespace dom {
bool
URLParams::Has(const nsAString& aName)
2013-12-12 11:30:10 -08:00
{
for (uint32_t i = 0, len = mParams.Length(); i < len; ++i) {
if (mParams[i].mKey.Equals(aName)) {
return true;
}
}
2013-12-12 11:30:10 -08:00
return false;
2013-12-12 11:30:10 -08:00
}
void
URLParams::Get(const nsAString& aName, nsString& aRetval)
2013-12-12 11:30:10 -08:00
{
SetDOMStringToNull(aRetval);
for (uint32_t i = 0, len = mParams.Length(); i < len; ++i) {
if (mParams[i].mKey.Equals(aName)) {
aRetval.Assign(mParams[i].mValue);
break;
}
}
2013-12-12 11:30:10 -08:00
}
void
URLParams::GetAll(const nsAString& aName, nsTArray<nsString>& aRetval)
2013-12-12 11:30:10 -08:00
{
aRetval.Clear();
for (uint32_t i = 0, len = mParams.Length(); i < len; ++i) {
if (mParams[i].mKey.Equals(aName)) {
aRetval.AppendElement(mParams[i].mValue);
}
}
2013-12-12 11:30:10 -08:00
}
void
URLParams::Append(const nsAString& aName, const nsAString& aValue)
2013-12-12 11:30:10 -08:00
{
Param* param = mParams.AppendElement();
param->mKey = aName;
param->mValue = aValue;
2013-12-12 11:30:10 -08:00
}
void
URLParams::Set(const nsAString& aName, const nsAString& aValue)
2013-12-12 11:30:10 -08:00
{
Param* param = nullptr;
for (uint32_t i = 0, len = mParams.Length(); i < len;) {
if (!mParams[i].mKey.Equals(aName)) {
++i;
continue;
}
if (!param) {
param = &mParams[i];
++i;
continue;
}
// Remove duplicates.
mParams.RemoveElementAt(i);
--len;
}
if (!param) {
param = mParams.AppendElement();
param->mKey = aName;
}
2013-12-12 11:30:10 -08:00
param->mValue = aValue;
}
2013-12-12 11:30:10 -08:00
bool
URLParams::Delete(const nsAString& aName)
{
bool found = false;
for (uint32_t i = 0; i < mParams.Length();) {
if (mParams[i].mKey.Equals(aName)) {
mParams.RemoveElementAt(i);
found = true;
2013-12-12 11:30:10 -08:00
} else {
++i;
2013-12-12 11:30:10 -08:00
}
}
2013-12-12 11:30:10 -08:00
return found;
}
2013-12-12 11:30:10 -08:00
void
URLParams::ConvertString(const nsACString& aInput, nsAString& aOutput)
{
aOutput.Truncate();
2013-12-12 11:30:10 -08:00
if (!mDecoder) {
mDecoder = EncodingUtils::DecoderForEncoding("UTF-8");
if (!mDecoder) {
MOZ_ASSERT(mDecoder, "Failed to create a decoder.");
return;
2013-12-12 11:30:10 -08:00
}
}
2013-12-12 11:30:10 -08:00
int32_t inputLength = aInput.Length();
int32_t outputLength = 0;
2013-12-12 11:30:10 -08:00
nsresult rv = mDecoder->GetMaxLength(aInput.BeginReading(), inputLength,
&outputLength);
if (NS_WARN_IF(NS_FAILED(rv))) {
return;
}
if (!aOutput.SetLength(outputLength, fallible)) {
return;
}
2013-12-12 11:30:10 -08:00
int32_t newOutputLength = outputLength;
rv = mDecoder->Convert(aInput.BeginReading(), &inputLength,
aOutput.BeginWriting(), &newOutputLength);
if (NS_FAILED(rv)) {
aOutput.Truncate();
return;
}
if (newOutputLength < outputLength) {
aOutput.Truncate(newOutputLength);
2013-12-12 11:30:10 -08:00
}
}
void
URLParams::DecodeString(const nsACString& aInput, nsAString& aOutput)
2013-12-12 11:30:10 -08:00
{
nsACString::const_iterator start, end;
2013-12-12 11:30:10 -08:00
aInput.BeginReading(start);
aInput.EndReading(end);
nsCString unescaped;
2013-12-12 11:30:10 -08:00
while (start != end) {
// replace '+' with U+0020
if (*start == '+') {
unescaped.Append(' ');
2013-12-12 11:30:10 -08:00
++start;
continue;
}
// Percent decode algorithm
if (*start == '%') {
nsACString::const_iterator first(start);
2013-12-12 11:30:10 -08:00
++first;
nsACString::const_iterator second(first);
2013-12-12 11:30:10 -08:00
++second;
#define ASCII_HEX_DIGIT( x ) \
((x >= 0x41 && x <= 0x46) || \
(x >= 0x61 && x <= 0x66) || \
(x >= 0x30 && x <= 0x39))
#define HEX_DIGIT( x ) \
(*x >= 0x30 && *x <= 0x39 \
? *x - 0x30 \
: (*x >= 0x41 && *x <= 0x46 \
? *x - 0x37 \
: *x - 0x57))
if (first != end && second != end &&
ASCII_HEX_DIGIT(*first) && ASCII_HEX_DIGIT(*second)) {
unescaped.Append(HEX_DIGIT(first) * 16 + HEX_DIGIT(second));
2013-12-12 11:30:10 -08:00
start = ++second;
continue;
} else {
unescaped.Append('%');
2013-12-12 11:30:10 -08:00
++start;
continue;
}
}
unescaped.Append(*start);
2013-12-12 11:30:10 -08:00
++start;
}
ConvertString(unescaped, aOutput);
}
void
URLParams::ParseInput(const nsACString& aInput)
{
// Remove all the existing data before parsing a new input.
DeleteAll();
nsACString::const_iterator start, end;
aInput.BeginReading(start);
aInput.EndReading(end);
nsACString::const_iterator iter(start);
while (start != end) {
nsAutoCString string;
if (FindCharInReadable('&', iter, end)) {
string.Assign(Substring(start, iter));
start = ++iter;
} else {
string.Assign(Substring(start, end));
start = end;
}
if (string.IsEmpty()) {
continue;
}
nsACString::const_iterator eqStart, eqEnd;
string.BeginReading(eqStart);
string.EndReading(eqEnd);
nsACString::const_iterator eqIter(eqStart);
nsAutoCString name;
nsAutoCString value;
if (FindCharInReadable('=', eqIter, eqEnd)) {
name.Assign(Substring(eqStart, eqIter));
++eqIter;
value.Assign(Substring(eqIter, eqEnd));
} else {
name.Assign(string);
}
nsAutoString decodedName;
DecodeString(name, decodedName);
nsAutoString decodedValue;
DecodeString(value, decodedValue);
Append(decodedName, decodedValue);
}
2013-12-12 11:30:10 -08:00
}
namespace {
void SerializeString(const nsCString& aInput, nsAString& aValue)
2013-12-12 11:30:10 -08:00
{
const unsigned char* p = (const unsigned char*) aInput.get();
const unsigned char* end = p + aInput.Length();
2013-12-12 11:30:10 -08:00
while (p != end) {
// ' ' to '+'
if (*p == 0x20) {
aValue.Append(0x2B);
// Percent Encode algorithm
} else if (*p == 0x2A || *p == 0x2D || *p == 0x2E ||
(*p >= 0x30 && *p <= 0x39) ||
(*p >= 0x41 && *p <= 0x5A) || *p == 0x5F ||
(*p >= 0x61 && *p <= 0x7A)) {
aValue.Append(*p);
} else {
aValue.AppendPrintf("%%%.2X", *p);
}
++p;
}
2013-12-12 11:30:10 -08:00
}
} // namespace
2013-12-12 11:30:10 -08:00
void
URLParams::Serialize(nsAString& aValue) const
2013-12-12 11:30:10 -08:00
{
aValue.Truncate();
bool first = true;
2013-12-12 11:30:10 -08:00
for (uint32_t i = 0, len = mParams.Length(); i < len; ++i) {
if (first) {
first = false;
} else {
aValue.Append('&');
}
SerializeString(NS_ConvertUTF16toUTF8(mParams[i].mKey), aValue);
aValue.Append('=');
SerializeString(NS_ConvertUTF16toUTF8(mParams[i].mValue), aValue);
}
2013-12-12 11:30:10 -08:00
}
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(URLSearchParams, mParent, mObserver)
NS_IMPL_CYCLE_COLLECTING_ADDREF(URLSearchParams)
NS_IMPL_CYCLE_COLLECTING_RELEASE(URLSearchParams)
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(URLSearchParams)
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
NS_INTERFACE_MAP_ENTRY(nsISupports)
NS_INTERFACE_MAP_END
URLSearchParams::URLSearchParams(nsISupports* aParent,
URLSearchParamsObserver* aObserver)
: mParams(new URLParams())
, mParent(aParent)
, mObserver(aObserver)
{
}
URLSearchParams::URLSearchParams(nsISupports* aParent,
const URLSearchParams& aOther)
: mParams(new URLParams(*aOther.mParams.get()))
, mParent(aParent)
, mObserver(nullptr)
{
2013-12-12 11:30:10 -08:00
}
URLSearchParams::~URLSearchParams()
{
DeleteAll();
}
JSObject*
URLSearchParams::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
2013-12-12 11:30:10 -08:00
{
return URLSearchParamsBinding::Wrap(aCx, this, aGivenProto);
2013-12-12 11:30:10 -08:00
}
/* static */ already_AddRefed<URLSearchParams>
URLSearchParams::Constructor(const GlobalObject& aGlobal,
const nsAString& aInit,
ErrorResult& aRv)
2013-12-12 11:30:10 -08:00
{
Bug 1207245 - part 6 - rename nsRefPtr<T> to RefPtr<T>; r=ehsan; a=Tomcat The bulk of this commit was generated with a script, executed at the top level of a typical source code checkout. The only non-machine-generated part was modifying MFBT's moz.build to reflect the new naming. CLOSED TREE makes big refactorings like this a piece of cake. # The main substitution. find . -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \ xargs perl -p -i -e ' s/nsRefPtr\.h/RefPtr\.h/g; # handle includes s/nsRefPtr ?</RefPtr</g; # handle declarations and variables ' # Handle a special friend declaration in gfx/layers/AtomicRefCountedWithFinalize.h. perl -p -i -e 's/::nsRefPtr;/::RefPtr;/' gfx/layers/AtomicRefCountedWithFinalize.h # Handle nsRefPtr.h itself, a couple places that define constructors # from nsRefPtr, and code generators specially. We do this here, rather # than indiscriminantly s/nsRefPtr/RefPtr/, because that would rename # things like nsRefPtrHashtable. perl -p -i -e 's/nsRefPtr/RefPtr/g' \ mfbt/nsRefPtr.h \ xpcom/glue/nsCOMPtr.h \ xpcom/base/OwningNonNull.h \ ipc/ipdl/ipdl/lower.py \ ipc/ipdl/ipdl/builtin.py \ dom/bindings/Codegen.py \ python/lldbutils/lldbutils/utils.py # In our indiscriminate substitution above, we renamed # nsRefPtrGetterAddRefs, the class behind getter_AddRefs. Fix that up. find . -name '*.cpp' -o -name '*.h' -o -name '*.idl' | \ xargs perl -p -i -e 's/nsRefPtrGetterAddRefs/RefPtrGetterAddRefs/g' if [ -d .git ]; then git mv mfbt/nsRefPtr.h mfbt/RefPtr.h else hg mv mfbt/nsRefPtr.h mfbt/RefPtr.h fi
2015-10-17 22:24:48 -07:00
RefPtr<URLSearchParams> sp =
new URLSearchParams(aGlobal.GetAsSupports(), nullptr);
sp->ParseInput(NS_ConvertUTF16toUTF8(aInit));
return sp.forget();
}
/* static */ already_AddRefed<URLSearchParams>
URLSearchParams::Constructor(const GlobalObject& aGlobal,
URLSearchParams& aInit,
ErrorResult& aRv)
{
Bug 1207245 - part 6 - rename nsRefPtr<T> to RefPtr<T>; r=ehsan; a=Tomcat The bulk of this commit was generated with a script, executed at the top level of a typical source code checkout. The only non-machine-generated part was modifying MFBT's moz.build to reflect the new naming. CLOSED TREE makes big refactorings like this a piece of cake. # The main substitution. find . -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \ xargs perl -p -i -e ' s/nsRefPtr\.h/RefPtr\.h/g; # handle includes s/nsRefPtr ?</RefPtr</g; # handle declarations and variables ' # Handle a special friend declaration in gfx/layers/AtomicRefCountedWithFinalize.h. perl -p -i -e 's/::nsRefPtr;/::RefPtr;/' gfx/layers/AtomicRefCountedWithFinalize.h # Handle nsRefPtr.h itself, a couple places that define constructors # from nsRefPtr, and code generators specially. We do this here, rather # than indiscriminantly s/nsRefPtr/RefPtr/, because that would rename # things like nsRefPtrHashtable. perl -p -i -e 's/nsRefPtr/RefPtr/g' \ mfbt/nsRefPtr.h \ xpcom/glue/nsCOMPtr.h \ xpcom/base/OwningNonNull.h \ ipc/ipdl/ipdl/lower.py \ ipc/ipdl/ipdl/builtin.py \ dom/bindings/Codegen.py \ python/lldbutils/lldbutils/utils.py # In our indiscriminate substitution above, we renamed # nsRefPtrGetterAddRefs, the class behind getter_AddRefs. Fix that up. find . -name '*.cpp' -o -name '*.h' -o -name '*.idl' | \ xargs perl -p -i -e 's/nsRefPtrGetterAddRefs/RefPtrGetterAddRefs/g' if [ -d .git ]; then git mv mfbt/nsRefPtr.h mfbt/RefPtr.h else hg mv mfbt/nsRefPtr.h mfbt/RefPtr.h fi
2015-10-17 22:24:48 -07:00
RefPtr<URLSearchParams> sp =
new URLSearchParams(aGlobal.GetAsSupports(), aInit);
return sp.forget();
2013-12-12 11:30:10 -08:00
}
void
URLSearchParams::ParseInput(const nsACString& aInput)
2013-12-12 11:30:10 -08:00
{
mParams->ParseInput(aInput);
}
2013-12-12 11:30:10 -08:00
void
URLSearchParams::Get(const nsAString& aName, nsString& aRetval)
{
return mParams->Get(aName, aRetval);
}
2013-12-12 11:30:10 -08:00
void
URLSearchParams::GetAll(const nsAString& aName, nsTArray<nsString>& aRetval)
2013-12-12 11:30:10 -08:00
{
return mParams->GetAll(aName, aRetval);
2013-12-12 11:30:10 -08:00
}
void
URLSearchParams::Set(const nsAString& aName, const nsAString& aValue)
{
mParams->Set(aName, aValue);
NotifyObserver();
}
void
URLSearchParams::Append(const nsAString& aName, const nsAString& aValue)
{
mParams->Append(aName, aValue);
NotifyObserver();
}
bool
URLSearchParams::Has(const nsAString& aName)
{
return mParams->Has(aName);
}
void
URLSearchParams::Delete(const nsAString& aName)
{
if (mParams->Delete(aName)) {
NotifyObserver();
}
}
void
URLSearchParams::DeleteAll()
{
mParams->DeleteAll();
}
void
URLSearchParams::Serialize(nsAString& aValue) const
{
mParams->Serialize(aValue);
}
void
URLSearchParams::NotifyObserver()
{
if (mObserver) {
mObserver->URLSearchParamsUpdated(this);
}
}
uint32_t
URLSearchParams::GetIterableLength() const
{
return mParams->Length();
}
const nsAString&
URLSearchParams::GetKeyAtIndex(uint32_t aIndex) const
{
return mParams->GetKeyAtIndex(aIndex);
}
const nsAString&
URLSearchParams::GetValueAtIndex(uint32_t aIndex) const
{
return mParams->GetValueAtIndex(aIndex);
}
2013-12-12 11:30:10 -08:00
} // namespace dom
} // namespace mozilla