2007-09-21 06:17:59 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2007-09-21 06:17:59 +00:00
|
|
|
|
|
|
|
#include "TestHarness.h"
|
|
|
|
|
|
|
|
#include "nsIPipe.h"
|
|
|
|
#include "nsIMemory.h"
|
2012-06-20 03:41:56 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-09-23 17:29:27 +00:00
|
|
|
#include "nsIAsyncInputStream.h"
|
|
|
|
#include "nsIAsyncOutputStream.h"
|
2007-09-21 06:17:59 +00:00
|
|
|
|
2007-09-21 07:59:09 +00:00
|
|
|
/** NS_NewPipe2 reimplemented, because it's not exported by XPCOM */
|
2008-09-06 16:03:38 +00:00
|
|
|
nsresult TP_NewPipe2(nsIAsyncInputStream** input,
|
2007-09-21 07:59:09 +00:00
|
|
|
nsIAsyncOutputStream** output,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool nonBlockingInput,
|
|
|
|
bool nonBlockingOutput,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t segmentSize,
|
|
|
|
uint32_t segmentCount,
|
2007-09-21 08:12:07 +00:00
|
|
|
nsIMemory* segmentAlloc)
|
2007-09-21 07:59:09 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIPipe> pipe = do_CreateInstance("@mozilla.org/pipe;1");
|
|
|
|
if (!pipe)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
nsresult rv = pipe->Init(nonBlockingInput,
|
|
|
|
nonBlockingOutput,
|
|
|
|
segmentSize,
|
|
|
|
segmentCount,
|
|
|
|
segmentAlloc);
|
|
|
|
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
pipe->GetInputStream(input);
|
|
|
|
pipe->GetOutputStream(output);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-09-21 06:17:59 +00:00
|
|
|
/**
|
|
|
|
* Allocator can allocate exactly count * size bytes, stored at mMemory;
|
|
|
|
* immediately after the end of this is a byte-map of 0/1 values indicating
|
|
|
|
* which <size>-byte locations in mMemory are empty and which are filled.
|
|
|
|
* Pretty stupid, but enough to test bug 394692.
|
|
|
|
*/
|
2012-06-20 03:41:56 +00:00
|
|
|
class BackwardsAllocator MOZ_FINAL : public nsIMemory
|
2007-09-21 06:17:59 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
BackwardsAllocator()
|
|
|
|
: mMemory(0),
|
|
|
|
mIndex(0xFFFFFFFF),
|
|
|
|
mCount(0xFFFFFFFF),
|
|
|
|
mSize(0)
|
|
|
|
{ }
|
|
|
|
~BackwardsAllocator()
|
|
|
|
{
|
|
|
|
delete [] mMemory;
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
nsresult Init(uint32_t count, size_t size);
|
2007-09-21 06:17:59 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIMEMORY
|
|
|
|
|
|
|
|
private:
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t previous(uint32_t i)
|
2007-09-21 06:17:59 +00:00
|
|
|
{
|
|
|
|
if (i == 0)
|
|
|
|
return mCount - 1;
|
|
|
|
return i - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t* mMemory;
|
|
|
|
uint32_t mIndex;
|
|
|
|
uint32_t mCount;
|
2007-09-21 06:17:59 +00:00
|
|
|
size_t mSize;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS1(BackwardsAllocator, nsIMemory)
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
nsresult BackwardsAllocator::Init(uint32_t count, size_t size)
|
2007-09-21 06:17:59 +00:00
|
|
|
{
|
|
|
|
if (mMemory)
|
|
|
|
{
|
2008-12-04 06:25:00 +00:00
|
|
|
fail("allocator already initialized!");
|
2007-09-21 06:17:59 +00:00
|
|
|
return NS_ERROR_ALREADY_INITIALIZED;
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
mMemory = new uint8_t[count * size + count];
|
2007-09-21 06:17:59 +00:00
|
|
|
if (!mMemory)
|
|
|
|
{
|
2008-12-04 06:25:00 +00:00
|
|
|
fail("failed to allocate mMemory!");
|
2007-09-21 06:17:59 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
memset(mMemory, 0, count * size + count);
|
|
|
|
|
|
|
|
mIndex = 0;
|
|
|
|
mCount = count;
|
|
|
|
mSize = size;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(void*) BackwardsAllocator::Alloc(size_t size)
|
|
|
|
{
|
|
|
|
if (size != mSize)
|
|
|
|
{
|
|
|
|
NS_ERROR("umm, why would this be reached for this test?");
|
2013-10-10 20:42:16 +00:00
|
|
|
return nullptr;
|
2007-09-21 06:17:59 +00:00
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t index = mIndex;
|
2007-09-21 06:17:59 +00:00
|
|
|
|
|
|
|
while ((index = previous(index)) != mIndex)
|
|
|
|
{
|
|
|
|
if (mMemory[mSize * mCount + index] == 1)
|
|
|
|
continue;
|
|
|
|
mMemory[mSize * mCount + index] = 1;
|
|
|
|
mIndex = index;
|
|
|
|
return &mMemory[mSize * index];
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ERROR("shouldn't reach here in this test");
|
2013-10-10 20:42:16 +00:00
|
|
|
return nullptr;
|
2007-09-21 06:17:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(void*) BackwardsAllocator::Realloc(void* ptr, size_t newSize)
|
|
|
|
{
|
|
|
|
NS_ERROR("shouldn't reach here in this test");
|
2013-10-10 20:42:16 +00:00
|
|
|
return nullptr;
|
2007-09-21 06:17:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(void) BackwardsAllocator::Free(void* ptr)
|
|
|
|
{
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t* p = static_cast<uint8_t*>(ptr);
|
2007-09-21 06:17:59 +00:00
|
|
|
if (p)
|
|
|
|
mMemory[mCount * mSize + (p - mMemory) / mSize] = 0;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHODIMP BackwardsAllocator::HeapMinimize(bool immediate)
|
2007-09-21 06:17:59 +00:00
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHODIMP BackwardsAllocator::IsLowMemory(bool* retval)
|
2007-09-21 06:17:59 +00:00
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
*retval = false;
|
2007-09-21 06:17:59 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-10-31 18:59:55 +00:00
|
|
|
NS_IMETHODIMP BackwardsAllocator::IsLowMemoryPlatform(bool* retval)
|
|
|
|
{
|
|
|
|
*retval = false;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2007-09-21 06:17:59 +00:00
|
|
|
|
|
|
|
nsresult TestBackwardsAllocator()
|
|
|
|
{
|
2012-08-22 15:56:38 +00:00
|
|
|
const uint32_t SEGMENT_COUNT = 10;
|
|
|
|
const uint32_t SEGMENT_SIZE = 10;
|
2007-09-21 06:17:59 +00:00
|
|
|
|
|
|
|
nsRefPtr<BackwardsAllocator> allocator = new BackwardsAllocator();
|
|
|
|
if (!allocator)
|
|
|
|
{
|
2008-12-04 06:25:00 +00:00
|
|
|
fail("Allocation of BackwardsAllocator failed!");
|
2007-09-21 06:17:59 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
nsresult rv = allocator->Init(SEGMENT_COUNT, SEGMENT_SIZE);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAsyncInputStream> input;
|
|
|
|
nsCOMPtr<nsIAsyncOutputStream> output;
|
2008-09-06 16:03:38 +00:00
|
|
|
rv = TP_NewPipe2(getter_AddRefs(input),
|
2007-09-21 06:17:59 +00:00
|
|
|
getter_AddRefs(output),
|
2011-10-17 14:59:28 +00:00
|
|
|
false,
|
|
|
|
false,
|
2007-09-21 06:17:59 +00:00
|
|
|
SEGMENT_SIZE, SEGMENT_COUNT, allocator);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
{
|
2009-02-10 22:05:28 +00:00
|
|
|
fail("TP_NewPipe2 failed: %x", rv);
|
2007-09-21 06:17:59 +00:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
const uint32_t BUFFER_LENGTH = 100;
|
2007-09-21 06:17:59 +00:00
|
|
|
const char written[] =
|
|
|
|
"0123456789"
|
|
|
|
"1123456789"
|
|
|
|
"2123456789"
|
|
|
|
"3123456789"
|
|
|
|
"4123456789"
|
|
|
|
"5123456789"
|
|
|
|
"6123456789"
|
|
|
|
"7123456789"
|
|
|
|
"8123456789"
|
|
|
|
"9123456789"; // not just a memset, to ensure the allocator works correctly
|
|
|
|
if (sizeof(written) < BUFFER_LENGTH)
|
|
|
|
{
|
2008-12-04 06:25:00 +00:00
|
|
|
fail("test error with string size");
|
2007-09-21 06:17:59 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t writeCount;
|
2007-09-21 06:17:59 +00:00
|
|
|
rv = output->Write(written, BUFFER_LENGTH, &writeCount);
|
|
|
|
if (NS_FAILED(rv) || writeCount != BUFFER_LENGTH)
|
|
|
|
{
|
2008-12-04 06:25:00 +00:00
|
|
|
fail("writing %d bytes (wrote %d bytes) to output failed: %x",
|
|
|
|
BUFFER_LENGTH, writeCount, rv);
|
2007-09-21 06:17:59 +00:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
char read[BUFFER_LENGTH];
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t readCount;
|
2007-09-21 06:17:59 +00:00
|
|
|
rv = input->Read(read, BUFFER_LENGTH, &readCount);
|
|
|
|
if (NS_FAILED(rv) || readCount != BUFFER_LENGTH)
|
|
|
|
{
|
2008-12-04 06:25:00 +00:00
|
|
|
fail("reading %d bytes (got %d bytes) from input failed: %x",
|
|
|
|
BUFFER_LENGTH, readCount, rv);
|
2007-09-21 06:17:59 +00:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (0 != memcmp(written, read, BUFFER_LENGTH))
|
|
|
|
{
|
2008-12-04 06:25:00 +00:00
|
|
|
fail("didn't read the written data correctly!");
|
2007-09-21 06:17:59 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2008-12-04 06:25:00 +00:00
|
|
|
passed("TestBackwardsAllocator");
|
2007-09-21 06:17:59 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
ScopedXPCOM xpcom("nsPipe");
|
|
|
|
if (xpcom.failed())
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
int rv = 0;
|
|
|
|
|
|
|
|
if (NS_FAILED(TestBackwardsAllocator()))
|
|
|
|
rv = 1;
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|