nameof_module/README.md

155 lines
3.9 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
2018-04-19 16:12:19 +00:00
Branch | Linux/OSX | Windows | License | Codacy
-------|-----------|---------|---------|-------
master |[![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)|[![License](https://img.shields.io/github/license/Neargye/nameof.svg)](LICENSE)|[![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)
2018-03-27 09:03:12 +00:00
2018-05-01 13:19:34 +00:00
Used to obtain the simple name of a variable, type, member, function, macros.
2018-03-27 08:04:47 +00:00
Before, you had to use string literals to refer to definitions, which is brittle when renaming code elements because tools do not know to check these string literals.
## 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
* Compilation check
2018-08-29 14:46:38 +00:00
* Name of variable
* Name of member
* Name of function
* Name of emum
* Name of macrose
* Name of type
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
2018-08-29 14:46:38 +00:00
* A nameof macros expression has this form
2018-03-27 08:04:47 +00:00
```cpp
2018-08-29 14:46:38 +00:00
// Name of variable
2018-04-10 19:32:51 +00:00
NAMEOF(somevar) -> "somevar"
2018-08-29 14:46:38 +00:00
// Name of member
NAMEOF(person.address.zip_code) -> "zip_code"
// Name of function
NAMEOF(SomeMethod<int, float>) -> "SomeMethod"
NAMEOF_FULL(SomeMethod<int, float>) -> "SomeMethod4<int, float>"
// Name of enum
2019-03-20 16:41:51 +00:00
auto c = Color::RED;
NAMEOF_ENUM(c) -> "RED"
2018-08-29 14:46:38 +00:00
// Name of type
2019-03-20 16:41:51 +00:00
NAMEOF_TYPE(Color::RED) -> "Color"
2018-08-29 14:46:38 +00:00
NAMEOF_TYPE_T(int) -> "int"
// Name of macros
2018-04-14 19:49:27 +00:00
NAMEOF(__LINE__) -> "__LINE__"
```
2018-03-27 08:04:47 +00:00
* Constexpr
2018-03-17 05:15:00 +00:00
2018-03-17 08:18:42 +00:00
```cpp
2018-08-29 14:46:38 +00:00
constexpr auto cx = NAMEOF(somevar); -> "somevar"
2019-03-20 16:41:51 +00:00
static_assert("somevar" == cx, "Wrong name!");
2018-03-27 08:04:47 +00:00
```
2018-03-17 05:15:00 +00:00
2018-03-27 08:04:47 +00:00
* Compilation check
2018-03-17 04:31:59 +00:00
2018-03-27 08:04:47 +00:00
```cpp
2018-08-29 14:46:38 +00:00
NAMEOF_TYPE_T(std::stringgg) -> error namespace "std" has no member "stringgg"
2018-03-27 08:04:47 +00:00
```
2018-03-17 04:31:59 +00:00
2018-03-27 08:04:47 +00:00
* Validate parameters
```cpp
void f(char* s) {
if (s == nullptr)
2018-08-29 14:46:38 +00:00
throw std::invalid_argument(NAMEOF(s).apend("with type = ").apend(NAMEOF_TYPE(s)));
2018-03-27 08:04:47 +00:00
}
```
2018-03-17 04:31:59 +00:00
2018-03-27 14:00:06 +00:00
* Serialization, for example json:
```cpp
void to_json(json& j, const person& p) {
j = json{{NAMEOF(p.name), p.name},
{NAMEOF(p.address), p.address},
{NAMEOF(p.age), p.age}};
}
void from_json(const json& j, person& p) {
2018-08-29 14:46:38 +00:00
p.name = j.at(NAMEOF(p.name));
2018-03-27 14:00:06 +00:00
p.address = j.at(NAMEOF(p.address));
2018-08-29 14:46:38 +00:00
p.age = j.at(NAMEOF(p.age));
2018-03-27 14:00:06 +00:00
}
```
2018-03-27 08:04:47 +00:00
* Logging
2018-03-17 04:31:59 +00:00
2018-03-27 08:04:47 +00:00
```cpp
2018-08-29 14:46:38 +00:00
template <typename T>
2018-03-27 08:04:47 +00:00
void f() {
2018-08-29 14:46:38 +00:00
Log(NAMEOF(f) + " method entry with T = " + NAMEOF_TYPE_T(T));
2018-03-17 04:31:59 +00:00
}
```
2018-03-27 08:04:47 +00:00
## Remarks
2019-03-20 16:41:51 +00:00
* Nameof return std::string_view.
2018-04-10 19:32:51 +00:00
* The argument expression identifies a code definition, but it is never evaluated.
2018-09-04 13:51:22 +00:00
* If you need raw fully-qualified name, use NAMEOF_RAW().
2018-03-27 08:04:47 +00:00
```cpp
2018-08-29 14:46:38 +00:00
NAMEOF_RAW(somevar.somefield) -> "somevar.somefield"
NAMEOF_RAW(&SomeStruct::SomeMethod) -> "&SomeStruct::SomeMethod"
2018-04-04 12:19:02 +00:00
```
2018-09-04 13:51:22 +00:00
* Instead of macros NAMEOF_ENUM, you can use the function nameof::NameofEnum().
```cpp
2019-03-20 16:41:51 +00:00
nameof::NameofEnum(Color::RED) -> "RED"
auto c = Color::RED;
nameof::NameofEnum(c) -> "RED"
2018-09-04 13:51:22 +00:00
```
* Instead of macros NAMEOF_TYPE, you can use the function nameof::NameofType<>.
```cpp
2019-03-20 16:41:51 +00:00
nameof::NameofType<decltype(Color::RED)>() -> "Color"
2018-09-04 13:51:22 +00:00
nameof::NameofType<int> -> "int"
```
* NAMEOF_ENUM does not work on the GCC.
```cpp
2019-03-20 16:41:51 +00:00
auto c = Color::RED;
NAMEOF_ENUM(c) -> "(Color)0"
2018-09-04 13:51:22 +00:00
```
2018-05-03 20:10:41 +00:00
* Spaces and Tabs ignored
```cpp
2018-08-29 14:46:38 +00:00
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-20 16:41:51 +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
* GCC
* Clang
* MSVC
2018-03-27 08:04:47 +00:00
2018-04-14 19:52:48 +00:00
## Licensed under the [MIT License](LICENSE)