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
// THIS FILE IS AUTO-GENERATED

use crate::{
    service::{HapService, Service},
    characteristic::{
        HapCharacteristic,
		battery_level,
		charging_state,
		status_low_battery,
		name,
	},
    HapType,
};

/// Battery Service Service.
pub type BatteryService = Service<BatteryServiceInner>;

impl Default for BatteryService {
    fn default() -> BatteryService { new() }
}

/// Inner type of the Battery Service Service.
#[derive(Default)]
pub struct BatteryServiceInner {
    /// ID of the Battery Service Service.
    id: u64,
    /// `HapType` of the Battery Service Service.
    hap_type: HapType,
    /// Specifies if the Service is hidden.
    hidden: bool,
    /// Specifies if the Service is the primary Service of the Accessory.
    primary: bool,

	/// Battery Level Characteristic.
	pub battery_level: battery_level::BatteryLevel,
	/// Charging State Characteristic.
	pub charging_state: charging_state::ChargingState,
	/// Status Low Battery Characteristic.
	pub status_low_battery: status_low_battery::StatusLowBattery,

	/// Name Characteristic.
	pub name: Option<name::Name>,
}

impl HapService for BatteryServiceInner {
    fn get_id(&self) -> u64 {
        self.id
    }

    fn set_id(&mut self, id: u64) {
        self.id = id;
    }

    fn get_type(&self) -> HapType {
        self.hap_type
    }

    fn get_hidden(&self) -> bool {
        self.hidden
    }

    fn set_hidden(&mut self, hidden: bool) {
        self.hidden = hidden;
    }

    fn get_primary(&self) -> bool {
        self.primary
    }

    fn set_primary(&mut self, primary: bool) {
        self.primary = primary;
    }

    fn get_characteristics(&self) -> Vec<&HapCharacteristic> {
        let mut characteristics: Vec<&HapCharacteristic> = vec![
			&self.battery_level,
			&self.charging_state,
			&self.status_low_battery,
		];
		if let Some(c) = &self.name {
		    characteristics.push(c);
		}
		characteristics
    }

    fn get_mut_characteristics(&mut self) -> Vec<&mut HapCharacteristic> {
        let mut characteristics: Vec<&mut HapCharacteristic> = vec![
			&mut self.battery_level,
			&mut self.charging_state,
			&mut self.status_low_battery,
		];
		if let Some(c) = &mut self.name {
		    characteristics.push(c);
		}
		characteristics
    }
}

/// Creates a new Battery Service Service.
pub fn new() -> BatteryService {
    BatteryService::new(BatteryServiceInner {
        hap_type: HapType::BatteryService,
		battery_level: battery_level::new(),
		charging_state: charging_state::new(),
		status_low_battery: status_low_battery::new(),
		..Default::default()
    })
}