78308db763
Change-Id: I138e8473a002a15aae7752136950bb905a21fb1f
94 lines
2.2 KiB
C++
94 lines
2.2 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/.
|
|
*/
|
|
|
|
#ifndef INCLUDED_MESSAGEQUEUE_HPP
|
|
#define INCLUDED_MESSAGEQUEUE_HPP
|
|
|
|
#include <condition_variable>
|
|
#include <mutex>
|
|
#include <deque>
|
|
#include <vector>
|
|
|
|
/** Thread-safe message queue (FIFO).
|
|
*/
|
|
class MessageQueue
|
|
{
|
|
public:
|
|
|
|
typedef std::vector<char> Payload;
|
|
|
|
MessageQueue()
|
|
{
|
|
}
|
|
|
|
virtual ~MessageQueue();
|
|
|
|
MessageQueue(const MessageQueue&) = delete;
|
|
MessageQueue& operator=(const MessageQueue&) = delete;
|
|
|
|
/// Thread safe insert the message.
|
|
void put(const Payload& value);
|
|
void put(const std::string& value)
|
|
{
|
|
put(Payload(value.data(), value.data() + value.size()));
|
|
}
|
|
|
|
/// Thread safe obtaining of the message.
|
|
Payload get();
|
|
|
|
/// Thread safe removal of all the pending messages.
|
|
void clear();
|
|
|
|
/// Thread safe remove_if.
|
|
void remove_if(const std::function<bool(const Payload&)>& pred);
|
|
|
|
private:
|
|
std::mutex _mutex;
|
|
std::condition_variable _cv;
|
|
|
|
protected:
|
|
virtual void put_impl(const Payload& value);
|
|
|
|
bool wait_impl() const;
|
|
|
|
Payload get_impl();
|
|
|
|
void clear_impl();
|
|
|
|
std::deque<Payload> _queue;
|
|
};
|
|
|
|
/** MessageQueue specialized for handling of tiles.
|
|
|
|
Used for basic handling of incoming requests, only can remove tiles when it
|
|
gets a "canceltiles" command.
|
|
*/
|
|
class BasicTileQueue : public MessageQueue
|
|
{
|
|
protected:
|
|
virtual void put_impl(const Payload& value) override;
|
|
};
|
|
|
|
/** MessageQueue specialized for priority handling of tiles.
|
|
|
|
This class builds on BasicTileQueue, and additonaly provides de-duplication
|
|
of tile requests.
|
|
|
|
TODO: we'll need to add reordering of the tiles at some stage here too - so
|
|
that the ones closest to the cursor position are returned first.
|
|
*/
|
|
class TileQueue : public BasicTileQueue
|
|
{
|
|
protected:
|
|
virtual void put_impl(const Payload& value) override;
|
|
};
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|