1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef nsStreamLoader_h__
7 #define nsStreamLoader_h__
9 #include "nsIThreadRetargetableStreamListener.h"
10 #include "nsIStreamLoader.h"
12 #include "mozilla/Attributes.h"
13 #include "mozilla/Vector.h"
20 class nsStreamLoader final
: public nsIStreamLoader
{
22 NS_DECL_THREADSAFE_ISUPPORTS
23 NS_DECL_NSISTREAMLOADER
24 NS_DECL_NSIREQUESTOBSERVER
25 NS_DECL_NSISTREAMLISTENER
26 NS_DECL_NSITHREADRETARGETABLESTREAMLISTENER
30 static nsresult
Create(REFNSIID aIID
, void** aResult
);
33 ~nsStreamLoader() = default;
35 static nsresult
WriteSegmentFun(nsIInputStream
*, void*, const char*, uint32_t,
38 // Utility method to free mData, if present, and update other state to
39 // reflect that no data has been allocated.
42 nsCOMPtr
<nsIStreamLoaderObserver
> mObserver
;
43 nsCOMPtr
<nsISupports
> mContext
; // the observer's context
44 nsCOMPtr
<nsIRequest
> mRequest
;
45 nsCOMPtr
<nsIRequestObserver
> mRequestObserver
;
47 mozilla::Atomic
<uint32_t, mozilla::MemoryOrdering::Relaxed
> mBytesRead
;
49 // Buffer to accumulate incoming data. We preallocate if contentSize is
51 mozilla::Vector
<uint8_t, 0> mData
;
55 } // namespace mozilla
57 #endif // nsStreamLoader_h__