jellyfin/MediaBrowser.ServerApplication/FFMpeg/FFMpegDownloader.cs

364 lines
13 KiB
C#
Raw Normal View History

using MediaBrowser.Common.Configuration;
using MediaBrowser.Common.IO;
using MediaBrowser.Common.Net;
using MediaBrowser.Common.Progress;
2013-09-25 02:54:51 +02:00
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.Net;
using System;
2013-09-23 19:27:38 +02:00
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
#if __MonoCS__
using Mono.Unix.Native;
#endif
2013-09-25 02:54:51 +02:00
namespace MediaBrowser.ServerApplication.FFMpeg
{
public class FFMpegDownloader
{
private readonly IHttpClient _httpClient;
private readonly IApplicationPaths _appPaths;
private readonly ILogger _logger;
2013-09-25 02:54:51 +02:00
private readonly IZipClient _zipClient;
private readonly IFileSystem _fileSystem;
2014-07-22 03:29:06 +02:00
private readonly string[] _fontUrls =
{
"https://www.dropbox.com/s/pj847twf7riq0j7/ARIALUNI.7z?dl=1"
};
public FFMpegDownloader(ILogger logger, IApplicationPaths appPaths, IHttpClient httpClient, IZipClient zipClient, IFileSystem fileSystem)
{
_logger = logger;
_appPaths = appPaths;
_httpClient = httpClient;
2013-09-25 02:54:51 +02:00
_zipClient = zipClient;
_fileSystem = fileSystem;
}
public async Task<FFMpegInfo> GetFFMpegInfo(IProgress<double> progress)
{
2014-05-07 04:28:19 +02:00
var rootEncoderPath = Path.Combine(_appPaths.ProgramDataPath, "ffmpeg");
var versionedDirectoryPath = Path.Combine(rootEncoderPath, FFMpegDownloadInfo.Version);
var info = new FFMpegInfo
{
2013-10-13 05:39:22 +02:00
ProbePath = Path.Combine(versionedDirectoryPath, FFMpegDownloadInfo.FFProbeFilename),
2014-05-07 04:28:19 +02:00
EncoderPath = Path.Combine(versionedDirectoryPath, FFMpegDownloadInfo.FFMpegFilename),
2013-10-13 05:39:22 +02:00
Version = FFMpegDownloadInfo.Version
};
Directory.CreateDirectory(versionedDirectoryPath);
2014-05-07 04:28:19 +02:00
if (!File.Exists(info.ProbePath) || !File.Exists(info.EncoderPath))
{
2014-05-07 04:28:19 +02:00
// ffmpeg not present. See if there's an older version we can start with
var existingVersion = GetExistingVersion(info, rootEncoderPath);
2014-05-07 04:28:19 +02:00
// No older version. Need to download and block until complete
if (existingVersion == null)
{
await DownloadFFMpeg(versionedDirectoryPath, progress).ConfigureAwait(false);
}
else
{
// Older version found.
// Start with that. Download new version in the background.
var newPath = versionedDirectoryPath;
Task.Run(() => DownloadFFMpegInBackground(newPath));
2014-05-07 04:28:19 +02:00
info = existingVersion;
versionedDirectoryPath = Path.GetDirectoryName(info.EncoderPath);
}
}
2014-05-07 04:28:19 +02:00
await DownloadFonts(versionedDirectoryPath).ConfigureAwait(false);
return info;
}
private FFMpegInfo GetExistingVersion(FFMpegInfo info, string rootEncoderPath)
{
var encoderFilename = Path.GetFileName(info.EncoderPath);
var probeFilename = Path.GetFileName(info.ProbePath);
foreach (var directory in Directory.EnumerateDirectories(rootEncoderPath, "*", SearchOption.TopDirectoryOnly)
.ToList())
{
2014-05-07 04:28:19 +02:00
var allFiles = Directory.EnumerateFiles(directory, "*", SearchOption.AllDirectories).ToList();
2014-05-07 04:28:19 +02:00
var encoder = allFiles.FirstOrDefault(i => string.Equals(Path.GetFileName(i), encoderFilename, StringComparison.OrdinalIgnoreCase));
var probe = allFiles.FirstOrDefault(i => string.Equals(Path.GetFileName(i), probeFilename, StringComparison.OrdinalIgnoreCase));
if (!string.IsNullOrWhiteSpace(encoder) &&
!string.IsNullOrWhiteSpace(probe))
{
2014-05-07 04:28:19 +02:00
return new FFMpegInfo
{
EncoderPath = encoder,
ProbePath = probe,
2014-07-26 19:30:15 +02:00
Version = Path.GetFileName(Path.GetDirectoryName(probe))
2014-05-07 04:28:19 +02:00
};
}
2014-05-07 04:28:19 +02:00
}
2013-09-23 19:27:38 +02:00
2014-05-07 04:28:19 +02:00
return null;
}
2014-05-07 04:28:19 +02:00
private async void DownloadFFMpegInBackground(string directory)
{
try
{
await DownloadFFMpeg(directory, new Progress<double>()).ConfigureAwait(false);
}
catch (Exception ex)
{
_logger.ErrorException("Error downloading ffmpeg", ex);
}
}
2014-05-07 04:28:19 +02:00
private async Task DownloadFFMpeg(string directory, IProgress<double> progress)
{
2013-10-13 05:39:22 +02:00
foreach (var url in FFMpegDownloadInfo.FfMpegUrls)
{
progress.Report(0);
try
{
var tempFile = await _httpClient.GetTempFile(new HttpRequestOptions
{
Url = url,
CancellationToken = CancellationToken.None,
Progress = progress
}).ConfigureAwait(false);
2014-05-07 04:28:19 +02:00
ExtractFFMpeg(tempFile, directory);
return;
}
2014-01-21 07:10:58 +01:00
catch (HttpException ex)
{
2014-01-21 07:10:58 +01:00
_logger.ErrorException("Error downloading {0}", ex, url);
}
catch (Exception ex)
{
_logger.ErrorException("Error unpacking {0}", ex, url);
}
}
2013-09-23 19:27:38 +02:00
throw new ApplicationException("Unable to download required components. Please try again later.");
}
private void ExtractFFMpeg(string tempFile, string targetFolder)
{
2014-05-07 04:28:19 +02:00
_logger.Info("Extracting ffmpeg from {0}", tempFile);
var tempFolder = Path.Combine(_appPaths.TempDirectory, Guid.NewGuid().ToString());
Directory.CreateDirectory(tempFolder);
try
{
2013-10-13 05:39:22 +02:00
ExtractArchive(tempFile, tempFolder);
var files = Directory.EnumerateFiles(tempFolder, "*", SearchOption.AllDirectories).ToList();
2013-10-13 05:39:22 +02:00
foreach (var file in files.Where(i =>
{
var filename = Path.GetFileName(i);
2013-10-13 05:39:22 +02:00
return
string.Equals(filename, FFMpegDownloadInfo.FFProbeFilename, StringComparison.OrdinalIgnoreCase) ||
string.Equals(filename, FFMpegDownloadInfo.FFMpegFilename, StringComparison.OrdinalIgnoreCase);
}))
{
2013-10-04 17:22:03 +02:00
File.Copy(file, Path.Combine(targetFolder, Path.GetFileName(file)), true);
#if __MonoCS__
//Linux: File permission to 666, and user's execute bit
if (Environment.OSVersion.Platform == PlatformID.Unix || Environment.OSVersion.Platform == PlatformID.MacOSX)
{
Syscall.chmod(Path.Combine(targetFolder, Path.GetFileName(file)), FilePermissions.DEFFILEMODE | FilePermissions.S_IXUSR);
}
#endif
}
}
finally
{
DeleteFile(tempFile);
}
}
2013-10-13 05:39:22 +02:00
private void ExtractArchive(string archivePath, string targetPath)
{
2014-05-07 04:28:19 +02:00
_logger.Info("Extracting {0} to {1}", archivePath, targetPath);
2013-10-13 05:39:22 +02:00
if (string.Equals(FFMpegDownloadInfo.ArchiveType, "7z", StringComparison.OrdinalIgnoreCase))
{
_zipClient.ExtractAllFrom7z(archivePath, targetPath, true);
}
else if (string.Equals(FFMpegDownloadInfo.ArchiveType, "gz", StringComparison.OrdinalIgnoreCase))
{
_zipClient.ExtractAllFromTar(archivePath, targetPath, true);
}
}
2013-10-13 21:56:54 +02:00
private void Extract7zArchive(string archivePath, string targetPath)
{
2014-05-07 04:28:19 +02:00
_logger.Info("Extracting {0} to {1}", archivePath, targetPath);
2013-10-13 21:56:54 +02:00
_zipClient.ExtractAllFrom7z(archivePath, targetPath, true);
}
private void DeleteFile(string path)
{
try
{
File.Delete(path);
}
catch (IOException ex)
{
_logger.ErrorException("Error deleting temp file {0}", ex, path);
}
}
/// <summary>
/// Extracts the fonts.
/// </summary>
/// <param name="targetPath">The target path.</param>
2014-05-07 04:28:19 +02:00
/// <returns>Task.</returns>
private async Task DownloadFonts(string targetPath)
{
2013-09-23 19:27:38 +02:00
try
{
2013-09-23 19:27:38 +02:00
var fontsDirectory = Path.Combine(targetPath, "fonts");
Directory.CreateDirectory(fontsDirectory);
2013-09-23 19:27:38 +02:00
const string fontFilename = "ARIALUNI.TTF";
2013-09-23 19:27:38 +02:00
var fontFile = Path.Combine(fontsDirectory, fontFilename);
2014-05-07 04:28:19 +02:00
if (File.Exists(fontFile))
2013-09-23 19:27:38 +02:00
{
2014-05-07 04:28:19 +02:00
await WriteFontConfigFile(fontsDirectory).ConfigureAwait(false);
}
else
{
// Kick this off, but no need to wait on it
Task.Run(async () =>
{
await DownloadFontFile(fontsDirectory, fontFilename, new Progress<double>()).ConfigureAwait(false);
2014-07-22 03:29:06 +02:00
2014-05-07 04:28:19 +02:00
await WriteFontConfigFile(fontsDirectory).ConfigureAwait(false);
});
2013-09-23 19:27:38 +02:00
}
}
catch (HttpException ex)
{
2013-09-23 19:27:38 +02:00
// Don't let the server crash because of this
_logger.ErrorException("Error downloading ffmpeg font files", ex);
}
catch (Exception ex)
{
// Don't let the server crash because of this
_logger.ErrorException("Error writing ffmpeg font files", ex);
}
}
/// <summary>
/// Downloads the font file.
/// </summary>
/// <param name="fontsDirectory">The fonts directory.</param>
/// <param name="fontFilename">The font filename.</param>
/// <returns>Task.</returns>
private async Task DownloadFontFile(string fontsDirectory, string fontFilename, IProgress<double> progress)
{
var existingFile = Directory
.EnumerateFiles(_appPaths.ProgramDataPath, fontFilename, SearchOption.AllDirectories)
.FirstOrDefault();
if (existingFile != null)
{
try
{
File.Copy(existingFile, Path.Combine(fontsDirectory, fontFilename), true);
return;
}
catch (IOException ex)
{
// Log this, but don't let it fail the operation
_logger.ErrorException("Error copying file", ex);
}
}
2013-09-23 20:14:07 +02:00
string tempFile = null;
foreach (var url in _fontUrls)
{
progress.Report(0);
2013-09-23 20:14:07 +02:00
try
{
tempFile = await _httpClient.GetTempFile(new HttpRequestOptions
{
Url = url,
Progress = progress
2013-09-23 20:14:07 +02:00
}).ConfigureAwait(false);
break;
}
catch (Exception ex)
{
// The core can function without the font file, so handle this
_logger.ErrorException("Failed to download ffmpeg font file from {0}", ex, url);
}
}
if (string.IsNullOrEmpty(tempFile))
{
return;
}
2013-10-13 21:56:54 +02:00
Extract7zArchive(tempFile, fontsDirectory);
try
{
File.Delete(tempFile);
}
catch (IOException ex)
{
// Log this, but don't let it fail the operation
_logger.ErrorException("Error deleting temp file {0}", ex, tempFile);
}
}
/// <summary>
/// Writes the font config file.
/// </summary>
/// <param name="fontsDirectory">The fonts directory.</param>
/// <returns>Task.</returns>
private async Task WriteFontConfigFile(string fontsDirectory)
{
const string fontConfigFilename = "fonts.conf";
var fontConfigFile = Path.Combine(fontsDirectory, fontConfigFilename);
if (!File.Exists(fontConfigFile))
{
var contents = string.Format("<?xml version=\"1.0\"?><fontconfig><dir>{0}</dir><alias><family>Arial</family><prefer>Arial Unicode MS</prefer></alias></fontconfig>", fontsDirectory);
var bytes = Encoding.UTF8.GetBytes(contents);
using (var fileStream = _fileSystem.GetFileStream(fontConfigFile, FileMode.Create, FileAccess.Write,
FileShare.Read, true))
{
await fileStream.WriteAsync(bytes, 0, bytes.Length);
}
}
}
}
}