blob: 9038d8af8fda3838f034e377cb3cd20e11bfc5e0 [file] [log] [blame]
Adrien Béraud612b55b2023-05-29 10:42:04 -04001/*
2 * Copyright (C) 2004-2023 Savoir-faire Linux Inc.
3 *
Adrien Béraudcb753622023-07-17 22:32:49 -04004 * This program is free software: you can redistribute it and/or modify
Adrien Béraud612b55b2023-05-29 10:42:04 -04005 * it under the terms of the GNU General Public License as published by
Adrien Béraudcb753622023-07-17 22:32:49 -04006 * the Free Software Foundation, either version 3 of the License, or
Adrien Béraud612b55b2023-05-29 10:42:04 -04007 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Adrien Béraudcb753622023-07-17 22:32:49 -040011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Adrien Béraud612b55b2023-05-29 10:42:04 -040012 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
Adrien Béraudcb753622023-07-17 22:32:49 -040015 * along with this program. If not, see <https://www.gnu.org/licenses/>.
Adrien Béraud612b55b2023-05-29 10:42:04 -040016 */
Adrien Béraud612b55b2023-05-29 10:42:04 -040017#pragma once
18
19#include "ip_utils.h"
20
21#include <utility>
22#include <string>
23#include <vector>
24#include <cstring> // strcmp
Adrien Béraude48fd6d2023-07-18 16:29:35 -040025#include <memory>
Adrien Béraud612b55b2023-05-29 10:42:04 -040026
Adrien Béraud9e0f84f2023-07-27 16:02:21 -040027extern "C" {
Adrien Béraud612b55b2023-05-29 10:42:04 -040028#include <pjlib.h>
Adrien Béraud9e0f84f2023-07-27 16:02:21 -040029}
Adrien Béraud612b55b2023-05-29 10:42:04 -040030
Adrien Béraud1ae60aa2023-07-07 09:55:09 -040031namespace dhtnet {
Adrien Béraud612b55b2023-05-29 10:42:04 -040032namespace sip_utils {
33
34using namespace std::literals;
35
Adrien Béraud612b55b2023-05-29 10:42:04 -040036std::string_view sip_strerror(pj_status_t code);
37
38// Helper function that return a constant pj_str_t from an array of any types
39// that may be statically casted into char pointer.
40// Per convention, the input array is supposed to be null terminated.
41template<typename T, std::size_t N>
42constexpr const pj_str_t
43CONST_PJ_STR(T (&a)[N]) noexcept
44{
45 return {const_cast<char*>(a), N - 1};
46}
47
48inline const pj_str_t
49CONST_PJ_STR(const std::string& str) noexcept
50{
51 return {const_cast<char*>(str.c_str()), (pj_ssize_t) str.size()};
52}
53
54inline constexpr pj_str_t
55CONST_PJ_STR(const std::string_view& str) noexcept
56{
57 return {const_cast<char*>(str.data()), (pj_ssize_t) str.size()};
58}
59
60inline constexpr std::string_view
61as_view(const pj_str_t& str) noexcept
62{
63 return {str.ptr, (size_t) str.slen};
64}
65
Adrien Béraud612b55b2023-05-29 10:42:04 -040066} // namespace sip_utils
Sébastien Blin464bdff2023-07-19 08:02:53 -040067} // namespace dhtnet