| | 1 | | using System; |
| | 2 | | using System.Diagnostics; |
| | 3 | | using System.Threading; |
| | 4 | | using MediaBrowser.Model.Dto; |
| | 5 | | using Microsoft.Extensions.Logging; |
| | 6 | |
|
| | 7 | | namespace MediaBrowser.Controller.MediaEncoding; |
| | 8 | |
|
| | 9 | | /// <summary> |
| | 10 | | /// Class TranscodingJob. |
| | 11 | | /// </summary> |
| | 12 | | public sealed class TranscodingJob : IDisposable |
| | 13 | | { |
| | 14 | | private readonly ILogger<TranscodingJob> _logger; |
| 0 | 15 | | private readonly Lock _processLock = new(); |
| 0 | 16 | | private readonly Lock _timerLock = new(); |
| | 17 | |
|
| | 18 | | private Timer? _killTimer; |
| | 19 | |
|
| | 20 | | /// <summary> |
| | 21 | | /// Initializes a new instance of the <see cref="TranscodingJob"/> class. |
| | 22 | | /// </summary> |
| | 23 | | /// <param name="logger">Instance of the <see cref="ILogger{TranscodingJobDto}"/> interface.</param> |
| | 24 | | public TranscodingJob(ILogger<TranscodingJob> logger) |
| | 25 | | { |
| 0 | 26 | | _logger = logger; |
| 0 | 27 | | } |
| | 28 | |
|
| | 29 | | /// <summary> |
| | 30 | | /// Gets or sets the play session identifier. |
| | 31 | | /// </summary> |
| | 32 | | public string? PlaySessionId { get; set; } |
| | 33 | |
|
| | 34 | | /// <summary> |
| | 35 | | /// Gets or sets the live stream identifier. |
| | 36 | | /// </summary> |
| | 37 | | public string? LiveStreamId { get; set; } |
| | 38 | |
|
| | 39 | | /// <summary> |
| | 40 | | /// Gets or sets a value indicating whether is live output. |
| | 41 | | /// </summary> |
| | 42 | | public bool IsLiveOutput { get; set; } |
| | 43 | |
|
| | 44 | | /// <summary> |
| | 45 | | /// Gets or sets the path. |
| | 46 | | /// </summary> |
| | 47 | | public MediaSourceInfo? MediaSource { get; set; } |
| | 48 | |
|
| | 49 | | /// <summary> |
| | 50 | | /// Gets or sets path. |
| | 51 | | /// </summary> |
| | 52 | | public string? Path { get; set; } |
| | 53 | |
|
| | 54 | | /// <summary> |
| | 55 | | /// Gets or sets the type. |
| | 56 | | /// </summary> |
| | 57 | | public TranscodingJobType Type { get; set; } |
| | 58 | |
|
| | 59 | | /// <summary> |
| | 60 | | /// Gets or sets the process. |
| | 61 | | /// </summary> |
| | 62 | | public Process? Process { get; set; } |
| | 63 | |
|
| | 64 | | /// <summary> |
| | 65 | | /// Gets or sets the active request count. |
| | 66 | | /// </summary> |
| | 67 | | public int ActiveRequestCount { get; set; } |
| | 68 | |
|
| | 69 | | /// <summary> |
| | 70 | | /// Gets or sets device id. |
| | 71 | | /// </summary> |
| | 72 | | public string? DeviceId { get; set; } |
| | 73 | |
|
| | 74 | | /// <summary> |
| | 75 | | /// Gets or sets cancellation token source. |
| | 76 | | /// </summary> |
| | 77 | | public CancellationTokenSource? CancellationTokenSource { get; set; } |
| | 78 | |
|
| | 79 | | /// <summary> |
| | 80 | | /// Gets or sets a value indicating whether has exited. |
| | 81 | | /// </summary> |
| | 82 | | public bool HasExited { get; set; } |
| | 83 | |
|
| | 84 | | /// <summary> |
| | 85 | | /// Gets or sets exit code. |
| | 86 | | /// </summary> |
| | 87 | | public int ExitCode { get; set; } |
| | 88 | |
|
| | 89 | | /// <summary> |
| | 90 | | /// Gets or sets a value indicating whether is user paused. |
| | 91 | | /// </summary> |
| | 92 | | public bool IsUserPaused { get; set; } |
| | 93 | |
|
| | 94 | | /// <summary> |
| | 95 | | /// Gets or sets id. |
| | 96 | | /// </summary> |
| | 97 | | public string? Id { get; set; } |
| | 98 | |
|
| | 99 | | /// <summary> |
| | 100 | | /// Gets or sets framerate. |
| | 101 | | /// </summary> |
| | 102 | | public float? Framerate { get; set; } |
| | 103 | |
|
| | 104 | | /// <summary> |
| | 105 | | /// Gets or sets completion percentage. |
| | 106 | | /// </summary> |
| | 107 | | public double? CompletionPercentage { get; set; } |
| | 108 | |
|
| | 109 | | /// <summary> |
| | 110 | | /// Gets or sets bytes downloaded. |
| | 111 | | /// </summary> |
| | 112 | | public long BytesDownloaded { get; set; } |
| | 113 | |
|
| | 114 | | /// <summary> |
| | 115 | | /// Gets or sets bytes transcoded. |
| | 116 | | /// </summary> |
| | 117 | | public long? BytesTranscoded { get; set; } |
| | 118 | |
|
| | 119 | | /// <summary> |
| | 120 | | /// Gets or sets bit rate. |
| | 121 | | /// </summary> |
| | 122 | | public int? BitRate { get; set; } |
| | 123 | |
|
| | 124 | | /// <summary> |
| | 125 | | /// Gets or sets transcoding position ticks. |
| | 126 | | /// </summary> |
| | 127 | | public long? TranscodingPositionTicks { get; set; } |
| | 128 | |
|
| | 129 | | /// <summary> |
| | 130 | | /// Gets or sets download position ticks. |
| | 131 | | /// </summary> |
| | 132 | | public long? DownloadPositionTicks { get; set; } |
| | 133 | |
|
| | 134 | | /// <summary> |
| | 135 | | /// Gets or sets transcoding throttler. |
| | 136 | | /// </summary> |
| | 137 | | public TranscodingThrottler? TranscodingThrottler { get; set; } |
| | 138 | |
|
| | 139 | | /// <summary> |
| | 140 | | /// Gets or sets transcoding segment cleaner. |
| | 141 | | /// </summary> |
| | 142 | | public TranscodingSegmentCleaner? TranscodingSegmentCleaner { get; set; } |
| | 143 | |
|
| | 144 | | /// <summary> |
| | 145 | | /// Gets or sets last ping date. |
| | 146 | | /// </summary> |
| | 147 | | public DateTime LastPingDate { get; set; } |
| | 148 | |
|
| | 149 | | /// <summary> |
| | 150 | | /// Gets or sets ping timeout. |
| | 151 | | /// </summary> |
| | 152 | | public int PingTimeout { get; set; } |
| | 153 | |
|
| | 154 | | /// <summary> |
| | 155 | | /// Stop kill timer. |
| | 156 | | /// </summary> |
| | 157 | | public void StopKillTimer() |
| 0 | 158 | | { |
| | 159 | | lock (_timerLock) |
| | 160 | | { |
| 0 | 161 | | _killTimer?.Change(Timeout.Infinite, Timeout.Infinite); |
| 0 | 162 | | } |
| 0 | 163 | | } |
| | 164 | |
|
| | 165 | | /// <summary> |
| | 166 | | /// Dispose kill timer. |
| | 167 | | /// </summary> |
| | 168 | | public void DisposeKillTimer() |
| 0 | 169 | | { |
| | 170 | | lock (_timerLock) |
| | 171 | | { |
| 0 | 172 | | if (_killTimer is not null) |
| | 173 | | { |
| 0 | 174 | | _killTimer.Dispose(); |
| 0 | 175 | | _killTimer = null; |
| | 176 | | } |
| 0 | 177 | | } |
| 0 | 178 | | } |
| | 179 | |
|
| | 180 | | /// <summary> |
| | 181 | | /// Start kill timer. |
| | 182 | | /// </summary> |
| | 183 | | /// <param name="callback">Callback action.</param> |
| | 184 | | public void StartKillTimer(Action<object?> callback) |
| | 185 | | { |
| 0 | 186 | | StartKillTimer(callback, PingTimeout); |
| 0 | 187 | | } |
| | 188 | |
|
| | 189 | | /// <summary> |
| | 190 | | /// Start kill timer. |
| | 191 | | /// </summary> |
| | 192 | | /// <param name="callback">Callback action.</param> |
| | 193 | | /// <param name="intervalMs">Callback interval.</param> |
| | 194 | | public void StartKillTimer(Action<object?> callback, int intervalMs) |
| | 195 | | { |
| 0 | 196 | | if (HasExited) |
| | 197 | | { |
| 0 | 198 | | return; |
| | 199 | | } |
| | 200 | |
|
| | 201 | | lock (_timerLock) |
| | 202 | | { |
| 0 | 203 | | if (_killTimer is null) |
| | 204 | | { |
| 0 | 205 | | _logger.LogDebug("Starting kill timer at {0}ms. JobId {1} PlaySessionId {2}", intervalMs, Id, PlaySessio |
| 0 | 206 | | _killTimer = new Timer(new TimerCallback(callback), this, intervalMs, Timeout.Infinite); |
| | 207 | | } |
| | 208 | | else |
| | 209 | | { |
| 0 | 210 | | _logger.LogDebug("Changing kill timer to {0}ms. JobId {1} PlaySessionId {2}", intervalMs, Id, PlaySessio |
| 0 | 211 | | _killTimer.Change(intervalMs, Timeout.Infinite); |
| | 212 | | } |
| 0 | 213 | | } |
| 0 | 214 | | } |
| | 215 | |
|
| | 216 | | /// <summary> |
| | 217 | | /// Change kill timer if started. |
| | 218 | | /// </summary> |
| | 219 | | public void ChangeKillTimerIfStarted() |
| | 220 | | { |
| 0 | 221 | | if (HasExited) |
| | 222 | | { |
| 0 | 223 | | return; |
| | 224 | | } |
| | 225 | |
|
| | 226 | | lock (_timerLock) |
| | 227 | | { |
| 0 | 228 | | if (_killTimer is not null) |
| | 229 | | { |
| 0 | 230 | | var intervalMs = PingTimeout; |
| | 231 | |
|
| 0 | 232 | | _logger.LogDebug("Changing kill timer to {0}ms. JobId {1} PlaySessionId {2}", intervalMs, Id, PlaySessio |
| 0 | 233 | | _killTimer.Change(intervalMs, Timeout.Infinite); |
| | 234 | | } |
| 0 | 235 | | } |
| 0 | 236 | | } |
| | 237 | |
|
| | 238 | | /// <summary> |
| | 239 | | /// Stops the transcoding job. |
| | 240 | | /// </summary> |
| | 241 | | public void Stop() |
| 0 | 242 | | { |
| | 243 | | lock (_processLock) |
| | 244 | | { |
| | 245 | | #pragma warning disable CA1849 // Can't await in lock block |
| 0 | 246 | | TranscodingThrottler?.Stop().GetAwaiter().GetResult(); |
| 0 | 247 | | TranscodingSegmentCleaner?.Stop(); |
| | 248 | |
|
| 0 | 249 | | var process = Process; |
| | 250 | |
|
| 0 | 251 | | if (!HasExited) |
| | 252 | | { |
| | 253 | | try |
| | 254 | | { |
| 0 | 255 | | _logger.LogInformation("Stopping ffmpeg process with q command for {Path}", Path); |
| | 256 | |
|
| 0 | 257 | | process!.StandardInput.WriteLine("q"); |
| | 258 | |
|
| | 259 | | // Need to wait because killing is asynchronous. |
| 0 | 260 | | if (!process.WaitForExit(5000)) |
| | 261 | | { |
| 0 | 262 | | _logger.LogInformation("Killing FFmpeg process for {Path}", Path); |
| 0 | 263 | | process.Kill(); |
| | 264 | | } |
| 0 | 265 | | } |
| 0 | 266 | | catch (InvalidOperationException) |
| | 267 | | { |
| 0 | 268 | | } |
| | 269 | | } |
| | 270 | | #pragma warning restore CA1849 |
| 0 | 271 | | } |
| 0 | 272 | | } |
| | 273 | |
|
| | 274 | | /// <inheritdoc /> |
| | 275 | | public void Dispose() |
| | 276 | | { |
| 0 | 277 | | Process?.Dispose(); |
| 0 | 278 | | Process = null; |
| 0 | 279 | | _killTimer?.Dispose(); |
| 0 | 280 | | _killTimer = null; |
| 0 | 281 | | CancellationTokenSource?.Dispose(); |
| 0 | 282 | | CancellationTokenSource = null; |
| 0 | 283 | | TranscodingThrottler?.Dispose(); |
| 0 | 284 | | TranscodingThrottler = null; |
| 0 | 285 | | TranscodingSegmentCleaner?.Dispose(); |
| 0 | 286 | | TranscodingSegmentCleaner = null; |
| 0 | 287 | | } |
| | 288 | | } |