Improve GroupInfo class

* Fixed docs
* Remove extra dictionary lookups
* change property to constant
This commit is contained in:
Bond_009 2020-10-04 16:27:34 +02:00
parent c7b3d4a90c
commit f0556c8ded

View file

@ -14,12 +14,12 @@ namespace MediaBrowser.Controller.SyncPlay
public class GroupInfo public class GroupInfo
{ {
/// <summary> /// <summary>
/// Gets the default ping value used for sessions. /// The default ping value used for sessions.
/// </summary> /// </summary>
public long DefaultPing { get; } = 500; public const long DefaultPing = 500;
/// <summary> /// <summary>
/// Gets or sets the group identifier. /// Gets the group identifier.
/// </summary> /// </summary>
/// <value>The group identifier.</value> /// <value>The group identifier.</value>
public Guid GroupId { get; } = Guid.NewGuid(); public Guid GroupId { get; } = Guid.NewGuid();
@ -58,7 +58,8 @@ namespace MediaBrowser.Controller.SyncPlay
/// <summary> /// <summary>
/// Checks if a session is in this group. /// Checks if a session is in this group.
/// </summary> /// </summary>
/// <value><c>true</c> if the session is in this group; <c>false</c> otherwise.</value> /// <param name="sessionId">The session id to check.</param>
/// <returns><c>true</c> if the session is in this group; <c>false</c> otherwise.</returns>
public bool ContainsSession(string sessionId) public bool ContainsSession(string sessionId)
{ {
return Participants.ContainsKey(sessionId); return Participants.ContainsKey(sessionId);
@ -70,16 +71,14 @@ namespace MediaBrowser.Controller.SyncPlay
/// <param name="session">The session.</param> /// <param name="session">The session.</param>
public void AddSession(SessionInfo session) public void AddSession(SessionInfo session)
{ {
if (ContainsSession(session.Id)) Participants.TryAdd(
{ session.Id,
return; new GroupMember
} {
Session = session,
var member = new GroupMember(); Ping = DefaultPing,
member.Session = session; IsBuffering = false
member.Ping = DefaultPing; });
member.IsBuffering = false;
Participants[session.Id] = member;
} }
/// <summary> /// <summary>
@ -88,12 +87,7 @@ namespace MediaBrowser.Controller.SyncPlay
/// <param name="session">The session.</param> /// <param name="session">The session.</param>
public void RemoveSession(SessionInfo session) public void RemoveSession(SessionInfo session)
{ {
if (!ContainsSession(session.Id)) Participants.Remove(session.Id);
{
return;
}
Participants.Remove(session.Id, out _);
} }
/// <summary> /// <summary>
@ -103,18 +97,16 @@ namespace MediaBrowser.Controller.SyncPlay
/// <param name="ping">The ping.</param> /// <param name="ping">The ping.</param>
public void UpdatePing(SessionInfo session, long ping) public void UpdatePing(SessionInfo session, long ping)
{ {
if (!ContainsSession(session.Id)) if (Participants.TryGetValue(session.Id, out GroupMember value))
{ {
return; value.Ping = ping;
} }
Participants[session.Id].Ping = ping;
} }
/// <summary> /// <summary>
/// Gets the highest ping in the group. /// Gets the highest ping in the group.
/// </summary> /// </summary>
/// <value name="session">The highest ping in the group.</value> /// <returns>The highest ping in the group.</returns>
public long GetHighestPing() public long GetHighestPing()
{ {
long max = long.MinValue; long max = long.MinValue;
@ -133,18 +125,16 @@ namespace MediaBrowser.Controller.SyncPlay
/// <param name="isBuffering">The state.</param> /// <param name="isBuffering">The state.</param>
public void SetBuffering(SessionInfo session, bool isBuffering) public void SetBuffering(SessionInfo session, bool isBuffering)
{ {
if (!ContainsSession(session.Id)) if (Participants.TryGetValue(session.Id, out GroupMember value))
{ {
return; value.IsBuffering = isBuffering;
} }
Participants[session.Id].IsBuffering = isBuffering;
} }
/// <summary> /// <summary>
/// Gets the group buffering state. /// Gets the group buffering state.
/// </summary> /// </summary>
/// <value><c>true</c> if there is a session buffering in the group; <c>false</c> otherwise.</value> /// <returns><c>true</c> if there is a session buffering in the group; <c>false</c> otherwise.</returns>
public bool IsBuffering() public bool IsBuffering()
{ {
foreach (var session in Participants.Values) foreach (var session in Participants.Values)
@ -161,7 +151,7 @@ namespace MediaBrowser.Controller.SyncPlay
/// <summary> /// <summary>
/// Checks if the group is empty. /// Checks if the group is empty.
/// </summary> /// </summary>
/// <value><c>true</c> if the group is empty; <c>false</c> otherwise.</value> /// <returns><c>true</c> if the group is empty; <c>false</c> otherwise.</returns>
public bool IsEmpty() public bool IsEmpty()
{ {
return Participants.Count == 0; return Participants.Count == 0;