libreoffice-online/loolwsd/MessageQueue.cpp
Ashod Nakashian 1641f756b2 loolwsd: improved logging
Change-Id: I1a1559754efcb0614875dc76ae0637ed6dc1ba77
Reviewed-on: https://gerrit.libreoffice.org/29160
Reviewed-by: Ashod Nakashian <ashnakash@gmail.com>
Tested-by: Ashod Nakashian <ashnakash@gmail.com>
2016-09-22 03:32:48 +00:00

301 lines
8.6 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 "MessageQueue.hpp"
#include <algorithm>
#include <Poco/StringTokenizer.h>
#include <TileDesc.hpp>
#include <Log.hpp>
using Poco::StringTokenizer;
MessageQueue::~MessageQueue()
{
clear();
}
void MessageQueue::put(const Payload& value)
{
std::unique_lock<std::mutex> lock(_mutex);
put_impl(value);
lock.unlock();
_cv.notify_one();
}
MessageQueue::Payload MessageQueue::get()
{
std::unique_lock<std::mutex> lock(_mutex);
_cv.wait(lock, [this] { return wait_impl(); });
return get_impl();
}
void MessageQueue::clear()
{
std::unique_lock<std::mutex> lock(_mutex);
clear_impl();
}
void MessageQueue::remove_if(const std::function<bool(const Payload&)>& pred)
{
std::unique_lock<std::mutex> lock(_mutex);
std::remove_if(_queue.begin(), _queue.end(), pred);
}
void MessageQueue::put_impl(const Payload& value)
{
const auto msg = std::string(value.data(), value.size());
Log::trace() << "Pushing into MQ [" << msg << "]" << Log::end;
_queue.push_back(value);
}
bool MessageQueue::wait_impl() const
{
return _queue.size() > 0;
}
MessageQueue::Payload MessageQueue::get_impl()
{
auto result = _queue.front();
_queue.pop_front();
return result;
}
void MessageQueue::clear_impl()
{
_queue.clear();
}
void BasicTileQueue::put_impl(const Payload& value)
{
const auto msg = std::string(&value[0], value.size());
if (msg == "canceltiles")
{
Log::error("Unexpected canceltiles!");
// remove all the existing tiles from the queue
_queue.erase(std::remove_if(_queue.begin(), _queue.end(),
[](const Payload& v)
{
// must not remove the tiles with 'id=', they are special, used
// eg. for previews etc.
const auto tmp = std::string(&v[0], v.size());
return (tmp.compare(0, 5, "tile ") == 0) && (tmp.find("id=") == std::string::npos);
}
),
_queue.end());
// put the "canceltiles" in front of other messages
_queue.push_front(value);
}
else
{
MessageQueue::put_impl(value);
}
}
void TileQueue::put_impl(const Payload& value)
{
const auto msg = std::string(value.data(), value.size());
Log::trace() << "Putting [" << msg << "]" << Log::end;
if (msg.compare(0, 11, "canceltiles") == 0)
{
Log::trace("Processing " + msg);
Log::trace() << "Before canceltiles have " << _queue.size() << " in queue." << Log::end;
const auto seqs = msg.substr(12);
StringTokenizer tokens(seqs, ",", StringTokenizer::TOK_IGNORE_EMPTY | StringTokenizer::TOK_TRIM);
_queue.erase(std::remove_if(_queue.begin(), _queue.end(),
[&tokens](const Payload& v)
{
const std::string s(v.data(), v.size());
for (size_t i = 0; i < tokens.count(); ++i)
{
if (s.find("ver=" + tokens[i]) != std::string::npos)
{
Log::trace("Matched " + tokens[i] + ", Removing [" + s + "]");
return true;
}
}
return false;
}), _queue.end());
// Don't push canceltiles into the queue.
Log::trace() << "After canceltiles have " << _queue.size() << " in queue." << Log::end;
return;
}
if (!_queue.empty())
{
if (msg.compare(0, 4, "tile") == 0 || msg.compare(0, 10, "tilecombine") == 0)
{
const auto newMsg = msg.substr(0, msg.find(" ver"));
for (size_t i = 0; i < _queue.size(); ++i)
{
auto& it = _queue[i];
const std::string old(it.data(), it.size());
const auto oldMsg = old.substr(0, old.find(" ver"));
Log::trace() << "TileQueue #" << i << ": " << old << Log::end;
if (newMsg == oldMsg)
{
Log::debug() << "Replacing duplicate tile: " << old << " -> " << msg << Log::end;
_queue[i] = value;
if (priority(msg))
{
// Bump to top.
Log::debug() << "And bumping tile to top: " << msg << Log::end;
_queue.erase(_queue.begin() + i);
_queue.push_front(value);
}
return;
}
}
}
}
if (priority(msg))
{
Log::debug() << "Priority tile [" << msg << "]" << Log::end;
_queue.push_front(value);
}
else
{
BasicTileQueue::put_impl(value);
}
}
/// Bring the underlying tile (if any) to the top.
/// There should be only one overlapping tile at most.
void TileQueue::reprioritize(const CursorPosition& cursorPosition)
{
for (size_t i = 0; i < _queue.size(); ++i)
{
auto& it = _queue[i];
const std::string msg(it.data(), it.size());
if (msg.compare(0, 5, "tile ") != 0)
{
continue;
}
auto tile = TileDesc::parse(msg); //FIXME: Expensive, avoid.
if (tile.intersectsWithRect(cursorPosition.X, cursorPosition.Y, cursorPosition.Width, cursorPosition.Height))
{
if (i != 0)
{
// Bump to top.
Log::trace() << "Bumping tile to top: " << msg << Log::end;
const Payload payload = it;
_queue.erase(_queue.begin() + i);
_queue.push_front(payload);
}
return;
}
}
}
bool TileQueue::priority(const std::string& tileMsg)
{
if (tileMsg.compare(0, 5, "tile ") != 0)
{
return false;
}
auto tile = TileDesc::parse(tileMsg); //FIXME: Expensive, avoid.
for (auto& pair : _cursorPositions)
{
if (tile.intersectsWithRect(pair.second.X, pair.second.Y, pair.second.Width, pair.second.Height))
{
return true;
}
}
return false;
}
MessageQueue::Payload TileQueue::get_impl()
{
std::vector<TileDesc> tiles;
const auto front = _queue.front();
_queue.pop_front();
auto msg = std::string(front.data(), front.size());
Log::trace() << "MessageQueue Get, Size: " << _queue.size() << ", Front: " << msg << Log::end;
if (msg.compare(0, 5, "tile ") != 0 || msg.find("id=") != std::string::npos)
{
// Don't combine non-tiles or tiles with id.
Log::trace() << "MessageQueue res: " << msg << Log::end;
return front;
}
tiles.emplace_back(TileDesc::parse(msg));
// Combine as many tiles as possible with the top one.
bool added;
do
{
added = false;
for (size_t i = 0; i < _queue.size(); )
{
auto& it = _queue[i];
msg = std::string(it.data(), it.size());
if (msg.compare(0, 5, "tile ") != 0 ||
msg.find("id=") != std::string::npos)
{
// Don't combine non-tiles or tiles with id.
++i;
continue;
}
auto tile2 = TileDesc::parse(msg);
Log::trace() << "combining?: " << msg << Log::end;
// Check if adjacent tiles.
bool found = false;
for (auto& tile : tiles)
{
if (tile.isAdjacent(tile2))
{
tiles.emplace_back(tile2);
_queue.erase(_queue.begin() + i);
found = true;
added = true;
break;
}
}
i += !found;
}
}
while (added);
Log::trace() << "Combined " << tiles.size() << " tiles, leaving " << _queue.size() << " in queue." << Log::end;
if (tiles.size() == 1)
{
msg = tiles[0].serialize("tile");
return Payload(msg.data(), msg.data() + msg.size());
}
auto tileCombined = TileCombined::create(tiles).serialize("tilecombine");
Log::trace() << "MessageQueue res: " << tileCombined << Log::end;
return Payload(tileCombined.data(), tileCombined.data() + tileCombined.size());
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */