2015-05-03 22:32:37 +03: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 23:30:10 +04: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
|
|
|
|
|
2020-11-23 19:06:52 +03:00
|
|
|
#include <cstdint>
|
|
|
|
#include "ErrorList.h"
|
|
|
|
#include "js/RootingAPI.h"
|
|
|
|
#include "mozilla/AlreadyAddRefed.h"
|
|
|
|
#include "mozilla/Assertions.h"
|
|
|
|
#include "mozilla/RefPtr.h"
|
|
|
|
#include "mozilla/UniquePtr.h"
|
|
|
|
#include "nsCOMPtr.h"
|
2013-12-12 23:30:27 +04:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsISupports.h"
|
2020-12-07 17:21:28 +03:00
|
|
|
#include "nsString.h"
|
2020-11-23 19:06:52 +03:00
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsWrapperCache.h"
|
2013-12-12 23:30:10 +04:00
|
|
|
|
2020-11-23 19:06:52 +03:00
|
|
|
class JSObject;
|
2019-06-25 09:48:53 +03:00
|
|
|
class nsIGlobalObject;
|
2020-11-23 19:06:52 +03:00
|
|
|
class nsIInputStream;
|
|
|
|
struct JSContext;
|
|
|
|
struct JSStructuredCloneReader;
|
|
|
|
struct JSStructuredCloneWriter;
|
2019-06-25 09:48:53 +03:00
|
|
|
|
2013-12-12 23:30:10 +04:00
|
|
|
namespace mozilla {
|
2020-11-23 19:06:52 +03:00
|
|
|
|
|
|
|
class ErrorResult;
|
2020-11-13 11:11:32 +03:00
|
|
|
class URLParams;
|
|
|
|
|
2013-12-12 23:30:10 +04:00
|
|
|
namespace dom {
|
|
|
|
|
2020-11-23 19:06:52 +03:00
|
|
|
class GlobalObject;
|
2014-08-08 04:45:21 +04:00
|
|
|
class URLSearchParams;
|
2017-03-02 23:48:51 +03:00
|
|
|
class USVStringSequenceSequenceOrUSVStringUSVStringRecordOrUSVString;
|
2014-08-08 04:45:21 +04:00
|
|
|
|
2013-12-12 23:30:27 +04:00
|
|
|
class URLSearchParamsObserver : public nsISupports {
|
2013-12-12 23:30:10 +04:00
|
|
|
public:
|
2020-02-20 19:01:58 +03:00
|
|
|
virtual ~URLSearchParamsObserver() = default;
|
2013-12-12 23:30:27 +04:00
|
|
|
|
2014-08-08 04:45:21 +04:00
|
|
|
virtual void URLSearchParamsUpdated(URLSearchParams* aFromThis) = 0;
|
2013-12-12 23:30:27 +04:00
|
|
|
};
|
|
|
|
|
2017-09-20 04:32:12 +03:00
|
|
|
class URLSearchParams final : public nsISupports, public nsWrapperCache {
|
2014-06-23 23:56:07 +04:00
|
|
|
~URLSearchParams();
|
|
|
|
|
2013-12-12 23:30:27 +04:00
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(URLSearchParams)
|
2013-12-12 23:30:10 +04:00
|
|
|
|
2016-07-12 19:04:37 +03:00
|
|
|
explicit URLSearchParams(nsISupports* aParent,
|
|
|
|
URLSearchParamsObserver* aObserver = nullptr);
|
2013-12-12 23:30:10 +04:00
|
|
|
|
|
|
|
// WebIDL methods
|
|
|
|
nsISupports* GetParentObject() const { return mParent; }
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2013-12-12 23:30:10 +04:00
|
|
|
|
|
|
|
static already_AddRefed<URLSearchParams> Constructor(
|
2017-01-17 13:13:06 +03:00
|
|
|
const GlobalObject& aGlobal,
|
2017-03-02 23:48:51 +03:00
|
|
|
const USVStringSequenceSequenceOrUSVStringUSVStringRecordOrUSVString&
|
|
|
|
aInit,
|
2013-12-12 23:30:10 +04:00
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2015-06-24 22:15:59 +03:00
|
|
|
void ParseInput(const nsACString& aInput);
|
2013-12-12 23:30:27 +04:00
|
|
|
|
2014-01-15 18:50:18 +04:00
|
|
|
void Serialize(nsAString& aValue) const;
|
2013-12-12 23:30:27 +04:00
|
|
|
|
2013-12-12 23:30:10 +04:00
|
|
|
void Get(const nsAString& aName, nsString& aRetval);
|
|
|
|
|
2015-06-04 23:45:24 +03:00
|
|
|
void GetAll(const nsAString& aName, nsTArray<nsString>& aRetval);
|
2013-12-12 23:30:10 +04: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 18:07:40 +03:00
|
|
|
uint32_t GetIterableLength() const;
|
|
|
|
const nsAString& GetKeyAtIndex(uint32_t aIndex) const;
|
|
|
|
const nsAString& GetValueAtIndex(uint32_t aIndex) const;
|
|
|
|
|
2017-01-27 22:35:47 +03:00
|
|
|
void Sort(ErrorResult& aRv);
|
|
|
|
|
2014-09-27 03:41:15 +04:00
|
|
|
void Stringify(nsString& aRetval) const { Serialize(aRetval); }
|
2014-01-15 18:50:18 +04:00
|
|
|
|
2019-06-25 09:48:53 +03:00
|
|
|
static already_AddRefed<URLSearchParams> ReadStructuredClone(
|
|
|
|
JSContext* aCx, nsIGlobalObject* aGlobal,
|
|
|
|
JSStructuredCloneReader* aReader);
|
2016-07-11 22:03:44 +03:00
|
|
|
|
2019-06-25 09:48:53 +03:00
|
|
|
bool WriteStructuredClone(JSContext* aCx,
|
|
|
|
JSStructuredCloneWriter* aWriter) const;
|
2016-07-11 22:03:44 +03:00
|
|
|
|
2017-09-20 04:32:12 +03:00
|
|
|
nsresult GetSendInfo(nsIInputStream** aBody, uint64_t* aContentLength,
|
|
|
|
nsACString& aContentTypeWithCharset,
|
|
|
|
nsACString& aCharset) const;
|
|
|
|
|
2013-12-12 23:30:10 +04:00
|
|
|
private:
|
2020-11-13 11:11:32 +03:00
|
|
|
bool ReadStructuredClone(JSStructuredCloneReader* aReader);
|
|
|
|
|
|
|
|
bool WriteStructuredClone(JSStructuredCloneWriter* aWriter) const;
|
|
|
|
|
2013-12-12 23:30:27 +04:00
|
|
|
void AppendInternal(const nsAString& aName, const nsAString& aValue);
|
2013-12-12 23:30:10 +04:00
|
|
|
|
|
|
|
void DeleteAll();
|
|
|
|
|
2015-06-24 22:15:59 +03:00
|
|
|
void NotifyObserver();
|
2013-12-12 23:30:10 +04:00
|
|
|
|
2015-06-04 23:45:24 +03:00
|
|
|
UniquePtr<URLParams> mParams;
|
2015-06-29 19:02:53 +03:00
|
|
|
nsCOMPtr<nsISupports> mParent;
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<URLSearchParamsObserver> mObserver;
|
2013-12-12 23:30:10 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* mozilla_dom_URLSearchParams_h */
|