nameof_module/example/example.cpp

203 lines
7.3 KiB
C++
Raw Normal View History

2018-03-24 08:58:08 +00:00
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
2019-03-20 16:41:51 +00:00
// SPDX-License-Identifier: MIT
2020-02-25 10:53:42 +00:00
// Copyright (c) 2018 - 2020 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>
2019-03-22 08:00:18 +00:00
#include <sstream>
2018-03-27 09:03:12 +00:00
#include <stdexcept>
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
2019-04-18 08:51:24 +00:00
void SomeMethod1(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) {
2019-12-12 15:11:51 +00:00
auto function_name = NAMEOF(SomeMethod4<T, U>).str()
2019-09-14 22:19:34 +00:00
.append("<")
.append(NAMEOF_TYPE(T))
.append(", ")
.append(NAMEOF_TYPE(U))
.append(">(")
.append(NAMEOF_TYPE(U))
.append(" ")
.append(NAMEOF(value).data())
.append(")");
return function_name;
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 {
2019-04-05 14:52:59 +00:00
public:
2018-08-03 12:19:51 +00:00
void SomeMethod5() const {
2019-03-20 16:41:51 +00:00
std::cout << nameof::nameof_type<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{};
2019-07-21 19:13:47 +00:00
std::cout << NAMEOF_TYPE_EXPR(t) << std::endl;
2018-08-03 12:19:51 +00:00
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
};
enum class Color { RED, GREEN, BLUE };
2018-03-27 14:00:06 +00:00
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
void name_to_chars(const char* name) {
2019-10-09 17:48:06 +00:00
std::cout << name << std::endl;
}
void name_to_string(const std::string& name) {
std::cout << name << std::endl;
}
void name_to_string_view(std::string_view name) {
std::cout << name << std::endl;
}
2018-05-03 19:46:41 +00:00
int main() {
2019-03-21 16:21:45 +00:00
// Compile-time.
2019-04-01 19:07:28 +00:00
constexpr auto name = NAMEOF(structvar);
using namespace std::literals::string_view_literals;
static_assert("structvar"sv == name);
2018-07-13 15:27:55 +00:00
name_to_chars(name.c_str()); // 'structvar'
2019-12-12 15:11:51 +00:00
// or name_to_chars(name.data());
2019-10-24 15:36:44 +00:00
// Note: c_str() return name as null-terminated C string, no memory allocation.
2019-12-12 15:11:51 +00:00
2019-10-25 10:33:53 +00:00
name_to_string(name.str()); // 'structvar'
// Note: str() occure memory allocation to copy name to std::string.
2019-12-12 15:11:51 +00:00
// or name_to_string(std::string{name});
// or name_to_string(static_cast<std::string>(name));
// Note: cast to std::string occure memory allocation to copy name to std::string.
2019-10-09 17:48:06 +00:00
name_to_string_view(name); // 'structvar'
2019-10-24 15:36:44 +00:00
// Note: Implicit cast to std::string_view, no memory allocation.
2019-10-09 17:48:06 +00:00
#if defined(NAMEOF_ENUM_SUPPORTED)
2019-04-05 14:21:21 +00:00
// Nameof enum variable.
2018-09-01 13:27:49 +00:00
auto color = Color::RED;
2019-04-05 14:52:59 +00:00
std::cout << nameof::nameof_enum(color) << std::endl; // 'RED'
std::cout << NAMEOF_ENUM(color) << std::endl; // 'RED'
2019-07-22 10:58:52 +00:00
std::cout << nameof::nameof_enum<Color::GREEN>() << std::endl; // 'GREEN'
2019-09-14 22:19:34 +00:00
#endif
2019-04-05 14:21:21 +00:00
// Nameof.
2019-04-05 14:52:59 +00:00
std::cout << NAMEOF(structvar) << std::endl; // 'structvar'
std::cout << NAMEOF(::structvar) << std::endl; // 'structvar'
std::cout << NAMEOF(structvar.somefield) << std::endl; // 'somefield'
std::cout << NAMEOF((&structvar)->somefield) << std::endl; // 'somefield'
std::cout << NAMEOF(othervar.ll.field) << std::endl; // 'field'
std::cout << NAMEOF(ptrvar) << std::endl; // 'ptrvar
2018-07-13 15:27:55 +00:00
2019-04-05 14:21:21 +00:00
// Nameof function.
2019-04-05 14:52:59 +00:00
std::cout << NAMEOF(&SomeStruct::SomeMethod1) << std::endl; // 'SomeMethod1'
std::cout << NAMEOF(structvar.SomeMethod2()) << std::endl; // 'SomeMethod2'
std::cout << NAMEOF(SomeMethod3) << std::endl; // 'SomeMethod3'
std::cout << NAMEOF(SomeMethod4<int, float>(1.0f)) << std::endl; // 'SomeMethod4'
std::cout << NAMEOF(&SomeClass<int>::SomeMethod5) << std::endl; // 'SomeMethod5'
std::cout << NAMEOF(&SomeClass<int>::SomeMethod6<long int>) << std::endl; // 'SomeMethod6'
2019-04-05 14:21:21 +00:00
// Nameof with template suffix.
2019-04-05 14:52:59 +00:00
std::cout << NAMEOF_FULL(SomeMethod4<int, float>) << std::endl; // 'SomeMethod4<int, float>'
std::cout << NAMEOF_FULL(&SomeClass<int>::SomeMethod6<long int>) << std::endl; // 'SomeMethod6<long int>'
2018-08-02 14:51:44 +00:00
2019-07-22 10:58:52 +00:00
// Nameof type.
std::cout << nameof::nameof_type<const Long::LL&>() << std::endl; // 'Long::LL'
std::cout << NAMEOF_TYPE(const Long::LL&) << std::endl; // 'Long::LL'
std::cout << nameof::nameof_full_type<const Long::LL&>() << std::endl; // 'const Long::LL &'
std::cout << NAMEOF_FULL_TYPE(const Long::LL&) << std::endl; // 'const Long::LL &'
2019-04-05 14:21:21 +00:00
// Nameof variable type.
2019-04-05 14:52:59 +00:00
std::cout << nameof::nameof_type<decltype(structvar)>() << std::endl; // 'SomeStruct'
2019-07-21 19:13:47 +00:00
std::cout << NAMEOF_TYPE_EXPR(structvar) << std::endl; // 'SomeStruct'
std::cout << NAMEOF_TYPE_EXPR(std::declval<const SomeClass<int>>()) << std::endl; // 'SomeClass<int>'
std::cout << NAMEOF_FULL_TYPE_EXPR(std::declval<const SomeClass<int>>()) << std::endl; // 'const SomeClass<int> &&'
2018-07-13 15:27:55 +00:00
2019-04-05 14:21:21 +00:00
// Nameof macro.
2019-04-05 14:52:59 +00:00
std::cout << NAMEOF(__LINE__) << std::endl; // '__LINE__'
2019-04-01 19:07:28 +00:00
2019-04-05 14:21:21 +00:00
// Nameof raw.
2019-04-05 14:52:59 +00:00
std::cout << NAMEOF_RAW(structvar.somefield) << std::endl; // 'structvar.somefield'
std::cout << NAMEOF_RAW(&SomeStruct::SomeMethod1) << std::endl; // '&SomeStruct::SomeMethod1'
2018-03-22 13:47:30 +00:00
2019-04-01 19:07:28 +00:00
// Some more complex example.
2019-03-22 08:00:18 +00:00
2019-04-05 14:52:59 +00:00
std::cout << SomeMethod4<int>(structvar) << std::endl; // 'SomeMethod4<int, SomeStruct>(SomeStruct value)'
2018-09-01 13:27:49 +00:00
2019-07-19 20:56:50 +00:00
auto div = [](int x, int y) -> int {
2018-03-22 13:47:30 +00:00
if (y == 0) {
2019-12-12 15:11:51 +00:00
throw std::invalid_argument(NAMEOF(y).str() + " should not be zero!");
2018-03-22 13:47:30 +00:00
}
return x / y;
};
try {
2019-07-19 20:56:50 +00:00
auto z = div(10, 0);
2018-03-28 08:54:21 +00:00
std::cout << z << std::endl;
2018-03-22 13:47:30 +00:00
} catch (const std::exception& e) {
2019-04-05 14:52:59 +00:00
std::cout << e.what() << std::endl; // 'y should not be zero!'
2018-03-22 13:47:30 +00:00
}
2018-03-18 15:28:53 +00:00
2018-05-03 20:10:32 +00:00
/* Remarks */
2019-04-01 20:11:24 +00:00
#if 0
2019-03-22 08:00:18 +00:00
// This expression does not have name.
2019-04-02 15:42:47 +00:00
std::cout << NAMEOF(ptrvar[0]) << std::endl; // ''
2019-04-01 19:07:28 +00:00
std::cout << NAMEOF(42.0) << std::endl; // ''
std::cout << NAMEOF(42) << std::endl; // ''
std::cout << NAMEOF(42.0_deg) << std::endl; // ''
2019-04-02 15:42:47 +00:00
std::cout << NAMEOF((structvar)) << std::endl; // ''
2018-08-28 15:51:04 +00:00
std::cout << NAMEOF((SomeMethod4<int, float>)(1.0f)) << std::endl; // ''
2019-04-01 19:07:28 +00:00
std::cout << NAMEOF(42, 42, 42) << std::endl; // ''
2019-04-02 15:42:47 +00:00
std::cout << NAMEOF(42 + 42) << std::endl; // ''
std::cout << NAMEOF("Bad case"_string) << std::endl; // ''
std::cout << NAMEOF("Bad case") << std::endl; // ''
std::cout << NAMEOF("somevar.somefield") << std::endl; // ''
std::cout << NAMEOF(42.f) << std::endl; // ''
std::cout << NAMEOF(structvar.somefield++) << std::endl; // ''
std::cout << NAMEOF(std::string{"test"}) << 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
}