773c15f710
With the help of clang-format. For reference, the following command was used, but not all changes were commited: clang-format-3.9 -style='{BasedOnStyle: WebKit, AlignAfterOpenBracket: Align, AlwaysBreakAfterReturnType: None, BreakBeforeBraces: Allman, DerivePointerAlignment: 'true', ExperimentalAutoDetectBinPacking: 'true', IndentWrappedFunctionNames: 'true', UseTab: Never}' Change-Id: I0f7490c7ee38aeefeefcf9d5d4c3dab380cd63b8 Reviewed-on: https://gerrit.libreoffice.org/30416 Reviewed-by: Ashod Nakashian <ashnakash@gmail.com> Tested-by: Ashod Nakashian <ashnakash@gmail.com>
68 lines
1.8 KiB
C++
68 lines
1.8 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* 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 <Poco/Runnable.h>
|
|
|
|
#include "LOOLProtocol.hpp"
|
|
#include "LOOLSession.hpp"
|
|
#include "MessageQueue.hpp"
|
|
#include "Util.hpp"
|
|
|
|
/// This thread handles incoming messages on a given kit instance.
|
|
class QueueHandler : public Poco::Runnable
|
|
{
|
|
public:
|
|
QueueHandler(std::shared_ptr<MessageQueue> queue,
|
|
const std::shared_ptr<LOOLSession>& session,
|
|
const std::string& name):
|
|
_queue(std::move(queue)),
|
|
_session(session),
|
|
_name(name)
|
|
{
|
|
}
|
|
|
|
void run() override
|
|
{
|
|
Util::setThreadName(_name);
|
|
|
|
Log::debug("Thread started.");
|
|
|
|
try
|
|
{
|
|
while (true)
|
|
{
|
|
const auto input = _queue->get();
|
|
if (LOOLProtocol::getFirstToken(input) == "eof")
|
|
{
|
|
Log::info("Received EOF. Finishing.");
|
|
break;
|
|
}
|
|
|
|
if (!_session->handleInput(input.data(), input.size()))
|
|
{
|
|
Log::info("Socket handler flagged for finishing.");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
catch (const std::exception& exc)
|
|
{
|
|
Log::error(std::string("QueueHandler::run: Exception: ") + exc.what());
|
|
}
|
|
|
|
Log::debug("Thread finished.");
|
|
}
|
|
|
|
private:
|
|
std::shared_ptr<MessageQueue> _queue;
|
|
std::shared_ptr<LOOLSession> _session;
|
|
const std::string _name;
|
|
};
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|