2015-05-03 19:32:37 +00:00
|
|
|
/* -*- 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 19:30:10 +00: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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_URLSearchParams_h
|
|
|
|
#define mozilla_dom_URLSearchParams_h
|
|
|
|
|
|
|
|
#include "mozilla/dom/BindingDeclarations.h"
|
|
|
|
#include "mozilla/ErrorResult.h"
|
2013-12-12 19:30:27 +00:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
#include "nsISupports.h"
|
2014-08-08 00:45:14 +00:00
|
|
|
#include "nsIUnicodeDecoder.h"
|
2013-12-12 19:30:10 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-08-08 00:45:21 +00:00
|
|
|
class URLSearchParams;
|
|
|
|
|
2013-12-12 19:30:27 +00:00
|
|
|
class URLSearchParamsObserver : public nsISupports
|
2013-12-12 19:30:10 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-12-12 19:30:27 +00:00
|
|
|
virtual ~URLSearchParamsObserver() {}
|
|
|
|
|
2014-08-08 00:45:21 +00:00
|
|
|
virtual void URLSearchParamsUpdated(URLSearchParams* aFromThis) = 0;
|
2013-12-12 19:30:27 +00:00
|
|
|
};
|
|
|
|
|
2015-06-04 18:51:57 +00:00
|
|
|
// This class is used in BasePrincipal and it's _extremely_ important that the
|
|
|
|
// attributes are kept in the correct order. If this changes, please, update
|
|
|
|
// BasePrincipal code.
|
|
|
|
|
2015-06-04 20:45:24 +00:00
|
|
|
class URLParams final
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
URLParams() {}
|
|
|
|
|
|
|
|
~URLParams()
|
|
|
|
{
|
|
|
|
DeleteAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
explicit URLParams(const URLParams& aOther)
|
|
|
|
: mParams(aOther.mParams)
|
|
|
|
{}
|
|
|
|
|
2015-09-03 14:51:42 +00:00
|
|
|
URLParams(const URLParams&& aOther)
|
2015-06-04 20:45:24 +00:00
|
|
|
: mParams(Move(aOther.mParams))
|
|
|
|
{}
|
|
|
|
|
|
|
|
class ForEachIterator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual bool
|
|
|
|
URLParamsIterator(const nsString& aName, const nsString& aValue) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
ParseInput(const nsACString& aInput);
|
|
|
|
|
|
|
|
bool
|
|
|
|
ForEach(ForEachIterator& aIterator) const
|
|
|
|
{
|
|
|
|
for (uint32_t i = 0; i < mParams.Length(); ++i) {
|
|
|
|
if (!aIterator.URLParamsIterator(mParams[i].mKey, mParams[i].mValue)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Serialize(nsAString& aValue) const;
|
|
|
|
|
|
|
|
void Get(const nsAString& aName, nsString& aRetval);
|
|
|
|
|
|
|
|
void GetAll(const nsAString& aName, nsTArray<nsString >& aRetval);
|
|
|
|
|
|
|
|
void Set(const nsAString& aName, const nsAString& aValue);
|
|
|
|
|
|
|
|
void Append(const nsAString& aName, const nsAString& aValue);
|
|
|
|
|
|
|
|
bool Has(const nsAString& aName);
|
|
|
|
|
|
|
|
// Returns true if aName was found and deleted, false otherwise.
|
|
|
|
bool Delete(const nsAString& aName);
|
|
|
|
|
|
|
|
void DeleteAll()
|
|
|
|
{
|
|
|
|
mParams.Clear();
|
|
|
|
}
|
|
|
|
|
2015-10-19 15:07:40 +00:00
|
|
|
uint32_t Length() const
|
|
|
|
{
|
|
|
|
return mParams.Length();
|
|
|
|
}
|
|
|
|
|
|
|
|
const nsAString& GetKeyAtIndex(uint32_t aIndex) const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aIndex < mParams.Length());
|
|
|
|
return mParams[aIndex].mKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
const nsAString& GetValueAtIndex(uint32_t aIndex) const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aIndex < mParams.Length());
|
|
|
|
return mParams[aIndex].mValue;
|
|
|
|
}
|
|
|
|
|
2015-06-04 20:45:24 +00:00
|
|
|
private:
|
|
|
|
void DecodeString(const nsACString& aInput, nsAString& aOutput);
|
|
|
|
void ConvertString(const nsACString& aInput, nsAString& aOutput);
|
|
|
|
|
|
|
|
struct Param
|
|
|
|
{
|
|
|
|
nsString mKey;
|
|
|
|
nsString mValue;
|
|
|
|
};
|
|
|
|
|
|
|
|
nsTArray<Param> mParams;
|
|
|
|
nsCOMPtr<nsIUnicodeDecoder> mDecoder;
|
|
|
|
};
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class URLSearchParams final : public nsISupports,
|
2015-03-27 18:52:19 +00:00
|
|
|
public nsWrapperCache
|
2013-12-12 19:30:27 +00:00
|
|
|
{
|
2014-06-23 19:56:07 +00:00
|
|
|
~URLSearchParams();
|
|
|
|
|
2013-12-12 19:30:27 +00:00
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(URLSearchParams)
|
2013-12-12 19:30:10 +00:00
|
|
|
|
2015-06-29 16:02:53 +00:00
|
|
|
URLSearchParams(nsISupports* aParent,
|
|
|
|
URLSearchParamsObserver* aObserver);
|
2013-12-12 19:30:10 +00:00
|
|
|
|
2015-06-29 16:02:53 +00:00
|
|
|
URLSearchParams(nsISupports* aParent,
|
|
|
|
const URLSearchParams& aOther);
|
2015-06-04 20:45:24 +00:00
|
|
|
|
2013-12-12 19:30:10 +00:00
|
|
|
// WebIDL methods
|
|
|
|
nsISupports* GetParentObject() const
|
|
|
|
{
|
2015-06-29 16:02:53 +00:00
|
|
|
return mParent;
|
2013-12-12 19:30:10 +00:00
|
|
|
}
|
|
|
|
|
2013-12-12 19:30:27 +00:00
|
|
|
virtual JSObject*
|
2015-03-21 16:28:04 +00:00
|
|
|
WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-12-12 19:30:10 +00:00
|
|
|
|
|
|
|
static already_AddRefed<URLSearchParams>
|
|
|
|
Constructor(const GlobalObject& aGlobal, const nsAString& aInit,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
|
|
|
static already_AddRefed<URLSearchParams>
|
|
|
|
Constructor(const GlobalObject& aGlobal, URLSearchParams& aInit,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2015-06-24 19:15:59 +00:00
|
|
|
void ParseInput(const nsACString& aInput);
|
2013-12-12 19:30:27 +00:00
|
|
|
|
2014-01-15 14:50:18 +00:00
|
|
|
void Serialize(nsAString& aValue) const;
|
2013-12-12 19:30:27 +00:00
|
|
|
|
2013-12-12 19:30:10 +00:00
|
|
|
void Get(const nsAString& aName, nsString& aRetval);
|
|
|
|
|
2015-06-04 20:45:24 +00:00
|
|
|
void GetAll(const nsAString& aName, nsTArray<nsString>& aRetval);
|
2013-12-12 19:30:10 +00:00
|
|
|
|
|
|
|
void Set(const nsAString& aName, const nsAString& aValue);
|
|
|
|
|
|
|
|
void Append(const nsAString& aName, const nsAString& aValue);
|
|
|
|
|
|
|
|
bool Has(const nsAString& aName);
|
|
|
|
|
|
|
|
void Delete(const nsAString& aName);
|
|
|
|
|
2015-10-19 15:07:40 +00:00
|
|
|
uint32_t GetIterableLength() const;
|
|
|
|
const nsAString& GetKeyAtIndex(uint32_t aIndex) const;
|
|
|
|
const nsAString& GetValueAtIndex(uint32_t aIndex) const;
|
|
|
|
|
2014-09-26 23:41:15 +00:00
|
|
|
void Stringify(nsString& aRetval) const
|
2014-01-15 14:50:18 +00:00
|
|
|
{
|
|
|
|
Serialize(aRetval);
|
|
|
|
}
|
|
|
|
|
2015-06-04 20:45:24 +00:00
|
|
|
typedef URLParams::ForEachIterator ForEachIterator;
|
2015-04-04 05:55:15 +00:00
|
|
|
|
2015-06-04 18:51:57 +00:00
|
|
|
bool
|
2015-06-04 20:45:24 +00:00
|
|
|
ForEach(ForEachIterator& aIterator) const
|
2015-04-04 05:55:15 +00:00
|
|
|
{
|
2015-06-04 20:45:24 +00:00
|
|
|
return mParams->ForEach(aIterator);
|
2015-06-04 18:51:57 +00:00
|
|
|
|
|
|
|
return true;
|
2015-04-04 05:55:15 +00:00
|
|
|
}
|
|
|
|
|
2013-12-12 19:30:10 +00:00
|
|
|
private:
|
2013-12-12 19:30:27 +00:00
|
|
|
void AppendInternal(const nsAString& aName, const nsAString& aValue);
|
2013-12-12 19:30:10 +00:00
|
|
|
|
|
|
|
void DeleteAll();
|
|
|
|
|
2015-06-24 19:15:59 +00:00
|
|
|
void NotifyObserver();
|
2013-12-12 19:30:10 +00:00
|
|
|
|
2015-06-04 20:45:24 +00:00
|
|
|
UniquePtr<URLParams> mParams;
|
2015-06-29 16:02:53 +00:00
|
|
|
nsCOMPtr<nsISupports> mParent;
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<URLSearchParamsObserver> mObserver;
|
2013-12-12 19:30:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* mozilla_dom_URLSearchParams_h */
|