mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-16 13:15:07 +00:00
CrestronUtils becomes ProcessorUtils
This commit is contained in:
@@ -100,7 +100,7 @@
|
|||||||
<Compile Include="Services\ServiceProvider.cs" />
|
<Compile Include="Services\ServiceProvider.cs" />
|
||||||
<Compile Include="Collections\IcdHashSet.cs" />
|
<Compile Include="Collections\IcdHashSet.cs" />
|
||||||
<Compile Include="Collections\ScrollQueue.cs" />
|
<Compile Include="Collections\ScrollQueue.cs" />
|
||||||
<Compile Include="CrestronUtils.cs" />
|
<Compile Include="ProcessorUtils.cs" />
|
||||||
<Compile Include="Extensions\DateTimeExtensions.cs" />
|
<Compile Include="Extensions\DateTimeExtensions.cs" />
|
||||||
<Compile Include="Extensions\TypeExtensions.cs" />
|
<Compile Include="Extensions\TypeExtensions.cs" />
|
||||||
<Compile Include="IcdConsole.cs" />
|
<Compile Include="IcdConsole.cs" />
|
||||||
|
|||||||
@@ -1,14 +1,12 @@
|
|||||||
#if SIMPLSHARP
|
using System;
|
||||||
using System;
|
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using Crestron.SimplSharp;
|
|
||||||
using ICD.Common.Properties;
|
using ICD.Common.Properties;
|
||||||
using ICD.Common.Services;
|
using ICD.Common.Services;
|
||||||
using ICD.Common.Services.Logging;
|
using ICD.Common.Services.Logging;
|
||||||
|
|
||||||
namespace ICD.Common.Utils
|
namespace ICD.Common.Utils
|
||||||
{
|
{
|
||||||
public static class CrestronUtils
|
public static class ProcessorUtils
|
||||||
{
|
{
|
||||||
private const string MODEL_NAME_REGEX = @"^(\S*)";
|
private const string MODEL_NAME_REGEX = @"^(\S*)";
|
||||||
private const string MODEL_VERSION_REGEX = @" [[]v(\S*)";
|
private const string MODEL_VERSION_REGEX = @" [[]v(\S*)";
|
||||||
@@ -20,22 +18,6 @@ namespace ICD.Common.Utils
|
|||||||
|
|
||||||
#region Properties
|
#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>
|
/// <summary>
|
||||||
/// Gets the version text from the console.
|
/// Gets the version text from the console.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -49,7 +31,7 @@ namespace ICD.Common.Utils
|
|||||||
{
|
{
|
||||||
ServiceProvider.TryGetService<ILoggerService>()
|
ServiceProvider.TryGetService<ILoggerService>()
|
||||||
.AddEntry(eSeverity.Warning, "{0} - Failed to send console command \"{1}\"",
|
.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>()
|
ServiceProvider.TryGetService<ILoggerService>()
|
||||||
.AddEntry(eSeverity.Warning, "{0} - Failed to send console command \"{1}\"",
|
.AddEntry(eSeverity.Warning, "{0} - Failed to send console command \"{1}\"",
|
||||||
typeof(CrestronUtils).Name, RAMFREE_COMMAND);
|
typeof(ProcessorUtils).Name, RAMFREE_COMMAND);
|
||||||
}
|
}
|
||||||
return ramfree;
|
return ramfree;
|
||||||
}
|
}
|
||||||
|
|
||||||
[PublicAPI]
|
|
||||||
public static string GetMilliseconds()
|
|
||||||
{
|
|
||||||
return IcdEnvironment.GetLocalTime().ToString("fff");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
|
||||||
Reference in New Issue
Block a user