2010-10-16 14:15:41 +00:00
|
|
|
|
/*
|
|
|
|
|
|
2012-05-27 14:23:31 +00:00
|
|
|
|
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/.
|
2010-10-16 14:15:41 +00:00
|
|
|
|
|
2012-05-27 14:23:31 +00:00
|
|
|
|
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>
|
|
|
|
|
|
2010-10-16 14:15:41 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2010-10-16 13:29:06 +00:00
|
|
|
|
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 {
|
2010-10-16 14:15:41 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The WMI Provider.
|
|
|
|
|
/// This class is not exposed to WMI itself.
|
|
|
|
|
/// </summary>
|
2010-10-16 13:29:06 +00:00
|
|
|
|
public class WmiProvider : IDisposable {
|
2010-10-16 18:24:20 +00:00
|
|
|
|
private List<IWmiObject> activeInstances;
|
2010-10-16 13:29:06 +00:00
|
|
|
|
|
|
|
|
|
public WmiProvider(IComputer computer) {
|
2010-10-16 18:24:20 +00:00
|
|
|
|
activeInstances = new List<IWmiObject>();
|
2010-10-16 13:29:06 +00:00
|
|
|
|
|
|
|
|
|
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)
|
2010-10-16 13:29:06 +00:00
|
|
|
|
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);
|
2010-10-16 13:29:06 +00:00
|
|
|
|
|
2010-11-11 20:48:19 +00:00
|
|
|
|
try {
|
|
|
|
|
Instrumentation.Publish(hw);
|
|
|
|
|
} catch (Exception) { }
|
2010-10-16 13:29:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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);
|
2010-10-16 13:29:06 +00:00
|
|
|
|
|
2010-11-11 20:48:19 +00:00
|
|
|
|
try {
|
|
|
|
|
Instrumentation.Publish(sensor);
|
|
|
|
|
} catch (Exception) { }
|
2010-10-16 13:29:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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);
|
2010-10-16 13:29:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void RevokeInstance(string identifier) {
|
2010-10-16 18:24:20 +00:00
|
|
|
|
int instanceIndex = activeInstances.FindIndex(
|
2010-10-16 13:29:06 +00:00
|
|
|
|
item => item.Identifier == identifier.ToString()
|
|
|
|
|
);
|
|
|
|
|
|
2012-11-19 21:05:41 +00:00
|
|
|
|
if (instanceIndex == -1)
|
|
|
|
|
return;
|
|
|
|
|
|
2010-11-11 20:48:19 +00:00
|
|
|
|
try {
|
|
|
|
|
Instrumentation.Revoke(activeInstances[instanceIndex]);
|
|
|
|
|
} catch (Exception) { }
|
2010-10-16 13:29:06 +00:00
|
|
|
|
|
2010-10-16 18:24:20 +00:00
|
|
|
|
activeInstances.RemoveAt(instanceIndex);
|
2010-10-16 13:29:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
public void Dispose() {
|
2010-11-11 20:48:19 +00:00
|
|
|
|
foreach (IWmiObject instance in activeInstances) {
|
|
|
|
|
try {
|
|
|
|
|
Instrumentation.Revoke(instance);
|
|
|
|
|
} catch (Exception) { }
|
|
|
|
|
}
|
2010-10-16 18:24:20 +00:00
|
|
|
|
activeInstances = null;
|
2010-10-16 13:29:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|