use std::fmt::Display;
use thiserror::Error;
pub(crate) const FEATURE_REQUEST_URL: &str =
"https://github.com/V0ldek/rsonpath/issues/new?template=feature_request.md";
pub(crate) const BUG_REPORT_URL: &str =
"https://github.com/V0ldek/rsonpath/issues/new?template=bug_report.md";
#[derive(Error, Debug)]
pub struct UnsupportedFeatureError {
issue: Option<usize>,
feature: &'static str,
}
impl UnsupportedFeatureError {
#[must_use]
#[allow(dead_code)]
#[inline(always)]
fn tracked(issue: usize, feature: &'static str) -> Self {
Self {
issue: Some(issue),
feature,
}
}
#[must_use]
#[inline(always)]
fn untracked(feature: &'static str) -> Self {
Self {
issue: None,
feature,
}
}
#[must_use]
#[inline(always)]
pub fn large_json_depths() -> Self {
Self::untracked("Large JSON Depths")
}
#[must_use]
#[inline(always)]
pub fn large_automaton_queries() -> Self {
Self::untracked("Large Automaton Queries")
}
#[must_use]
#[inline(always)]
pub fn issue(&self) -> Option<usize> {
self.issue
}
#[must_use]
#[inline(always)]
pub fn feature(&self) -> &str {
self.feature
}
#[must_use]
#[inline(always)]
pub fn is_planned(&self) -> bool {
self.issue.is_some()
}
}
impl Display for UnsupportedFeatureError {
#[inline]
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self.issue {
Some(issue) => {
write!(
f,
"the feature {} (#{}) is not supported yet; it is being tracked and discussed at \
https://github.com/V0ldek/rsonpath/issues/{}",
self.feature, issue, issue
)
}
None => {
write!(
f,
"the feature {} is not supported, and is not planned; \
if you would like to see it introduced to rsonpath, please raise a feature request at \
{FEATURE_REQUEST_URL}",
self.feature
)
}
}
}
}