2018-04-28 13:04:30 +00:00
|
|
|
// nameof example
|
2018-03-17 03:09:49 +00:00
|
|
|
//
|
2018-03-24 08:58:08 +00:00
|
|
|
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
|
2018-04-01 20:48:03 +00:00
|
|
|
// Copyright (c) 2018 Daniil Goncharov <neargye@gmail.com>.
|
2018-03-17 03:09:49 +00:00
|
|
|
//
|
2018-03-24 08:58:08 +00:00
|
|
|
// 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:
|
2018-03-17 03:09:49 +00:00
|
|
|
//
|
2018-03-24 08:58:08 +00:00
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
2018-03-17 03:27:47 +00:00
|
|
|
// copies or substantial portions of the Software.
|
2018-03-17 03:09:49 +00:00
|
|
|
//
|
2018-03-24 08:58:08 +00:00
|
|
|
// 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
|
2018-03-17 03:27:47 +00:00
|
|
|
// SOFTWARE.
|
|
|
|
|
2018-03-17 04:31:59 +00:00
|
|
|
#include <nameof.hpp>
|
2018-04-10 19:32:51 +00:00
|
|
|
|
2018-03-27 09:03:12 +00:00
|
|
|
#include <iostream>
|
2018-05-11 20:31:52 +00:00
|
|
|
#include <string>
|
2018-03-27 09:03:12 +00:00
|
|
|
#include <stdexcept>
|
2018-07-13 19:02:03 +00:00
|
|
|
#include <typeinfo>
|
2018-03-17 03:27:47 +00:00
|
|
|
|
2018-05-11 20:52:30 +00:00
|
|
|
constexpr long double operator"" _deg(long double deg) {
|
|
|
|
return deg * 3.141592 / 180.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string operator"" _string(const char* str, std::size_t) {
|
|
|
|
return std::string{str};
|
|
|
|
}
|
|
|
|
|
2018-03-17 03:27:47 +00:00
|
|
|
struct SomeStruct {
|
2018-07-13 19:02:03 +00:00
|
|
|
int somefield = 0;
|
2018-04-10 18:09:44 +00:00
|
|
|
|
2018-08-02 14:51:44 +00:00
|
|
|
void SomeMethod1(const int i) { somefield = i; }
|
2018-04-10 18:09:44 +00:00
|
|
|
|
2018-08-02 14:51:44 +00:00
|
|
|
int SomeMethod2() const { return somefield; }
|
2018-03-17 03:27:47 +00:00
|
|
|
};
|
|
|
|
|
2018-05-28 12:40:20 +00:00
|
|
|
void SomeMethod3() {
|
|
|
|
std::cout << NAMEOF(SomeMethod3) << " no called!" << std::endl;
|
|
|
|
}
|
2018-03-18 15:28:53 +00:00
|
|
|
|
2018-08-28 14:00:59 +00:00
|
|
|
template <typename T, typename U>
|
|
|
|
std::string SomeMethod4(U value) {
|
|
|
|
return std::string(NAMEOF(SomeMethod4<T, U>)).append("<").append(NAMEOF_TYPE_T(T)).append(", ").append(NAMEOF_TYPE_T(U)).append(">(").append(NAMEOF_TYPE_T(U)).append(" value)");
|
2018-07-13 19:02:03 +00:00
|
|
|
}
|
2018-07-13 15:16:58 +00:00
|
|
|
|
2018-08-02 14:51:44 +00:00
|
|
|
template <typename T>
|
|
|
|
class SomeClass {
|
|
|
|
public:
|
2018-08-03 12:19:51 +00:00
|
|
|
void SomeMethod5() const {
|
2018-08-27 13:40:23 +00:00
|
|
|
std::cout << nameof::NameofType<T>() << std::endl;
|
2018-08-03 12:19:51 +00:00
|
|
|
}
|
2018-08-02 14:51:44 +00:00
|
|
|
|
|
|
|
template <typename C>
|
2018-08-03 12:19:51 +00:00
|
|
|
C SomeMethod6() const {
|
|
|
|
C t{};
|
|
|
|
std::cout << NAMEOF_TYPE(t) << std::endl;
|
|
|
|
return t;
|
|
|
|
}
|
2018-08-02 14:51:44 +00:00
|
|
|
};
|
|
|
|
|
2018-03-17 09:12:59 +00:00
|
|
|
struct Long {
|
|
|
|
struct LL {
|
2018-07-13 19:02:03 +00:00
|
|
|
int field = 0;
|
2018-03-17 08:04:35 +00:00
|
|
|
};
|
2018-04-10 18:09:44 +00:00
|
|
|
LL ll;
|
2018-03-17 08:04:35 +00:00
|
|
|
};
|
|
|
|
|
2018-03-27 14:00:06 +00:00
|
|
|
enum class Color { RED, GREEN, BLUE };
|
|
|
|
|
2018-08-26 20:31:16 +00:00
|
|
|
SomeStruct structvar;
|
2018-05-03 19:46:41 +00:00
|
|
|
Long othervar;
|
2018-08-26 20:31:16 +00:00
|
|
|
SomeStruct* ptrvar = &structvar;
|
2018-03-17 03:27:47 +00:00
|
|
|
|
2018-05-03 19:46:41 +00:00
|
|
|
int main() {
|
2018-08-26 20:31:16 +00:00
|
|
|
// Compile-time nameof.
|
|
|
|
constexpr auto constexpr_work_fine = NAMEOF(structvar);
|
|
|
|
static_assert("structvar" == constexpr_work_fine, "");
|
2018-07-13 15:27:55 +00:00
|
|
|
|
2018-08-28 14:00:59 +00:00
|
|
|
std::cout << SomeMethod4<int>(structvar) << std::endl; // SomeMethod4<int>(SomeStruct value)
|
|
|
|
|
2018-08-03 12:19:51 +00:00
|
|
|
// Enum name.
|
2018-03-27 14:00:06 +00:00
|
|
|
std::cout << NAMEOF(Color::RED) << std::endl; // RED
|
2018-07-13 15:27:55 +00:00
|
|
|
|
2018-08-03 12:19:51 +00:00
|
|
|
// Variable name.
|
2018-08-26 20:31:16 +00:00
|
|
|
std::cout << NAMEOF(structvar) << std::endl; // structvar
|
|
|
|
std::cout << NAMEOF(::structvar) << std::endl; // structvar
|
2018-07-13 15:27:55 +00:00
|
|
|
|
2018-08-03 12:19:51 +00:00
|
|
|
// Member name.
|
2018-08-26 20:31:16 +00:00
|
|
|
std::cout << NAMEOF(structvar.somefield) << std::endl; // somefield
|
|
|
|
std::cout << NAMEOF((&structvar)->somefield) << std::endl; // somefield
|
2018-04-10 18:09:44 +00:00
|
|
|
std::cout << NAMEOF(othervar.ll.field) << std::endl; // field
|
2018-07-13 15:27:55 +00:00
|
|
|
|
2018-08-03 12:19:51 +00:00
|
|
|
// Function name.
|
2018-08-02 14:51:44 +00:00
|
|
|
std::cout << NAMEOF(&SomeStruct::SomeMethod1) << std::endl; // SomeMethod1
|
2018-03-18 15:32:55 +00:00
|
|
|
std::cout << NAMEOF(&SomeStruct::SomeMethod2) << std::endl; // SomeMethod2
|
2018-03-18 15:28:53 +00:00
|
|
|
std::cout << NAMEOF(SomeMethod3) << std::endl; // SomeMethod3
|
2018-08-26 23:57:25 +00:00
|
|
|
|
2018-08-28 14:00:59 +00:00
|
|
|
std::cout << NAMEOF(SomeMethod4<int, float>(1.0f)) << std::endl; // SomeMethod4
|
|
|
|
std::cout << NAMEOF(SomeMethod4<int, float>) << std::endl; // SomeMethod4
|
|
|
|
std::cout << NAMEOF_FULL(SomeMethod4<int, float>) << std::endl; // SomeMethod4<int, float>
|
2018-08-26 23:57:25 +00:00
|
|
|
|
2018-08-02 14:51:44 +00:00
|
|
|
std::cout << NAMEOF(&SomeClass<int>::SomeMethod5) << std::endl; // SomeMethod5
|
2018-08-26 23:57:25 +00:00
|
|
|
|
2018-08-02 14:51:44 +00:00
|
|
|
std::cout << NAMEOF(&SomeClass<int>::SomeMethod6<long int>) << std::endl; // SomeMethod6
|
2018-08-26 23:57:25 +00:00
|
|
|
std::cout << NAMEOF_FULL(&SomeClass<int>::SomeMethod6<long int>) << std::endl; // SomeMethod6<long int>
|
2018-08-02 14:51:44 +00:00
|
|
|
|
2018-08-03 12:19:51 +00:00
|
|
|
// Type name.
|
2018-08-26 20:31:16 +00:00
|
|
|
std::cout << NAMEOF_TYPE(structvar) << std::endl; // SomeStruct
|
2018-08-03 12:19:51 +00:00
|
|
|
std::cout << NAMEOF_TYPE(othervar.ll) << std::endl; // LL
|
|
|
|
std::cout << NAMEOF_TYPE(SomeClass<int>{}) << std::endl; // SomeClass
|
2018-08-26 23:57:25 +00:00
|
|
|
std::cout << NAMEOF_TYPE(othervar.ll) << std::endl; // Long::LL
|
|
|
|
std::cout << NAMEOF_TYPE(std::declval<const SomeClass<int>>()) << std::endl; // const SomeClass<int> &&
|
2018-07-13 15:27:55 +00:00
|
|
|
|
2018-08-26 23:57:25 +00:00
|
|
|
std::cout << NAMEOF_TYPE_T(const SomeClass<int> volatile *) << std::endl; // const volatile SomeClass<int> *
|
|
|
|
std::cout << NAMEOF_TYPE_T(SomeClass<int>) << std::endl; // SomeClass<int>
|
2018-07-13 15:16:58 +00:00
|
|
|
|
2018-08-03 12:19:51 +00:00
|
|
|
// Raw name.
|
|
|
|
std::cout << NAMEOF_RAW(__LINE__) << std::endl; // __LINE__
|
2018-08-26 20:31:16 +00:00
|
|
|
std::cout << NAMEOF_RAW(structvar.somefield) << std::endl; // structvar.somefield
|
2018-08-03 12:19:51 +00:00
|
|
|
std::cout << NAMEOF_RAW(&SomeStruct::SomeMethod1) << std::endl; // &SomeStruct::SomeMethod1
|
2018-03-22 13:47:30 +00:00
|
|
|
|
2018-04-29 20:23:21 +00:00
|
|
|
const auto div = [](int x, int y) -> int {
|
2018-03-22 13:47:30 +00:00
|
|
|
if (y == 0) {
|
|
|
|
throw std::invalid_argument(std::string(NAMEOF(y)).append(" should not be zero!"));
|
|
|
|
}
|
|
|
|
return x / y;
|
|
|
|
};
|
|
|
|
|
|
|
|
try {
|
2018-03-28 08:54:21 +00:00
|
|
|
const int z = div(10, 0);
|
|
|
|
std::cout << z << std::endl;
|
2018-03-22 13:47:30 +00:00
|
|
|
} catch (const std::exception& e) {
|
|
|
|
std::cout << e.what() << std::endl; // y should not be zero!
|
|
|
|
}
|
2018-03-18 15:28:53 +00:00
|
|
|
|
2018-05-03 20:10:32 +00:00
|
|
|
/* Remarks */
|
2018-08-28 14:00:59 +00:00
|
|
|
#if 0
|
2018-08-02 14:51:44 +00:00
|
|
|
// This expression does not have a name.
|
2018-08-27 13:40:23 +00:00
|
|
|
std::cout << NAMEOF("Bad case"_string) << std::endl; // '_string'
|
2018-05-11 20:31:52 +00:00
|
|
|
std::cout << NAMEOF(42.0) << std::endl; // '0'
|
|
|
|
std::cout << NAMEOF(42.f) << std::endl; // 'f'
|
|
|
|
std::cout << NAMEOF(42) << std::endl; // '42'
|
2018-05-11 20:52:30 +00:00
|
|
|
std::cout << NAMEOF(42.0_deg) << std::endl; // '0_deg'
|
2018-08-27 13:40:23 +00:00
|
|
|
std::cout << NAMEOF(std::string()) << std::endl; // 'string'
|
|
|
|
std::cout << NAMEOF(std::string{}) << std::endl; // 'string'
|
|
|
|
std::cout << NAMEOF(std::string{"test"}) << std::endl; // 'string'
|
|
|
|
std::cout << NAMEOF(structvar.somefield + structvar.somefield) << std::endl; // ' somefield'
|
|
|
|
std::cout << NAMEOF(42 + 42) << std::endl; // ' 42'
|
|
|
|
std::cout << NAMEOF(NAMEOF(structvar)) << std::endl; // 'NAMEOF'
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
// This expression does not compilation.
|
|
|
|
std::cout << NAMEOF("Bad case") << std::endl; // ''
|
|
|
|
std::cout << NAMEOF("somevar.somefield") << std::endl; // ''
|
2018-07-13 19:02:03 +00:00
|
|
|
std::cout << NAMEOF(std::basic_string<char>) << std::endl; // ''
|
2018-05-11 20:31:52 +00:00
|
|
|
std::cout << NAMEOF(ptrvar[0]) << std::endl; // 'ptrvar[0]'
|
2018-08-27 13:40:23 +00:00
|
|
|
std::cout << NAMEOF(std::cout << structvar << std::endl) << std::endl; // ''
|
|
|
|
std::cout << NAMEOF(decltype(structvar)) << std::endl; // ''
|
|
|
|
std::cout << NAMEOF(typeid(structvar)) << std::endl; // ''
|
|
|
|
std::cout << NAMEOF((structvar)) << std::endl; // ''
|
2018-08-02 14:51:44 +00:00
|
|
|
#endif
|
2018-05-03 20:10:32 +00:00
|
|
|
|
2018-03-18 15:28:53 +00:00
|
|
|
return 0;
|
2018-04-14 19:52:48 +00:00
|
|
|
}
|