jellyfin/Jellyfin.Data/Entities/Libraries/MediaFile.cs

73 lines
2 KiB
C#
Raw Normal View History

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 19:30:09 +02:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity representing a file on disk.
/// </summary>
public class MediaFile : IHasConcurrencyToken
2020-05-02 23:56:05 +02:00
{
/// <summary>
/// Initializes a new instance of the <see cref="MediaFile"/> class.
2020-05-02 23:56:05 +02: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 23:56:05 +02:00
{
ArgumentException.ThrowIfNullOrEmpty(path);
2020-06-20 10:35:29 +02:00
Path = path;
Kind = kind;
2020-05-02 23:56:05 +02:00
MediaFileStreams = new HashSet<MediaFileStream>();
2020-05-02 23:56:05 +02:00
}
/// <summary>
2021-03-18 00:08:11 +01:00
/// Gets the id.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Identity, Indexed, Required.
/// </remarks>
2020-05-02 23:56:05 +02:00
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
2021-03-18 00:08:11 +01:00
public int Id { get; private set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the path relative to the library root.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Required, Max length = 65535.
/// </remarks>
2020-05-02 23:56:05 +02:00
[MaxLength(65535)]
[StringLength(65535)]
public string Path { get; set; }
2020-06-15 23:43:52 +02:00
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the kind of media file.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
public MediaFileKind Kind { get; set; }
2020-06-15 23:43:52 +02:00
/// <inheritdoc />
[ConcurrencyCheck]
2021-03-18 00:08:11 +01:00
public uint RowVersion { get; private set; }
2020-05-02 23:56:05 +02:00
/// <summary>
2021-03-18 00:08:11 +01:00
/// Gets a collection containing the streams in this file.
2020-05-02 23:56:05 +02:00
/// </summary>
2021-03-18 00:08:11 +01:00
public virtual ICollection<MediaFileStream> MediaFileStreams { get; private set; }
/// <inheritdoc />
2020-05-02 23:56:05 +02:00
public void OnSavingChanges()
{
RowVersion++;
}
}
}