2018-04-19 16:12:19 +00:00
|
|
|
# Nameof C++
|
2018-04-10 19:32:51 +00:00
|
|
|
|
|
|
|
```text
|
|
|
|
_ _ __ _____
|
|
|
|
| \ | | / _| / ____|_ _
|
|
|
|
| \| | __ _ _ __ ___ ___ ___ | |_ | | _| |_ _| |_
|
|
|
|
| . ` |/ _` | '_ ` _ \ / _ \/ _ \| _| | | |_ _|_ _|
|
|
|
|
| |\ | (_| | | | | | | __/ (_) | | | |____|_| |_|
|
|
|
|
|_| \_|\__,_|_| |_| |_|\___|\___/|_| \_____|
|
|
|
|
```
|
2018-03-27 08:04:47 +00:00
|
|
|
|
2019-04-01 20:05:51 +00:00
|
|
|
[![License](https://img.shields.io/github/license/Neargye/nameof.svg)](LICENSE)
|
|
|
|
[![Build Status](https://travis-ci.org/Neargye/nameof.svg?branch=master)](https://travis-ci.org/Neargye/nameof)
|
|
|
|
[![Build status](https://ci.appveyor.com/api/projects/status/yq5fk0d9mwljbubt/branch/master?svg=true)](https://ci.appveyor.com/project/Neargye/nameof/branch/master)
|
|
|
|
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/1d06f3f07afe4f34acd29c0c8efa830b)](https://www.codacy.com/app/Neargye/nameof?utm_source=github.com&utm_medium=referral&utm_content=Neargye/nameof&utm_campaign=Badge_Grade)
|
|
|
|
[![Try online](https://img.shields.io/badge/try-online-blue.svg)](https://wandbox.org/permlink/irgD3NwQM2ikhVMC)
|
2018-03-27 09:03:12 +00:00
|
|
|
|
2019-03-21 16:21:01 +00:00
|
|
|
## What is Nameof?
|
|
|
|
|
2019-03-22 10:09:13 +00:00
|
|
|
Header-only C++17 library provides nameof macros and functions to obtain simple name of variable, type, function, macro, and enum.
|
2019-03-21 16:21:01 +00:00
|
|
|
|
2018-03-27 08:04:47 +00:00
|
|
|
## Features
|
|
|
|
|
2019-03-20 16:41:51 +00:00
|
|
|
* C++17
|
2018-03-27 08:04:47 +00:00
|
|
|
* Header-only
|
|
|
|
* Dependency-free
|
|
|
|
* Compile-time
|
2019-03-26 10:00:48 +00:00
|
|
|
* Name of variable, member variable
|
|
|
|
* Name of type, variable type
|
|
|
|
* Name of function, member function
|
|
|
|
* Name of enum, enum variable
|
|
|
|
* Name of macro
|
|
|
|
* Enum to string
|
2018-03-27 08:04:47 +00:00
|
|
|
|
2018-05-01 13:19:34 +00:00
|
|
|
## [Examples](example/example.cpp)
|
2018-03-27 08:04:47 +00:00
|
|
|
|
2019-04-05 12:19:04 +00:00
|
|
|
* Nameof
|
2019-04-02 13:47:52 +00:00
|
|
|
```cpp
|
|
|
|
// Name of variable.
|
|
|
|
NAMEOF(somevar) -> "somevar"
|
2019-04-01 20:05:51 +00:00
|
|
|
|
2019-04-02 13:47:52 +00:00
|
|
|
// Name of member variable.
|
|
|
|
NAMEOF(person.address.zip_code) -> "zip_code"
|
2018-03-17 05:15:00 +00:00
|
|
|
|
2019-04-02 13:47:52 +00:00
|
|
|
// Name of function.
|
|
|
|
NAMEOF(foo<int, float>()) -> "foo"
|
|
|
|
|
|
|
|
// Name of member function.
|
|
|
|
NAMEOF(somevar.some_method()) -> "some_method"
|
2019-04-05 12:19:04 +00:00
|
|
|
NAMEOF(somevar.some_method<int>()) -> "some_method"
|
|
|
|
|
|
|
|
// Name of macro.
|
|
|
|
NAMEOF(__LINE__) -> "__LINE__"
|
|
|
|
NAMEOF(NAMEOF(structvar)) -> "NAMEOF"
|
2019-04-02 13:47:52 +00:00
|
|
|
```
|
2018-03-27 08:04:47 +00:00
|
|
|
|
2019-04-05 12:19:04 +00:00
|
|
|
* Nameof enum
|
2019-04-02 13:47:52 +00:00
|
|
|
```cpp
|
|
|
|
auto color = Color::RED;
|
|
|
|
// Name of enum variable.
|
|
|
|
NAMEOF_ENUM(color) -> "RED"
|
|
|
|
nameof::nameof_enum(color) -> "RED"
|
|
|
|
```
|
2018-03-17 04:31:59 +00:00
|
|
|
|
2019-04-05 12:19:04 +00:00
|
|
|
* Nameof type
|
2019-04-02 13:47:52 +00:00
|
|
|
```cpp
|
|
|
|
using T = int;
|
|
|
|
T var = 42;
|
|
|
|
// Name of variable type.
|
|
|
|
NAMEOF_VAR_TYPE(var) -> "int"
|
|
|
|
nameof::nameof_type<decltype(var)>() -> "int"
|
|
|
|
|
|
|
|
// Name of type.
|
|
|
|
NAMEOF_TYPE(T) -> "int"
|
|
|
|
nameof::nameof_type<T>() -> "int"
|
|
|
|
```
|
2018-03-27 14:00:06 +00:00
|
|
|
|
2019-04-08 18:02:53 +00:00
|
|
|
* Compile-time
|
|
|
|
```cpp
|
|
|
|
constexpr auto somevar_name = NAMEOF(somevar);
|
|
|
|
// somevar_name -> "somevar"
|
|
|
|
constexpr auto color_name = NAMEOF_ENUM(Color::BLUE); // or nameof::nameof_enum(Color::BLUE)
|
|
|
|
// color_name -> "BLUE"
|
|
|
|
constexpr auto var_type_name = NAMEOF_VAR_TYPE(var); // or nameof::nameof_type<decltype(var)>()
|
|
|
|
// var_type_name -> "int"
|
|
|
|
constexpr auto type_name = NAMEOF_VAR_TYPE(T); // or nameof::nameof_type<T>()
|
|
|
|
// type_name -> "int"
|
|
|
|
```
|
|
|
|
|
2018-03-27 08:04:47 +00:00
|
|
|
## Remarks
|
|
|
|
|
2019-04-05 12:19:04 +00:00
|
|
|
* Nameof returns `std::string_view`. If argument does not have name, returns empty string.
|
2019-04-01 20:05:51 +00:00
|
|
|
|
2019-04-05 12:19:04 +00:00
|
|
|
* Nameof expression argument are identified, but do not evaluated.
|
2018-04-10 19:32:51 +00:00
|
|
|
|
2019-04-10 12:13:51 +00:00
|
|
|
* Nameof type returns compiler-specific type name.
|
|
|
|
|
2019-04-08 17:55:35 +00:00
|
|
|
* Enum value must be in range `[-256, 256]`. If you need another range, add specialization enum_range for necessary enum type.
|
2019-04-02 13:47:52 +00:00
|
|
|
```cpp
|
|
|
|
#include <nameof.hpp>
|
2019-04-08 17:55:35 +00:00
|
|
|
|
|
|
|
enum number { one = 100, two = 200, three = 300 };
|
|
|
|
|
|
|
|
namespace nameof {
|
|
|
|
template <>
|
|
|
|
struct enum_range<number> {
|
|
|
|
static constexpr int min = 100;
|
|
|
|
static constexpr int max = 300;
|
|
|
|
};
|
|
|
|
}
|
2019-04-02 13:47:52 +00:00
|
|
|
```
|
2019-03-26 07:45:13 +00:00
|
|
|
|
2019-04-05 12:21:26 +00:00
|
|
|
* If you need name with template suffix, use NAMEOF_FULL.
|
|
|
|
```cpp
|
|
|
|
// Name of function.
|
|
|
|
NAMEOF_FULL(foo<int, float>()) -> "foo<int, float>"
|
|
|
|
|
|
|
|
// Name of member function.
|
|
|
|
NAMEOF_FULL(somevar.some_method<int>()) -> "some_method<int>"
|
|
|
|
```
|
|
|
|
|
|
|
|
* If you need raw fully-qualified name, use NAMEOF_RAW.
|
2019-04-02 13:47:52 +00:00
|
|
|
```cpp
|
|
|
|
NAMEOF_RAW(somevar.somefield) -> "somevar.somefield"
|
2019-04-02 15:42:47 +00:00
|
|
|
NAMEOF_RAW(&some_class::some_method<int>) -> "&some_class::some_method<int>"
|
2019-04-02 13:47:52 +00:00
|
|
|
```
|
2018-04-04 12:19:02 +00:00
|
|
|
|
2019-03-21 16:21:45 +00:00
|
|
|
* Spaces and Tabs ignored
|
2019-04-02 13:47:52 +00:00
|
|
|
```cpp
|
|
|
|
NAMEOF( somevar ) -> "somevar"
|
|
|
|
NAMEOF( somevar ) -> "somevar"
|
|
|
|
```
|
2018-05-03 20:10:41 +00:00
|
|
|
|
2019-04-08 17:55:35 +00:00
|
|
|
* Nameof enum obtains the first defined value enums, and won't work if value are aliased.
|
|
|
|
```cpp
|
|
|
|
enum ShapeKind {
|
|
|
|
ConvexBegin = 0,
|
|
|
|
Box = 0, // Won't work.
|
|
|
|
Sphere = 1,
|
|
|
|
ConvexEnd = 2,
|
|
|
|
Donut = 2, // Won't work too.
|
|
|
|
Banana = 3,
|
|
|
|
COUNT = 4,
|
|
|
|
};
|
|
|
|
// NAMEOF_ENUM(ShapeKind::Box) -> "ConvexBegin"
|
|
|
|
// nameof::nameof_enum(ShapeKind::Box) -> "ConvexBegin"
|
|
|
|
```
|
|
|
|
Work around the issue:
|
|
|
|
```cpp
|
|
|
|
enum ShapeKind {
|
|
|
|
// Convex shapes, see ConvexBegin and ConvexEnd below.
|
|
|
|
Box = 0,
|
|
|
|
Sphere = 1,
|
|
|
|
|
|
|
|
// Non-convex shapes.
|
|
|
|
Donut = 2,
|
|
|
|
Banana = 3,
|
|
|
|
|
|
|
|
COUNT = Banana + 1,
|
|
|
|
|
|
|
|
// Non-reflected aliases.
|
|
|
|
ConvexBegin = Box,
|
|
|
|
ConvexEnd = Sphere + 1,
|
|
|
|
};
|
|
|
|
// NAMEOF_ENUM(ShapeKind::Box) -> "Box"
|
|
|
|
// nameof::nameof_enum(ShapeKind::Box) -> "Box"
|
|
|
|
|
|
|
|
// Non-reflected aliases.
|
|
|
|
// NAMEOF_ENUM(ShapeKind::ConvexBegin) -> "Box"
|
|
|
|
// nameof::nameof_enum(ShapeKind::ConvexBegin) -> "Box"
|
|
|
|
```
|
|
|
|
|
2018-04-10 19:32:51 +00:00
|
|
|
## Integration
|
2018-04-04 12:19:02 +00:00
|
|
|
|
2019-03-30 07:01:47 +00:00
|
|
|
You should add required file [nameof.hpp](include/nameof.hpp).
|
2018-04-04 12:19:02 +00:00
|
|
|
|
2018-04-10 19:32:51 +00:00
|
|
|
## Compiler compatibility
|
|
|
|
|
2019-03-22 08:20:28 +00:00
|
|
|
* Clang/LLVM >= 5
|
2019-03-22 13:50:07 +00:00
|
|
|
* Visual C++ >= 15.3 / Visual Studio >= 2017
|
2019-03-22 08:20:28 +00:00
|
|
|
* Xcode >= 9
|
2019-04-02 13:47:52 +00:00
|
|
|
* GCC >= 7 (GCC >= 9 for NAMEOF_ENUM)
|
2018-03-27 08:04:47 +00:00
|
|
|
|
2018-04-14 19:52:48 +00:00
|
|
|
## Licensed under the [MIT License](LICENSE)
|