1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
// Copyright 2013-2025 Daniel Parker
// Distributed under the Boost license, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// See https://github.com/danielaparker/jsoncons for latest version
#ifndef JSONCONS_EXT_JSONSCHEMA_COMMON_URI_WRAPPER_HPP
#define JSONCONS_EXT_JSONSCHEMA_COMMON_URI_WRAPPER_HPP
#include <cstddef>
#include <memory>
#include <string>
#include <system_error>
#include <jsoncons/config/jsoncons_config.hpp>
#include <jsoncons/utility/uri.hpp>
#include <jsoncons_ext/jsonpointer/jsonpointer.hpp>
#include <jsoncons_ext/jsonschema/jsonschema_error.hpp>
namespace jsoncons {
namespace jsonschema {
class uri_wrapper
{
jsoncons::uri uri_;
std::string identifier_;
bool has_plain_name_fragment_;
public:
uri_wrapper()
: has_plain_name_fragment_(false)
{
}
explicit uri_wrapper(const std::string& uri)
{
uri_ = jsoncons::uri(uri);
if (!uri_.encoded_fragment().empty())
{
identifier_ = uri_.fragment();
std::error_code ec;
jsonpointer::json_pointer::parse(identifier_, ec);
has_plain_name_fragment_ = ec ? true : false;
}
else
{
has_plain_name_fragment_ = false;
}
}
explicit uri_wrapper(const uri& uri)
: uri_{uri}
{
uri_ = jsoncons::uri(uri);
if (!uri_.encoded_fragment().empty())
{
identifier_ = uri_.fragment();
std::error_code ec;
jsonpointer::json_pointer::parse(identifier_, ec);
has_plain_name_fragment_ = ec ? true : false;
}
else
{
has_plain_name_fragment_ = false;
}
}
const jsoncons::uri& uri() const
{
return uri_;
}
bool has_fragment() const
{
return !uri_.encoded_fragment().empty();
}
bool has_plain_name_fragment() const
{
return has_plain_name_fragment_;
}
jsoncons::uri base() const
{
return uri_.base();
}
std::string path() const
{
return uri_.path();
}
bool is_absolute() const
{
return uri_.is_absolute();
}
std::string fragment() const
{
return identifier_;
}
int compare(const uri_wrapper& other) const
{
int result = uri_.compare(other.uri_);
if (result != 0)
{
return result;
}
return result;
}
uri_wrapper append(const std::string& field) const
{
if (has_plain_name_fragment())
return *this;
jsoncons::jsonpointer::json_pointer pointer(std::string(uri_.fragment()));
pointer /= field;
jsoncons::uri new_uri(uri_, uri_fragment_part, pointer.to_string());
return uri_wrapper(std::move(new_uri));
}
uri_wrapper append(std::size_t index) const
{
if (has_plain_name_fragment())
return *this;
jsoncons::jsonpointer::json_pointer pointer(std::string(uri_.encoded_fragment()));
pointer /= index;
jsoncons::uri new_uri(uri_, uri_fragment_part, pointer.to_string());
return uri_wrapper(std::move(new_uri));
}
std::string string() const
{
std::string s = uri_.string();
return s;
}
friend bool operator==(const uri_wrapper& lhs, const uri_wrapper& rhs)
{
return lhs.compare(rhs) == 0;
}
friend bool operator!=(const uri_wrapper& lhs, const uri_wrapper& rhs)
{
return lhs.compare(rhs) != 0;
}
friend bool operator<(const uri_wrapper& lhs, const uri_wrapper& rhs)
{
return lhs.compare(rhs) < 0;
}
friend bool operator<=(const uri_wrapper& lhs, const uri_wrapper& rhs)
{
return lhs.compare(rhs) <= 0;
}
friend bool operator>(const uri_wrapper& lhs, const uri_wrapper& rhs)
{
return lhs.compare(rhs) > 0;
}
friend bool operator>=(const uri_wrapper& lhs, const uri_wrapper& rhs)
{
return lhs.compare(rhs) >= 0;
}
private:
};
} // namespace jsonschema
} // namespace jsoncons
#endif // JSONCONS_EXT_JSONSCHEMA_COMMON_URI_WRAPPER_HPP
|