You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
157 lines
5.1 KiB
157 lines
5.1 KiB
/* |
|
This file is part of Konsole, an X terminal. |
|
|
|
Copyright 2007-2008 by Robert Knight <robertknight@gmail.com> |
|
|
|
This program is free software; you can redistribute it and/or modify |
|
it under the terms of the GNU General Public License as published by |
|
the Free Software Foundation; either version 2 of the License, or |
|
(at your option) any later version. |
|
|
|
This program is distributed in the hope that it will be useful, |
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
GNU General Public License for more details. |
|
|
|
You should have received a copy of the GNU General Public License |
|
along with this program; if not, write to the Free Software |
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
02110-1301 USA. |
|
*/ |
|
|
|
// Own |
|
#include "ExtendedCharTable.h" |
|
|
|
#include "konsoledebug.h" |
|
|
|
// Konsole |
|
#include "TerminalDisplay.h" |
|
#include "SessionManager.h" |
|
#include "Session.h" |
|
#include "Screen.h" |
|
|
|
using namespace Konsole; |
|
|
|
ExtendedCharTable::ExtendedCharTable() : |
|
_extendedCharTable(QHash<uint, uint *>()) |
|
{ |
|
} |
|
|
|
ExtendedCharTable::~ExtendedCharTable() |
|
{ |
|
// free all allocated character buffers |
|
QHashIterator<uint, uint *> iter(_extendedCharTable); |
|
while (iter.hasNext()) { |
|
iter.next(); |
|
delete[] iter.value(); |
|
} |
|
} |
|
|
|
// global instance |
|
ExtendedCharTable ExtendedCharTable::instance; |
|
|
|
uint ExtendedCharTable::createExtendedChar(const uint *unicodePoints, ushort length) |
|
{ |
|
// look for this sequence of points in the table |
|
uint hash = extendedCharHash(unicodePoints, length); |
|
const uint initialHash = hash; |
|
bool triedCleaningSolution = false; |
|
|
|
// check existing entry for match |
|
while (_extendedCharTable.contains(hash) && hash != 0) { // 0 has a special meaning for chars so we don't use it |
|
if (extendedCharMatch(hash, unicodePoints, length)) { |
|
// this sequence already has an entry in the table, |
|
// return its hash |
|
return hash; |
|
} else { |
|
// if hash is already used by another, different sequence of unicode character |
|
// points then try next hash |
|
hash++; |
|
|
|
if (hash == initialHash) { |
|
if (!triedCleaningSolution) { |
|
triedCleaningSolution = true; |
|
// All the hashes are full, go to all Screens and try to free any |
|
// This is slow but should happen very rarely |
|
QSet<uint> usedExtendedChars; |
|
const QList<Session *> sessionsList = SessionManager::instance()->sessions(); |
|
for (const Session *s : sessionsList) { |
|
const QList<TerminalDisplay *> displayList = s->views(); |
|
for (const TerminalDisplay *display : displayList) { |
|
usedExtendedChars += display->screenWindow()->screen()->usedExtendedChars(); |
|
} |
|
} |
|
|
|
QHash<uint, uint *>::iterator it = _extendedCharTable.begin(); |
|
QHash<uint, uint *>::iterator itEnd = _extendedCharTable.end(); |
|
while (it != itEnd) { |
|
if (usedExtendedChars.contains(it.key())) { |
|
++it; |
|
} else { |
|
it = _extendedCharTable.erase(it); |
|
} |
|
} |
|
} else { |
|
qCDebug(KonsoleDebug) << "Using all the extended char hashes, going to miss this extended character"; |
|
return 0; |
|
} |
|
} |
|
} |
|
} |
|
|
|
// add the new sequence to the table and |
|
// return that index |
|
auto buffer = new uint[length + 1]; |
|
buffer[0] = length; |
|
for (int i = 0; i < length; i++) { |
|
buffer[i + 1] = unicodePoints[i]; |
|
} |
|
|
|
_extendedCharTable.insert(hash, buffer); |
|
|
|
return hash; |
|
} |
|
|
|
uint *ExtendedCharTable::lookupExtendedChar(uint hash, ushort &length) const |
|
{ |
|
// look up index in table and if found, set the length |
|
// argument and return a pointer to the character sequence |
|
|
|
uint *buffer = _extendedCharTable[hash]; |
|
if (buffer != nullptr) { |
|
length = ushort(buffer[0]); |
|
return buffer + 1; |
|
} else { |
|
length = 0; |
|
return nullptr; |
|
} |
|
} |
|
|
|
uint ExtendedCharTable::extendedCharHash(const uint *unicodePoints, ushort length) const |
|
{ |
|
uint hash = 0; |
|
for (ushort i = 0; i < length; i++) { |
|
hash = 31 * hash + unicodePoints[i]; |
|
} |
|
return hash; |
|
} |
|
|
|
bool ExtendedCharTable::extendedCharMatch(uint hash, const uint *unicodePoints, |
|
ushort length) const |
|
{ |
|
uint *entry = _extendedCharTable[hash]; |
|
|
|
// compare given length with stored sequence length ( given as the first ushort in the |
|
// stored buffer ) |
|
if (entry == nullptr || entry[0] != length) { |
|
return false; |
|
} |
|
// if the lengths match, each character must be checked. the stored buffer starts at |
|
// entry[1] |
|
for (int i = 0; i < length; i++) { |
|
if (entry[i + 1] != unicodePoints[i]) { |
|
return false; |
|
} |
|
} |
|
return true; |
|
}
|
|
|