/*------------------------------------------------------------------------- // UNCLASSIFIED /*------------------------------------------------------------------------- RAYTHEON PROPRIETARY: THIS DOCUMENT CONTAINS DATA OR INFORMATION PROPRIETARY TO RAYTHEON COMPANY AND IS RESTRICTED TO USE ONLY BY PERSONS AUTHORIZED BY RAYTHEON COMPANY IN WRITING TO USE IT. DISCLOSURE TO UNAUTHORIZED PERSONS WOULD LIKELY CAUSE SUBSTANTIAL COMPETITIVE HARM TO RAYTHEON COMPANY'S BUSINESS POSITION. NEITHER SAID DOCUMENT NOR ITS CONTENTS SHALL BE FURNISHED OR DISCLOSED TO OR COPIED OR USED BY PERSONS OUTSIDE RAYTHEON COMPANY WITHOUT THE EXPRESS WRITTEN APPROVAL OF RAYTHEON COMPANY. THIS PROPRIETARY NOTICE IS NOT APPLICABLE IF DELIVERED TO THE U.S. GOVERNMENT. UNPUBLISHED WORK - COPYRIGHT RAYTHEON COMPANY. -------------------------------------------------------------------------*/ using NLog; using ProgramGui; using ProgramGui.Model; using ProgramGui.ViewModel; using ProgramLib; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace ProgramLib { internal class PowerSupplyReadThread : BasicThread { private enum Events { GLOBAL_QUIT, UUT_POWER_ON, UUT_POWER_OFF, // DO NOT change the name // This must be the last member in the enum EVENT_TIMED_OUT } private ILogger _logger; private string _powerSupplySystemName; public PowerSupplyReadThread(string powerSupplySystemName) { _logger = LogManager.GetCurrentClassLogger(); _powerSupplySystemName = powerSupplySystemName; } ~PowerSupplyReadThread() { _logger?.Debug($"Entering {this.GetType().Name}::{System.Reflection.MethodBase.GetCurrentMethod().Name}() ..."); } protected override void DoWork() { _logger?.Debug($"{this.GetType().Name}::{System.Reflection.MethodBase.GetCurrentMethod().Name}() for {_powerSupplySystemName} is running..."); try { Dictionary eventDict = new Dictionary(); eventDict[Events.GLOBAL_QUIT] = Program.Instance()._eventManager[EventManager.Events.GLOBAL_QUIT]; eventDict[Events.UUT_POWER_ON] = Program.Instance()._eventManager[EventManager.Events.UUT_POWER_ON]; eventDict[Events.EVENT_TIMED_OUT] = null; EventGroup eventGroup = new EventGroup(eventDict); while (true) { Events id = eventGroup.WaitAny(); if (id == Events.UUT_POWER_ON) { ReadPowerSupplyData(); } else break; } } catch (Exception ex) { _logger?.Error(ex.Message + "\n" + ex.StackTrace); } _logger?.Debug($"{this.GetType().Name}::{System.Reflection.MethodBase.GetCurrentMethod().Name}() for {_powerSupplySystemName} is exiting..."); } private void ReadPowerSupplyData() { int pollRateMs = 1000; _logger?.Debug($"{this.GetType().Name}::{System.Reflection.MethodBase.GetCurrentMethod().Name}() for {_powerSupplySystemName} is running..."); try { Dictionary eventDict = new Dictionary(); eventDict[Events.GLOBAL_QUIT] = Program.Instance()._eventManager[EventManager.Events.GLOBAL_QUIT]; eventDict[Events.UUT_POWER_OFF] = Program.Instance()._eventManager[EventManager.Events.UUT_POWER_OFF]; eventDict[Events.EVENT_TIMED_OUT] = null; EventGroup eventGroup = new EventGroup(eventDict); Random rnd = new Random(); while (true) { Events id = eventGroup.WaitAny(pollRateMs); if (id == Events.EVENT_TIMED_OUT) { Thread.Sleep(100); } else break; } } catch (Exception ex) { _logger.Error(ex.Message + "\n" + ex.StackTrace); } _logger?.Debug($"{this.GetType().Name}::{System.Reflection.MethodBase.GetCurrentMethod().Name}() for {_powerSupplySystemName} is exiting..."); } } }