This commit is contained in:
2026-04-17 14:55:32 -04:00
commit bc3ac1d4c9
18017 changed files with 4371742 additions and 0 deletions

View File

@@ -0,0 +1,136 @@
using DTS.Common.Enums;
using System;
namespace DTS.Common.Interface.Sensors.SensorsList
{
public interface IStreamOutputSetting
{
/// <summary>
/// ID in the database for the stream output setting
/// only positive numbers are valid database ids
/// </summary>
int DatabaseId { get; set; }
/// <summary>
/// whether the stream output is checked in a list with a checkbox
/// </summary>
bool Included { get; set; }
/// <summary>
/// the serial number / setting name
/// </summary>
string SerialNumber { get; set; }
/// <summary>
/// description or comment of setting
/// </summary>
string Description { get; set; }
/// <summary>
/// the user who last modified setting
/// </summary>
string LastModifiedBy { get; set; }
/// <summary>
/// when the setting was last modified
/// </summary>
DateTime LastModified { get; set; }
/// <summary>
/// returns true if stream output matches filter criteria
/// </summary>
/// <param name="term"></param>
/// <returns></returns>
bool Filter(string term);
/// <summary>
/// whether the stream output is associated with a channel
/// </summary>
bool Assigned { get; set; }
/// <summary>
/// whether the stream output is online or not
/// </summary>
bool Online { get; set; }
/// <summary>
/// the isocode for the stream output
/// </summary>
string ISOCode { get; set; }
/// <summary>
/// the iso channel name for the stream output
/// </summary>
string ISOChannelName { get; set; }
/// <summary>
/// the user code for the stream output
/// </summary>
string UserCode { get; set; }
/// <summary>
/// the user channel name for the stream output
/// </summary>
string UserChannelName { get; set; }
/// <summary>
/// marks the stream output setting as broken or not
/// broken sensors do not appear in selectable lists of sensors in edit test setup or edit group
/// </summary>
bool Broken { get; set; }
/// <summary>
/// marks the stream output setting as donotuse
/// donotuse sensors do not appear in selectable lists of sensors in edit test setup or edit group
/// </summary>
bool DoNotUse { get; set; }
///<summary>
/// udp profile setting value
///</summary>
UDPStreamProfile UDPProfile { get; set; }
///<summary>
/// udp address setting value
///</summary>
string UDPAddress { get; set; }
///<summary>
/// time channel id setting value
///</summary>
ushort UDPTimeChannelId { get; set; }
///<summary>
/// data channel id setting value
///</summary>
ushort UDPDataChannelId { get; set; }
///<summary>
/// tmns config setting value
///</summary>
string UDPTmNSConfig { get; set; }
///<summary>
/// irig data packet interval setting value
///</summary>
ushort IRIGTimeDataPacketIntervalMs { get; set; }
/// <summary>
/// interval in ms between sending TMATS information while streaming
/// http://manuscript.dts.local/f/cases/29987/Add-CG-DP-TMATS-interval-UI-support
/// </summary>
ushort TMATSIntervalMs { get; set; }
bool IsCH10 { get; }
bool IsTMNS { get; }
bool IsIENA { get; }
bool IsUART { get; }
/// <summary>
/// TMNS sub frame id for output streaming
/// </summary>
uint TMNS_SubFrameId { get; set; }
/// <summary>
/// TMNS message id for output streaming
/// </summary>
uint TMNS_MsgId { get; set; }
/// <summary>
/// tmns PCM minor per major setting for output streaming
/// </summary>
uint TMNS_MinorPerMajor { get; set; }
/// <summary>
/// TMNS TMATs port for output streaming
/// </summary>
uint TMNS_TMATSPort { get; set; }
/// <summary>
/// IENA key for output streaming
/// </summary>
ushort IENA_Key { get; set; }
/// <summary>
/// IENA source port for streaming
/// </summary>
uint IENA_SourcePort { get; set; }
}
}

View File

@@ -0,0 +1,12 @@
using DTS.Common.Base;
namespace DTS.Common.Interface
{
public interface IChannelSummary : IBaseClass
{
string ChannelType { get; set; }
int Requested { get; set; }
int Assigned { get; set; }
int Unassigned { get; set; }
}
}

View File

@@ -0,0 +1,20 @@
using DTS.Common.Base;
using Microsoft.Practices.Prism.Events;
// ReSharper disable CheckNamespace
namespace DTS.Common.Events
{
/// <summary>
/// The number of loaded Tests changed event.
/// </summary>
public class TestLoadedCountNotification : CompositePresentationEvent<TestLoadedCountNotificationArg> { }
public class TestLoadedCountNotificationArg
{
public int LoadedCount { get; set; }
/// <summary>
/// 24417 start pulling apart viewer to allow reuse for PSD reports
/// </summary>
public IBaseViewModel ParentVM { get; set; }
}
}

View File

@@ -0,0 +1,12 @@
using DTS.Common.Interface;
using DTS.Common.Interface.TestDefinition;
// ReSharper disable CheckNamespace
namespace DTS.Common.Classes.Viewer.TestMetadata
{
public class TestMetadata: ITestMetadata
{
public ITestRunMetadata TestRun { get; set; }
public ITestSetupMetadata TestSetup { get; set; }
}
}

View File

@@ -0,0 +1,18 @@
using DTS.Common.Base.Classes;
namespace DTS.Common.Enums.Sensors.SensorsList
{
public enum CACOption
{
[DescriptionResourceAttribute("CAC_Manual")]
Manual,
[DescriptionResourceAttribute("CAC_Capacity")]
Capacity,
[DescriptionResourceAttribute("CAC_RangeHigh")]
RangeHigh,
[DescriptionResourceAttribute("CAC_RangeMedium")]
RangeMedium,
[DescriptionResourceAttribute("CAC_RangeLow")]
RangeLow,
}
}