// The MIT License (MIT) // // Copyright (c) 2018 Mateusz Pusz // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. #include #include #include #include #include #include #ifdef MP_UNITS_MODULES import mp_units.core; #else #include #include #endif using namespace mp_units; // clang-format off inline constexpr struct dim_currency : base_dimension<"$"> {} dim_currency; QUANTITY_SPEC(currency, dim_currency); inline constexpr struct euro : named_unit<"EUR", kind_of> {} euro; inline constexpr struct us_dollar : named_unit<"USD", kind_of> {} us_dollar; inline constexpr struct great_british_pound : named_unit<"GBP", kind_of> {} great_british_pound; inline constexpr struct japanese_jen : named_unit<"JPY", kind_of> {} japanese_jen; // clang-format on namespace unit_symbols { inline constexpr auto EUR = euro; inline constexpr auto USD = us_dollar; inline constexpr auto GBP = great_british_pound; inline constexpr auto JPY = japanese_jen; } // namespace unit_symbols static_assert(!std::equality_comparable_with, quantity>); #if 0 // if you have only a few currencies to handle template [[nodiscard]] double exchange_rate() { if constexpr (From == us_dollar && To == euro) return 0.9215; else if constexpr (From == euro && To == us_dollar) return 1.0848; // ... } #else [[nodiscard]] std::string_view to_string_view(Unit auto u) { return u.symbol.ascii().c_str(); } template [[nodiscard]] double exchange_rate() { static std::map, double> rates = { {{"USD", "EUR"}, 0.9215}, {{"EUR", "USD"}, 1.0848}, // ... }; return rates[std::make_pair(to_string_view(From), to_string_view(To))]; } #endif template auto To, ReferenceOf auto From, typename Rep> quantity exchange_to(quantity q) { return static_cast(exchange_rate() * q.numerical_value()) * To; } template auto To, ReferenceOf auto From, auto PO, typename Rep> quantity_point exchange_to(quantity_point q) { return quantity_point{ static_cast(exchange_rate() * q.quantity_from_zero().numerical_value_in(q.unit)) * To}; } int main() { using namespace unit_symbols; quantity_point price_usd{100 * USD}; quantity_point price_euro = exchange_to(price_usd); std::cout << price_usd.quantity_from_zero() << " -> " << price_euro.quantity_from_zero() << "\n"; // std::cout << price_usd.quantity_from_zero() + price_euro.quantity_from_zero() << "\n"; // does // not compile }