aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/IO')
-rw-r--r--MediaBrowser.Model/IO/IIsoManager.cs34
-rw-r--r--MediaBrowser.Model/IO/IIsoMount.cs22
-rw-r--r--MediaBrowser.Model/IO/IIsoMounter.cs27
3 files changed, 83 insertions, 0 deletions
diff --git a/MediaBrowser.Model/IO/IIsoManager.cs b/MediaBrowser.Model/IO/IIsoManager.cs
new file mode 100644
index 0000000000..92c4d5aee8
--- /dev/null
+++ b/MediaBrowser.Model/IO/IIsoManager.cs
@@ -0,0 +1,34 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Threading;
+using System.Threading.Tasks;
+
+namespace MediaBrowser.Model.IO
+{
+ public interface IIsoManager : IDisposable
+ {
+ /// <summary>
+ /// Mounts the specified iso path.
+ /// </summary>
+ /// <param name="isoPath">The iso path.</param>
+ /// <param name="cancellationToken">The cancellation token.</param>
+ /// <returns>IsoMount.</returns>
+ /// <exception cref="ArgumentNullException">isoPath</exception>
+ /// <exception cref="IOException">Unable to create mount.</exception>
+ Task<IIsoMount> Mount(string isoPath, CancellationToken cancellationToken);
+
+ /// <summary>
+ /// Determines whether this instance can mount the specified path.
+ /// </summary>
+ /// <param name="path">The path.</param>
+ /// <returns><c>true</c> if this instance can mount the specified path; otherwise, <c>false</c>.</returns>
+ bool CanMount(string path);
+
+ /// <summary>
+ /// Adds the parts.
+ /// </summary>
+ /// <param name="mounters">The mounters.</param>
+ void AddParts(IEnumerable<IIsoMounter> mounters);
+ }
+} \ No newline at end of file
diff --git a/MediaBrowser.Model/IO/IIsoMount.cs b/MediaBrowser.Model/IO/IIsoMount.cs
new file mode 100644
index 0000000000..4f8f8b5d25
--- /dev/null
+++ b/MediaBrowser.Model/IO/IIsoMount.cs
@@ -0,0 +1,22 @@
+using System;
+
+namespace MediaBrowser.Model.IO
+{
+ /// <summary>
+ /// Interface IIsoMount
+ /// </summary>
+ public interface IIsoMount : IDisposable
+ {
+ /// <summary>
+ /// Gets or sets the iso path.
+ /// </summary>
+ /// <value>The iso path.</value>
+ string IsoPath { get; }
+
+ /// <summary>
+ /// Gets the mounted path.
+ /// </summary>
+ /// <value>The mounted path.</value>
+ string MountedPath { get; }
+ }
+} \ No newline at end of file
diff --git a/MediaBrowser.Model/IO/IIsoMounter.cs b/MediaBrowser.Model/IO/IIsoMounter.cs
new file mode 100644
index 0000000000..91a0453681
--- /dev/null
+++ b/MediaBrowser.Model/IO/IIsoMounter.cs
@@ -0,0 +1,27 @@
+using System;
+using System.IO;
+using System.Threading;
+using System.Threading.Tasks;
+
+namespace MediaBrowser.Model.IO
+{
+ public interface IIsoMounter : IDisposable
+ {
+ /// <summary>
+ /// Mounts the specified iso path.
+ /// </summary>
+ /// <param name="isoPath">The iso path.</param>
+ /// <param name="cancellationToken">The cancellation token.</param>
+ /// <returns>IsoMount.</returns>
+ /// <exception cref="ArgumentNullException">isoPath</exception>
+ /// <exception cref="IOException">Unable to create mount.</exception>
+ Task<IIsoMount> Mount(string isoPath, CancellationToken cancellationToken);
+
+ /// <summary>
+ /// Determines whether this instance can mount the specified path.
+ /// </summary>
+ /// <param name="path">The path.</param>
+ /// <returns><c>true</c> if this instance can mount the specified path; otherwise, <c>false</c>.</returns>
+ bool CanMount(string path);
+ }
+}