CrestronUtils becomes ProcessorUtils

This commit is contained in:
Chris Cameron
2017-09-27 10:32:44 -04:00
parent 37052bdee9
commit f206741e3a
2 changed files with 5 additions and 31 deletions

View File

@@ -100,7 +100,7 @@
<Compile Include="Services\ServiceProvider.cs" />
<Compile Include="Collections\IcdHashSet.cs" />
<Compile Include="Collections\ScrollQueue.cs" />
<Compile Include="CrestronUtils.cs" />
<Compile Include="ProcessorUtils.cs" />
<Compile Include="Extensions\DateTimeExtensions.cs" />
<Compile Include="Extensions\TypeExtensions.cs" />
<Compile Include="IcdConsole.cs" />

View File

@@ -1,14 +1,12 @@
#if SIMPLSHARP
using System;
using System;
using System.Text.RegularExpressions;
using Crestron.SimplSharp;
using ICD.Common.Properties;
using ICD.Common.Services;
using ICD.Common.Services.Logging;
namespace ICD.Common.Utils
{
public static class CrestronUtils
public static class ProcessorUtils
{
private const string MODEL_NAME_REGEX = @"^(\S*)";
private const string MODEL_VERSION_REGEX = @" [[]v(\S*)";
@@ -20,22 +18,6 @@ namespace ICD.Common.Utils
#region Properties
/// <summary>
/// Gets the default mac address of the processor.
/// </summary>
[PublicAPI]
public static string DefaultMacAddress
{
get
{
const CrestronEthernetHelper.ETHERNET_PARAMETER_TO_GET param =
CrestronEthernetHelper.ETHERNET_PARAMETER_TO_GET.GET_MAC_ADDRESS;
const EthernetAdapterType type = EthernetAdapterType.EthernetLANAdapter;
short id = CrestronEthernetHelper.GetAdapterdIdForSpecifiedAdapterType(type);
return CrestronEthernetHelper.GetEthernetParameter(param, id);
}
}
/// <summary>
/// Gets the version text from the console.
/// </summary>
@@ -49,7 +31,7 @@ namespace ICD.Common.Utils
{
ServiceProvider.TryGetService<ILoggerService>()
.AddEntry(eSeverity.Warning, "{0} - Failed to send console command \"{1}\"",
typeof(CrestronUtils).Name, "version");
typeof(ProcessorUtils).Name, "version");
}
}
@@ -200,17 +182,9 @@ namespace ICD.Common.Utils
{
ServiceProvider.TryGetService<ILoggerService>()
.AddEntry(eSeverity.Warning, "{0} - Failed to send console command \"{1}\"",
typeof(CrestronUtils).Name, RAMFREE_COMMAND);
typeof(ProcessorUtils).Name, RAMFREE_COMMAND);
}
return ramfree;
}
[PublicAPI]
public static string GetMilliseconds()
{
return IcdEnvironment.GetLocalTime().ToString("fff");
}
}
}
#endif