Skip to content

Commit

Permalink
Updated GSF dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
gsfbuildbot committed Jul 12, 2016
1 parent 03a4c3f commit a97555f
Show file tree
Hide file tree
Showing 58 changed files with 437 additions and 295 deletions.
Binary file modified Source/Dependencies/GSF/AdoAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/ArchivistAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/AudioAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/COMTRADEAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/CsvAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/DataQualityMonitoring.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/Dnp3Adapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/DynamicCalculator.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/EpriExport.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/FileAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/FtpAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.ASN1.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.COMTRADE.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Communication.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Core.dll
Binary file not shown.
405 changes: 405 additions & 0 deletions Source/Dependencies/GSF/GSF.Core.dll.CodeAnalysisLog.xml

Large diffs are not rendered by default.

Empty file.
145 changes: 0 additions & 145 deletions Source/Dependencies/GSF/GSF.Core.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16473,38 +16473,6 @@
</summary>
<param name="stream"></param>
</member>
<member name="T:GSF.ITrackable">
<summary>
Represents the change history for a property.
</summary>
</member>
<member name="P:GSF.ITrackable.PropertyName">
<summary>
Gets the name of the property being tracked.
</summary>
</member>
<member name="P:GSF.ITrackable.OriginalValue">
<summary>
Gets the original value before the first change was made to the property.
</summary>
</member>
<member name="P:GSF.ITrackable.CurrentValue">
<summary>
Gets the current value after all changes have been applied to the property.
</summary>
</member>
<member name="M:GSF.ITrackable.Revert">
<summary>
Erases all change history and reverts to the
original value before any changes were made.
</summary>
</member>
<member name="M:GSF.ITrackable.Reset">
<summary>
Erases all change history and sets the
original value back to its initial value.
</summary>
</member>
<member name="T:GSF.NativeBinaryValue">
<summary>
Represents a binary data sample stored as a byte array ordered in the
Expand Down Expand Up @@ -29338,119 +29306,6 @@
<returns><c>true</c> if <paramref name="attributes"/> was found; otherwise <c>false</c>.</returns>
<typeparam name="TMemberInfo"><see cref="T:System.Reflection.MemberInfo"/> or derived type to get <see cref="T:System.Attribute"/> from.</typeparam>
</member>
<member name="T:GSF.Trackable`1">
<summary>
Represents the change history for a property.
</summary>
<remarks>
<para>
This class is primarily designed to track changes to the
property of an object, as in the following example.
</para>

