Crow  0.0.4
crow_utilities.hpp
1 /*
2  _____ _____ _____ _ _ _
3 | | __ | | | | | Crow - a Sentry client for C++
4 | --| -| | | | | | version 0.0.4
5 |_____|__|__|_____|_____| https://github.com/nlohmann/crow
6 
7 Licensed under the MIT License <http://opensource.org/licenses/MIT>.
8 SPDX-License-Identifier: MIT
9 Copyright (c) 2018 Niels Lohmann <http://nlohmann.me>.
10 
11 Permission is hereby granted, free of charge, to any person obtaining a copy
12 of this software and associated documentation files (the "Software"), to deal
13 in the Software without restriction, including without limitation the rights
14 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 copies of the Software, and to permit persons to whom the Software is
16 furnished to do so, subject to the following conditions:
17 
18 The above copyright notice and this permission notice shall be included in all
19 copies or substantial portions of the Software.
20 
21 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 SOFTWARE.
28 */
29 
30 #ifndef NLOHMANN_CROW_UTILITIES_HPP
31 #define NLOHMANN_CROW_UTILITIES_HPP
32 
33 #include <cstdint>
34 #include <string>
35 #include <thirdparty/json/json.hpp>
36 
37 using json = nlohmann::json;
38 
39 namespace nlohmann
40 {
41 namespace crow_utilities
42 {
43 
44 json get_backtrace(int skip = 1);
45 
52 std::string pretty_name(const char* type_id_name,
53  bool only_module = false);
54 
59 std::int64_t get_timestamp();
60 
65 std::string get_iso8601();
66 
71 std::string generate_uuid();
72 
73 }
74 }
75 
76 #endif
std::string get_iso8601()
get the current date and time as ISO 8601 string
json get_backtrace(int skip)
namespace for Niels Lohmann
Definition: crow.hpp:40
std::int64_t get_timestamp()
get the seconds since epoch
std::string pretty_name(const char *type_id_name, const bool only_module)
return pretty type name
std::string generate_uuid()
generate a UUID4 without dashes