nv-redfish 0.7.0

Rust implementation of Redfish API for BMC management
Documentation
// SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

use crate::schema::thermal::Thermal as ThermalSchema;
use crate::Error;
use crate::NvBmc;
use crate::Resource;
use crate::ResourceSchema;
use nv_redfish_core::Bmc;
use nv_redfish_core::NavProperty;
use std::marker::PhantomData;
use std::sync::Arc;

/// Legacy Thermal resource wrapper.
///
/// This represents the deprecated `Chassis/Thermal` resource used in older
/// Redfish implementations. For modern BMCs, prefer using direct sensor
/// links via `crate::metrics::HasMetrics` or the `ThermalSubsystem` resource.
///
/// Note: This type intentionally does NOT implement `crate::metrics::HasMetrics`
/// to encourage explicit handling of legacy vs modern approaches.
pub struct Thermal<B: Bmc> {
    data: Arc<ThermalSchema>,
    _marker: PhantomData<B>,
}

impl<B: Bmc> Thermal<B> {
    /// Create a new thermal resource handle.
    pub(crate) async fn new(
        bmc: &NvBmc<B>,
        thermal_ref: &NavProperty<ThermalSchema>,
    ) -> Result<Self, Error<B>> {
        thermal_ref
            .get(bmc.as_ref())
            .await
            .map_err(Error::Bmc)
            .map(|data| Self {
                data,
                _marker: PhantomData,
            })
    }

    /// Get the raw schema data for this thermal resource.
    ///
    /// Returns an `Arc` to the underlying schema, allowing cheap cloning
    /// and sharing of the data. The schema contains arrays of temperatures,
    /// fans, and thermal redundancy information.
    #[must_use]
    pub fn raw(&self) -> Arc<ThermalSchema> {
        self.data.clone()
    }
}

impl<B: Bmc> Resource for Thermal<B> {
    fn resource_ref(&self) -> &ResourceSchema {
        &self.data.as_ref().base
    }
}