<code>
public class MyClass
{
private Trackable&lt;string&gt; m_trackableText = new Trackable&lt;string&gt;(nameof(Text), true);

public string Text
{
get
{
return m_trackableText.CurrentValue;
}
set
{
m_trackableText.CurrentValue = value;
}
}
}
</code>
</remarks>
</member>
<member name="M:GSF.Trackable`1.#ctor(System.String,System.Boolean)">
<summary>
Creates a new instance of the <see cref="T:GSF.Trackable`1"/> class.
</summary>
<param name="propertyName">The name of the property being tracked.</param>
<param name="autoTrack">Determines the behavior of the setter for the <see cref="P:GSF.Trackable`1.CurrentValue"/> property. Set to false to track only the original and current values.</param>
</member>
<member name="M:GSF.Trackable`1.#ctor(System.String,`0,System.Boolean)">
<summary>
Creates a new instance of the <see cref="T:GSF.Trackable`1"/> class.
</summary>
<param name="propertyName">The name of the property being tracked.</param>
<param name="initialValue">The initial value of the property.</param>
<param name="autoTrack">Determines the behavior of the setter for the <see cref="P:GSF.Trackable`1.CurrentValue"/> property. Set to false to track only the original and current values.</param>
</member>
<member name="P:GSF.Trackable`1.PropertyName">
<summary>
Gets the name of the property being tracked.
</summary>
</member>
<member name="P:GSF.Trackable`1.CurrentValue">
<summary>
Gets or sets the current value after all changes have been applied to the property.
</summary>
</member>
<member name="P:GSF.Trackable`1.OriginalValue">
<summary>
Gets the original value before the first change was made to the property.
</summary>
</member>
<member name="P:GSF.Trackable`1.IsChanged">
<summary>
Gets a value to indicate whether the property's value has been
changed since the last time the current value was committed.
</summary>
</member>
<member name="P:GSF.Trackable`1.ChangeList">
<summary>
Gets the list of changes to the property's value,
starting from its original value and up to the current value.
</summary>
</member>
<member name="P:GSF.Trackable`1.GSF#ITrackable#OriginalValue">
<summary>
Gets the original value before the first change was made to the property.
</summary>
</member>
<member name="P:GSF.Trackable`1.GSF#ITrackable#CurrentValue">
<summary>
Gets the current value after all changes have been applied to the property.
</summary>
</member>
<member name="M:GSF.Trackable`1.SetCurrentValue(`0,System.Boolean)">
<summary>
Sets the current value of the property.
</summary>
<param name="value">The new value of the property.</param>
<param name="overwrite">True to track the change; false to overwrite the previous change. Does not overwrite the original value.</param>
</member>
<member name="M:GSF.Trackable`1.AcceptChanges">
<summary>
Erases all history in the change list and commits
the current value as the new original value.
</summary>
</member>
<member name="M:GSF.Trackable`1.Revert">
<summary>
Erases all history in the change list and reverts
to the original value before the changes were made.
</summary>
</member>
<member name="M:GSF.Trackable`1.Reset">
<summary>
Erases all history in the change list and sets
the original value back to its initial value.
</summary>
</member>
<member name="M:GSF.Trackable`1.ToString">
<summary>
Returns a string that represents the current value.
</summary>
<returns>A string that represents the current value.</returns>
</member>
<member name="T:GSF.ReusableObjectPool`1">
<summary>
Represents a reusable object pool that can be used by an application.
Expand Down
Binary file modified Source/Dependencies/GSF/GSF.EMAX.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Historian.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.InstallerActions.CA.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.MMS.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Media.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Net.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.PQDIF.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.PhasorProtocols.UI.WPF.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.PhasorProtocols.UI.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.PhasorProtocols.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.SELEventParser.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Security.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.ServiceBus.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.ServiceModel.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.ServiceProcess.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.TimeSeries.Transport.UI.WPF.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.TimeSeries.Transport.UI.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.TimeSeries.UI.WPF.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.TimeSeries.UI.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.TimeSeries.dll
Binary file not shown.
154 changes: 4 additions & 150 deletions Source/Dependencies/GSF/GSF.TimeSeries.xml
Original file line number Diff line number Diff line change
Expand Up @@ -368,150 +368,6 @@
<param name="realtimeConfiguration">Real-time <see cref="T:System.Data.DataSet"/> configuration.</param>
<returns>A new <see cref="T:System.Data.DataSet"/> configuration for adapters that support temporal processing.</returns>
</member>
<member name="T:GSF.TimeSeries.Adapters.IRouteMappingTables">
<summary>
An interface to provide a custom implementation of the routing functionality of the <see cref="T:GSF.TimeSeries.Adapters.RoutingTables"/>
</summary>
</member>
<member name="P:GSF.TimeSeries.Adapters.IRouteMappingTables.RouteCount">
<summary>
Gets the number of routes in this routing table.
</summary>
</member>
<member name="M:GSF.TimeSeries.Adapters.IRouteMappingTables.Initialize(System.Action{System.String},System.Action{System.Exception})">
<summary>
Assigns the status messaging callbacks.
</summary>
<param name="onStatusMessage">Raise status messages on this callback</param>
<param name="onProcessException">Raise exceptions on this callback</param>
</member>
<member name="M:GSF.TimeSeries.Adapters.IRouteMappingTables.PatchRoutingTable(GSF.TimeSeries.Adapters.RoutingTablesAdaptersList,GSF.TimeSeries.Adapters.RoutingTablesAdaptersList)">
<summary>
Patches the existing routing table with the supplied adapters.
</summary>
<param name="producerAdapters">all of the producers</param>
<param name="consumerAdapters">all of the consumers</param>
</member>
<member name="M:GSF.TimeSeries.Adapters.IRouteMappingTables.InjectMeasurements(System.Object,GSF.EventArgs{System.Collections.Generic.ICollection{GSF.TimeSeries.IMeasurement}})">
<summary>
This method will directly inject measurements into the routing table and use a shared local input adapter. For
contention reasons, it is not recommended this be its default use case, but it is necessary at times.
</summary>
<param name="sender">the sender object</param>
<param name="measurements">the event arguments</param>
</member>
<member name="T:GSF.TimeSeries.Adapters.RouteMappingDoubleBufferQueue">
<summary>
The standard and default routing table that uses double buffer queues to route measurements.
</summary>
</member>
<member name="M:GSF.TimeSeries.Adapters.RouteMappingDoubleBufferQueue.#ctor">
<summary>
Instances a new <see cref="T:GSF.TimeSeries.Adapters.RouteMappingDoubleBufferQueue"/>.
</summary>
</member>
<member name="M:GSF.TimeSeries.Adapters.RouteMappingDoubleBufferQueue.Initialize(System.Action{System.String},System.Action{System.Exception})">
<summary>
Assigns the status messaging callbacks.
</summary>
<param name="onStatusMessage">Raise status messages on this callback</param>
<param name="onProcessException">Raise exceptions on this callback</param>
</member>
<member name="P:GSF.TimeSeries.Adapters.RouteMappingDoubleBufferQueue.RouteCount">
<summary>
Gets the number of routes in this routing table.
</summary>
</member>
<member name="M:GSF.TimeSeries.Adapters.RouteMappingDoubleBufferQueue.PatchRoutingTable(GSF.TimeSeries.Adapters.RoutingTablesAdaptersList,GSF.TimeSeries.Adapters.RoutingTablesAdaptersList)">
<summary>
Patches the existing routing table with the supplied adapters.
</summary>
<param name="producerAdapters">all of the producers</param>
<param name="consumerAdapters">all of the consumers</param>
</member>
<member name="M:GSF.TimeSeries.Adapters.RouteMappingDoubleBufferQueue.InjectMeasurements(System.Object,GSF.EventArgs{System.Collections.Generic.ICollection{GSF.TimeSeries.IMeasurement}})">
<summary>
This method will directly inject measurements into the routing table and use a shared local input adapter. For
contention reasons, it is not recommended this be its default use case, but it is necessary at times.
</summary>
<param name="sender">the sender object</param>
<param name="measurements">the event arguments</param>
</member>
<member name="T:GSF.TimeSeries.Adapters.RoutingTablesAdaptersList">
<summary>
Indicates how the <see cref="T:GSF.TimeSeries.Adapters.RoutingTables"/> have changed from one route calculation to another.
</summary>
</member>
<member name="F:GSF.TimeSeries.Adapters.RoutingTablesAdaptersList.NewAdapter">
<summary>
A list of all <see cref="T:GSF.TimeSeries.Adapters.IAdapter"/> that did NOT existed in the old route calculation, but do exist in the new route calculation.
</summary>
</member>
<member name="F:GSF.TimeSeries.Adapters.RoutingTablesAdaptersList.ExistingAdapter">
<summary>
A list of all <see cref="T:GSF.TimeSeries.Adapters.IAdapter"/> that existed in the old route calculation, and also exist in the new route calculation.
</summary>
</member>
<member name="F:GSF.TimeSeries.Adapters.RoutingTablesAdaptersList.OldAdapter">
<summary>
A list of all <see cref="T:GSF.TimeSeries.Adapters.IAdapter"/> that existed in the old route calculation, but do NOT exist in the new route calculation.
</summary>
</member>
<member name="F:GSF.TimeSeries.Adapters.RoutingTablesAdaptersList.NewAndExistingAdapters">
<summary>
A union of <see cref="F:GSF.TimeSeries.Adapters.RoutingTablesAdaptersList.NewAdapter"/> with <see cref="F:GSF.TimeSeries.Adapters.RoutingTablesAdaptersList.ExistingAdapter"/>.
</summary>
</member>
<member name="M:GSF.TimeSeries.Adapters.RoutingTablesAdaptersList.#ctor(System.Collections.Generic.HashSet{GSF.TimeSeries.Adapters.IAdapter},System.Collections.Generic.HashSet{GSF.TimeSeries.Adapters.IAdapter})">
<summary>
Creates a <see cref="T:GSF.TimeSeries.Adapters.RoutingTablesAdaptersList"/>
</summary>
<param name="previousAdapterList">A complete list of all the adapters that existed before.</param>
<param name="currentAdapterList">A complete list of all the adapters that exist now</param>
</member>
<member name="T:GSF.TimeSeries.Adapters.RouteMappingHighLatencyLowCpu">
<summary>
Represents an alternative routing table that has intentional delays to lower overall CPU utilization.
</summary>
</member>
<member name="M:GSF.TimeSeries.Adapters.RouteMappingHighLatencyLowCpu.LocalCache.ToArrayOptimized``1(System.Collections.Generic.IEnumerable{``0})">
<summary>Creates an array from the <see cref="T:System.Collections.Generic.IEnumerable`1"/>.
Twice as fast as <see cref="M:System.Linq.Enumerable.ToArray``1(System.Collections.Generic.IEnumerable{``0})"/> if <see cref="!:source"/>
implements <see cref="T:System.Collections.Generic.ICollection`1"/></summary>
</member>
<member name="M:GSF.TimeSeries.Adapters.RouteMappingHighLatencyLowCpu.#ctor(System.Int32)">
<summary>
Creates a <see cref="T:GSF.TimeSeries.Adapters.RouteMappingHighLatencyLowCpu"/>
</summary>
<param name="routeLatency">The desired wait latency. Must be between 1 and 500ms inclusive</param>
</member>
<member name="P:GSF.TimeSeries.Adapters.RouteMappingHighLatencyLowCpu.RouteCount">
<summary>
Gets the number of routes in this routing table.
</summary>
</member>
<member name="M:GSF.TimeSeries.Adapters.RouteMappingHighLatencyLowCpu.Initialize(System.Action{System.String},System.Action{System.Exception})">
<summary>
Assigns the status messaging callbacks.
</summary>
<param name="onStatusMessage">Raise status messages on this callback</param>
<param name="onProcessException">Raise exceptions on this callback</param>
</member>
<member name="M:GSF.TimeSeries.Adapters.RouteMappingHighLatencyLowCpu.PatchRoutingTable(GSF.TimeSeries.Adapters.RoutingTablesAdaptersList,GSF.TimeSeries.Adapters.RoutingTablesAdaptersList)">
<summary>
Patches the existing routing table with the supplied adapters.
</summary>
<param name="producerAdapters">all of the producers</param>
<param name="consumerAdapters">all of the consumers</param>
</member>
<member name="M:GSF.TimeSeries.Adapters.RouteMappingHighLatencyLowCpu.InjectMeasurements(System.Object,GSF.EventArgs{System.Collections.Generic.ICollection{GSF.TimeSeries.IMeasurement}})">
<summary>
This method will directly inject measurements into the routing table and use a shared local input adapter. For
contention reasons, it is not recommended this be its default use case, but it is necessary at times.
</summary>
<param name="sender">the sender object</param>
<param name="measurements">the event arguments</param>
</member>
<member name="T:GSF.TimeSeries.Adapters.RoutingTables">
<summary>
Represents the routing tables for the Iaon adapters.
Expand All @@ -533,7 +389,7 @@
<see cref="F:GSF.EventArgs`1.Argument"/> is the exception that was thrown.
</remarks>
</member>
<member name="M:GSF.TimeSeries.Adapters.RoutingTables.#ctor(GSF.TimeSeries.Adapters.IRouteMappingTables)">
<member name="M:GSF.TimeSeries.Adapters.RoutingTables.#ctor">
<summary>
Creates a new instance of the <see cref="T:GSF.TimeSeries.Adapters.RoutingTables"/> class.
</summary>
Expand Down Expand Up @@ -578,13 +434,11 @@
Set the <paramref name="inputMeasurementKeysRestriction"/> to null to use full adapter I/O routing demands.
</remarks>
</member>
<member name="M:GSF.TimeSeries.Adapters.RoutingTables.InjectMeasurements(System.Object,GSF.EventArgs{System.Collections.Generic.ICollection{GSF.TimeSeries.IMeasurement}})">
<member name="M:GSF.TimeSeries.Adapters.RoutingTables.GetRoutedMeasurementsHandler">
<summary>
This method will directly inject measurements into the routing table and use a shared local input adapter. For
contention reasons, it is not recommended this be its default use case, but it is necessary at times.
Gets a handler for measurements that routes measurements to the appropriate consumers.
</summary>
<param name="sender">the sender object</param>
<param name="measurements">the event arguments</param>
<returns>The measurement handler used for routing.</returns>
</member>
<member name="M:GSF.TimeSeries.Adapters.RoutingTables.BroadcastMeasurementsHandler(System.Object,GSF.EventArgs{System.Collections.Generic.ICollection{GSF.TimeSeries.IMeasurement}})">
<summary>
Expand Down
Binary file modified Source/Dependencies/GSF/GSF.Web.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Windows.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/Hadoop.Replication.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/HistorianAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/ICCPExport.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/InfluxDBAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/KafkaAdapters.dll
Binary file not shown.
28 changes: 28 additions & 0 deletions Source/Dependencies/GSF/KafkaAdapters.dll.CodeAnalysisLog.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="c:\program files (x86)\microsoft visual studio 14.0\team tools\static analysis tools\fxcop\Xml\CodeAnalysisReport.xsl"?>
<FxCopReport Version="14.0">
<Localized>
<String Key="Category">Category</String>
<String Key="Certainty">Certainty</String>
<String Key="CollapseAll">Collapse All</String>
<String Key="CheckId">Check Id</String>
<String Key="Error">Error</String>
<String Key="Errors">error(s)</String>
<String Key="ExpandAll">Expand All</String>
<String Key="Help">Help</String>
<String Key="Line">Line</String>
<String Key="Messages">message(s)</String>
<String Key="LocationNotStoredInPdb">[Location not stored in Pdb]</String>
<String Key="Project">Project</String>
<String Key="Resolution">Resolution</String>
<String Key="Rule">Rule</String>
<String Key="RuleFile">Rule File</String>
<String Key="RuleDescription">Rule Description</String>
<String Key="Source">Source</String>
<String Key="Status">Status</String>
<String Key="Target">Target</String>
<String Key="Warning">Warning</String>
<String Key="Warnings">warning(s)</String>
<String Key="ReportTitle">Code Analysis Report</String>
</Localized>
</FxCopReport>
Empty file.
Binary file modified Source/Dependencies/GSF/MongoAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/MySqlAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/OneSecondFrequencyAverager.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/PIAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/PhasorProtocolAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/PowerCalculations.UI.WPF.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/PowerCalculations.UI.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/PowerCalculations.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/TestingAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/WavInputAdapter.dll
Binary file not shown.

0 comments on commit a97555f

Please sign in to comment.