forked from mirrors/gecko-dev
This is a complete implementation of WritableStreams including AbortSignal that weren't supported by the SpiderMonkey implementation. There are still some XXX comments, but an early review is probably better for this. Differential Revision: https://phabricator.services.mozilla.com/D128419
33 lines
963 B
C++
33 lines
963 B
C++
/* 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/dom/StreamUtils.h"
|
|
#include "mozilla/FloatingPoint.h"
|
|
#include "mozilla/dom/QueuingStrategyBinding.h"
|
|
|
|
namespace mozilla::dom {
|
|
|
|
// Streams Spec: 7.4
|
|
// https://streams.spec.whatwg.org/#validate-and-normalize-high-water-mark
|
|
double ExtractHighWaterMark(const QueuingStrategy& aStrategy,
|
|
double aDefaultHWM, mozilla::ErrorResult& aRv) {
|
|
// Step 1.
|
|
if (!aStrategy.mHighWaterMark.WasPassed()) {
|
|
return aDefaultHWM;
|
|
}
|
|
|
|
// Step 2.
|
|
double highWaterMark = aStrategy.mHighWaterMark.Value();
|
|
|
|
// Step 3.
|
|
if (mozilla::IsNaN(highWaterMark) || highWaterMark < 0) {
|
|
aRv.ThrowRangeError("Invalid highWaterMark");
|
|
return 0.0;
|
|
}
|
|
|
|
// Step 4.
|
|
return highWaterMark;
|
|
}
|
|
|
|
} // namespace mozilla::dom
|