blob: 7c2b0cefb374de0d40c5f3e95d6ae112b8d6c791 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/* 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/. */
#include "mozilla/Attributes.h"
#include "msgCore.h"
#include "nsIInputStream.h"
#include "nsIOutputStream.h"
#include "nsISeekableStream.h"
#include "prio.h"
class nsMsgFileStream final : public nsIInputStream,
public nsIOutputStream,
public nsISeekableStream
{
public:
nsMsgFileStream();
NS_DECL_ISUPPORTS
NS_IMETHOD Available(uint64_t *_retval) override;
NS_IMETHOD Read(char * aBuf, uint32_t aCount, uint32_t *_retval) override;
NS_IMETHOD ReadSegments(nsWriteSegmentFun aWriter, void * aClosure, uint32_t aCount, uint32_t *_retval) override;
NS_DECL_NSIOUTPUTSTREAM
NS_DECL_NSISEEKABLESTREAM
nsresult InitWithFile(nsIFile *localFile);
protected:
~nsMsgFileStream();
PRFileDesc *mFileDesc;
bool mSeekedToEnd;
};
|