75 std::string username{};
82 std::string password{};
88 std::optional<std::string> host{};
95 std::optional<uint16_t> port{};
108 std::optional<std::string> query{};
116 std::optional<std::string> hash{};
128 [[nodiscard]] inline
bool has_port() const noexcept;
134 [[nodiscard]] inline
bool has_hostname() const noexcept;
148 [[nodiscard]] std::
string to_string() const override;
163 [[nodiscard]] std::
string get_origin() const noexcept override;
170 [[nodiscard]] std::
string get_protocol() const noexcept;
178 [[nodiscard]] std::
string get_host() const noexcept;
186 [[nodiscard]] std::
string get_hostname() const noexcept;
193 [[nodiscard]] constexpr std::string_view
get_pathname() const noexcept;
208 [[nodiscard]] std::
string get_search() const noexcept;
215 [[nodiscard]] const std::
string &
get_username() const noexcept;
239 bool set_port(std::string_view input);
246 void set_hash(std::string_view input);
269 bool set_host(std::string_view input);
293 bool set_href(std::string_view input);
300 [[nodiscard]] const std::
string &
get_password() const noexcept;
308 [[nodiscard]] std::
string get_port() const noexcept;
316 [[nodiscard]] std::
string get_hash() const noexcept;
350 [[nodiscard]] constexpr
bool has_hash() const noexcept override;
356 [[nodiscard]] constexpr
bool has_search() const noexcept override;
371 inline
void update_unencoded_base_hash(std::string_view input);
372 inline
void update_base_hostname(std::string_view input);
373 inline
void update_base_search(std::string_view input,
374 const uint8_t query_percent_encode_set[]);
375 inline
void update_base_search(std::optional<std::
string> &&input);
376 inline
void update_base_pathname(std::string_view input);
377 inline
void update_base_username(std::string_view input);
378 inline
void update_base_password(std::string_view input);
379 inline
void update_base_port(std::optional<uint16_t> input);
386 template <
bool override_hostname = false>
387 bool set_host_or_hostname(std::string_view input);
393 [[nodiscard]]
bool parse_ipv4(std::string_view input);
399 [[nodiscard]]
bool parse_ipv6(std::string_view input);
405 [[nodiscard]]
bool parse_opaque_host(std::string_view input);
416 std::
string non_special_scheme{};
422 [[nodiscard]]
inline bool cannot_have_credentials_or_port()
const;
425 std::string_view view,
bool check_trailing_content)
noexcept override;
428 return this->parse_port(view,
false);
441 template <
bool has_state_overr
ide = false>
444 constexpr void clear_pathname()
override;
445 constexpr void clear_search()
override;
446 constexpr void set_protocol_as_file();
465 inline void set_scheme(std::string &&new_scheme)
noexcept;
471 constexpr void copy_scheme(
ada::url &&u)
noexcept;
477 constexpr void copy_scheme(
const ada::url &u);
481inline std::ostream &
operator<<(std::ostream &out,
const ada::url &u);
Declarations for URL specific checkers used within Ada.
Cross-platform compiler macros and common definitions.
#define ada_really_inline
Definitions for helper functions used within Ada.
Includes the definitions for helper functions.
Internal URL parsing implementation.
std::ostream & operator<<(std::ostream &out, const ada::url &u)
Memory-efficient URL representation using a single buffer.
Abstract base class for URL representations.
Represents a parsed URL with individual string components.
void set_hash(std::string_view input)
std::string get_search() const noexcept
bool set_hostname(std::string_view input)
bool set_host(std::string_view input)
ada_really_inline ada::url_components get_components() const noexcept
url(url &&u) noexcept=default
bool has_empty_hostname() const noexcept
bool has_port() const noexcept
ada_really_inline bool has_credentials() const noexcept
friend ada::url ada::parser::parse_url(std::string_view, const ada::url *)
bool set_password(std::string_view input)
url & operator=(url &&u) noexcept=default
url & operator=(const url &u)=default
void set_search(std::string_view input)
ada_really_inline size_t get_pathname_length() const noexcept
bool set_href(std::string_view input)
ada_really_inline std::string get_href() const noexcept
bool has_hostname() const noexcept
bool set_username(std::string_view input)
constexpr std::string_view get_pathname() const noexcept
url(const url &u)=default
std::string get_host() const noexcept
std::string get_hash() const noexcept
bool set_pathname(std::string_view input)
std::string get_origin() const noexcept override
friend void ada::helpers::strip_trailing_spaces_from_opaque_path(ada::url &url) noexcept
std::string get_hostname() const noexcept
friend ada::url ada::parser::parse_url_impl(std::string_view, const ada::url *)
const std::string & get_password() const noexcept
bool set_protocol(std::string_view input)
std::string get_port() const noexcept
const std::string & get_username() const noexcept
bool set_port(std::string_view input)
constexpr bool has_search() const noexcept override
std::string to_string() const override
std::string get_protocol() const noexcept
constexpr bool has_hash() const noexcept override
bool has_valid_domain() const noexcept override
Base class and common definitions for URL types.
Declaration for the URL Components.