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
|
1999-07-10 15:26:51 +04:00
|
|
|
{
|
2003-01-18 05:15:14 +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
|
|
|
|
2012-05-03 23:23:28 +04:00
|
|
|
nsFileChannel(nsIURI *uri);
|
2003-01-18 05:15:14 +03:00
|
|
|
|
2005-11-12 21:17:19 +03:00
|
|
|
protected:
|
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.
|
|
|
|
nsresult MakeFileInputStream(nsIFile *file, nsCOMPtr<nsIInputStream> &stream,
|
|
|
|
nsCString &contentType);
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual nsresult OpenContentStream(bool async, nsIInputStream **result,
|
2008-09-30 01:02:44 +04:00
|
|
|
nsIChannel** channel);
|
2003-01-18 05:15:14 +03:00
|
|
|
|
|
|
|
private:
|
2005-11-12 21:17:19 +03:00
|
|
|
nsCOMPtr<nsIInputStream> mUploadStream;
|
|
|
|
PRInt64 mUploadLength;
|
1999-06-11 05:37:24 +04:00
|
|
|
};
|
|
|
|
|
2003-01-18 05:15:14 +03:00
|
|
|
#endif // !nsFileChannel_h__
|