mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-07 08:45:06 +00:00
220 lines
7.4 KiB
C#
220 lines
7.4 KiB
C#
using System;
|
|
using System.Linq;
|
|
using Crestron.SimplSharp;
|
|
using Crestron.SimplSharpPro;
|
|
using Crestron.SimplSharpPro.CrestronThread;
|
|
using PepperDash.Core;
|
|
using PepperDash.Core.PortalSync;
|
|
using PepperDash.Essentials.Core;
|
|
using PepperDash.Essentials.Devices.Common;
|
|
using PepperDash.Essentials.DM;
|
|
using PepperDash.Essentials.Fusion;
|
|
|
|
namespace PepperDash.Essentials
|
|
{
|
|
public class ControlSystem : CrestronControlSystem
|
|
{
|
|
PepperDashPortalSyncClient PortalSync;
|
|
HttpLogoServer LogoServer;
|
|
|
|
public ControlSystem()
|
|
: base()
|
|
{
|
|
Thread.MaxNumberOfUserThreads = 400;
|
|
Global.ControlSystem = this;
|
|
DeviceManager.Initialize(this);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Git 'er goin'
|
|
/// </summary>
|
|
public override void InitializeSystem()
|
|
{
|
|
//CrestronConsole.AddNewConsoleCommand(s => GoWithLoad(), "go", "Reloads configuration file",
|
|
// ConsoleAccessLevelEnum.AccessOperator);
|
|
//CrestronConsole.AddNewConsoleCommand(s => TearDown(), "ungo", "Unloads configuration file",
|
|
// ConsoleAccessLevelEnum.AccessOperator);
|
|
CrestronConsole.AddNewConsoleCommand(s =>
|
|
{
|
|
foreach (var tl in TieLineCollection.Default)
|
|
CrestronConsole.ConsoleCommandResponse(" {0}\r", tl);
|
|
},
|
|
"listtielines", "Prints out all tie lines", ConsoleAccessLevelEnum.AccessOperator);
|
|
|
|
GoWithLoad();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Do it, yo
|
|
/// </summary>
|
|
public void GoWithLoad()
|
|
{
|
|
// var thread = new Thread(o =>
|
|
// {
|
|
try
|
|
{
|
|
CrestronConsole.AddNewConsoleCommand(EnablePortalSync, "portalsync", "Loads Portal Sync",
|
|
ConsoleAccessLevelEnum.AccessOperator);
|
|
|
|
//PortalSync = new PepperDashPortalSyncClient();
|
|
|
|
Debug.Console(0, "Starting Essentials load from configuration");
|
|
ConfigReader.LoadConfig2();
|
|
LoadDevices();
|
|
LoadTieLines();
|
|
LoadRooms();
|
|
|
|
LogoServer = new HttpLogoServer(8080, @"\html\logo");
|
|
|
|
DeviceManager.ActivateAll();
|
|
Debug.Console(0, "Essentials load complete\r" +
|
|
"-------------------------------------------------------------");
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Debug.Console(0, "FATAL INITIALIZE ERROR. System is in an inconsistent state:\r{0}", e);
|
|
}
|
|
// return null;
|
|
// }, null);
|
|
}
|
|
|
|
public void EnablePortalSync(string s)
|
|
{
|
|
if (s.ToLower() == "enable")
|
|
{
|
|
CrestronConsole.ConsoleCommandResponse("Portal Sync features enabled");
|
|
PortalSync = new PepperDashPortalSyncClient();
|
|
}
|
|
}
|
|
|
|
public void TearDown()
|
|
{
|
|
Debug.Console(0, "Tearing down existing system");
|
|
DeviceManager.DeactivateAll();
|
|
|
|
TieLineCollection.Default.Clear();
|
|
|
|
foreach (var key in DeviceManager.GetDevices())
|
|
DeviceManager.RemoveDevice(key);
|
|
|
|
Debug.Console(0, "Tear down COMPLETE");
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Reads all devices from config and adds them to DeviceManager
|
|
/// </summary>
|
|
public void LoadDevices()
|
|
{
|
|
foreach (var devConf in ConfigReader.ConfigObject.Devices)
|
|
{
|
|
Debug.Console(0, "Creating device '{0}'", devConf.Key);
|
|
// Skip this to prevent unnecessary warnings
|
|
if (devConf.Key == "processor")
|
|
continue;
|
|
|
|
// Try local factory first
|
|
var newDev = DeviceFactory.GetDevice(devConf);
|
|
|
|
// Then associated library factories
|
|
if (newDev == null)
|
|
newDev = PepperDash.Essentials.Devices.Common.DeviceFactory.GetDevice(devConf);
|
|
if (newDev == null)
|
|
newDev = PepperDash.Essentials.DM.DeviceFactory.GetDevice(devConf);
|
|
if (newDev == null)
|
|
newDev = PepperDash.Essentials.Devices.Displays.DisplayDeviceFactory.GetDevice(devConf);
|
|
|
|
if (newDev != null)
|
|
DeviceManager.AddDevice(newDev);
|
|
else
|
|
Debug.Console(0, "WARNING: Cannot load unknown device type '{0}', key '{1}'.", devConf.Type, devConf.Key);
|
|
}
|
|
|
|
// CODEC TESTING
|
|
/*
|
|
try
|
|
{
|
|
GenericSshClient TestCodecClient = new GenericSshClient("TestCodec-1--SshClient", "10.11.50.135", 22, "crestron", "2H3Zu&OvgXp6");
|
|
|
|
var props = new PepperDash.Essentials.Devices.Common.Codec.CiscoCodecPropertiesConfig();
|
|
|
|
props.PhonebookMode = "Local";
|
|
props.Favorites = new System.Collections.Generic.List<PepperDash.Essentials.Devices.Common.Codec.CodecActiveCallItem>();
|
|
props.Favorites.Add(new PepperDash.Essentials.Devices.Common.Codec.CodecActiveCallItem() { Name = "NYU Cisco Webex", Number = "10.11.50.211" });
|
|
|
|
PepperDash.Essentials.Devices.Common.VideoCodec.Cisco.CiscoCodec TestCodec =
|
|
new PepperDash.Essentials.Devices.Common.VideoCodec.Cisco.CiscoCodec("TestCodec-1", "Cisco Spark Room Kit", TestCodecClient, props);
|
|
|
|
TestCodec.CommDebuggingIsOn = true;
|
|
|
|
TestCodec.CustomActivate();
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Debug.Console(0, "Error in something Neil is working on ;) \r{0}", e);
|
|
}
|
|
*/
|
|
// CODEC TESTING
|
|
}
|
|
|
|
/// <summary>
|
|
/// Helper method to load tie lines. This should run after devices have loaded
|
|
/// </summary>
|
|
public void LoadTieLines()
|
|
{
|
|
// Make this reusable by clearing the TieLineCollection
|
|
|
|
var tlc = TieLineCollection.Default;
|
|
tlc.Clear();
|
|
foreach (var tieLineConfig in ConfigReader.ConfigObject.TieLines)
|
|
{
|
|
var newTL = tieLineConfig.GetTieLine();
|
|
if (newTL != null)
|
|
tlc.Add(newTL);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads all rooms from config and adds them to DeviceManager
|
|
/// </summary>
|
|
public void LoadRooms()
|
|
{
|
|
foreach (var roomConfig in ConfigReader.ConfigObject.Rooms)
|
|
{
|
|
var room = roomConfig.GetRoomObject();
|
|
if (room != null)
|
|
{
|
|
if (room is EssentialsHuddleSpaceRoom)
|
|
{
|
|
DeviceManager.AddDevice(room);
|
|
|
|
Debug.Console(1, "Room is EssentialsHuddleSpaceRoom, attempting to add to DeviceManager with Fusion");
|
|
DeviceManager.AddDevice(new EssentialsHuddleSpaceFusionSystemControllerBase((EssentialsHuddleSpaceRoom)room, 0xf1));
|
|
|
|
var cotija = DeviceManager.GetDeviceForKey("cotijaServer") as CotijaSystemController;
|
|
|
|
if (cotija != null)
|
|
{
|
|
cotija.CotijaRooms.Add(new CotijaEssentialsHuddleSpaceRoomBridge(cotija, room as EssentialsHuddleSpaceRoom));
|
|
}
|
|
}
|
|
else if (room is EssentialsHuddleVtc1Room)
|
|
{
|
|
DeviceManager.AddDevice(room);
|
|
|
|
Debug.Console(1, "Room is EssentialsHuddleVtc1Room, attempting to add to DeviceManager with Fusion");
|
|
}
|
|
else
|
|
{
|
|
Debug.Console(1, "Room is NOT EssentialsHuddleSpaceRoom, attempting to add to DeviceManager w/o Fusion");
|
|
DeviceManager.AddDevice(room);
|
|
}
|
|
|
|
}
|
|
else
|
|
Debug.Console(0, "WARNING: Cannot create room from config, key '{0}'", roomConfig.Key);
|
|
}
|
|
}
|
|
}
|
|
}
|