Bug 1845134 - Part 4: Update existing ui-icons to use the latest source from acorn...
[gecko.git] / netwerk / base / nsStreamLoader.h
blob1960c41db3f0fd08430e4b601c04dbfb119531ee
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"
11 #include "nsCOMPtr.h"
12 #include "mozilla/Attributes.h"
13 #include "mozilla/Vector.h"
15 class nsIRequest;
17 namespace mozilla {
18 namespace net {
20 class nsStreamLoader final : public nsIStreamLoader {
21 public:
22 NS_DECL_THREADSAFE_ISUPPORTS
23 NS_DECL_NSISTREAMLOADER
24 NS_DECL_NSIREQUESTOBSERVER
25 NS_DECL_NSISTREAMLISTENER
26 NS_DECL_NSITHREADRETARGETABLESTREAMLISTENER
28 nsStreamLoader();
30 static nsresult Create(REFNSIID aIID, void** aResult);
32 protected:
33 ~nsStreamLoader() = default;
35 static nsresult WriteSegmentFun(nsIInputStream*, void*, const char*, uint32_t,
36 uint32_t, uint32_t*);
38 // Utility method to free mData, if present, and update other state to
39 // reflect that no data has been allocated.
40 void ReleaseData();
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
50 // available.
51 mozilla::Vector<uint8_t, 0> mData;
54 } // namespace net
55 } // namespace mozilla
57 #endif // nsStreamLoader_h__