34b75306c3
/usr/bin/coolforkit
memcmp
asan/../sanitizer_common/sanitizer_common_interceptors.inc:875 (discriminator 9)
/usr/bin/coolforkit
(anonymous namespace)::textItem(std::vector<char, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, bool&)
online/kit/KitQueue.cpp:52
/usr/bin/coolforkit
KitQueue::put(std::vector<char, std::allocator<char> > const&)
online/kit/KitQueue.cpp:94
since:
commit f8a0d6c086
Date: Thu May 9 15:29:49 2024 +0100
Callbacks: minor efficiency wins, avoid tokenizing where we can.
Signed-off-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Change-Id: Ie5d0f86bb33c810b6a5f177421485c977b7fc79a
765 lines
25 KiB
C++
765 lines
25 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* Copyright the Collabora Online contributors.
|
|
*
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*
|
|
* 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 <config.h>
|
|
|
|
#include "KitQueue.hpp"
|
|
|
|
#include <string.h>
|
|
#include <climits>
|
|
#include <algorithm>
|
|
#include <string>
|
|
#include <string_view>
|
|
#include <iostream>
|
|
|
|
#include "JsonUtil.hpp"
|
|
|
|
#include "Protocol.hpp"
|
|
#include "Log.hpp"
|
|
#include <TileDesc.hpp>
|
|
|
|
/* static */ std::string KitQueue::Callback::toString(int view, int type, const std::string payload)
|
|
{
|
|
std::ostringstream str;
|
|
str << view << " " << lokCallbackTypeToString(type) << " "
|
|
<< COOLProtocol::getAbbreviatedMessage(payload);
|
|
return str.str();
|
|
}
|
|
|
|
namespace {
|
|
bool textItem(const KitQueue::Payload &value, const std::string &firstToken, bool &removeText)
|
|
{
|
|
size_t offset = firstToken.size(); // in this case a session
|
|
if (value.size() < offset + 3)
|
|
return false;
|
|
|
|
size_t remaining = value.size() - firstToken.size();
|
|
|
|
if (!memcmp(value.data() + offset + 1, "textinput", std::min(remaining - 1, size_t(9))))
|
|
{
|
|
removeText = false;
|
|
return true;
|
|
}
|
|
|
|
if (!memcmp(value.data() + offset + 1, "removetextcontext", std::min(remaining - 1, size_t(17))))
|
|
{
|
|
removeText = true;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
|
|
void KitQueue::put(const Payload& value)
|
|
{
|
|
if (value.empty())
|
|
throw std::runtime_error("Cannot queue empty item.");
|
|
|
|
const std::string firstToken = COOLProtocol::getFirstToken(value);
|
|
|
|
bool removeText = false;
|
|
|
|
if (firstToken == "tilecombine")
|
|
{
|
|
// Breakup tilecombine and deduplicate (we are re-combining
|
|
// the tiles inside get() again)
|
|
const std::string msg = std::string(value.data(), value.size());
|
|
const TileCombined tileCombined = TileCombined::parse(msg);
|
|
for (const auto& tile : tileCombined.getTiles())
|
|
{
|
|
const std::string newMsg = tile.serialize("tile");
|
|
|
|
removeTileDuplicate(newMsg);
|
|
|
|
_queue.emplace_back(newMsg.data(), newMsg.data() + newMsg.size());
|
|
}
|
|
}
|
|
else if (firstToken == "tile")
|
|
{
|
|
removeTileDuplicate(std::string(value.data(), value.size()));
|
|
|
|
_queue.push_back(value);
|
|
}
|
|
else if (firstToken == "callback")
|
|
assert(false && "callbacks should not come from the client");
|
|
|
|
else if (textItem(value, firstToken, removeText))
|
|
{
|
|
StringVector tokens = StringVector::tokenize(value.data(), value.size());
|
|
|
|
std::string newMsg = !removeText ? combineTextInput(tokens)
|
|
: combineRemoveText(tokens);
|
|
|
|
if (!newMsg.empty())
|
|
_queue.emplace_back(newMsg.data(), newMsg.data() + newMsg.size());
|
|
else
|
|
_queue.emplace_back(value);
|
|
}
|
|
else // not so special
|
|
_queue.emplace_back(value);
|
|
}
|
|
|
|
void KitQueue::removeTileDuplicate(const std::string& tileMsg)
|
|
{
|
|
assert(COOLProtocol::matchPrefix("tile", tileMsg, /*ignoreWhitespace*/ true));
|
|
|
|
// Ver is always provided at this point and it is necessary to
|
|
// return back to clients the last rendered version of a tile
|
|
// in case there are new invalidations and requests while rendering.
|
|
// Here we compare duplicates without 'ver' since that's irrelevant.
|
|
size_t newMsgPos = tileMsg.find(" ver");
|
|
if (newMsgPos == std::string::npos)
|
|
{
|
|
newMsgPos = tileMsg.size() - 1;
|
|
}
|
|
|
|
for (size_t i = 0; i < _queue.size(); ++i)
|
|
{
|
|
auto& it = _queue[i];
|
|
if (it.size() > newMsgPos &&
|
|
strncmp(tileMsg.data(), it.data(), newMsgPos) == 0)
|
|
{
|
|
LOG_TRC("Remove duplicate tile request: " << std::string(it.data(), it.size()) << " -> " << COOLProtocol::getAbbreviatedMessage(tileMsg));
|
|
_queue.erase(_queue.begin() + i);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
namespace {
|
|
|
|
/// Read the viewId from the payload.
|
|
std::string extractViewId(const std::string& payload)
|
|
{
|
|
Poco::JSON::Parser parser;
|
|
const Poco::Dynamic::Var result = parser.parse(payload);
|
|
const auto& json = result.extract<Poco::JSON::Object::Ptr>();
|
|
return json->get("viewId").toString();
|
|
}
|
|
|
|
/// Extract the .uno: command ID from the potential command.
|
|
std::string extractUnoCommand(const std::string& command)
|
|
{
|
|
if (!COOLProtocol::matchPrefix(".uno:", command))
|
|
return std::string();
|
|
|
|
size_t equalPos = command.find('=');
|
|
if (equalPos != std::string::npos)
|
|
return command.substr(0, equalPos);
|
|
|
|
return command;
|
|
}
|
|
|
|
/// Extract rectangle from the invalidation callback payload
|
|
bool extractRectangle(const StringVector& tokens, int& x, int& y, int& w, int& h, int& part, int& mode)
|
|
{
|
|
x = 0;
|
|
y = 0;
|
|
w = INT_MAX;
|
|
h = INT_MAX;
|
|
part = 0;
|
|
mode = 0;
|
|
|
|
if (tokens.size() < 2)
|
|
return false;
|
|
|
|
if (tokens.equals(0, "EMPTY,"))
|
|
{
|
|
part = std::atoi(tokens[0].c_str());
|
|
return true;
|
|
}
|
|
|
|
if (tokens.size() < 5)
|
|
return false;
|
|
|
|
x = std::atoi(tokens[0].c_str());
|
|
y = std::atoi(tokens[1].c_str());
|
|
w = std::atoi(tokens[2].c_str());
|
|
h = std::atoi(tokens[3].c_str());
|
|
part = std::atoi(tokens[4].c_str());
|
|
|
|
if (tokens.size() == 6)
|
|
mode = std::atoi(tokens[5].c_str());
|
|
|
|
return true;
|
|
}
|
|
|
|
}
|
|
|
|
void KitQueue::putCallback(int view, int type, const std::string &payload)
|
|
{
|
|
if (!elideDuplicateCallback(view, type, payload))
|
|
_callbacks.emplace_back(view, type, payload);
|
|
}
|
|
|
|
bool KitQueue::elideDuplicateCallback(int view, int type, const std::string &payload)
|
|
{
|
|
const auto callbackType = static_cast<LibreOfficeKitCallbackType>(type);
|
|
|
|
// Nothing to combine in this case:
|
|
if (_callbacks.size() == 0)
|
|
return false;
|
|
|
|
switch (callbackType)
|
|
{
|
|
case LOK_CALLBACK_INVALIDATE_TILES: // invalidation
|
|
{
|
|
StringVector tokens = StringVector::tokenize(payload);
|
|
|
|
int msgX, msgY, msgW, msgH, msgPart, msgMode;
|
|
if (!extractRectangle(tokens, msgX, msgY, msgW, msgH, msgPart, msgMode))
|
|
return false;
|
|
|
|
bool performedMerge = false;
|
|
|
|
// we always travel the entire queue
|
|
std::size_t i = 0;
|
|
while (i < _callbacks.size())
|
|
{
|
|
auto& it = _callbacks[i];
|
|
|
|
if (it._type != type || it._view != view)
|
|
{
|
|
++i;
|
|
continue;
|
|
}
|
|
StringVector queuedTokens = StringVector::tokenize(it._payload);
|
|
|
|
int queuedX, queuedY, queuedW, queuedH, queuedPart, queuedMode;
|
|
|
|
if (!extractRectangle(queuedTokens, queuedX, queuedY, queuedW, queuedH, queuedPart, queuedMode))
|
|
{
|
|
++i;
|
|
continue;
|
|
}
|
|
|
|
if (msgPart != queuedPart)
|
|
{
|
|
++i;
|
|
continue;
|
|
}
|
|
|
|
if (msgMode != queuedMode)
|
|
{
|
|
++i;
|
|
continue;
|
|
}
|
|
|
|
// the invalidation in the queue is fully covered by the payload,
|
|
// just remove it
|
|
if (msgX <= queuedX && queuedX + queuedW <= msgX + msgW && msgY <= queuedY
|
|
&& queuedY + queuedH <= msgY + msgH)
|
|
{
|
|
LOG_TRC("Removing smaller invalidation: "
|
|
<< it._payload << " -> " << ' ' << msgX << ' ' << msgY << ' '
|
|
<< msgW << ' ' << msgH << ' ' << msgPart << ' ' << msgMode);
|
|
|
|
// remove from the queue
|
|
_callbacks.erase(_callbacks.begin() + i);
|
|
continue;
|
|
}
|
|
|
|
// the invalidation just intersects, join those (if the result is
|
|
// small)
|
|
if (TileDesc::rectanglesIntersect(msgX, msgY, msgW, msgH, queuedX, queuedY, queuedW,
|
|
queuedH))
|
|
{
|
|
int joinX = std::min(msgX, queuedX);
|
|
int joinY = std::min(msgY, queuedY);
|
|
int joinW = std::max(msgX + msgW, queuedX + queuedW) - joinX;
|
|
int joinH = std::max(msgY + msgH, queuedY + queuedH) - joinY;
|
|
|
|
const int reasonableSizeX = 4 * 3840; // 4x tile at 100% zoom
|
|
const int reasonableSizeY = 2 * 3840; // 2x tile at 100% zoom
|
|
if (joinW > reasonableSizeX || joinH > reasonableSizeY)
|
|
{
|
|
++i;
|
|
continue;
|
|
}
|
|
|
|
LOG_TRC("Merging invalidations: "
|
|
<< Callback::toString(view, type, payload) << " and "
|
|
<< tokens[0] << ' ' << tokens[1] << ' ' << tokens[2] << ' '
|
|
<< msgX << ' ' << msgY << ' ' << msgW << ' ' << msgH << ' '
|
|
<< msgPart << ' ' << msgMode << " -> "
|
|
<< tokens[0] << ' ' << tokens[1] << ' ' << tokens[2] << ' '
|
|
<< joinX << ' ' << joinY << ' ' << joinW << ' ' << joinH << ' '
|
|
<< msgPart << ' ' << msgMode);
|
|
|
|
msgX = joinX;
|
|
msgY = joinY;
|
|
msgW = joinW;
|
|
msgH = joinH;
|
|
performedMerge = true;
|
|
|
|
// remove from the queue
|
|
_callbacks.erase(_callbacks.begin() + i);
|
|
continue;
|
|
}
|
|
|
|
++i;
|
|
}
|
|
|
|
if (performedMerge)
|
|
{
|
|
std::string newPayload =
|
|
std::to_string(msgX) + ", " + std::to_string(msgY) + ", " +
|
|
std::to_string(msgW) + ", " + std::to_string(msgH) + ", " +
|
|
tokens.cat(' ', 4); // part etc. ...
|
|
|
|
LOG_TRC("Merge result: " << newPayload);
|
|
|
|
_callbacks.emplace_back(view, type, newPayload);
|
|
return true; // elide the original - use this instead
|
|
}
|
|
}
|
|
break;
|
|
|
|
case LOK_CALLBACK_STATE_CHANGED: // state changed
|
|
{
|
|
std::string unoCommand = extractUnoCommand(payload);
|
|
if (unoCommand.empty())
|
|
return false;
|
|
|
|
// This is needed because otherwise it creates some problems when
|
|
// a save occurs while a cell is still edited in Calc.
|
|
if (unoCommand == ".uno:ModifiedStatus")
|
|
return false;
|
|
|
|
// remove obsolete states of the same .uno: command
|
|
size_t unoCommandLen = unoCommand.size();
|
|
for (size_t i = 0; i < _callbacks.size(); ++i)
|
|
{
|
|
Callback& it = _callbacks[i];
|
|
if (it._type != type || it._view != view)
|
|
continue;
|
|
|
|
size_t payloadLen = it._payload.size();
|
|
if (payloadLen < unoCommandLen + 1 ||
|
|
unoCommand.compare(0, unoCommandLen, it._payload) != 0 ||
|
|
it._payload[unoCommandLen] != '=')
|
|
continue;
|
|
|
|
LOG_TRC("Remove obsolete uno command: " << it << " -> "
|
|
<< Callback::toString(view, type, payload));
|
|
_callbacks.erase(_callbacks.begin() + i);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
|
|
case LOK_CALLBACK_INVALIDATE_VISIBLE_CURSOR: // the cursor has moved
|
|
case LOK_CALLBACK_CURSOR_VISIBLE: // the cursor visibility has changed
|
|
case LOK_CALLBACK_STATUS_INDICATOR_SET_VALUE: // setting the indicator value
|
|
case LOK_CALLBACK_DOCUMENT_SIZE_CHANGED: // setting the document size
|
|
case LOK_CALLBACK_CELL_CURSOR: // the cell cursor has moved
|
|
case LOK_CALLBACK_INVALIDATE_VIEW_CURSOR: // the view cursor has moved
|
|
case LOK_CALLBACK_CELL_VIEW_CURSOR: // the view cell cursor has moved
|
|
case LOK_CALLBACK_VIEW_CURSOR_VISIBLE: // the view cursor visibility has changed
|
|
{
|
|
const bool isViewCallback = (callbackType == LOK_CALLBACK_INVALIDATE_VIEW_CURSOR ||
|
|
callbackType == LOK_CALLBACK_CELL_VIEW_CURSOR ||
|
|
callbackType == LOK_CALLBACK_VIEW_CURSOR_VISIBLE);
|
|
|
|
const std::string viewId
|
|
= (isViewCallback ? extractViewId(payload) : std::string());
|
|
|
|
for (std::size_t i = 0; i < _callbacks.size(); ++i)
|
|
{
|
|
const auto& it = _callbacks[i];
|
|
|
|
if (it._type != type || it._view != view)
|
|
continue;
|
|
|
|
if (!isViewCallback)
|
|
{
|
|
LOG_TRC("Remove obsolete callback: " << it << " -> "
|
|
<< Callback::toString(view, type, payload));
|
|
_callbacks.erase(_callbacks.begin() + i);
|
|
break;
|
|
}
|
|
else if (isViewCallback)
|
|
{
|
|
// we additionally need to ensure that the payload is about
|
|
// the same viewid (otherwise we'd merge them all views into
|
|
// one)
|
|
const std::string queuedViewId = extractViewId(it._payload);
|
|
if (viewId == queuedViewId)
|
|
{
|
|
LOG_TRC("Remove obsolete view callback: " << it << " -> "
|
|
<< Callback::toString(view, type, payload));
|
|
_callbacks.erase(_callbacks.begin() + i);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
|
|
} // switch
|
|
|
|
// Append the new command to the callbacks list
|
|
return false;
|
|
}
|
|
|
|
int KitQueue::priority(const std::string& tileMsg)
|
|
{
|
|
TileDesc tile = TileDesc::parse(tileMsg); //FIXME: Expensive, avoid.
|
|
|
|
for (int i = static_cast<int>(_viewOrder.size()) - 1; i >= 0; --i)
|
|
{
|
|
auto& cursor = _cursorPositions[_viewOrder[i]];
|
|
if (tile.intersectsWithRect(cursor.getX(), cursor.getY(), cursor.getWidth(),
|
|
cursor.getHeight()))
|
|
return i;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
void KitQueue::deprioritizePreviews()
|
|
{
|
|
for (size_t i = 0; i < _queue.size(); ++i)
|
|
{
|
|
const Payload front = _queue.front();
|
|
const std::string message(front.data(), front.size());
|
|
|
|
// stop at the first non-tile or non-'id' (preview) message
|
|
std::string id;
|
|
if (!COOLProtocol::matchPrefix("tile", message) ||
|
|
!COOLProtocol::getTokenStringFromMessage(message, "id", id))
|
|
{
|
|
break;
|
|
}
|
|
|
|
_queue.erase(_queue.begin());
|
|
_queue.push_back(front);
|
|
}
|
|
}
|
|
|
|
KitQueue::Payload KitQueue::get()
|
|
{
|
|
LOG_TRC("KitQueue depth: " << _queue.size());
|
|
|
|
const Payload front = _queue.front();
|
|
|
|
std::string msg(front.data(), front.size());
|
|
|
|
std::string id;
|
|
bool isTile = COOLProtocol::matchPrefix("tile", msg);
|
|
bool isPreview = isTile && COOLProtocol::getTokenStringFromMessage(msg, "id", id);
|
|
if (!isTile || isPreview)
|
|
{
|
|
// Don't combine non-tiles or tiles with id.
|
|
LOG_TRC("KitQueue res: " << COOLProtocol::getAbbreviatedMessage(msg));
|
|
_queue.erase(_queue.begin());
|
|
|
|
// de-prioritize the other tiles with id - usually the previews in
|
|
// Impress
|
|
if (isPreview)
|
|
deprioritizePreviews();
|
|
|
|
return front;
|
|
}
|
|
|
|
// We are handling a tile; first try to find one that is at the cursor's
|
|
// position, otherwise handle the one that is at the front
|
|
int prioritized = 0;
|
|
int prioritySoFar = -1;
|
|
for (size_t i = 0; i < _queue.size(); ++i)
|
|
{
|
|
auto& it = _queue[i];
|
|
const std::string prio(it.data(), it.size());
|
|
|
|
// avoid starving - stop the search when we reach a non-tile,
|
|
// otherwise we may keep growing the queue of unhandled stuff (both
|
|
// tiles and non-tiles)
|
|
if (!COOLProtocol::matchPrefix("tile", prio) ||
|
|
COOLProtocol::getTokenStringFromMessage(prio, "id", id))
|
|
{
|
|
break;
|
|
}
|
|
|
|
const int p = priority(prio);
|
|
if (p > prioritySoFar)
|
|
{
|
|
prioritySoFar = p;
|
|
prioritized = i;
|
|
msg = prio;
|
|
|
|
// found the highest priority already?
|
|
if (prioritySoFar == static_cast<int>(_viewOrder.size()) - 1)
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
_queue.erase(_queue.begin() + prioritized);
|
|
|
|
std::vector<TileDesc> tiles;
|
|
tiles.emplace_back(TileDesc::parse(msg));
|
|
|
|
// Combine as many tiles as possible with the top one.
|
|
for (size_t i = 0; i < _queue.size(); )
|
|
{
|
|
auto& it = _queue[i];
|
|
msg = std::string(it.data(), it.size());
|
|
if (!COOLProtocol::matchPrefix("tile", msg) ||
|
|
COOLProtocol::getTokenStringFromMessage(msg, "id", id))
|
|
{
|
|
// Don't combine non-tiles or tiles with id.
|
|
++i;
|
|
continue;
|
|
}
|
|
|
|
TileDesc tile2 = TileDesc::parse(msg);
|
|
LOG_TRC("Combining candidate: " << COOLProtocol::getAbbreviatedMessage(msg));
|
|
|
|
// Check if it's on the same row.
|
|
if (tiles[0].canCombine(tile2))
|
|
{
|
|
tiles.emplace_back(tile2);
|
|
_queue.erase(_queue.begin() + i);
|
|
}
|
|
else
|
|
{
|
|
++i;
|
|
}
|
|
}
|
|
|
|
LOG_TRC("Combined " << tiles.size() << " tiles, leaving " << _queue.size() << " in queue.");
|
|
|
|
if (tiles.size() == 1)
|
|
{
|
|
msg = tiles[0].serialize("tile");
|
|
LOG_TRC("KitQueue res: " << COOLProtocol::getAbbreviatedMessage(msg));
|
|
return Payload(msg.data(), msg.data() + msg.size());
|
|
}
|
|
|
|
// n^2 but lists are short.
|
|
for (size_t i = 0; i < tiles.size() - 1; ++i)
|
|
{
|
|
const auto &a = tiles[i];
|
|
for (size_t j = i + 1; j < tiles.size();)
|
|
{
|
|
const auto &b = tiles[j];
|
|
assert(a.getPart() == b.getPart());
|
|
assert(a.getEditMode() == b.getEditMode());
|
|
assert(a.getWidth() == b.getWidth());
|
|
assert(a.getHeight() == b.getHeight());
|
|
assert(a.getTileWidth() == b.getTileWidth());
|
|
assert(a.getTileHeight() == b.getTileHeight());
|
|
if (a.getTilePosX() == b.getTilePosX() &&
|
|
a.getTilePosY() == b.getTilePosY())
|
|
{
|
|
LOG_TRC("KitQueue: dropping duplicate tile: " <<
|
|
j << " vs. " << i << " at: " <<
|
|
a.getTilePosX() << "," << b.getTilePosY());
|
|
tiles.erase(tiles.begin() + j);
|
|
}
|
|
else
|
|
j++;
|
|
}
|
|
}
|
|
|
|
TileCombined combined = TileCombined::create(tiles);
|
|
assert(!combined.hasDuplicates());
|
|
std::string tileCombined = combined.serialize("tilecombine");
|
|
LOG_TRC("KitQueue res: " << COOLProtocol::getAbbreviatedMessage(tileCombined));
|
|
return Payload(tileCombined.data(), tileCombined.data() + tileCombined.size());
|
|
}
|
|
|
|
std::string KitQueue::combineTextInput(const StringVector& tokens)
|
|
{
|
|
std::string id;
|
|
std::string text;
|
|
if (!COOLProtocol::getTokenString(tokens, "id", id) ||
|
|
!COOLProtocol::getTokenString(tokens, "text", text))
|
|
return std::string();
|
|
|
|
int i = _queue.size() - 1;
|
|
while (i >= 0)
|
|
{
|
|
auto& it = _queue[i];
|
|
|
|
const std::string queuedMessage(it.data(), it.size());
|
|
StringVector queuedTokens = StringVector::tokenize(it.data(), it.size());
|
|
|
|
// If any messages of these types are present before the current ("textinput") message,
|
|
// no combination is possible.
|
|
if (queuedTokens.size() == 1 ||
|
|
(queuedTokens.equals(0, tokens, 0) &&
|
|
(queuedTokens.equals(1, "key") ||
|
|
queuedTokens.equals(1, "mouse") ||
|
|
queuedTokens.equals(1, "removetextcontext") ||
|
|
queuedTokens.equals(1, "windowkey"))))
|
|
return std::string();
|
|
|
|
std::string queuedId;
|
|
std::string queuedText;
|
|
if (queuedTokens.equals(0, tokens, 0) &&
|
|
queuedTokens.equals(1, "textinput") &&
|
|
COOLProtocol::getTokenString(queuedTokens, "id", queuedId) &&
|
|
queuedId == id &&
|
|
COOLProtocol::getTokenString(queuedTokens, "text", queuedText))
|
|
{
|
|
// Remove the queued textinput message and combine it with the current one
|
|
_queue.erase(_queue.begin() + i);
|
|
|
|
std::string newMsg;
|
|
newMsg.reserve(it.size() * 2);
|
|
newMsg.append(queuedTokens[0]);
|
|
newMsg.append(" textinput id=");
|
|
newMsg.append(id);
|
|
newMsg.append(" text=");
|
|
newMsg.append(queuedText);
|
|
newMsg.append(text);
|
|
|
|
LOG_TRC("Combined [" << queuedMessage << "] with current message to [" << newMsg
|
|
<< ']');
|
|
|
|
return newMsg;
|
|
}
|
|
|
|
--i;
|
|
}
|
|
|
|
return std::string();
|
|
}
|
|
|
|
std::string KitQueue::combineRemoveText(const StringVector& tokens)
|
|
{
|
|
std::string id;
|
|
int before = 0;
|
|
int after = 0;
|
|
if (!COOLProtocol::getTokenString(tokens, "id", id) ||
|
|
!COOLProtocol::getTokenInteger(tokens, "before", before) ||
|
|
!COOLProtocol::getTokenInteger(tokens, "after", after))
|
|
return std::string();
|
|
|
|
int i = _queue.size() - 1;
|
|
while (i >= 0)
|
|
{
|
|
auto& it = _queue[i];
|
|
|
|
const std::string queuedMessage(it.data(), it.size());
|
|
StringVector queuedTokens = StringVector::tokenize(it.data(), it.size());
|
|
|
|
// If any messages of these types are present before the current (removetextcontext)
|
|
// message, no combination is possible.
|
|
if (queuedTokens.size() == 1 ||
|
|
(queuedTokens.equals(0, tokens, 0) &&
|
|
(queuedTokens.equals(1, "key") ||
|
|
queuedTokens.equals(1, "mouse") ||
|
|
queuedTokens.equals(1, "textinput") ||
|
|
queuedTokens.equals(1, "windowkey"))))
|
|
return std::string();
|
|
|
|
std::string queuedId;
|
|
int queuedBefore = 0;
|
|
int queuedAfter = 0;
|
|
if (queuedTokens.equals(0, tokens, 0) &&
|
|
queuedTokens.equals(1, "removetextcontext") &&
|
|
COOLProtocol::getTokenStringFromMessage(queuedMessage, "id", queuedId) &&
|
|
queuedId == id &&
|
|
COOLProtocol::getTokenIntegerFromMessage(queuedMessage, "before", queuedBefore) &&
|
|
COOLProtocol::getTokenIntegerFromMessage(queuedMessage, "after", queuedAfter))
|
|
{
|
|
// Remove the queued removetextcontext message and combine it with the current one
|
|
_queue.erase(_queue.begin() + i);
|
|
|
|
std::string newMsg = queuedTokens[0] + " removetextcontext id=" + id +
|
|
" before=" + std::to_string(queuedBefore + before) +
|
|
" after=" + std::to_string(queuedAfter + after);
|
|
|
|
LOG_TRC("Combined [" << queuedMessage << "] with current message to [" << newMsg << "]");
|
|
|
|
return newMsg;
|
|
}
|
|
|
|
--i;
|
|
}
|
|
|
|
return std::string();
|
|
}
|
|
|
|
void KitQueue::updateCursorPosition(int viewId, int part, int x, int y, int width, int height)
|
|
{
|
|
const KitQueue::CursorPosition cursorPosition = CursorPosition(part, x, y, width, height);
|
|
|
|
auto it = _cursorPositions.lower_bound(viewId);
|
|
if (it != _cursorPositions.end() && it->first == viewId)
|
|
{
|
|
it->second = cursorPosition;
|
|
}
|
|
else
|
|
{
|
|
_cursorPositions.insert(it, std::make_pair(viewId, cursorPosition));
|
|
}
|
|
|
|
// Move to front, so the current front view
|
|
// becomes the second.
|
|
const auto view = std::find(_viewOrder.begin(), _viewOrder.end(), viewId);
|
|
if (view != _viewOrder.end())
|
|
_viewOrder.erase(view);
|
|
|
|
_viewOrder.push_back(viewId);
|
|
}
|
|
|
|
void KitQueue::removeCursorPosition(int viewId)
|
|
{
|
|
const auto view = std::find(_viewOrder.begin(), _viewOrder.end(), viewId);
|
|
if (view != _viewOrder.end())
|
|
_viewOrder.erase(view);
|
|
|
|
_cursorPositions.erase(viewId);
|
|
}
|
|
|
|
void KitQueue::dumpState(std::ostream& oss)
|
|
{
|
|
oss << "\ttileQueue:"
|
|
<< "\n\t\tcursorPositions:";
|
|
for (const auto &it : _cursorPositions)
|
|
{
|
|
oss << "\n\t\t\tviewId: "
|
|
<< it.first
|
|
<< " part: " << it.second.getPart()
|
|
<< " x: " << it.second.getX()
|
|
<< " y: " << it.second.getY()
|
|
<< " width: " << it.second.getWidth()
|
|
<< " height: " << it.second.getHeight();
|
|
}
|
|
|
|
oss << "\n\t\tviewOrder: [";
|
|
std::string separator;
|
|
for (const auto& viewId : _viewOrder)
|
|
{
|
|
oss << separator << viewId;
|
|
separator = ", ";
|
|
}
|
|
oss << "]\n";
|
|
|
|
oss << "\tQueue size: " << _queue.size() << "\n";
|
|
size_t i = 0;
|
|
for (Payload &it : _queue)
|
|
oss << "\t\t" << i++ << ": " << COOLProtocol::getFirstLine(it) << "\n";
|
|
|
|
oss << "\tCallbacks size: " << _callbacks.size() << "\n";
|
|
i = 0;
|
|
for (auto &it : _callbacks)
|
|
oss << "\t\t" << i++ << ": " << it << "\n";
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|