mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
fe0509a62e
- Bug 904479 - Added createPromiseWithId() that returns id of resolver r=kanru,nsm (2ac672d882) - Bug 1166580 - Disable mozHasPendingMessage tests on non-browser platform. r=me (03c689964b) - Bug 1162281 - Invalid system message handler in an App Manifest can break the entire system. r=fabrice (e192a95f9c) - Bug 1198988 - Turn off some useless dump() calls r=ferjm (34fc83b236) - Bug 1164498: Remove |DispatchBluetoothReply|, r=btian (6143335efa) - Bug 1001757 - Add ability to store core apps outside of profile on desktop b2g; r=fabrice (f6b605e7aa) - Bug 1155245 - Set the app status correctly for hosted certified apps in developer mode. r=fabrice (131178b80e) - Bug 1179052 - Add some raptor markers to b2g gecko startup r=gwagner (222256fad8) - Bug 1163904 - handle -url command line argument. r=fabrice (ee61af1ff9) - Bug 1167275 - JS error in shell.js handleCmdLine() r=me (32e75c604f) - Bug 1167197 - Fix GMPProvider on Android r=cpearce Bug 1181209 - Make changes to Gecko needed for b2gdroid to boot. r=fabrice (b35d3a372f) - Bug 1158544 - Remove FTPChannelChild::mWasOpened and make the base class mWasOpened protected; r=mcmanus (9111e1bc00) - Bug 1171716 - Part 2: Use NS_ReleaseOnMainThread in nsBaseChannel. r=froydnj (f138124f14) - partial of Bug 1177175 - Add a UITour target inside the TP panel. (603cc719b3) - Bug 1175545 - Dont process alt-svc on 421 r=hurley (ad0f2f6e91) - Bug 1191291 - convert nsHttpChannel::RetargetDeliveryTo warning to log r=michal.novotny (b9c6003df8) - Bug 1182487 - Don't try to write to HTTP cache entry in nsHttpChannel when entry is open for reading only. r=michal (b36d7014a0) - Bug 1173069 - Don't accumulate the cache hit telemetry for intercepted channels; r=mayhemer,jdm (aaed79183d) - Bug 1208755 HttpBaseChannel::ShouldIntercept() should not assume every channel has a LoadInfo. r=ckerschb (d55be94901) - Bug 1201229 - Return an empty string for a header when an error occurs; r=dragana (256d0462c8) - Bug 1048048 - add preload content policy types - web platform test updates (r=dveditz) (baa1004dd6) - Bug 1048048 - add preload content policy types - csp changes (r=dveditz) (17914dadba) - Bug 1048048 - add preload content policy types for stylesheets (r=cam) (29af13263a) - Bug 1048048 - add preload content policy types (r=ehsan) (f58a32d51b) - Bug 1201747 - Don't inspect the subject principal in StorageAllowedForPrincipal. r=mystor (4f2c100882) - Bug 1176829 - Remove custom elements base element queue. r=smaug (03a520c13d) - Bug 1176829 follow-up, finish removing unused member to fix bustage. CLOSED TREE (29c6150af8) - Bug 1179909: Build fix. r=me CLOSED TREE (40e3bdb971) - Bug 1188932 - Allow the User-Agent header to be explicitly set by requests, r=bkelly, r=jgraham (37aacbd37d)
147 lines
4.8 KiB
C++
147 lines
4.8 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set sw=2 ts=8 et tw=80 : */
|
|
|
|
/* 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_net_FTPChannelChild_h
|
|
#define mozilla_net_FTPChannelChild_h
|
|
|
|
#include "mozilla/net/PFTPChannelChild.h"
|
|
#include "mozilla/net/ChannelEventQueue.h"
|
|
#include "nsBaseChannel.h"
|
|
#include "nsIFTPChannel.h"
|
|
#include "nsIUploadChannel.h"
|
|
#include "nsIProxiedChannel.h"
|
|
#include "nsIResumableChannel.h"
|
|
#include "nsIChildChannel.h"
|
|
#include "nsIDivertableChannel.h"
|
|
|
|
#include "nsIStreamListener.h"
|
|
#include "PrivateBrowsingChannel.h"
|
|
|
|
namespace mozilla {
|
|
namespace net {
|
|
|
|
// This class inherits logic from nsBaseChannel that is not needed for an
|
|
// e10s child channel, but it works. At some point we could slice up
|
|
// nsBaseChannel and have a new class that has only the common logic for
|
|
// nsFTPChannel/FTPChannelChild.
|
|
|
|
class FTPChannelChild final : public PFTPChannelChild
|
|
, public nsBaseChannel
|
|
, public nsIFTPChannel
|
|
, public nsIUploadChannel
|
|
, public nsIResumableChannel
|
|
, public nsIProxiedChannel
|
|
, public nsIChildChannel
|
|
, public nsIDivertableChannel
|
|
{
|
|
public:
|
|
typedef ::nsIStreamListener nsIStreamListener;
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_DECL_NSIFTPCHANNEL
|
|
NS_DECL_NSIUPLOADCHANNEL
|
|
NS_DECL_NSIRESUMABLECHANNEL
|
|
NS_DECL_NSIPROXIEDCHANNEL
|
|
NS_DECL_NSICHILDCHANNEL
|
|
NS_DECL_NSIDIVERTABLECHANNEL
|
|
|
|
NS_IMETHOD Cancel(nsresult status) override;
|
|
NS_IMETHOD Suspend() override;
|
|
NS_IMETHOD Resume() override;
|
|
|
|
explicit FTPChannelChild(nsIURI* uri);
|
|
|
|
void AddIPDLReference();
|
|
void ReleaseIPDLReference();
|
|
|
|
NS_IMETHOD AsyncOpen(nsIStreamListener* listener, nsISupports* aContext) override;
|
|
|
|
// Note that we handle this ourselves, overriding the nsBaseChannel
|
|
// default behavior, in order to be e10s-friendly.
|
|
NS_IMETHOD IsPending(bool* result) override;
|
|
|
|
nsresult OpenContentStream(bool async,
|
|
nsIInputStream** stream,
|
|
nsIChannel** channel) override;
|
|
|
|
bool IsSuspended();
|
|
|
|
void FlushedForDiversion();
|
|
|
|
protected:
|
|
virtual ~FTPChannelChild();
|
|
|
|
bool RecvOnStartRequest(const nsresult& aChannelStatus,
|
|
const int64_t& aContentLength,
|
|
const nsCString& aContentType,
|
|
const PRTime& aLastModified,
|
|
const nsCString& aEntityID,
|
|
const URIParams& aURI) override;
|
|
bool RecvOnDataAvailable(const nsresult& channelStatus,
|
|
const nsCString& data,
|
|
const uint64_t& offset,
|
|
const uint32_t& count) override;
|
|
bool RecvOnStopRequest(const nsresult& channelStatus) override;
|
|
bool RecvFailedAsyncOpen(const nsresult& statusCode) override;
|
|
bool RecvFlushedForDiversion() override;
|
|
bool RecvDivertMessages() override;
|
|
bool RecvDeleteSelf() override;
|
|
|
|
void DoOnStartRequest(const nsresult& aChannelStatus,
|
|
const int64_t& aContentLength,
|
|
const nsCString& aContentType,
|
|
const PRTime& aLastModified,
|
|
const nsCString& aEntityID,
|
|
const URIParams& aURI);
|
|
void DoOnDataAvailable(const nsresult& channelStatus,
|
|
const nsCString& data,
|
|
const uint64_t& offset,
|
|
const uint32_t& count);
|
|
void DoOnStopRequest(const nsresult& statusCode);
|
|
void DoFailedAsyncOpen(const nsresult& statusCode);
|
|
void DoDeleteSelf();
|
|
|
|
friend class FTPStartRequestEvent;
|
|
friend class FTPDataAvailableEvent;
|
|
friend class FTPStopRequestEvent;
|
|
friend class FTPFailedAsyncOpenEvent;
|
|
friend class FTPDeleteSelfEvent;
|
|
|
|
private:
|
|
nsCOMPtr<nsIInputStream> mUploadStream;
|
|
|
|
bool mIPCOpen;
|
|
nsRefPtr<ChannelEventQueue> mEventQ;
|
|
bool mCanceled;
|
|
uint32_t mSuspendCount;
|
|
bool mIsPending;
|
|
|
|
PRTime mLastModifiedTime;
|
|
uint64_t mStartPos;
|
|
nsCString mEntityID;
|
|
|
|
// Once set, OnData and possibly OnStop will be diverted to the parent.
|
|
bool mDivertingToParent;
|
|
// Once set, no OnStart/OnData/OnStop callbacks should be received from the
|
|
// parent channel, nor dequeued from the ChannelEventQueue.
|
|
bool mFlushedForDiversion;
|
|
// Set if SendSuspend is called. Determines if SendResume is needed when
|
|
// diverting callbacks to parent.
|
|
bool mSuspendSent;
|
|
};
|
|
|
|
inline bool
|
|
FTPChannelChild::IsSuspended()
|
|
{
|
|
return mSuspendCount != 0;
|
|
}
|
|
|
|
} // namespace net
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_net_FTPChannelChild_h
|