Add CMake project, GCC support (#540)
This is extract from #211 that enables compilation with GCC. With #211 now in the state of bitrot, I would rather try approaching it in smaller steps that can be hopefully merged quicker, even if it does not provide full support for all the features #211 provided. This will _compile_ correctly with my (@janisozaur) GCC, but clang is more picky about flexible array members and refuses to compile it yet. I will extract remaining parts of #211 in future PRs. I marked @fwcd as author, as he did most of the work in #211.
This commit is contained in:
parent
98f1da2e9d
commit
fe30c7cabc
11
src/CMakeLists.txt
Normal file
11
src/CMakeLists.txt
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.13)
|
||||||
|
project(calculator CXX)
|
||||||
|
set(CMAKE_CXX_STANDARD 17)
|
||||||
|
|
||||||
|
if(CMAKE_CXX_COMPILER MATCHES ".*clang")
|
||||||
|
# Clang disagress with libstdc++ about constexpr-ness of wstring_view
|
||||||
|
# See https://github.com/Microsoft/calculator/pull/321
|
||||||
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
add_subdirectory(CalcManager)
|
14
src/CalcManager/CEngine/CMakeLists.txt
Normal file
14
src/CalcManager/CEngine/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
target_sources(CalcManager PRIVATE
|
||||||
|
calc.cpp
|
||||||
|
CalcInput.cpp
|
||||||
|
CalcUtils.cpp
|
||||||
|
History.cpp
|
||||||
|
Number.cpp
|
||||||
|
Rational.cpp
|
||||||
|
RationalMath.cpp
|
||||||
|
scicomm.cpp
|
||||||
|
scidisp.cpp
|
||||||
|
scifunc.cpp
|
||||||
|
scioper.cpp
|
||||||
|
sciset.cpp
|
||||||
|
)
|
@ -1,6 +1,5 @@
|
|||||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
|
|
||||||
#include <intsafe.h>
|
|
||||||
#include "Header Files/Rational.h"
|
#include "Header Files/Rational.h"
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
@ -53,8 +52,8 @@ namespace CalcEngine
|
|||||||
|
|
||||||
Rational::Rational(uint64_t ui)
|
Rational::Rational(uint64_t ui)
|
||||||
{
|
{
|
||||||
uint32_t hi = HIDWORD(ui);
|
uint32_t hi = (uint32_t) (((ui) >> 32) & 0xffffffff);
|
||||||
uint32_t lo = LODWORD(ui);
|
uint32_t lo = (uint32_t) ui;
|
||||||
|
|
||||||
Rational temp = (Rational{ hi } << 32) | lo;
|
Rational temp = (Rational{ hi } << 32) | lo;
|
||||||
|
|
||||||
|
11
src/CalcManager/CMakeLists.txt
Normal file
11
src/CalcManager/CMakeLists.txt
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
add_library(CalcManager
|
||||||
|
CalculatorHistory.cpp
|
||||||
|
CalculatorManager.cpp
|
||||||
|
ExpressionCommand.cpp
|
||||||
|
pch.cpp
|
||||||
|
UnitConverter.cpp
|
||||||
|
)
|
||||||
|
target_include_directories(CalcManager PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
||||||
|
|
||||||
|
add_subdirectory(Ratpack)
|
||||||
|
add_subdirectory(CEngine)
|
@ -12,6 +12,10 @@ using namespace CalcEngine;
|
|||||||
static constexpr size_t MAX_HISTORY_ITEMS = 20;
|
static constexpr size_t MAX_HISTORY_ITEMS = 20;
|
||||||
static constexpr size_t SERIALIZED_NUMBER_MINSIZE = 3;
|
static constexpr size_t SERIALIZED_NUMBER_MINSIZE = 3;
|
||||||
|
|
||||||
|
#ifndef _MSC_VER
|
||||||
|
#define __pragma(x)
|
||||||
|
#endif
|
||||||
|
|
||||||
// Converts Memory Command enum value to unsigned char,
|
// Converts Memory Command enum value to unsigned char,
|
||||||
// while ignoring Warning C4309: 'conversion' : truncation of constant value
|
// while ignoring Warning C4309: 'conversion' : truncation of constant value
|
||||||
#define MEMORY_COMMAND_TO_UNSIGNED_CHAR(c) __pragma(warning(push)) __pragma(warning(disable : 4309)) static_cast<unsigned char>(c) __pragma(warning(pop))
|
#define MEMORY_COMMAND_TO_UNSIGNED_CHAR(c) __pragma(warning(push)) __pragma(warning(disable : 4309)) static_cast<unsigned char>(c) __pragma(warning(pop))
|
||||||
|
@ -5,10 +5,10 @@
|
|||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <winerror.h>
|
#include "winerror_cross_platform.h"
|
||||||
#include "Ratpack/CalcErr.h"
|
#include "Ratpack/CalcErr.h"
|
||||||
#include <stdexcept> // for std::out_of_range
|
#include <stdexcept> // for std::out_of_range
|
||||||
#include <sal.h> // for SAL
|
#include "sal_cross_platform.h" // for SAL
|
||||||
|
|
||||||
template <typename TType>
|
template <typename TType>
|
||||||
class CalculatorVector
|
class CalculatorVector
|
||||||
|
@ -16,7 +16,10 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <array>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <string_view>
|
||||||
|
#include <unordered_map>
|
||||||
|
|
||||||
inline constexpr auto IDS_ERRORS_FIRST = 99;
|
inline constexpr auto IDS_ERRORS_FIRST = 99;
|
||||||
|
|
||||||
|
14
src/CalcManager/Ratpack/CMakeLists.txt
Normal file
14
src/CalcManager/Ratpack/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
target_sources(CalcManager PRIVATE
|
||||||
|
basex.cpp
|
||||||
|
conv.cpp
|
||||||
|
exp.cpp
|
||||||
|
fact.cpp
|
||||||
|
itrans.cpp
|
||||||
|
itransh.cpp
|
||||||
|
logic.cpp
|
||||||
|
num.cpp
|
||||||
|
rat.cpp
|
||||||
|
support.cpp
|
||||||
|
trans.cpp
|
||||||
|
transh.cpp
|
||||||
|
)
|
@ -18,7 +18,7 @@
|
|||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <winerror.h>
|
#include "winerror_cross_platform.h"
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <cstring> // for memmove, memcpy
|
#include <cstring> // for memmove, memcpy
|
||||||
#include "ratpak.h"
|
#include "ratpak.h"
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include "CalcErr.h"
|
#include "CalcErr.h"
|
||||||
#include <cstring> // for memmove
|
#include <cstring> // for memmove
|
||||||
#include <sal.h> // for SAL
|
#include "sal_cross_platform.h" // for SAL
|
||||||
|
|
||||||
static constexpr uint32_t BASEXPWR = 31L; // Internal log2(BASEX)
|
static constexpr uint32_t BASEXPWR = 31L; // Internal log2(BASEX)
|
||||||
static constexpr uint32_t BASEX = 0x80000000; // Internal radix used in calculations, hope to raise
|
static constexpr uint32_t BASEX = 0x80000000; // Internal radix used in calculations, hope to raise
|
||||||
|
@ -2,12 +2,12 @@
|
|||||||
// Licensed under the MIT License.
|
// Licensed under the MIT License.
|
||||||
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
#include <cmath>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <algorithm> // for std::sort
|
#include <algorithm> // for std::sort
|
||||||
#include "Command.h"
|
#include "Command.h"
|
||||||
#include "UnitConverter.h"
|
#include "UnitConverter.h"
|
||||||
|
|
||||||
using namespace concurrency;
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace UnitConversionManager;
|
using namespace UnitConversionManager;
|
||||||
|
|
||||||
@ -229,7 +229,7 @@ Unit UnitConverter::StringToUnit(const wstring& w)
|
|||||||
vector<wstring> tokenList = StringToVector(w, L";");
|
vector<wstring> tokenList = StringToVector(w, L";");
|
||||||
assert(tokenList.size() == EXPECTEDSERIALIZEDUNITTOKENCOUNT);
|
assert(tokenList.size() == EXPECTEDSERIALIZEDUNITTOKENCOUNT);
|
||||||
Unit serializedUnit;
|
Unit serializedUnit;
|
||||||
serializedUnit.id = _wtoi(Unquote(tokenList[0]).c_str());
|
serializedUnit.id = wcstol(Unquote(tokenList[0]).c_str(), nullptr, 10);
|
||||||
serializedUnit.name = Unquote(tokenList[1]);
|
serializedUnit.name = Unquote(tokenList[1]);
|
||||||
serializedUnit.accessibleName = serializedUnit.name;
|
serializedUnit.accessibleName = serializedUnit.name;
|
||||||
serializedUnit.abbreviation = Unquote(tokenList[2]);
|
serializedUnit.abbreviation = Unquote(tokenList[2]);
|
||||||
@ -244,7 +244,7 @@ Category UnitConverter::StringToCategory(const wstring& w)
|
|||||||
vector<wstring> tokenList = StringToVector(w, L";");
|
vector<wstring> tokenList = StringToVector(w, L";");
|
||||||
assert(tokenList.size() == EXPECTEDSERIALIZEDCATEGORYTOKENCOUNT);
|
assert(tokenList.size() == EXPECTEDSERIALIZEDCATEGORYTOKENCOUNT);
|
||||||
Category serializedCategory;
|
Category serializedCategory;
|
||||||
serializedCategory.id = _wtoi(Unquote(tokenList[0]).c_str());
|
serializedCategory.id = wcstol(Unquote(tokenList[0]).c_str(), nullptr, 10);
|
||||||
serializedCategory.supportsNegative = (tokenList[1].compare(L"1") == 0);
|
serializedCategory.supportsNegative = (tokenList[1].compare(L"1") == 0);
|
||||||
serializedCategory.name = Unquote(tokenList[2]);
|
serializedCategory.name = Unquote(tokenList[2]);
|
||||||
return serializedCategory;
|
return serializedCategory;
|
||||||
@ -536,30 +536,31 @@ void UnitConverter::SetViewModelCurrencyCallback(_In_ const shared_ptr<IViewMode
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
task<pair<bool, wstring>> UnitConverter::RefreshCurrencyRatios()
|
future<pair<bool, wstring>> UnitConverter::RefreshCurrencyRatios()
|
||||||
{
|
{
|
||||||
shared_ptr<ICurrencyConverterDataLoader> currencyDataLoader = GetCurrencyConverterDataLoader();
|
shared_ptr<ICurrencyConverterDataLoader> currencyDataLoader = GetCurrencyConverterDataLoader();
|
||||||
return create_task([this, currencyDataLoader]() {
|
future<bool> loadDataResult;
|
||||||
if (currencyDataLoader != nullptr)
|
if (currencyDataLoader != nullptr)
|
||||||
{
|
{
|
||||||
return currencyDataLoader->TryLoadDataFromWebOverrideAsync();
|
loadDataResult = currencyDataLoader->TryLoadDataFromWebOverrideAsync();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return task_from_result(false);
|
loadDataResult = async([] { return false; });
|
||||||
}
|
}
|
||||||
})
|
|
||||||
.then(
|
|
||||||
[this, currencyDataLoader](bool didLoad) {
|
|
||||||
wstring timestamp = L"";
|
|
||||||
if (currencyDataLoader != nullptr)
|
|
||||||
{
|
|
||||||
timestamp = currencyDataLoader->GetCurrencyTimestamp();
|
|
||||||
}
|
|
||||||
|
|
||||||
return make_pair(didLoad, timestamp);
|
shared_future<bool> sharedLoadResult = loadDataResult.share();
|
||||||
},
|
return async([this, currencyDataLoader, sharedLoadResult]() {
|
||||||
task_continuation_context::use_default());
|
sharedLoadResult.wait();
|
||||||
|
bool didLoad = sharedLoadResult.get();
|
||||||
|
wstring timestamp = L"";
|
||||||
|
if (currencyDataLoader != nullptr)
|
||||||
|
{
|
||||||
|
timestamp = currencyDataLoader->GetCurrencyTimestamp();
|
||||||
|
}
|
||||||
|
|
||||||
|
return make_pair(didLoad, timestamp);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
shared_ptr<ICurrencyConverterDataLoader> UnitConverter::GetCurrencyConverterDataLoader()
|
shared_ptr<ICurrencyConverterDataLoader> UnitConverter::GetCurrencyConverterDataLoader()
|
||||||
|
@ -5,8 +5,8 @@
|
|||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
#include <ppltasks.h>
|
#include <future>
|
||||||
#include <sal.h> // for SAL
|
#include "sal_cross_platform.h" // for SAL
|
||||||
#include <memory> // for std::shared_ptr
|
#include <memory> // for std::shared_ptr
|
||||||
|
|
||||||
namespace UnitConversionManager
|
namespace UnitConversionManager
|
||||||
@ -211,9 +211,9 @@ namespace UnitConversionManager
|
|||||||
GetCurrencyRatioEquality(_In_ const UnitConversionManager::Unit& unit1, _In_ const UnitConversionManager::Unit& unit2) = 0;
|
GetCurrencyRatioEquality(_In_ const UnitConversionManager::Unit& unit1, _In_ const UnitConversionManager::Unit& unit2) = 0;
|
||||||
virtual std::wstring GetCurrencyTimestamp() = 0;
|
virtual std::wstring GetCurrencyTimestamp() = 0;
|
||||||
|
|
||||||
virtual concurrency::task<bool> TryLoadDataFromCacheAsync() = 0;
|
virtual std::future<bool> TryLoadDataFromCacheAsync() = 0;
|
||||||
virtual concurrency::task<bool> TryLoadDataFromWebAsync() = 0;
|
virtual std::future<bool> TryLoadDataFromWebAsync() = 0;
|
||||||
virtual concurrency::task<bool> TryLoadDataFromWebOverrideAsync() = 0;
|
virtual std::future<bool> TryLoadDataFromWebOverrideAsync() = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
class IUnitConverterVMCallback
|
class IUnitConverterVMCallback
|
||||||
@ -242,7 +242,7 @@ namespace UnitConversionManager
|
|||||||
virtual void SendCommand(Command command) = 0;
|
virtual void SendCommand(Command command) = 0;
|
||||||
virtual void SetViewModelCallback(_In_ const std::shared_ptr<IUnitConverterVMCallback>& newCallback) = 0;
|
virtual void SetViewModelCallback(_In_ const std::shared_ptr<IUnitConverterVMCallback>& newCallback) = 0;
|
||||||
virtual void SetViewModelCurrencyCallback(_In_ const std::shared_ptr<IViewModelCurrencyCallback>& newCallback) = 0;
|
virtual void SetViewModelCurrencyCallback(_In_ const std::shared_ptr<IViewModelCurrencyCallback>& newCallback) = 0;
|
||||||
virtual concurrency::task<std::pair<bool, std::wstring>> RefreshCurrencyRatios() = 0;
|
virtual std::future<std::pair<bool, std::wstring>> RefreshCurrencyRatios() = 0;
|
||||||
virtual void Calculate() = 0;
|
virtual void Calculate() = 0;
|
||||||
virtual void ResetCategoriesAndRatios() = 0;
|
virtual void ResetCategoriesAndRatios() = 0;
|
||||||
};
|
};
|
||||||
@ -265,7 +265,7 @@ namespace UnitConversionManager
|
|||||||
void SendCommand(Command command) override;
|
void SendCommand(Command command) override;
|
||||||
void SetViewModelCallback(_In_ const std::shared_ptr<IUnitConverterVMCallback>& newCallback) override;
|
void SetViewModelCallback(_In_ const std::shared_ptr<IUnitConverterVMCallback>& newCallback) override;
|
||||||
void SetViewModelCurrencyCallback(_In_ const std::shared_ptr<IViewModelCurrencyCallback>& newCallback) override;
|
void SetViewModelCurrencyCallback(_In_ const std::shared_ptr<IViewModelCurrencyCallback>& newCallback) override;
|
||||||
concurrency::task<std::pair<bool, std::wstring>> RefreshCurrencyRatios() override;
|
std::future<std::pair<bool, std::wstring>> RefreshCurrencyRatios() override;
|
||||||
void Calculate() override;
|
void Calculate() override;
|
||||||
void ResetCategoriesAndRatios() override;
|
void ResetCategoriesAndRatios() override;
|
||||||
// IUnitConverter
|
// IUnitConverter
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <intsafe.h>
|
#include <intsafe.h>
|
||||||
#include <list>
|
#include <list>
|
||||||
#include <ppltasks.h>
|
#include <future>
|
||||||
#include <regex>
|
#include <regex>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
19
src/CalcManager/sal_cross_platform.h
Normal file
19
src/CalcManager/sal_cross_platform.h
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#if defined(_WIN32) && defined(_MSC_VER)
|
||||||
|
|
||||||
|
#include <sal.h>
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
// Empty macro definitions for source annotations
|
||||||
|
|
||||||
|
#define _In_opt_
|
||||||
|
#define _Out_opt_
|
||||||
|
#define _In_
|
||||||
|
#define _Out_
|
||||||
|
#define _Inout_
|
||||||
|
#define __in_opt
|
||||||
|
#define _Frees_ptr_opt_
|
||||||
|
|
||||||
|
#endif
|
25
src/CalcManager/winerror_cross_platform.h
Normal file
25
src/CalcManager/winerror_cross_platform.h
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#if defined(_WIN32) && defined(_MSC_VER)
|
||||||
|
|
||||||
|
#include <winerror.h>
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
#include "Ratpack/CalcErr.h"
|
||||||
|
|
||||||
|
#define E_ACCESSDENIED 0x80070005
|
||||||
|
#define E_FAIL 0x80004005
|
||||||
|
#define E_INVALIDARG 0x80070057
|
||||||
|
#define E_OUTOFMEMORY 0x8007000E
|
||||||
|
#define E_POINTER 0x80004003
|
||||||
|
#define E_UNEXPECTED 0x8000FFFF
|
||||||
|
#define E_BOUNDS 0x8000000B
|
||||||
|
#define S_OK 0x0
|
||||||
|
#define S_FALSE 0x1
|
||||||
|
|
||||||
|
#define SUCCEEDED(hr) (((ResultCode)(hr)) >= 0)
|
||||||
|
#define FAILED(hr) (((ResultCode)(hr)) < 0)
|
||||||
|
#define SCODE_CODE(sc) ((sc) & 0xFFFF)
|
||||||
|
|
||||||
|
#endif
|
@ -191,7 +191,7 @@ void CurrencyDataLoader::LoadData()
|
|||||||
if (!LoadFinished())
|
if (!LoadFinished())
|
||||||
{
|
{
|
||||||
create_task([this]() -> task<bool> {
|
create_task([this]() -> task<bool> {
|
||||||
vector<function<task<bool>()>> loadFunctions = {
|
vector<function<future<bool>()>> loadFunctions = {
|
||||||
[this]() { return TryLoadDataFromCacheAsync(); },
|
[this]() { return TryLoadDataFromCacheAsync(); },
|
||||||
[this]() { return TryLoadDataFromWebAsync(); },
|
[this]() { return TryLoadDataFromWebAsync(); },
|
||||||
};
|
};
|
||||||
@ -307,7 +307,7 @@ pair<wstring, wstring> CurrencyDataLoader::GetCurrencyRatioEquality(_In_ const U
|
|||||||
}
|
}
|
||||||
|
|
||||||
#pragma optimize("", off) // Turn off optimizations to work around DevDiv 393321
|
#pragma optimize("", off) // Turn off optimizations to work around DevDiv 393321
|
||||||
task<bool> CurrencyDataLoader::TryLoadDataFromCacheAsync()
|
future<bool> CurrencyDataLoader::TryLoadDataFromCacheAsync()
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@ -349,7 +349,7 @@ task<bool> CurrencyDataLoader::TryLoadDataFromCacheAsync()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
task<bool> CurrencyDataLoader::TryFinishLoadFromCacheAsync()
|
future<bool> CurrencyDataLoader::TryFinishLoadFromCacheAsync()
|
||||||
{
|
{
|
||||||
auto localSettings = ApplicationData::Current->LocalSettings;
|
auto localSettings = ApplicationData::Current->LocalSettings;
|
||||||
if (localSettings == nullptr)
|
if (localSettings == nullptr)
|
||||||
@ -386,7 +386,7 @@ task<bool> CurrencyDataLoader::TryFinishLoadFromCacheAsync()
|
|||||||
co_return true;
|
co_return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
task<bool> CurrencyDataLoader::TryLoadDataFromWebAsync()
|
future<bool> CurrencyDataLoader::TryLoadDataFromWebAsync()
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@ -459,7 +459,7 @@ task<bool> CurrencyDataLoader::TryLoadDataFromWebAsync()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
task<bool> CurrencyDataLoader::TryLoadDataFromWebOverrideAsync()
|
future<bool> CurrencyDataLoader::TryLoadDataFromWebOverrideAsync()
|
||||||
{
|
{
|
||||||
m_meteredOverrideSet = true;
|
m_meteredOverrideSet = true;
|
||||||
bool didLoad = co_await TryLoadDataFromWebAsync();
|
bool didLoad = co_await TryLoadDataFromWebAsync();
|
||||||
|
@ -76,9 +76,9 @@ namespace CalculatorApp
|
|||||||
GetCurrencyRatioEquality(_In_ const UnitConversionManager::Unit& unit1, _In_ const UnitConversionManager::Unit& unit2) override;
|
GetCurrencyRatioEquality(_In_ const UnitConversionManager::Unit& unit1, _In_ const UnitConversionManager::Unit& unit2) override;
|
||||||
std::wstring GetCurrencyTimestamp() override;
|
std::wstring GetCurrencyTimestamp() override;
|
||||||
|
|
||||||
concurrency::task<bool> TryLoadDataFromCacheAsync() override;
|
std::future<bool> TryLoadDataFromCacheAsync() override;
|
||||||
concurrency::task<bool> TryLoadDataFromWebAsync() override;
|
std::future<bool> TryLoadDataFromWebAsync() override;
|
||||||
concurrency::task<bool> TryLoadDataFromWebOverrideAsync() override;
|
std::future<bool> TryLoadDataFromWebOverrideAsync() override;
|
||||||
// ICurrencyConverterDataLoader
|
// ICurrencyConverterDataLoader
|
||||||
|
|
||||||
void OnNetworkBehaviorChanged(CalculatorApp::NetworkAccessBehavior newBehavior);
|
void OnNetworkBehaviorChanged(CalculatorApp::NetworkAccessBehavior newBehavior);
|
||||||
@ -87,7 +87,7 @@ namespace CalculatorApp
|
|||||||
void ResetLoadStatus();
|
void ResetLoadStatus();
|
||||||
void NotifyDataLoadFinished(bool didLoad);
|
void NotifyDataLoadFinished(bool didLoad);
|
||||||
|
|
||||||
concurrency::task<bool> TryFinishLoadFromCacheAsync();
|
std::future<bool> TryFinishLoadFromCacheAsync();
|
||||||
|
|
||||||
bool TryParseWebResponses(
|
bool TryParseWebResponses(
|
||||||
_In_ Platform::String ^ staticDataJson,
|
_In_ Platform::String ^ staticDataJson,
|
||||||
|
@ -675,7 +675,7 @@ void UnitConverterViewModel::RefreshCurrencyRatios()
|
|||||||
String ^ announcement = AppResourceProvider::GetInstance().GetResourceString(UnitConverterResourceKeys::UpdatingCurrencyRates);
|
String ^ announcement = AppResourceProvider::GetInstance().GetResourceString(UnitConverterResourceKeys::UpdatingCurrencyRates);
|
||||||
Announcement = CalculatorAnnouncement::GetUpdateCurrencyRatesAnnouncement(announcement);
|
Announcement = CalculatorAnnouncement::GetUpdateCurrencyRatesAnnouncement(announcement);
|
||||||
|
|
||||||
auto refreshTask = create_task(m_model->RefreshCurrencyRatios());
|
auto refreshTask = create_task([this] { return m_model->RefreshCurrencyRatios().get(); });
|
||||||
refreshTask.then(
|
refreshTask.then(
|
||||||
[this](const pair<bool, wstring>& refreshResult) {
|
[this](const pair<bool, wstring>& refreshResult) {
|
||||||
bool didLoad = refreshResult.first;
|
bool didLoad = refreshResult.first;
|
||||||
|
@ -47,7 +47,7 @@ namespace CalculatorUnitTests
|
|||||||
void ResetCategoriesAndRatios() override
|
void ResetCategoriesAndRatios() override
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
concurrency::task<std::pair<bool, std::wstring>> RefreshCurrencyRatios() override
|
std::future<std::pair<bool, std::wstring>> RefreshCurrencyRatios() override
|
||||||
{
|
{
|
||||||
co_return std::make_pair(true, L"");
|
co_return std::make_pair(true, L"");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user