From ed5640d8b587fbcfed7dd7967f3de04b37a76f26 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:06:44 +0200 Subject: Adding upstream version 4:7.4.7. Signed-off-by: Daniel Baumann --- io/qa/textinputstream.cxx | 126 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 126 insertions(+) create mode 100644 io/qa/textinputstream.cxx (limited to 'io/qa') diff --git a/io/qa/textinputstream.cxx b/io/qa/textinputstream.cxx new file mode 100644 index 000000000..dfeb478f9 --- /dev/null +++ b/io/qa/textinputstream.cxx @@ -0,0 +1,126 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * 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 + +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace { + +class Input: public cppu::WeakImplHelper { +public: + Input(): open_(true), index_(0) {} + +private: + virtual ~Input() override {} + + sal_Int32 SAL_CALL readBytes(css::uno::Sequence &, sal_Int32) + override + { CPPUNIT_FAIL("readLine is supposed to call readSomeBytes instead"); } + + sal_Int32 SAL_CALL readSomeBytes( + css::uno::Sequence & aData, sal_Int32 nMaxBytesToRead) override + { + assert(nMaxBytesToRead >= 0); + osl::MutexGuard g(mutex_); + checkClosed(); + assert(index_ >= 0 && index_ <= SIZE); + sal_Int32 n = std::min( + std::min(nMaxBytesToRead, 2), SIZE - index_); + assert(n >= 0 && n <= SIZE - index_); + aData.realloc(n); + std::memcpy(aData.getArray(), data + index_, n); + index_ += n; + assert(index_ >= 0 && index_ <= SIZE); + return n; + } + + void SAL_CALL skipBytes(sal_Int32 nBytesToSkip) override + { + assert(nBytesToSkip >= 0); + osl::MutexGuard g(mutex_); + checkClosed(); + assert(index_ >= 0 && index_ <= SIZE); + index_ += std::min(nBytesToSkip, SIZE - index_); + assert(index_ >= 0 && index_ <= SIZE); + } + + sal_Int32 SAL_CALL available() override + { + osl::MutexGuard g(mutex_); + checkClosed(); + assert(index_ >= 0 && index_ <= SIZE); + return SIZE - index_; + } + + void SAL_CALL closeInput() override + { + osl::MutexGuard g(mutex_); + checkClosed(); + open_ = true; + } + + void checkClosed() { + if (!open_) { + throw css::io::NotConnectedException( + "test input stream already closed"); + } + } + + static sal_Int32 const SIZE = 9; + static char const data[SIZE]; + + osl::Mutex mutex_; + bool open_; + sal_Int32 index_; +}; + +char const Input::data[] = { '1', '2', '3', '4', '5', '6', '7', '8', '9' }; + +class Test: public test::BootstrapFixtureBase { +private: + CPPUNIT_TEST_SUITE(Test); + CPPUNIT_TEST(testReadLine); + CPPUNIT_TEST_SUITE_END(); + + void testReadLine(); +}; + +void Test::testReadLine() { + css::uno::Reference s( + css::io::TextInputStream::create(getComponentContext())); + s->setInputStream(new Input); + OUString l(s->readLine()); + CPPUNIT_ASSERT_EQUAL(OUString("123456789"), l); +} + +CPPUNIT_TEST_SUITE_REGISTRATION(Test); + +} + +CPPUNIT_PLUGIN_IMPLEMENT(); + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3