e0241b1825
Change-Id: If4e72796eb39ee66e7604cf67688329fc94d9539 Reviewed-on: https://gerrit.libreoffice.org/20900 Reviewed-by: Ashod Nakashian <ashnakash@gmail.com> Tested-by: Ashod Nakashian <ashnakash@gmail.com>
114 lines
3 KiB
C++
114 lines
3 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>
|
|
|
|
MessageQueue::~MessageQueue()
|
|
{
|
|
clear();
|
|
}
|
|
|
|
void MessageQueue::put(const std::string& value)
|
|
{
|
|
std::unique_lock<std::mutex> lock(_mutex);
|
|
put_impl(value);
|
|
lock.unlock();
|
|
_cv.notify_one();
|
|
}
|
|
|
|
std::string 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(std::function<bool(const std::string&)> pred)
|
|
{
|
|
std::unique_lock<std::mutex> lock(_mutex);
|
|
std::remove_if(_queue.begin(), _queue.end(), pred);
|
|
}
|
|
|
|
void MessageQueue::put_impl(const std::string& value)
|
|
{
|
|
_queue.push_back(value);
|
|
}
|
|
|
|
bool MessageQueue::wait_impl() const
|
|
{
|
|
return _queue.size() > 0;
|
|
}
|
|
|
|
std::string MessageQueue::get_impl()
|
|
{
|
|
std::string result = _queue.front();
|
|
_queue.pop_front();
|
|
return result;
|
|
}
|
|
|
|
void MessageQueue::clear_impl()
|
|
{
|
|
_queue.clear();
|
|
}
|
|
|
|
void BasicTileQueue::put_impl(const std::string& value)
|
|
{
|
|
if (value == "canceltiles")
|
|
{
|
|
// remove all the existing tiles from the queue
|
|
_queue.erase(std::remove_if(_queue.begin(), _queue.end(),
|
|
[](const std::string& v)
|
|
{
|
|
// must not remove the tiles with 'id=', they are special, used
|
|
// eg. for previews etc.
|
|
return (v.compare(0, 5, "tile ") == 0) && (v.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 std::string& value)
|
|
{
|
|
if (value.compare(0, 5, "tile ") == 0)
|
|
{
|
|
// TODO: implement a real re-ordering here, so that the tiles closest to
|
|
// the cursor are returned first.
|
|
// * we will want to put just a general "tile" message to the queue
|
|
// * add a std::set that handles the tiles
|
|
// * change the get_impl() to decide which tile is the correct one to
|
|
// be returned
|
|
// * we will also need to be informed about the position of the cursor
|
|
// so that get_impl() returns optimal results
|
|
//
|
|
// For now: just don't put duplicates into the queue
|
|
for (auto it = _queue.cbegin(); it != _queue.cend(); ++it)
|
|
{
|
|
if (value == *it)
|
|
return;
|
|
}
|
|
}
|
|
|
|
BasicTileQueue::put_impl(value);
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|