Files
Upsilon/apps/shared/toolbox_helpers.cpp
2019-04-29 18:01:30 +02:00

83 lines
2.5 KiB
C++

#include "toolbox_helpers.h"
#include <apps/i18n.h>
#include <ion/unicode/utf8_decoder.h>
#include <string.h>
#include <assert.h>
namespace Shared {
namespace ToolboxHelpers {
int CursorIndexInCommandText(const char * text) {
Ion::UTF8Decoder decoder(text);
size_t index = 0;
const char * currentPointer = text;
CodePoint codePoint = decoder.nextCodePoint();
const char * nextPointer = decoder.stringPosition();
while (codePoint != UCodePointNull) {
if (codePoint == '(' || codePoint == '\'') {
return index + 1;
}
if (codePoint == '[') {
return index;
}
index+= nextPointer - currentPointer;
currentPointer = nextPointer;
codePoint = decoder.nextCodePoint();
nextPointer = decoder.stringPosition();
}
return index;
}
void TextToInsertForCommandMessage(I18n::Message message, char * buffer, int bufferSize, bool replaceArgsWithEmptyChar) {
TextToInsertForCommandText(I18n::translate(message), buffer, bufferSize, replaceArgsWithEmptyChar);
}
void TextToInsertForCommandText(const char * command, char * buffer, int bufferSize, bool replaceArgsWithEmptyChar) {
int index = 0;
int numberOfOpenParentheses = 0;
int numberOfOpenBrackets = 0;
bool insideQuote = false;
bool argumentAlreadyReplaced = false;
Ion::UTF8Decoder decoder(command);
CodePoint codePoint = decoder.nextCodePoint();
while (codePoint != UCodePointNull) {
if (codePoint == ')') {
numberOfOpenParentheses--;
} else if (codePoint == ']') {
numberOfOpenBrackets--;
}
if ((!insideQuote || codePoint == '\'')
&& ((numberOfOpenParentheses == 0 && numberOfOpenBrackets == 0)
|| codePoint == ','
|| (numberOfOpenBrackets > 0
&& (codePoint == ','
|| codePoint == '['
|| codePoint == ']'))))
{
assert(index < bufferSize);
if (argumentAlreadyReplaced) {
argumentAlreadyReplaced = false;
}
index += Ion::UTF8Decoder::CodePointToChars(codePoint, buffer + index, bufferSize - index);
} else {
if (replaceArgsWithEmptyChar && !argumentAlreadyReplaced) {
index += Ion::UTF8Decoder::CodePointToChars(UCodePointEmpty, buffer + index, bufferSize - index);
argumentAlreadyReplaced = true;
}
}
if (codePoint == '(') {
numberOfOpenParentheses++;
} else if (codePoint == '[') {
numberOfOpenBrackets++;
} else if (codePoint == '\'') {
insideQuote = !insideQuote;
}
codePoint = decoder.nextCodePoint();
}
buffer[index] = 0;
}
}
}