* Optimize BitFlipPanel * remove namespace in cpp file * improve localization + add tests * add helper to compare ivector * Modify how the control manages AutomationProperties::Name
564 lines
19 KiB
C++
564 lines
19 KiB
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#include "pch.h"
|
|
#include "CopyPasteManager.h"
|
|
#include "Common/TraceLogger.h"
|
|
#include "Common/LocalizationSettings.h"
|
|
|
|
using namespace std;
|
|
using namespace concurrency;
|
|
using namespace CalculatorApp;
|
|
using namespace CalculatorApp::Common;
|
|
using namespace Platform;
|
|
using namespace Windows::Foundation;
|
|
using namespace Windows::System;
|
|
using namespace Windows::ApplicationModel::DataTransfer;
|
|
|
|
String ^ CopyPasteManager::supportedFormats[] = { StandardDataFormats::Text };
|
|
|
|
static constexpr wstring_view c_validCharacterSet{ L"0123456789()+-*/.abcdefABCDEF" };
|
|
|
|
// The below values can not be "constexpr"-ed,
|
|
// as both wstring_view and wchar[] can not be concatenated
|
|
// [\s\x85] means white-space characters
|
|
static const wstring c_wspc = L"[\\s\\x85]*";
|
|
static const wstring c_wspcLParens = c_wspc + L"[(]*" + c_wspc;
|
|
static const wstring c_wspcLParenSigned = c_wspc + L"([-+]?[(])*" + c_wspc;
|
|
static const wstring c_wspcRParens = c_wspc + L"[)]*" + c_wspc;
|
|
static const wstring c_signedDecFloat = L"[-+]?\\d*(\\d|[.])\\d*";
|
|
|
|
// Programmer Mode Integer patterns
|
|
// Support digit separators ` (WinDbg/MASM), ' (C++), and _ (C# and other languages)
|
|
static const wstring c_hexProgrammerChars = L"([a-f]|[A-F]|\\d)+((_|'|`)([a-f]|[A-F]|\\d)+)*";
|
|
static const wstring c_decProgrammerChars = L"\\d+((_|'|`)\\d+)*";
|
|
static const wstring c_octProgrammerChars = L"[0-7]+((_|'|`)[0-7]+)*";
|
|
static const wstring c_binProgrammerChars = L"[0-1]+((_|'|`)[0-1]+)*";
|
|
static const wstring c_uIntSuffixes = L"[uU]?[lL]{0,2}";
|
|
|
|
// RegEx Patterns used by various modes
|
|
static const array<wregex, 1> standardModePatterns = { wregex(c_wspc + c_signedDecFloat + c_wspc) };
|
|
static const array<wregex, 2> scientificModePatterns = {
|
|
wregex(L"(" + c_wspc + L"[-+]?)|(" + c_wspcLParenSigned + L")" + c_signedDecFloat + c_wspcRParens),
|
|
wregex(L"(" + c_wspc + L"[-+]?)|(" + c_wspcLParenSigned + L")" + c_signedDecFloat + L"e[+-]?\\d+" + c_wspcRParens)
|
|
};
|
|
static const array<array<wregex, 5>, 4> programmerModePatterns = {
|
|
{ // Hex numbers like 5F, 4A0C, 0xa9, 0xFFull, 47CDh
|
|
{ wregex(c_wspcLParens + L"(0[xX])?" + c_hexProgrammerChars + c_uIntSuffixes + c_wspcRParens),
|
|
wregex(c_wspcLParens + c_hexProgrammerChars + L"[hH]?" + c_wspcRParens) },
|
|
// Decimal numbers like -145, 145, 0n145, 123ull etc
|
|
{ wregex(c_wspcLParens + L"[-+]?" + c_decProgrammerChars + L"[lL]{0,2}" + c_wspcRParens),
|
|
wregex(c_wspcLParens + L"(0[nN])?" + c_decProgrammerChars + c_uIntSuffixes + c_wspcRParens) },
|
|
// Octal numbers like 06, 010, 0t77, 0o77, 077ull etc
|
|
{ wregex(c_wspcLParens + L"(0[otOT])?" + c_octProgrammerChars + c_uIntSuffixes + c_wspcRParens) },
|
|
// Binary numbers like 011010110, 0010110, 10101001, 1001b, 0b1001, 0y1001, 0b1001ull
|
|
{ wregex(c_wspcLParens + L"(0[byBY])?" + c_binProgrammerChars + c_uIntSuffixes + c_wspcRParens),
|
|
wregex(c_wspcLParens + c_binProgrammerChars + L"[bB]?" + c_wspcRParens) } }
|
|
};
|
|
static const array<wregex, 1> unitConverterPatterns = { wregex(c_wspc + L"[-+]?\\d*[.]?\\d*" + c_wspc) };
|
|
|
|
void CopyPasteManager::CopyToClipboard(String ^ stringToCopy)
|
|
{
|
|
// Copy the string to the clipboard
|
|
auto dataPackage = ref new DataPackage();
|
|
dataPackage->SetText(stringToCopy);
|
|
Clipboard::SetContent(dataPackage);
|
|
}
|
|
|
|
task<String ^> CopyPasteManager::GetStringToPaste(ViewMode mode, CategoryGroupType modeType, int programmerNumberBase, BitLength bitLengthType)
|
|
{
|
|
// Retrieve the text in the clipboard
|
|
auto dataPackageView = Clipboard::GetContent();
|
|
|
|
// TODO: Support all formats supported by ClipboardHasText
|
|
//-- add support to avoid pasting of expressions like 12 34(as of now we allow 1234)
|
|
//-- add support to allow pasting for expressions like .2 , -.2
|
|
//-- add support to allow pasting for expressions like 1.3e12(as of now we allow 1.3e+12)
|
|
|
|
return create_task((dataPackageView->GetTextAsync(::StandardDataFormats::Text)))
|
|
.then(
|
|
[mode, modeType, programmerNumberBase, bitLengthType](String ^ pastedText) {
|
|
return ValidatePasteExpression(pastedText, mode, modeType, programmerNumberBase, bitLengthType);
|
|
},
|
|
task_continuation_context::use_arbitrary());
|
|
}
|
|
|
|
int CopyPasteManager::ClipboardTextFormat()
|
|
{
|
|
const auto dataPackageView = Clipboard::GetContent();
|
|
|
|
for (int i = 0; i < RTL_NUMBER_OF(supportedFormats); i++)
|
|
{
|
|
if (dataPackageView->Contains(supportedFormats[i]))
|
|
{
|
|
return i;
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
String ^ CopyPasteManager::ValidatePasteExpression(String ^ pastedText, ViewMode mode, int programmerNumberBase, BitLength bitLengthType)
|
|
{
|
|
return CopyPasteManager::ValidatePasteExpression(pastedText, mode, NavCategory::GetGroupType(mode), programmerNumberBase, bitLengthType);
|
|
}
|
|
|
|
// return "NoOp" if pastedText is invalid else return pastedText
|
|
|
|
String ^ CopyPasteManager::ValidatePasteExpression(String ^ pastedText, ViewMode mode, CategoryGroupType modeType, int programmerNumberBase, BitLength bitLengthType)
|
|
{
|
|
if (pastedText->Length() > MaxPasteableLength)
|
|
{
|
|
// return NoOp to indicate don't paste anything.
|
|
TraceLogger::GetInstance().LogError(mode, L"CopyPasteManager::ValidatePasteExpression", L"PastedExpressionSizeGreaterThanMaxAllowed");
|
|
return StringReference(PasteErrorString);
|
|
}
|
|
|
|
wstring pasteExpression = pastedText->Data();
|
|
|
|
// Get english translated expression
|
|
String ^ englishString = LocalizationSettings::GetInstance().GetEnglishValueFromLocalizedDigits(pasteExpression);
|
|
|
|
// Removing the spaces, comma separator from the pasteExpression to allow pasting of expressions like 1 + 2+1,333
|
|
pasteExpression = RemoveUnwantedCharsFromWstring(englishString->Data());
|
|
|
|
// If the last character is an = sign, remove it from the pasteExpression to allow evaluating the result on paste.
|
|
if (!pasteExpression.empty() && pasteExpression.back() == L'=')
|
|
{
|
|
pasteExpression = pasteExpression.substr(0, pasteExpression.length() - 1);
|
|
}
|
|
|
|
// Extract operands from the expression to make regex comparison easy and quick. For whole expression it was taking too much of time.
|
|
// Operands vector will have the list of operands in the pasteExpression
|
|
vector<wstring> operands = ExtractOperands(pasteExpression, mode);
|
|
if (operands.empty())
|
|
{
|
|
// return NoOp to indicate don't paste anything.
|
|
return StringReference(PasteErrorString);
|
|
}
|
|
|
|
if (modeType == CategoryGroupType::Converter)
|
|
{
|
|
operands = { pasteExpression };
|
|
}
|
|
|
|
// validate each operand with patterns for different modes
|
|
if (!ExpressionRegExMatch(operands, mode, modeType, programmerNumberBase, bitLengthType))
|
|
{
|
|
TraceLogger::GetInstance().LogError(mode, L"CopyPasteManager::ValidatePasteExpression", L"InvalidExpressionForPresentMode");
|
|
return StringReference(PasteErrorString);
|
|
}
|
|
|
|
return ref new String(pastedText->Data());
|
|
}
|
|
|
|
vector<wstring> CopyPasteManager::ExtractOperands(const wstring& pasteExpression, ViewMode mode)
|
|
{
|
|
vector<wstring> operands{};
|
|
size_t lastIndex = 0;
|
|
bool haveOperator = false;
|
|
bool startExpCounting = false;
|
|
bool startOfExpression = true;
|
|
bool isPreviousOpenParen = false;
|
|
bool isPreviousOperator = false;
|
|
|
|
// This will have the exponent length
|
|
size_t expLength = 0;
|
|
for (size_t i = 0; i < pasteExpression.length(); i++)
|
|
{
|
|
// if the current character is not a valid one don't process it
|
|
if (c_validCharacterSet.find(pasteExpression.at(i)) == wstring_view::npos)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
if (operands.size() >= MaxOperandCount)
|
|
{
|
|
TraceLogger::GetInstance().LogError(mode, L"CopyPasteManager::ExtractOperands", L"OperandCountGreaterThanMaxCount");
|
|
operands.clear();
|
|
return operands;
|
|
}
|
|
|
|
if (startExpCounting)
|
|
{
|
|
if ((pasteExpression.at(i) >= L'0') && (pasteExpression.at(i) <= L'9'))
|
|
{
|
|
expLength++;
|
|
|
|
// to disallow pasting of 1e+12345 as 1e+1234, max exponent that can be pasted is 9999.
|
|
if (expLength > MaxExponentLength)
|
|
{
|
|
TraceLogger::GetInstance().LogError(mode, L"CopyPasteManager::ExtractOperands", L"ExponentLengthGreaterThanMaxLength");
|
|
operands.clear();
|
|
return operands;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ((mode != ViewMode::Programmer) && (pasteExpression.at(i) == L'e'))
|
|
{
|
|
startExpCounting = true;
|
|
}
|
|
|
|
if (((pasteExpression.at(i) == L'+') || (pasteExpression.at(i) == L'-') || (pasteExpression.at(i) == L'*') || (pasteExpression.at(i) == L'/')))
|
|
{
|
|
if ((pasteExpression.at(i) == L'+') || (pasteExpression.at(i) == L'-'))
|
|
{
|
|
// don't break the expression into operands if the encountered character corresponds to sign command(+-)
|
|
if (isPreviousOpenParen || startOfExpression || isPreviousOperator
|
|
|| ((mode != ViewMode::Programmer) && !((i != 0) && (pasteExpression.at(i - 1) != L'e'))))
|
|
{
|
|
isPreviousOperator = false;
|
|
continue;
|
|
}
|
|
}
|
|
|
|
startExpCounting = false;
|
|
expLength = 0;
|
|
haveOperator = true;
|
|
isPreviousOperator = true;
|
|
operands.push_back(pasteExpression.substr(lastIndex, i - lastIndex));
|
|
lastIndex = i + 1;
|
|
}
|
|
else
|
|
{
|
|
isPreviousOperator = false;
|
|
}
|
|
|
|
isPreviousOpenParen = (pasteExpression.at(i) == L'(');
|
|
startOfExpression = false;
|
|
}
|
|
|
|
if (!haveOperator)
|
|
{
|
|
operands.clear();
|
|
operands.push_back(pasteExpression);
|
|
}
|
|
else
|
|
{
|
|
operands.push_back(pasteExpression.substr(lastIndex, pasteExpression.length() - 1));
|
|
}
|
|
|
|
return operands;
|
|
}
|
|
|
|
bool CopyPasteManager::ExpressionRegExMatch(vector<wstring> operands, ViewMode mode, CategoryGroupType modeType, int programmerNumberBase, BitLength bitLengthType)
|
|
{
|
|
if (operands.empty())
|
|
{
|
|
return false;
|
|
}
|
|
|
|
vector<wregex> patterns{};
|
|
|
|
if (mode == ViewMode::Standard)
|
|
{
|
|
patterns.assign(standardModePatterns.begin(), standardModePatterns.end());
|
|
}
|
|
else if (mode == ViewMode::Scientific)
|
|
{
|
|
patterns.assign(scientificModePatterns.begin(), scientificModePatterns.end());
|
|
}
|
|
else if (mode == ViewMode::Programmer)
|
|
{
|
|
patterns.assign(programmerModePatterns[programmerNumberBase - HexBase].begin(), programmerModePatterns[programmerNumberBase - HexBase].end());
|
|
}
|
|
else if (modeType == CategoryGroupType::Converter)
|
|
{
|
|
patterns.assign(unitConverterPatterns.begin(), unitConverterPatterns.end());
|
|
}
|
|
|
|
const auto [maxOperandLength, maxOperandValue] = GetMaxOperandLengthAndValue(mode, modeType, programmerNumberBase, bitLengthType);
|
|
bool expMatched = true;
|
|
|
|
for (const auto& operand : operands)
|
|
{
|
|
// Each operand only needs to match one of the available patterns.
|
|
bool operandMatched = false;
|
|
for (const auto& pattern : patterns)
|
|
{
|
|
operandMatched = operandMatched || regex_match(operand, pattern);
|
|
}
|
|
|
|
if (operandMatched)
|
|
{
|
|
// Remove characters that are valid in the expression but we do not want to include in length calculations
|
|
// or which will break conversion from string-to-ULL.
|
|
const wstring operandValue = SanitizeOperand(operand);
|
|
|
|
// If an operand exceeds the maximum length allowed, break and return.
|
|
if (OperandLength(operandValue, mode, modeType, programmerNumberBase) > maxOperandLength)
|
|
{
|
|
expMatched = false;
|
|
break;
|
|
}
|
|
|
|
// If maxOperandValue is set and the operandValue exceeds it, break and return.
|
|
if (maxOperandValue != 0)
|
|
{
|
|
unsigned long long int operandAsULL = 0;
|
|
if (!TryOperandToULL(operandValue, programmerNumberBase, operandAsULL))
|
|
{
|
|
// Operand was empty, received invalid_argument, or received out_of_range. Input is invalid.
|
|
expMatched = false;
|
|
break;
|
|
}
|
|
|
|
if (operandAsULL > maxOperandValue)
|
|
{
|
|
expMatched = false;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
expMatched = expMatched && operandMatched;
|
|
}
|
|
|
|
return expMatched;
|
|
}
|
|
|
|
pair<size_t, uint64_t> CopyPasteManager::GetMaxOperandLengthAndValue(ViewMode mode, CategoryGroupType modeType, int programmerNumberBase, BitLength bitLengthType)
|
|
{
|
|
constexpr size_t defaultMaxOperandLength = 0;
|
|
constexpr uint64_t defaultMaxValue = 0;
|
|
|
|
if (mode == ViewMode::Standard)
|
|
{
|
|
return make_pair(MaxStandardOperandLength, defaultMaxValue);
|
|
}
|
|
else if (mode == ViewMode::Scientific)
|
|
{
|
|
return make_pair(MaxScientificOperandLength, defaultMaxValue);
|
|
}
|
|
else if (mode == ViewMode::Programmer)
|
|
{
|
|
unsigned int bitLength = 0;
|
|
switch (bitLengthType)
|
|
{
|
|
case BitLength::BitLengthQWord:
|
|
bitLength = 64;
|
|
break;
|
|
case BitLength::BitLengthDWord:
|
|
bitLength = 32;
|
|
break;
|
|
case BitLength::BitLengthWord:
|
|
bitLength = 16;
|
|
break;
|
|
case BitLength::BitLengthByte:
|
|
bitLength = 8;
|
|
break;
|
|
}
|
|
|
|
double bitsPerDigit = 0;
|
|
switch (programmerNumberBase)
|
|
{
|
|
case BinBase:
|
|
bitsPerDigit = log2(2);
|
|
break;
|
|
case OctBase:
|
|
bitsPerDigit = log2(8);
|
|
break;
|
|
case DecBase:
|
|
bitsPerDigit = log2(10);
|
|
break;
|
|
case HexBase:
|
|
bitsPerDigit = log2(16);
|
|
break;
|
|
}
|
|
|
|
unsigned int signBit = (programmerNumberBase == DecBase) ? 1 : 0;
|
|
|
|
const auto maxLength = static_cast<size_t>(ceil((bitLength - signBit) / bitsPerDigit));
|
|
const uint64_t maxValue = UINT64_MAX >> (MaxProgrammerBitLength - (bitLength - signBit));
|
|
|
|
return make_pair(maxLength, maxValue);
|
|
}
|
|
else if (modeType == CategoryGroupType::Converter)
|
|
{
|
|
return make_pair(MaxConverterInputLength, defaultMaxValue);
|
|
}
|
|
|
|
return make_pair(defaultMaxOperandLength, defaultMaxValue);
|
|
}
|
|
|
|
wstring CopyPasteManager::SanitizeOperand(const wstring& operand)
|
|
{
|
|
wchar_t unWantedChars[] = { L'\'', L'_', L'`', L'(', L')', L'-', L'+' };
|
|
|
|
return Utils::RemoveUnwantedCharsFromWstring(operand, unWantedChars, static_cast<int>(size(unWantedChars)));
|
|
}
|
|
|
|
bool CopyPasteManager::TryOperandToULL(const wstring& operand, int numberBase, unsigned long long int& result)
|
|
{
|
|
result = 0;
|
|
|
|
if (operand.length() == 0 || operand.front() == L'-')
|
|
{
|
|
return false;
|
|
}
|
|
|
|
int intBase;
|
|
switch (numberBase)
|
|
{
|
|
case HexBase:
|
|
intBase = 16;
|
|
break;
|
|
case OctBase:
|
|
intBase = 8;
|
|
break;
|
|
case BinBase:
|
|
intBase = 2;
|
|
break;
|
|
default:
|
|
case DecBase:
|
|
intBase = 10;
|
|
break;
|
|
}
|
|
|
|
wstring::size_type size = 0;
|
|
try
|
|
{
|
|
result = stoull(operand, &size, intBase);
|
|
return true;
|
|
}
|
|
catch (const invalid_argument&)
|
|
{
|
|
// Do nothing
|
|
}
|
|
catch (const out_of_range&)
|
|
{
|
|
// Do nothing
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
size_t CopyPasteManager::OperandLength(const wstring& operand, ViewMode mode, CategoryGroupType modeType, int programmerNumberBase)
|
|
{
|
|
if (modeType == CategoryGroupType::Converter)
|
|
{
|
|
return operand.length();
|
|
}
|
|
|
|
switch (mode)
|
|
{
|
|
case ViewMode::Standard:
|
|
case ViewMode::Scientific:
|
|
return StandardScientificOperandLength(operand);
|
|
|
|
case ViewMode::Programmer:
|
|
return ProgrammerOperandLength(operand, programmerNumberBase);
|
|
|
|
default:
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
size_t CopyPasteManager::StandardScientificOperandLength(const wstring& operand)
|
|
{
|
|
const bool hasDecimal = operand.find('.') != wstring::npos;
|
|
|
|
if (hasDecimal)
|
|
{
|
|
if (operand.length() >= 2)
|
|
{
|
|
if ((operand[0] == L'0') && (operand[1] == L'.'))
|
|
{
|
|
return operand.length() - 2;
|
|
}
|
|
else
|
|
{
|
|
return operand.length() - 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
return operand.length();
|
|
}
|
|
|
|
size_t CopyPasteManager::ProgrammerOperandLength(const wstring& operand, int numberBase)
|
|
{
|
|
vector<wstring> prefixes{};
|
|
vector<wstring> suffixes{};
|
|
switch (numberBase)
|
|
{
|
|
case BinBase:
|
|
prefixes = { L"0B", L"0Y" };
|
|
suffixes = { L"B" };
|
|
break;
|
|
case DecBase:
|
|
prefixes = { L"-", L"0N" };
|
|
break;
|
|
case OctBase:
|
|
prefixes = { L"0T", L"0O" };
|
|
break;
|
|
case HexBase:
|
|
prefixes = { L"0X" };
|
|
suffixes = { L"H" };
|
|
break;
|
|
default:
|
|
// No defined prefixes/suffixes
|
|
return 0;
|
|
}
|
|
|
|
// UInt suffixes are common across all modes
|
|
const array<wstring, 5> uintSuffixes = { L"ULL", L"UL", L"LL", L"U", L"L" };
|
|
suffixes.insert(suffixes.end(), uintSuffixes.begin(), uintSuffixes.end());
|
|
|
|
wstring operandUpper = operand;
|
|
transform(operandUpper.begin(), operandUpper.end(), operandUpper.begin(), towupper);
|
|
|
|
size_t len = operand.length();
|
|
|
|
// Detect if there is a suffix and subtract its length
|
|
// Check suffixes first to allow e.g. "0b" to result in length 1 (value 0), rather than length 0 (no value).
|
|
for (const auto& suffix : suffixes)
|
|
{
|
|
if (len < suffix.length())
|
|
{
|
|
continue;
|
|
}
|
|
|
|
if (operandUpper.compare(operandUpper.length() - suffix.length(), suffix.length(), suffix) == 0)
|
|
{
|
|
len -= suffix.length();
|
|
break;
|
|
}
|
|
}
|
|
|
|
// Detect if there is a prefix and subtract its length
|
|
for (const auto& prefix : prefixes)
|
|
{
|
|
if (len < prefix.length())
|
|
{
|
|
continue;
|
|
}
|
|
|
|
if (operandUpper.compare(0, prefix.length(), prefix) == 0)
|
|
{
|
|
len -= prefix.length();
|
|
break;
|
|
}
|
|
}
|
|
|
|
return len;
|
|
}
|
|
|
|
// return wstring after removing characters like space, comma, double quotes, and monetary prefix currency symbols supported by the Windows keyboard:
|
|
// yen or yuan(¥) - 165
|
|
// unspecified currency sign(¤) - 164
|
|
// Ghanaian cedi(₵) - 8373
|
|
// dollar or peso($) - 36
|
|
// colón(₡) - 8353
|
|
// won(₩) - 8361
|
|
// shekel(₪) - 8362
|
|
// naira(₦) - 8358
|
|
// Indian rupee(₹) - 8377
|
|
// pound(£) - 163
|
|
// euro(€) - 8364
|
|
wstring CopyPasteManager::RemoveUnwantedCharsFromWstring(const wstring& input)
|
|
{
|
|
wchar_t unWantedChars[] = { L' ', L',', L'"', 165, 164, 8373, 36, 8353, 8361, 8362, 8358, 8377, 163, 8364, 8234, 8235, 8236, 8237 };
|
|
return Utils::RemoveUnwantedCharsFromWstring(input, unWantedChars, 18);
|
|
}
|