2018-04-10 19:32:51 +00:00
```text
_ _ __ _____
| \ | | / _| / ____ |_ _
| \| | __ _ _ __ ___ ___ ___ | |_ | | _| |_ _| |_
| . ` |/ _` | '_ ` _ \ / _ \/ _ \| _ | | | |_ _|_ _|
| |\ | (_| | | | | | | __ / (_) | | | |____|_| |_|
|_| \_|\__,_|_| |_| |_|\___|\___/|_| \_____|
```
2018-03-27 08:04:47 +00:00
2019-04-10 13:03:29 +00:00
[![Github Releases ](https://img.shields.io/github/release/Neargye/nameof.svg )](https://github.com/Neargye/nameof/releases)
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)
2019-04-28 10:28:20 +00:00
[![Try online ](https://img.shields.io/badge/try-online-blue.svg )](https://wandbox.org/permlink/1biubvidzJXEKr69)
2018-03-27 09:03:12 +00:00
2019-05-25 16:16:25 +00:00
# Nameof C++
2019-03-21 16:21:01 +00:00
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"
2019-04-10 14:09:26 +00:00
constexpr auto type_name = NAMEOF_TYPE(T); // or nameof::nameof_type< T > ()
2019-04-08 18:02:53 +00:00
// 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-07-02 19:08:03 +00:00
* Nameof expression argument are identified, but are 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-05 12:21:26 +00:00
* If you need name with template suffix, use NAMEOF_FULL.
```cpp
2019-04-10 12:57:39 +00:00
// Full name of template function.
2019-04-05 12:21:26 +00:00
NAMEOF_FULL(foo< int , float > ()) -> "foo< int , float > "
2019-04-10 12:57:39 +00:00
// Full name of template member function.
2019-04-05 12:21:26 +00:00
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
2019-04-10 12:57:39 +00:00
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-04-10 12:40:21 +00:00
* Enum value must be in range `[NAMEOF_ENUM_RANGE_MIN, NAMEOF_ENUM_RANGE_MAX]` . By default `NAMEOF_ENUM_RANGE_MIN = -128` , `NAMEOF_ENUM_RANGE_MAX = 128` .
If need another range for all enum types by default, redefine the macro `NAMEOF_ENUM_RANGE_MIN` and `NAMEOF_ENUM_RANGE_MAX` .
```cpp
#define NAMEOF_ENUM_RANGE_MIN 0
#define NAMEOF_ENUM_RANGE_MAX 256
2019-04-10 14:09:26 +00:00
#include < nameof.hpp >
2019-04-10 12:40:21 +00:00
```
If need another range for specific enum type, add specialization `enum_range` for necessary enum type.
```cpp
#include < nameof.hpp >
enum number { one = 100, two = 200, three = 300 };
2019-04-10 14:09:26 +00:00
namespace nameof {
2019-04-10 12:40:21 +00:00
template < >
struct enum_range< number > {
static constexpr int min = 100;
static constexpr int max = 300;
};
}
```
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)