Files
jellyfin-jellyfin-1/Jellyfin.Data/Entities/Libraries/MediaFile.cs

78 lines
2.2 KiB
C#
Raw Normal View History

2020-09-01 11:36:45 -04:00
#pragma warning disable CA2227
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Jellyfin.Data.Enums;
using Jellyfin.Data.Interfaces;
2020-08-29 13:30:09 -04:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity representing a file on disk.
/// </summary>
public class MediaFile : IHasConcurrencyToken
2020-05-02 17:56:05 -04:00
{
/// <summary>
/// Initializes a new instance of the <see cref="MediaFile"/> class.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <param name="path">The path relative to the LibraryRoot.</param>
/// <param name="kind">The file kind.</param>
public MediaFile(string path, MediaFileKind kind)
2020-05-02 17:56:05 -04:00
{
2020-06-20 20:35:29 +12:00
if (string.IsNullOrEmpty(path))
{
throw new ArgumentNullException(nameof(path));
}
Path = path;
Kind = kind;
2020-05-02 17:56:05 -04:00
MediaFileStreams = new HashSet<MediaFileStream>();
2020-05-02 17:56:05 -04:00
}
/// <summary>
/// Gets or sets the id.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <remarks>
/// Identity, Indexed, Required.
/// </remarks>
2020-05-02 17:56:05 -04:00
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; protected set; }
2020-05-02 17:56:05 -04:00
/// <summary>
/// Gets or sets the path relative to the library root.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <remarks>
/// Required, Max length = 65535.
/// </remarks>
2020-05-02 17:56:05 -04:00
[MaxLength(65535)]
[StringLength(65535)]
public string Path { get; set; }
2020-06-16 09:43:52 +12:00
2020-05-02 17:56:05 -04:00
/// <summary>
/// Gets or sets the kind of media file.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
public MediaFileKind Kind { get; set; }
2020-06-16 09:43:52 +12:00
/// <inheritdoc />
[ConcurrencyCheck]
public uint RowVersion { get; set; }
2020-05-02 17:56:05 -04:00
/// <summary>
/// Gets or sets a collection containing the streams in this file.
2020-05-02 17:56:05 -04:00
/// </summary>
public virtual ICollection<MediaFileStream> MediaFileStreams { get; protected set; }
/// <inheritdoc />
2020-05-02 17:56:05 -04:00
public void OnSavingChanges()
{
RowVersion++;
}
}
}