hive-router 0.0.51

GraphQL router/gateway for Federation
use hive_router_config::RouterConfigError;
use hive_router_plan_executor::executors::error::TlsCertificatesError;

use crate::{
    jwt::jwks_manager::JwksSourceError, pipeline::usage_reporting::UsageReportingError,
    plugins::registry::PluginRegistryError, schema_state::SupergraphManagerError,
    shared_state::SharedStateError, telemetry::TelemetryInitError,
};

#[derive(Debug, thiserror::Error)]
pub enum RouterInitError {
    #[error(transparent)]
    RouterConfigError(#[from] RouterConfigError),
    #[error(transparent)]
    SupergraphManagerError(#[from] SupergraphManagerError),
    #[error("Failed to bind HTTP server to address: {0}. Error: {1}")]
    HttpServerBindError(String, std::io::Error),
    #[error("Failed to bind HTTP callback server to address: {0}. Error: {1}")]
    HttpCallbackServerBindError(String, std::io::Error),
    #[error("Failed to start HTTP server: {0}")]
    HttpServerStartError(std::io::Error),
    #[error(transparent)]
    JwksSourceError(#[from] JwksSourceError),
    #[error("Usage Reporting - {0}")]
    UsageReportingError(#[from] UsageReportingError),
    #[error(transparent)]
    SharedStateError(#[from] SharedStateError),
    #[error(transparent)]
    TelemetryInitError(#[from] TelemetryInitError),
    #[error(transparent)]
    PluginRegistryError(#[from] PluginRegistryError),
    #[error("Persisted documents endpoint incompatible: {0}")]
    PersistedDocumentsEndpointIncompatible(String),
    #[error("Endpoints of '{endpoint_name_one}' and '{endpoint_name_two}' cannot both use the same endpoint: {endpoint}")]
    EndpointConflict {
        endpoint_name_one: String,
        endpoint_name_two: String,
        endpoint: String,
    },
    #[error(transparent)]
    TlsCertificatesError(#[from] TlsCertificatesError),
}