openhardwaremonitor/WMI/WmiProvider.cs

128 lines
3.5 KiB
C#
Raw Permalink Normal View History

/*
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
Copyright (C) 2009-2010 Paul Werelds <paul@werelds.net>
2012-11-19 21:05:41 +00:00
Copyright (C) 2012 Michael M<EFBFBD>ller <mmoeller@openhardwaremonitor.org>
*/
using System;
using System.Collections.Generic;
using System.Management.Instrumentation;
using OpenHardwareMonitor.Hardware;
[assembly: Instrumented("root/OpenHardwareMonitor")]
[System.ComponentModel.RunInstaller(true)]
public class InstanceInstaller : DefaultManagementProjectInstaller { }
2010-10-17 08:21:33 +00:00
namespace OpenHardwareMonitor.WMI {
/// <summary>
/// The WMI Provider.
/// This class is not exposed to WMI itself.
/// </summary>
public class WmiProvider : IDisposable {
2010-10-16 18:24:20 +00:00
private List<IWmiObject> activeInstances;
public WmiProvider(IComputer computer) {
2010-10-16 18:24:20 +00:00
activeInstances = new List<IWmiObject>();
foreach (IHardware hardware in computer.Hardware)
ComputerHardwareAdded(hardware);
computer.HardwareAdded += ComputerHardwareAdded;
computer.HardwareRemoved += ComputerHardwareRemoved;
}
public void Update() {
2010-10-16 18:24:20 +00:00
foreach (IWmiObject instance in activeInstances)
instance.Update();
}
#region Eventhandlers
private void ComputerHardwareAdded(IHardware hardware) {
if (!Exists(hardware.Identifier.ToString())) {
foreach (ISensor sensor in hardware.Sensors)
HardwareSensorAdded(sensor);
hardware.SensorAdded += HardwareSensorAdded;
hardware.SensorRemoved += HardwareSensorRemoved;
Hardware hw = new Hardware(hardware);
2010-10-16 18:24:20 +00:00
activeInstances.Add(hw);
try {
Instrumentation.Publish(hw);
} catch (Exception) { }
}
foreach (IHardware subHardware in hardware.SubHardware)
ComputerHardwareAdded(subHardware);
}
private void HardwareSensorAdded(ISensor data) {
Sensor sensor = new Sensor(data);
2010-10-16 18:24:20 +00:00
activeInstances.Add(sensor);
try {
Instrumentation.Publish(sensor);
} catch (Exception) { }
}
private void ComputerHardwareRemoved(IHardware hardware) {
hardware.SensorAdded -= HardwareSensorAdded;
hardware.SensorRemoved -= HardwareSensorRemoved;
foreach (ISensor sensor in hardware.Sensors)
HardwareSensorRemoved(sensor);
foreach (IHardware subHardware in hardware.SubHardware)
ComputerHardwareRemoved(subHardware);
RevokeInstance(hardware.Identifier.ToString());
}
private void HardwareSensorRemoved(ISensor sensor) {
RevokeInstance(sensor.Identifier.ToString());
}
#endregion
#region Helpers
private bool Exists(string identifier) {
2010-10-16 18:24:20 +00:00
return activeInstances.Exists(h => h.Identifier == identifier);
}
private void RevokeInstance(string identifier) {
2010-10-16 18:24:20 +00:00
int instanceIndex = activeInstances.FindIndex(
item => item.Identifier == identifier.ToString()
);
2012-11-19 21:05:41 +00:00
if (instanceIndex == -1)
return;
try {
Instrumentation.Revoke(activeInstances[instanceIndex]);
} catch (Exception) { }
2010-10-16 18:24:20 +00:00
activeInstances.RemoveAt(instanceIndex);
}
#endregion
public void Dispose() {
foreach (IWmiObject instance in activeInstances) {
try {
Instrumentation.Revoke(instance);
} catch (Exception) { }
}
2010-10-16 18:24:20 +00:00
activeInstances = null;
}
}
}