Files
libreoffice/sd/source/ui/remotecontrol/Transmitter.cxx
Gabor Kelemen efdc775d7d Add missing sal/log.hxx headers
rtl/string.hxx and rtl/ustring.hxx both unnecessarily #include <sal/log.hxx> (and don't make use of it themselves), but many other files happen to depend on it.
This is a continuation of commit 6ff2d84ade to be able to remove those unneeded includes.

This commit adds missing headers to every file found by:
grep -FwL sal/log.hxx $(git grep -Elw 'SAL_INFO|SAL_INFO_IF|SAL_WARN|SAL_WARN_IF|SAL_DETAIL_LOG_STREAM|SAL_WHERE|SAL_STREAM|SAL_DEBUG')
to directories scripting, sd, sdext

Change-Id: I47889cd889cf1d68353184229bfd4712f1528fbf
Reviewed-on: https://gerrit.libreoffice.org/58220
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
2018-07-30 17:28:49 +02:00

89 lines
2.2 KiB
C++

/* -*- 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 "Transmitter.hxx"
#include <sal/log.hxx>
using namespace std;
using namespace osl; // Sockets etc.
using namespace sd;
Transmitter::Transmitter( IBluetoothSocket* aSocket )
: pStreamSocket( aSocket ),
mQueuesNotEmpty(),
mFinishRequested(),
mQueueMutex(),
mLowPriority(),
mHighPriority()
{
}
void SAL_CALL Transmitter::run()
{
osl_setThreadName("bluetooth Transmitter");
while ( true )
{
mQueuesNotEmpty.wait();
if ( mFinishRequested.check() )
return;
::osl::MutexGuard aQueueGuard( mQueueMutex );
if ( !mHighPriority.empty() )
{
OString aMessage( mHighPriority.front() );
mHighPriority.pop();
SAL_INFO( "sdremote.bluetooth", "write high prio line '" << aMessage << "'" );
pStreamSocket->write( aMessage.getStr(), aMessage.getLength() );
}
else if ( !mLowPriority.empty() )
{
OString aMessage( mLowPriority.front() );
mLowPriority.pop();
SAL_INFO( "sdremote.bluetooth", "write normal line '" << aMessage << "'" );
pStreamSocket->write( aMessage.getStr(), aMessage.getLength() );
}
if ( mLowPriority.empty() && mHighPriority.empty() )
{
mQueuesNotEmpty.reset();
}
}
}
void Transmitter::notifyFinished()
{
mFinishRequested.set();
mQueuesNotEmpty.set();
}
Transmitter::~Transmitter()
{
}
void Transmitter::addMessage( const OString& aMessage, const Priority aPriority )
{
::osl::MutexGuard aQueueGuard( mQueueMutex );
switch ( aPriority )
{
case PRIORITY_LOW:
mLowPriority.push( aMessage );
break;
case PRIORITY_HIGH:
mHighPriority.push( aMessage );
break;
}
if ( !mQueuesNotEmpty.check() )
{
mQueuesNotEmpty.set();
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */