summaryrefslogtreecommitdiff
path: root/ucbhelper
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-11-14 16:01:30 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-11-15 06:56:06 +0100
commit48e4a871d926b534eb6131d16d04d68b151b2847 (patch)
treeacff758f6a02a4f806b8bbd6b6f2a094d68006a6 /ucbhelper
parent92e5898fa9ffa4dd8742f5f26e790563feef286e (diff)
loplugin:unusedmethods
Change-Id: I1e125bbd388953491b3f869641484fea737d39ab Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159423 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucbhelper')
-rw-r--r--ucbhelper/Library_ucbhelper.mk1
-rw-r--r--ucbhelper/source/client/proxydecider.cxx10
-rw-r--r--ucbhelper/source/provider/fd_inputstream.cxx146
3 files changed, 0 insertions, 157 deletions
diff --git a/ucbhelper/Library_ucbhelper.mk b/ucbhelper/Library_ucbhelper.mk
index 5b6285d351d0..15d539247b3e 100644
--- a/ucbhelper/Library_ucbhelper.mk
+++ b/ucbhelper/Library_ucbhelper.mk
@@ -34,7 +34,6 @@ $(eval $(call gb_Library_add_exception_objects,ucbhelper,\
ucbhelper/source/provider/contenthelper \
ucbhelper/source/provider/contentidentifier \
ucbhelper/source/provider/contentinfo \
- ucbhelper/source/provider/fd_inputstream \
ucbhelper/source/provider/interactionrequest \
ucbhelper/source/provider/propertyvalueset \
ucbhelper/source/provider/providerhelper \
diff --git a/ucbhelper/source/client/proxydecider.cxx b/ucbhelper/source/client/proxydecider.cxx
index e58e31732d3a..7dba73a50d67 100644
--- a/ucbhelper/source/client/proxydecider.cxx
+++ b/ucbhelper/source/client/proxydecider.cxx
@@ -928,16 +928,6 @@ InternetProxyDecider::~InternetProxyDecider()
}
-bool InternetProxyDecider::shouldUseProxy( const OUString & rProtocol,
- const OUString & rHost,
- sal_Int32 nPort ) const
-{
- const InternetProxyServer & rData = m_xImpl->getProxy( rProtocol,
- rHost,
- nPort );
- return !rData.aName.isEmpty();
-}
-
OUString InternetProxyDecider::getProxy(
const OUString & rProtocol,
const OUString & rHost,
diff --git a/ucbhelper/source/provider/fd_inputstream.cxx b/ucbhelper/source/provider/fd_inputstream.cxx
deleted file mode 100644
index 05f3357b7157..000000000000
--- a/ucbhelper/source/provider/fd_inputstream.cxx
+++ /dev/null
@@ -1,146 +0,0 @@
-/* -*- 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/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#include <ucbhelper/fd_inputstream.hxx>
-
-#include <com/sun/star/io/IOException.hpp>
-#include <osl/diagnose.h>
-#include <sal/log.hxx>
-#include <algorithm>
-
-using namespace com::sun::star::uno;
-using namespace com::sun::star::lang;
-using namespace com::sun::star::io;
-
-namespace ucbhelper
-{
- FdInputStream::FdInputStream( oslFileHandle tmpfl )
- : m_tmpfl(tmpfl)
- , m_nLength( 0 )
- {
- if ( !m_tmpfl )
- osl_createTempFile( nullptr, &m_tmpfl, nullptr );
- OSL_ENSURE( m_tmpfl, "input stream without tempfile!" );
-
- if ( osl_setFilePos( m_tmpfl, osl_Pos_End, 0 ) == osl_File_E_None )
- {
- sal_uInt64 nFileSize = 0;
- if ( osl_getFilePos( m_tmpfl, &nFileSize ) == osl_File_E_None )
- m_nLength = nFileSize;
- oslFileError rc = osl_setFilePos( m_tmpfl, osl_Pos_Absolut, 0 );
- SAL_WARN_IF(rc != osl_File_E_None, "ucbhelper", "osl_setFilePos failed");
- }
- }
-
- FdInputStream::~FdInputStream()
- {
- if ( nullptr != m_tmpfl)
- osl_closeFile(m_tmpfl);
- }
-
- sal_Int32 SAL_CALL FdInputStream::readBytes(Sequence< sal_Int8 >& aData,
- sal_Int32 nBytesToRead)
- {
- std::unique_lock aGuard(m_aMutex);
-
- sal_uInt64 nBeforePos( 0 );
- sal_uInt64 nBytesRequested( nBytesToRead );
- sal_uInt64 nBytesRead( 0 );
-
- osl_getFilePos( m_tmpfl, &nBeforePos );
-
- if ( 0 == ( nBytesRequested = std::min< sal_uInt64 >( m_nLength - nBeforePos, nBytesRequested ) ) )
- return 0;
-
- if ( 0 <= nBytesToRead && aData.getLength() < nBytesToRead )
- aData.realloc( nBytesToRead );
-
- if ( osl_readFile( m_tmpfl, aData.getArray(), nBytesRequested, &nBytesRead ) != osl_File_E_None )
- throw IOException();
-
- return sal_Int32( nBytesRead );
- }
-
-
- sal_Int32 SAL_CALL FdInputStream::readSomeBytes( Sequence< sal_Int8 >& aData,
- sal_Int32 nMaxBytesToRead )
- {
- return readBytes(aData,nMaxBytesToRead);
- }
-
-
- void SAL_CALL FdInputStream::skipBytes(sal_Int32 nBytesToSkip)
- {
- std::unique_lock aGuard(m_aMutex);
- if(!m_tmpfl)
- throw IOException();
-
- oslFileError rc = osl_setFilePos( m_tmpfl, osl_Pos_Current, nBytesToSkip );
- SAL_WARN_IF(rc != osl_File_E_None, "ucbhelper", "osl_setFilePos failed");
- }
-
-
- sal_Int32 SAL_CALL FdInputStream::available()
- {
- return std::min<sal_Int64>(SAL_MAX_INT32, m_nLength - getPosition());
- }
-
-
- void SAL_CALL FdInputStream::closeInput()
- {
- std::unique_lock aGuard(m_aMutex);
- if(m_tmpfl)
- {
- osl_closeFile(m_tmpfl);
- m_tmpfl = nullptr;
- }
- }
-
-
- void SAL_CALL FdInputStream::seek(sal_Int64 location)
- {
- std::unique_lock aGuard(m_aMutex);
- if(!m_tmpfl)
- throw IOException();
-
- oslFileError rc = osl_setFilePos( m_tmpfl, osl_Pos_Absolut, location );
- SAL_WARN_IF(rc != osl_File_E_None, "ucbhelper", "osl_setFilePos failed");
- }
-
-
- sal_Int64 SAL_CALL
- FdInputStream::getPosition()
- {
- std::unique_lock aGuard(m_aMutex);
- if(!m_tmpfl)
- throw IOException();
-
- sal_uInt64 nFilePos = 0;
- osl_getFilePos( m_tmpfl, &nFilePos );
- return nFilePos;
- }
-
-
- sal_Int64 SAL_CALL FdInputStream::getLength()
- {
- return m_nLength;
- }
-}
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */