2005-11-12 21:17:19 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cin: */
|
2012-05-21 15:12:37 +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/. */
|
1999-06-11 05:37:24 +04:00
|
|
|
|
|
|
|
#ifndef nsFileChannel_h__
|
|
|
|
#define nsFileChannel_h__
|
|
|
|
|
2005-11-12 21:17:19 +03:00
|
|
|
#include "nsBaseChannel.h"
|
2003-01-18 05:15:14 +03:00
|
|
|
#include "nsIFileChannel.h"
|
|
|
|
#include "nsIUploadChannel.h"
|
1999-06-11 05:37:24 +04:00
|
|
|
|
2005-11-12 21:17:19 +03:00
|
|
|
class nsFileChannel : public nsBaseChannel,
|
2005-04-05 21:40:32 +04:00
|
|
|
public nsIFileChannel,
|
2003-01-18 05:15:14 +03:00
|
|
|
public nsIUploadChannel {
|
2017-07-06 15:00:35 +03:00
|
|
|
public:
|
2005-11-12 21:17:19 +03:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSIFILECHANNEL
|
|
|
|
NS_DECL_NSIUPLOADCHANNEL
|
1999-06-12 11:14:19 +04:00
|
|
|
|
2014-08-05 17:20:24 +04:00
|
|
|
explicit nsFileChannel(nsIURI *uri);
|
2003-01-18 05:15:14 +03:00
|
|
|
|
2017-05-30 19:07:59 +03:00
|
|
|
nsresult Init();
|
|
|
|
|
2005-11-12 21:17:19 +03:00
|
|
|
protected:
|
2018-04-30 19:46:04 +03:00
|
|
|
~nsFileChannel() = default;
|
2014-07-09 01:23:18 +04:00
|
|
|
|
2006-02-14 21:46:12 +03:00
|
|
|
// Called to construct a blocking file input stream for the given file. This
|
|
|
|
// method also returns a best guess at the content-type for the data stream.
|
|
|
|
// NOTE: If the channel has a type hint set, contentType will be left
|
|
|
|
// untouched. The caller should not use it in that case.
|
2016-10-03 09:54:40 +03:00
|
|
|
MOZ_MUST_USE nsresult MakeFileInputStream(nsIFile *file,
|
|
|
|
nsCOMPtr<nsIInputStream> &stream,
|
|
|
|
nsCString &contentType, bool async);
|
2006-02-14 21:46:12 +03:00
|
|
|
|
2016-10-03 09:54:40 +03:00
|
|
|
virtual MOZ_MUST_USE nsresult OpenContentStream(
|
|
|
|
bool async, nsIInputStream **result, nsIChannel **channel) override;
|
2003-01-18 05:15:14 +03:00
|
|
|
|
2019-03-25 22:31:06 +03:00
|
|
|
// Implementing the pump blocking promise to fixup content length on a
|
|
|
|
// background thread prior to calling on mListener
|
|
|
|
virtual nsresult ListenerBlockingPromise(BlockingPromise **promise) override;
|
|
|
|
|
2003-01-18 05:15:14 +03:00
|
|
|
private:
|
2019-03-25 22:31:06 +03:00
|
|
|
nsresult FixupContentLength(bool async);
|
|
|
|
|
2005-11-12 21:17:19 +03:00
|
|
|
nsCOMPtr<nsIInputStream> mUploadStream;
|
2012-08-22 19:56:38 +04:00
|
|
|
int64_t mUploadLength;
|
2017-05-30 19:07:59 +03:00
|
|
|
nsCOMPtr<nsIURI> mFileURI;
|
1999-06-11 05:37:24 +04:00
|
|
|
};
|
|
|
|
|
2003-01-18 05:15:14 +03:00
|
|
|
#endif // !nsFileChannel_h__
|