2013-12-12 19:30:10 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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-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
|
|
|
|
|
|
|
URLSearchParams();
|
|
|
|
|
|
|
|
// WebIDL methods
|
|
|
|
nsISupports* GetParentObject() const
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
|
2014-02-03 16:48:38 +00:00
|
|
|
void ParseInput(const nsACString& aInput,
|
|
|
|
URLSearchParamsObserver* aObserver);
|
2013-12-12 19:30:27 +00:00
|
|
|
|
2014-02-03 16:48:38 +00:00
|
|
|
void AddObserver(URLSearchParamsObserver* aObserver);
|
|
|
|
void RemoveObserver(URLSearchParamsObserver* aObserver);
|
2014-08-08 00:45:21 +00:00
|
|
|
void RemoveObservers();
|
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);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
void Delete(const nsAString& aName);
|
|
|
|
|
2014-09-26 23:41:15 +00:00
|
|
|
void Stringify(nsString& aRetval) const
|
2014-01-15 14:50:18 +00:00
|
|
|
{
|
|
|
|
Serialize(aRetval);
|
|
|
|
}
|
|
|
|
|
2015-04-04 05:55:15 +00:00
|
|
|
typedef void (*ParamFunc)(const nsString& aName, const nsString& aValue,
|
|
|
|
void* aClosure);
|
|
|
|
|
|
|
|
void
|
|
|
|
ForEach(ParamFunc aFunc, void* aClosure)
|
|
|
|
{
|
|
|
|
for (uint32_t i = 0; i < mSearchParams.Length(); ++i) {
|
|
|
|
aFunc(mSearchParams[i].mKey, mSearchParams[i].mValue, aClosure);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
|
2014-08-08 00:45:14 +00:00
|
|
|
void DecodeString(const nsACString& aInput, nsAString& aOutput);
|
|
|
|
void ConvertString(const nsACString& aInput, nsAString& aOutput);
|
2013-12-12 19:30:27 +00:00
|
|
|
|
2014-02-03 16:48:38 +00:00
|
|
|
void NotifyObservers(URLSearchParamsObserver* aExceptObserver);
|
2013-12-12 19:30:10 +00:00
|
|
|
|
2014-10-01 13:55:33 +00:00
|
|
|
struct Param
|
|
|
|
{
|
|
|
|
nsString mKey;
|
|
|
|
nsString mValue;
|
|
|
|
};
|
2013-12-12 19:30:27 +00:00
|
|
|
|
2014-10-01 13:55:33 +00:00
|
|
|
nsTArray<Param> mSearchParams;
|
2013-12-12 19:30:27 +00:00
|
|
|
|
2014-02-03 16:48:38 +00:00
|
|
|
nsTArray<nsRefPtr<URLSearchParamsObserver>> mObservers;
|
2014-08-08 00:45:14 +00:00
|
|
|
nsCOMPtr<nsIUnicodeDecoder> mDecoder;
|
2013-12-12 19:30:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* mozilla_dom_URLSearchParams_h */
|