nameof_module/README.md

126 lines
3.6 KiB
Markdown
Raw Normal View History

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-03-21 19:52:07 +00:00
* Name of variable
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-03-21 16:21:45 +00:00
* Name of function
2019-04-02 13:47:52 +00:00
```cpp
// Name of function.
NAMEOF(foo<int, float>()) -> "foo"
NAMEOF_FULL(foo<int, float>()) -> "foo<int, float>"
// Name of member function.
NAMEOF(somevar.some_method()) -> "some_method"
NAMEOF_FULL(somevar.some_method<int>()) -> "some_method<int>"
```
2018-03-27 08:04:47 +00:00
2019-03-21 16:21:45 +00:00
* Name of 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"
constexpr auto const_color = Color::BLUE;
// Name of static storage enum variable.
NAMEOF_CONST_ENUM(const_color) -> "BLUE"
nameof::nameof_enum<const_color>() -> "BLUE"
```
2018-03-17 04:31:59 +00:00
2019-03-21 16:21:01 +00:00
* Name of 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-03-22 04:46:37 +00:00
* Name of macro
2019-04-02 13:47:52 +00:00
```cpp
// Name of macro.
NAMEOF(__LINE__) -> "__LINE__"
NAMEOF(NAMEOF(structvar)) -> "NAMEOF"
```
2018-03-27 08:04:47 +00:00
## Remarks
2019-04-02 13:47:52 +00:00
* Nameof return std::string_view. If arguments does not have name, Nameof return empty string.
2019-04-01 20:05:51 +00:00
2019-03-26 10:00:48 +00:00
* Nameof expression arguments are identified, but do not evaluated.
2018-04-10 19:32:51 +00:00
2019-04-02 13:47:52 +00:00
* Enum variable must be in range (-NAMEOF_ENUM_RANGE, NAMEOF_ENUM_RANGE). By default NAMEOF_ENUM_RANGE = 128. If you need a larger range, redefine the macro NAMEOF_ENUM_RANGE.
```cpp
#define NAMEOF_ENUM_RANGE 1028 // Redefine NAMEOF_ENUM_RANGE for larger range.
#include <nameof.hpp>
```
2019-03-26 07:45:13 +00:00
2019-03-26 10:00:48 +00:00
* If you need of 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
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)