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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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 <algorithm>
#include "gtest/gtest.h"
#include "Helpers.h"
#include "mozilla/gtest/MozAssertions.h"
#include "mozilla/ReentrantMonitor.h"
#include "mozilla/Printf.h"
#include "nsCOMPtr.h"
#include "nsCRT.h"
#include "nsIAsyncInputStream.h"
#include "nsIAsyncOutputStream.h"
#include "nsIBufferedStreams.h"
#include "nsIClassInfo.h"
#include "nsICloneableInputStream.h"
#include "nsIInputStream.h"
#include "nsIOutputStream.h"
#include "nsIPipe.h"
#include "nsITellableStream.h"
#include "nsIThread.h"
#include "nsIRunnable.h"
#include "nsStreamUtils.h"
#include "nsString.h"
#include "nsThreadUtils.h"
#include "prinrval.h"
using namespace mozilla;
#define ITERATIONS 33333
char kTestPattern[] = "My hovercraft is full of eels.\n";
bool gTrace = false;
static nsresult WriteAll(nsIOutputStream* os, const char* buf, uint32_t bufLen,
uint32_t* lenWritten) {
const char* p = buf;
*lenWritten = 0;
while (bufLen) {
uint32_t n;
nsresult rv = os->Write(p, bufLen, &n);
if (NS_FAILED(rv)) return rv;
p += n;
bufLen -= n;
*lenWritten += n;
}
return NS_OK;
}
class nsReceiver final : public Runnable {
public:
NS_IMETHOD Run() override {
nsresult rv;
char buf[101];
uint32_t count;
PRIntervalTime start = PR_IntervalNow();
while (true) {
rv = mIn->Read(buf, 100, &count);
if (NS_FAILED(rv)) {
printf("read failed\n");
break;
}
if (count == 0) {
// printf("EOF count = %d\n", mCount);
break;
}
if (gTrace) {
buf[count] = '\0';
printf("read: %s\n", buf);
}
mCount += count;
}
PRIntervalTime end = PR_IntervalNow();
printf("read %d bytes, time = %dms\n", mCount,
PR_IntervalToMilliseconds(end - start));
return rv;
}
explicit nsReceiver(nsIInputStream* in)
: Runnable("nsReceiver"), mIn(in), mCount(0) {}
uint32_t GetBytesRead() { return mCount; }
private:
~nsReceiver() = default;
protected:
nsCOMPtr<nsIInputStream> mIn;
uint32_t mCount;
};
static nsresult TestPipe(nsIInputStream* in, nsIOutputStream* out) {
RefPtr<nsReceiver> receiver = new nsReceiver(in);
nsresult rv;
nsCOMPtr<nsIThread> thread;
rv = NS_NewNamedThread("TestPipe", getter_AddRefs(thread), receiver);
if (NS_FAILED(rv)) return rv;
uint32_t total = 0;
PRIntervalTime start = PR_IntervalNow();
for (uint32_t i = 0; i < ITERATIONS; i++) {
uint32_t writeCount;
SmprintfPointer buf = mozilla::Smprintf("%d %s", i, kTestPattern);
uint32_t len = strlen(buf.get());
rv = WriteAll(out, buf.get(), len, &writeCount);
if (gTrace) {
printf("wrote: ");
for (uint32_t j = 0; j < writeCount; j++) {
putc(buf.get()[j], stdout);
}
printf("\n");
}
if (NS_FAILED(rv)) return rv;
total += writeCount;
}
rv = out->Close();
if (NS_FAILED(rv)) return rv;
PRIntervalTime end = PR_IntervalNow();
thread->Shutdown();
printf("wrote %d bytes, time = %dms\n", total,
PR_IntervalToMilliseconds(end - start));
EXPECT_EQ(receiver->GetBytesRead(), total);
return NS_OK;
}
////////////////////////////////////////////////////////////////////////////////
class nsShortReader final : public Runnable {
public:
NS_IMETHOD Run() override {
nsresult rv;
char buf[101];
uint32_t count;
uint32_t total = 0;
while (true) {
// if (gTrace)
// printf("calling Read\n");
rv = mIn->Read(buf, 100, &count);
if (NS_FAILED(rv)) {
printf("read failed\n");
break;
}
if (count == 0) {
break;
}
if (gTrace) {
// For next |printf()| call and possible others elsewhere.
buf[count] = '\0';
printf("read %d bytes: %s\n", count, buf);
}
Received(count);
total += count;
}
printf("read %d bytes\n", total);
return rv;
}
explicit nsShortReader(nsIInputStream* in)
: Runnable("nsShortReader"), mIn(in), mReceived(0) {
mMon = new ReentrantMonitor("nsShortReader");
}
void Received(uint32_t count) {
ReentrantMonitorAutoEnter mon(*mMon);
mReceived += count;
mon.Notify();
}
uint32_t WaitForReceipt(const uint32_t aWriteCount) {
ReentrantMonitorAutoEnter mon(*mMon);
uint32_t result = mReceived;
while (result < aWriteCount) {
mon.Wait();
EXPECT_TRUE(mReceived > result);
result = mReceived;
}
mReceived = 0;
return result;
}
private:
~nsShortReader() = default;
protected:
nsCOMPtr<nsIInputStream> mIn;
uint32_t mReceived;
ReentrantMonitor* mMon;
};
static nsresult TestShortWrites(nsIInputStream* in, nsIOutputStream* out) {
RefPtr<nsShortReader> receiver = new nsShortReader(in);
nsresult rv;
nsCOMPtr<nsIThread> thread;
rv = NS_NewNamedThread("TestShortWrites", getter_AddRefs(thread), receiver);
if (NS_FAILED(rv)) return rv;
uint32_t total = 0;
for (uint32_t i = 0; i < ITERATIONS; i++) {
uint32_t writeCount;
SmprintfPointer buf = mozilla::Smprintf("%d %s", i, kTestPattern);
uint32_t len = strlen(buf.get());
len = len * rand() / RAND_MAX;
len = std::min(1u, len);
rv = WriteAll(out, buf.get(), len, &writeCount);
if (NS_FAILED(rv)) return rv;
EXPECT_EQ(writeCount, len);
total += writeCount;
if (gTrace) printf("wrote %d bytes: %s\n", writeCount, buf.get());
// printf("calling Flush\n");
out->Flush();
// printf("calling WaitForReceipt\n");
#ifdef DEBUG
const uint32_t received = receiver->WaitForReceipt(writeCount);
EXPECT_EQ(received, writeCount);
#endif
}
rv = out->Close();
if (NS_FAILED(rv)) return rv;
thread->Shutdown();
printf("wrote %d bytes\n", total);
return NS_OK;
}
////////////////////////////////////////////////////////////////////////////////
class nsPump final : public Runnable {
public:
NS_IMETHOD Run() override {
nsresult rv;
uint32_t count;
while (true) {
rv = mOut->WriteFrom(mIn, ~0U, &count);
if (NS_FAILED(rv)) {
printf("Write failed\n");
break;
}
if (count == 0) {
printf("EOF count = %d\n", mCount);
break;
}
if (gTrace) {
printf("Wrote: %d\n", count);
}
mCount += count;
}
mOut->Close();
return rv;
}
nsPump(nsIInputStream* in, nsIOutputStream* out)
: Runnable("nsPump"), mIn(in), mOut(out), mCount(0) {}
private:
~nsPump() = default;
protected:
nsCOMPtr<nsIInputStream> mIn;
nsCOMPtr<nsIOutputStream> mOut;
uint32_t mCount;
};
TEST(Pipes, ChainedPipes)
{
nsresult rv;
if (gTrace) {
printf("TestChainedPipes\n");
}
nsCOMPtr<nsIInputStream> in1;
nsCOMPtr<nsIOutputStream> out1;
NS_NewPipe(getter_AddRefs(in1), getter_AddRefs(out1), 20, 1999);
nsCOMPtr<nsIInputStream> in2;
nsCOMPtr<nsIOutputStream> out2;
NS_NewPipe(getter_AddRefs(in2), getter_AddRefs(out2), 200, 401);
RefPtr<nsPump> pump = new nsPump(in1, out2);
if (pump == nullptr) return;
nsCOMPtr<nsIThread> thread;
rv = NS_NewNamedThread("ChainedPipePump", getter_AddRefs(thread), pump);
if (NS_FAILED(rv)) return;
RefPtr<nsReceiver> receiver = new nsReceiver(in2);
if (receiver == nullptr) return;
nsCOMPtr<nsIThread> receiverThread;
rv = NS_NewNamedThread("ChainedPipeRecv", getter_AddRefs(receiverThread),
receiver);
if (NS_FAILED(rv)) return;
uint32_t total = 0;
for (uint32_t i = 0; i < ITERATIONS; i++) {
uint32_t writeCount;
SmprintfPointer buf = mozilla::Smprintf("%d %s", i, kTestPattern);
uint32_t len = strlen(buf.get());
len = len * rand() / RAND_MAX;
len = std::max(1u, len);
rv = WriteAll(out1, buf.get(), len, &writeCount);
if (NS_FAILED(rv)) return;
EXPECT_EQ(writeCount, len);
total += writeCount;
if (gTrace) printf("wrote %d bytes: %s\n", writeCount, buf.get());
}
if (gTrace) {
printf("wrote total of %d bytes\n", total);
}
rv = out1->Close();
if (NS_FAILED(rv)) return;
thread->Shutdown();
receiverThread->Shutdown();
}
////////////////////////////////////////////////////////////////////////////////
static void RunTests(uint32_t segSize, uint32_t segCount) {
nsresult rv;
nsCOMPtr<nsIInputStream> in;
nsCOMPtr<nsIOutputStream> out;
uint32_t bufSize = segSize * segCount;
if (gTrace) {
printf("Testing New Pipes: segment size %d buffer size %d\n", segSize,
bufSize);
printf("Testing long writes...\n");
}
NS_NewPipe(getter_AddRefs(in), getter_AddRefs(out), segSize, bufSize);
rv = TestPipe(in, out);
EXPECT_NS_SUCCEEDED(rv);
if (gTrace) {
printf("Testing short writes...\n");
}
NS_NewPipe(getter_AddRefs(in), getter_AddRefs(out), segSize, bufSize);
rv = TestShortWrites(in, out);
EXPECT_NS_SUCCEEDED(rv);
}
TEST(Pipes, Main)
{
RunTests(16, 1);
RunTests(4096, 16);
}
////////////////////////////////////////////////////////////////////////////////
namespace {
static const uint32_t DEFAULT_SEGMENT_SIZE = 4 * 1024;
// An alternate pipe testing routing that uses NS_ConsumeStream() instead of
// manual read loop.
static void TestPipe2(uint32_t aNumBytes,
uint32_t aSegmentSize = DEFAULT_SEGMENT_SIZE) {
nsCOMPtr<nsIInputStream> reader;
nsCOMPtr<nsIOutputStream> writer;
uint32_t maxSize = std::max(aNumBytes, aSegmentSize);
NS_NewPipe(getter_AddRefs(reader), getter_AddRefs(writer), aSegmentSize,
maxSize);
nsTArray<char> inputData;
testing::CreateData(aNumBytes, inputData);
testing::WriteAllAndClose(writer, inputData);
testing::ConsumeAndValidateStream(reader, inputData);
}
} // namespace
TEST(Pipes, Blocking_32k)
{
TestPipe2(32 * 1024);
}
TEST(Pipes, Blocking_64k)
{
TestPipe2(64 * 1024);
}
TEST(Pipes, Blocking_128k)
{
TestPipe2(128 * 1024);
}
////////////////////////////////////////////////////////////////////////////////
namespace {
// Utility routine to validate pipe clone before. There are many knobs.
//
// aTotalBytes Total number of bytes to write to the pipe.
// aNumWrites How many separate write calls should be made. Bytes
// are evenly distributed over these write calls.
// aNumInitialClones How many clones of the pipe input stream should be
// made before writing begins.
// aNumToCloseAfterWrite How many streams should be closed after each write.
// One stream is always kept open. This verifies that
// closing one stream does not effect other open
// streams.
// aNumToCloneAfterWrite How many clones to create after each write. Occurs
// after closing any streams. This tests cloning
// active streams on a pipe that is being written to.
// aNumStreamToReadPerWrite How many streams to read fully after each write.
// This tests reading cloned streams at different rates
// while the pipe is being written to.
static void TestPipeClone(uint32_t aTotalBytes, uint32_t aNumWrites,
uint32_t aNumInitialClones,
uint32_t aNumToCloseAfterWrite,
uint32_t aNumToCloneAfterWrite,
uint32_t aNumStreamsToReadPerWrite,
uint32_t aSegmentSize = DEFAULT_SEGMENT_SIZE) {
nsCOMPtr<nsIInputStream> reader;
nsCOMPtr<nsIOutputStream> writer;
uint32_t maxSize = std::max(aTotalBytes, aSegmentSize);
// Use async input streams so we can NS_ConsumeStream() the current data
// while the pipe is still being written to.
NS_NewPipe(getter_AddRefs(reader), getter_AddRefs(writer), aSegmentSize,
maxSize, true, false); // non-blocking - reader, writer
nsCOMPtr<nsICloneableInputStream> cloneable = do_QueryInterface(reader);
ASSERT_TRUE(cloneable);
ASSERT_TRUE(cloneable->GetCloneable());
nsTArray<nsCString> outputDataList;
nsTArray<nsCOMPtr<nsIInputStream>> streamList;
// first stream is our original reader from the pipe
streamList.AppendElement(reader);
outputDataList.AppendElement();
// Clone the initial input stream the specified number of times
// before performing any writes.
nsresult rv;
for (uint32_t i = 0; i < aNumInitialClones; ++i) {
nsCOMPtr<nsIInputStream>* clone = streamList.AppendElement();
rv = cloneable->Clone(getter_AddRefs(*clone));
ASSERT_NS_SUCCEEDED(rv);
ASSERT_TRUE(*clone);
outputDataList.AppendElement();
}
nsTArray<char> inputData;
testing::CreateData(aTotalBytes, inputData);
const uint32_t bytesPerWrite = ((aTotalBytes - 1) / aNumWrites) + 1;
uint32_t offset = 0;
uint32_t remaining = aTotalBytes;
uint32_t nextStreamToRead = 0;
while (remaining) {
uint32_t numToWrite = std::min(bytesPerWrite, remaining);
testing::Write(writer, inputData, offset, numToWrite);
offset += numToWrite;
remaining -= numToWrite;
// Close the specified number of streams. This allows us to
// test that one closed clone does not break other open clones.
for (uint32_t i = 0; i < aNumToCloseAfterWrite && streamList.Length() > 1;
++i) {
uint32_t lastIndex = streamList.Length() - 1;
streamList[lastIndex]->Close();
streamList.RemoveElementAt(lastIndex);
outputDataList.RemoveElementAt(lastIndex);
if (nextStreamToRead >= streamList.Length()) {
nextStreamToRead = 0;
}
}
// Create the specified number of clones. This lets us verify
// that we can create clones in the middle of pipe reading and
// writing.
for (uint32_t i = 0; i < aNumToCloneAfterWrite; ++i) {
nsCOMPtr<nsIInputStream>* clone = streamList.AppendElement();
rv = cloneable->Clone(getter_AddRefs(*clone));
ASSERT_NS_SUCCEEDED(rv);
ASSERT_TRUE(*clone);
// Initialize the new output data to make whats been read to data for
// the original stream. First stream is always the original stream.
nsCString* outputData = outputDataList.AppendElement();
*outputData = outputDataList[0];
}
// Read the specified number of streams. This lets us verify that we
// can read from the clones at different rates while the pipe is being
// written to.
for (uint32_t i = 0; i < aNumStreamsToReadPerWrite; ++i) {
nsCOMPtr<nsIInputStream>& stream = streamList[nextStreamToRead];
nsCString& outputData = outputDataList[nextStreamToRead];
// Can't use ConsumeAndValidateStream() here because we're not
// guaranteed the exact amount read. It should just be at least
// as many as numToWrite.
nsAutoCString tmpOutputData;
rv = NS_ConsumeStream(stream, UINT32_MAX, tmpOutputData);
ASSERT_TRUE(rv == NS_BASE_STREAM_WOULD_BLOCK || NS_SUCCEEDED(rv));
ASSERT_GE(tmpOutputData.Length(), numToWrite);
outputData += tmpOutputData;
nextStreamToRead += 1;
if (nextStreamToRead >= streamList.Length()) {
// Note: When we wrap around on the streams being read, its possible
// we will trigger a segment to be deleted from the pipe. It
// would be nice to validate this here, but we don't have any
// QI'able interface that would let us check easily.
nextStreamToRead = 0;
}
}
}
rv = writer->Close();
ASSERT_NS_SUCCEEDED(rv);
nsDependentCSubstring inputString(inputData.Elements(), inputData.Length());
// Finally, read the remaining bytes from each stream. This may be
// different amounts of data depending on how much reading we did while
// writing. Verify that the end result matches the input data.
for (uint32_t i = 0; i < streamList.Length(); ++i) {
nsCOMPtr<nsIInputStream>& stream = streamList[i];
nsCString& outputData = outputDataList[i];
nsAutoCString tmpOutputData;
rv = NS_ConsumeStream(stream, UINT32_MAX, tmpOutputData);
ASSERT_TRUE(rv == NS_BASE_STREAM_WOULD_BLOCK || NS_SUCCEEDED(rv));
stream->Close();
// Append to total amount read from the stream
outputData += tmpOutputData;
ASSERT_EQ(inputString.Length(), outputData.Length());
ASSERT_TRUE(inputString.Equals(outputData));
}
}
} // namespace
TEST(Pipes, Clone_BeforeWrite_ReadAtEnd)
{
TestPipeClone(32 * 1024, // total bytes
16, // num writes
3, // num initial clones
0, // num streams to close after each write
0, // num clones to add after each write
0); // num streams to read after each write
}
TEST(Pipes, Clone_BeforeWrite_ReadDuringWrite)
{
// Since this reads all streams on every write, it should trigger the
// pipe cursor roll back optimization. Currently we can only verify
// this with logging.
TestPipeClone(32 * 1024, // total bytes
16, // num writes
3, // num initial clones
0, // num streams to close after each write
0, // num clones to add after each write
4); // num streams to read after each write
}
TEST(Pipes, Clone_DuringWrite_ReadAtEnd)
{
TestPipeClone(32 * 1024, // total bytes
16, // num writes
0, // num initial clones
0, // num streams to close after each write
1, // num clones to add after each write
0); // num streams to read after each write
}
TEST(Pipes, Clone_DuringWrite_ReadDuringWrite)
{
TestPipeClone(32 * 1024, // total bytes
16, // num writes
0, // num initial clones
0, // num streams to close after each write
1, // num clones to add after each write
1); // num streams to read after each write
}
TEST(Pipes, Clone_DuringWrite_ReadDuringWrite_CloseDuringWrite)
{
// Since this reads streams faster than we clone new ones, it should
// trigger pipe segment deletion periodically. Currently we can
// only verify this with logging.
TestPipeClone(32 * 1024, // total bytes
16, // num writes
1, // num initial clones
1, // num streams to close after each write
2, // num clones to add after each write
3); // num streams to read after each write
}
TEST(Pipes, Write_AsyncWait)
{
nsCOMPtr<nsIAsyncInputStream> reader;
nsCOMPtr<nsIAsyncOutputStream> writer;
const uint32_t segmentSize = 1024;
const uint32_t numSegments = 1;
NS_NewPipe2(getter_AddRefs(reader), getter_AddRefs(writer), true,
true, // non-blocking - reader, writer
segmentSize, numSegments);
nsTArray<char> inputData;
testing::CreateData(segmentSize, inputData);
uint32_t numWritten = 0;
nsresult rv =
writer->Write(inputData.Elements(), inputData.Length(), &numWritten);
ASSERT_NS_SUCCEEDED(rv);
rv = writer->Write(inputData.Elements(), inputData.Length(), &numWritten);
ASSERT_EQ(NS_BASE_STREAM_WOULD_BLOCK, rv);
RefPtr<testing::OutputStreamCallback> cb =
new testing::OutputStreamCallback();
rv = writer->AsyncWait(cb, 0, 0, nullptr);
ASSERT_NS_SUCCEEDED(rv);
ASSERT_FALSE(cb->Called());
testing::ConsumeAndValidateStream(reader, inputData);
ASSERT_TRUE(cb->Called());
}
TEST(Pipes, Write_AsyncWait_Clone)
{
nsCOMPtr<nsIAsyncInputStream> reader;
nsCOMPtr<nsIAsyncOutputStream> writer;
const uint32_t segmentSize = 1024;
const uint32_t numSegments = 1;
NS_NewPipe2(getter_AddRefs(reader), getter_AddRefs(writer), true,
true, // non-blocking - reader, writer
segmentSize, numSegments);
nsCOMPtr<nsIInputStream> clone;
nsresult rv = NS_CloneInputStream(reader, getter_AddRefs(clone));
ASSERT_NS_SUCCEEDED(rv);
nsTArray<char> inputData;
testing::CreateData(segmentSize, inputData);
uint32_t numWritten = 0;
rv = writer->Write(inputData.Elements(), inputData.Length(), &numWritten);
ASSERT_NS_SUCCEEDED(rv);
// This attempts to write data beyond the original pipe size limit. It
// should fail since neither side of the clone has been read yet.
rv = writer->Write(inputData.Elements(), inputData.Length(), &numWritten);
ASSERT_EQ(NS_BASE_STREAM_WOULD_BLOCK, rv);
RefPtr<testing::OutputStreamCallback> cb =
new testing::OutputStreamCallback();
rv = writer->AsyncWait(cb, 0, 0, nullptr);
ASSERT_NS_SUCCEEDED(rv);
ASSERT_FALSE(cb->Called());
// Consume data on the original stream, but the clone still has not been read.
testing::ConsumeAndValidateStream(reader, inputData);
// A clone that is not being read should not stall the other input stream
// reader. Therefore the writer callback should trigger when the fastest
// reader drains the other input stream.
ASSERT_TRUE(cb->Called());
// Attempt to write data. This will buffer data beyond the pipe size limit in
// order for the clone stream to still work. This is allowed because the
// other input stream has drained its buffered segments and is ready for more
// data.
rv = writer->Write(inputData.Elements(), inputData.Length(), &numWritten);
ASSERT_NS_SUCCEEDED(rv);
// Again, this should fail since the origin stream has not been read again.
// The pipe size should still restrict how far ahead we can buffer even
// when there is a cloned stream not being read.
rv = writer->Write(inputData.Elements(), inputData.Length(), &numWritten);
ASSERT_NS_FAILED(rv);
cb = new testing::OutputStreamCallback();
rv = writer->AsyncWait(cb, 0, 0, nullptr);
ASSERT_NS_SUCCEEDED(rv);
// The write should again be blocked since we have written data and the
// main reader is at its maximum advance buffer.
ASSERT_FALSE(cb->Called());
nsTArray<char> expectedCloneData;
expectedCloneData.AppendElements(inputData);
expectedCloneData.AppendElements(inputData);
// We should now be able to consume the entire backlog of buffered data on
// the cloned stream.
testing::ConsumeAndValidateStream(clone, expectedCloneData);
// Draining the clone side should also trigger the AsyncWait() writer
// callback
ASSERT_TRUE(cb->Called());
// Finally, we should be able to consume the remaining data on the original
// reader.
testing::ConsumeAndValidateStream(reader, inputData);
}
TEST(Pipes, Write_AsyncWait_Clone_CloseOriginal)
{
nsCOMPtr<nsIAsyncInputStream> reader;
nsCOMPtr<nsIAsyncOutputStream> writer;
const uint32_t segmentSize = 1024;
const uint32_t numSegments = 1;
NS_NewPipe2(getter_AddRefs(reader), getter_AddRefs(writer), true,
true, // non-blocking - reader, writer
segmentSize, numSegments);
nsCOMPtr<nsIInputStream> clone;
nsresult rv = NS_CloneInputStream(reader, getter_AddRefs(clone));
ASSERT_NS_SUCCEEDED(rv);
nsTArray<char> inputData;
testing::CreateData(segmentSize, inputData);
uint32_t numWritten = 0;
rv = writer->Write(inputData.Elements(), inputData.Length(), &numWritten);
ASSERT_NS_SUCCEEDED(rv);
// This attempts to write data beyond the original pipe size limit. It
// should fail since neither side of the clone has been read yet.
rv = writer->Write(inputData.Elements(), inputData.Length(), &numWritten);
ASSERT_EQ(NS_BASE_STREAM_WOULD_BLOCK, rv);
RefPtr<testing::OutputStreamCallback> cb =
new testing::OutputStreamCallback();
rv = writer->AsyncWait(cb, 0, 0, nullptr);
ASSERT_NS_SUCCEEDED(rv);
ASSERT_FALSE(cb->Called());
// Consume data on the original stream, but the clone still has not been read.
testing::ConsumeAndValidateStream(reader, inputData);
// A clone that is not being read should not stall the other input stream
// reader. Therefore the writer callback should trigger when the fastest
// reader drains the other input stream.
ASSERT_TRUE(cb->Called());
// Attempt to write data. This will buffer data beyond the pipe size limit in
// order for the clone stream to still work. This is allowed because the
// other input stream has drained its buffered segments and is ready for more
// data.
rv = writer->Write(inputData.Elements(), inputData.Length(), &numWritten);
ASSERT_NS_SUCCEEDED(rv);
// Again, this should fail since the origin stream has not been read again.
// The pipe size should still restrict how far ahead we can buffer even
// when there is a cloned stream not being read.
rv = writer->Write(inputData.Elements(), inputData.Length(), &numWritten);
ASSERT_NS_FAILED(rv);
cb = new testing::OutputStreamCallback();
rv = writer->AsyncWait(cb, 0, 0, nullptr);
ASSERT_NS_SUCCEEDED(rv);
// The write should again be blocked since we have written data and the
// main reader is at its maximum advance buffer.
ASSERT_FALSE(cb->Called());
// Close the original reader input stream. This was the fastest reader,
// so we should have a single stream that is buffered beyond our nominal
// limit.
reader->Close();
// Because the clone stream is still buffered the writable callback should
// not be fired.
ASSERT_FALSE(cb->Called());
// And we should not be able to perform a write.
rv = writer->Write(inputData.Elements(), inputData.Length(), &numWritten);
ASSERT_NS_FAILED(rv);
// Create another clone stream. Now we have two streams that exceed our
// maximum size limit
nsCOMPtr<nsIInputStream> clone2;
rv = NS_CloneInputStream(clone, getter_AddRefs(clone2));
ASSERT_NS_SUCCEEDED(rv);
nsTArray<char> expectedCloneData;
expectedCloneData.AppendElements(inputData);
expectedCloneData.AppendElements(inputData);
// We should now be able to consume the entire backlog of buffered data on
// the cloned stream.
testing::ConsumeAndValidateStream(clone, expectedCloneData);
// The pipe should now be writable because we have two open streams, one of
// which is completely drained.
ASSERT_TRUE(cb->Called());
// Write again to reach our limit again.
rv = writer->Write(inputData.Elements(), inputData.Length(), &numWritten);
ASSERT_NS_SUCCEEDED(rv);
// The stream is again non-writeable.
cb = new testing::OutputStreamCallback();
rv = writer->AsyncWait(cb, 0, 0, nullptr);
ASSERT_NS_SUCCEEDED(rv);
ASSERT_FALSE(cb->Called());
// Close the empty stream. This is different from our previous close since
// before we were closing a stream with some data still buffered.
clone->Close();
// The pipe should not be writable. The second clone is still fully buffered
// over our limit.
ASSERT_FALSE(cb->Called());
rv = writer->Write(inputData.Elements(), inputData.Length(), &numWritten);
ASSERT_NS_FAILED(rv);
// Finally consume all of the buffered data on the second clone.
expectedCloneData.AppendElements(inputData);
testing::ConsumeAndValidateStream(clone2, expectedCloneData);
// Draining the final clone should make the pipe writable again.
ASSERT_TRUE(cb->Called());
}
TEST(Pipes, Read_AsyncWait)
{
nsCOMPtr<nsIAsyncInputStream> reader;
nsCOMPtr<nsIAsyncOutputStream> writer;
const uint32_t segmentSize = 1024;
const uint32_t numSegments = 1;
NS_NewPipe2(getter_AddRefs(reader), getter_AddRefs(writer), true,
true, // non-blocking - reader, writer
segmentSize, numSegments);
nsTArray<char> inputData;
testing::CreateData(segmentSize, inputData);
RefPtr<testing::InputStreamCallback> cb = new testing::InputStreamCallback();
nsresult rv = reader->AsyncWait(cb, 0, 0, nullptr);
ASSERT_NS_SUCCEEDED(rv);
ASSERT_FALSE(cb->Called());
uint32_t numWritten = 0;
rv = writer->Write(inputData.Elements(), inputData.Length(), &numWritten);
ASSERT_NS_SUCCEEDED(rv);
ASSERT_TRUE(cb->Called());
testing::ConsumeAndValidateStream(reader, inputData);
}
TEST(Pipes, Read_AsyncWait_Clone)
{
nsCOMPtr<nsIAsyncInputStream> reader;
nsCOMPtr<nsIAsyncOutputStream> writer;
const uint32_t segmentSize = 1024;
const uint32_t numSegments = 1;
NS_NewPipe2(getter_AddRefs(reader), getter_AddRefs(writer), true,
true, // non-blocking - reader, writer
segmentSize, numSegments);
nsCOMPtr<nsIInputStream> clone;
nsresult rv = NS_CloneInputStream(reader, getter_AddRefs(clone));
ASSERT_NS_SUCCEEDED(rv);
nsCOMPtr<nsIAsyncInputStream> asyncClone = do_QueryInterface(clone);
ASSERT_TRUE(asyncClone);
nsTArray<char> inputData;
testing::CreateData(segmentSize, inputData);
RefPtr<testing::InputStreamCallback> cb = new testing::InputStreamCallback();
RefPtr<testing::InputStreamCallback> cb2 = new testing::InputStreamCallback();
rv = reader->AsyncWait(cb, 0, 0, nullptr);
ASSERT_NS_SUCCEEDED(rv);
ASSERT_FALSE(cb->Called());
rv = asyncClone->AsyncWait(cb2, 0, 0, nullptr);
ASSERT_NS_SUCCEEDED(rv);
ASSERT_FALSE(cb2->Called());
uint32_t numWritten = 0;
rv = writer->Write(inputData.Elements(), inputData.Length(), &numWritten);
ASSERT_NS_SUCCEEDED(rv);
ASSERT_TRUE(cb->Called());
ASSERT_TRUE(cb2->Called());
testing::ConsumeAndValidateStream(reader, inputData);
}
namespace {
nsresult CloseDuringReadFunc(nsIInputStream* aReader, void* aClosure,
const char* aFromSegment, uint32_t aToOffset,
uint32_t aCount, uint32_t* aWriteCountOut) {
MOZ_RELEASE_ASSERT(aReader);
MOZ_RELEASE_ASSERT(aClosure);
MOZ_RELEASE_ASSERT(aFromSegment);
MOZ_RELEASE_ASSERT(aWriteCountOut);
MOZ_RELEASE_ASSERT(aToOffset == 0);
// This is insanity and you probably should not do this under normal
// conditions. We want to simulate the case where the pipe is closed
// (possibly from other end on another thread) simultaneously with the
// read. This is the easiest way to do trigger this case in a synchronous
// gtest.
MOZ_ALWAYS_SUCCEEDS(aReader->Close());
nsTArray<char>* buffer = static_cast<nsTArray<char>*>(aClosure);
buffer->AppendElements(aFromSegment, aCount);
*aWriteCountOut = aCount;
return NS_OK;
}
void TestCloseDuringRead(uint32_t aSegmentSize, uint32_t aDataSize) {
nsCOMPtr<nsIInputStream> reader;
nsCOMPtr<nsIOutputStream> writer;
const uint32_t maxSize = aSegmentSize;
NS_NewPipe(getter_AddRefs(reader), getter_AddRefs(writer), aSegmentSize,
maxSize);
nsTArray<char> inputData;
testing::CreateData(aDataSize, inputData);
uint32_t numWritten = 0;
nsresult rv =
writer->Write(inputData.Elements(), inputData.Length(), &numWritten);
ASSERT_NS_SUCCEEDED(rv);
nsTArray<char> outputData;
uint32_t numRead = 0;
rv = reader->ReadSegments(CloseDuringReadFunc, &outputData,
inputData.Length(), &numRead);
ASSERT_NS_SUCCEEDED(rv);
ASSERT_EQ(inputData.Length(), numRead);
ASSERT_EQ(inputData, outputData);
uint64_t available;
rv = reader->Available(&available);
ASSERT_EQ(NS_BASE_STREAM_CLOSED, rv);
}
} // namespace
TEST(Pipes, Close_During_Read_Partial_Segment)
{
TestCloseDuringRead(1024, 512);
}
TEST(Pipes, Close_During_Read_Full_Segment)
{
TestCloseDuringRead(1024, 1024);
}
TEST(Pipes, Interfaces)
{
nsCOMPtr<nsIInputStream> reader;
nsCOMPtr<nsIOutputStream> writer;
NS_NewPipe(getter_AddRefs(reader), getter_AddRefs(writer));
nsCOMPtr<nsIAsyncInputStream> readerType1 = do_QueryInterface(reader);
ASSERT_TRUE(readerType1);
nsCOMPtr<nsITellableStream> readerType2 = do_QueryInterface(reader);
ASSERT_TRUE(readerType2);
nsCOMPtr<nsISearchableInputStream> readerType3 = do_QueryInterface(reader);
ASSERT_TRUE(readerType3);
nsCOMPtr<nsICloneableInputStream> readerType4 = do_QueryInterface(reader);
ASSERT_TRUE(readerType4);
nsCOMPtr<nsIClassInfo> readerType5 = do_QueryInterface(reader);
ASSERT_TRUE(readerType5);
nsCOMPtr<nsIBufferedInputStream> readerType6 = do_QueryInterface(reader);
ASSERT_TRUE(readerType6);
}
|