| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- using MediaBrowser.Common.IO;
- using MediaBrowser.Common.Logging;
- using MediaBrowser.Model.Logging;
- using System;
- namespace MediaBrowser.IsoMounter
- {
- /// <summary>
- /// Class IsoMount
- /// </summary>
- internal class IsoMount : IIsoMount
- {
- /// <summary>
- /// The logger
- /// </summary>
- private static readonly ILogger Logger = LogManager.GetLogger("IsoMount");
- /// <summary>
- /// Gets or sets the iso path.
- /// </summary>
- /// <value>The iso path.</value>
- public string IsoPath { get; internal set; }
- /// <summary>
- /// Gets the mounted path.
- /// </summary>
- /// <value>The mounted path.</value>
- public string MountedPath { get; internal set; }
- /// <summary>
- /// The PFM file mount
- /// </summary>
- private PfmFileMount _pfmFileMount;
- /// <summary>
- /// The _iso manager
- /// </summary>
- private readonly IsoManager _isoManager;
- /// <summary>
- /// Prevents a default instance of the <see cref="IsoMount" /> class from being created.
- /// </summary>
- /// <param name="mount">The mount.</param>
- /// <param name="isoPath">The iso path.</param>
- /// <param name="isoManager">The iso manager.</param>
- internal IsoMount(PfmFileMount mount, string isoPath, IsoManager isoManager)
- {
- _pfmFileMount = mount;
- IsoPath = isoPath;
- _isoManager = isoManager;
- MountedPath = mount.GetMount().GetUncName();
- }
- /// <summary>
- /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
- /// </summary>
- public void Dispose()
- {
- Dispose(true);
- GC.SuppressFinalize(this);
- }
- /// <summary>
- /// Releases unmanaged and - optionally - managed resources.
- /// </summary>
- /// <param name="dispose"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
- protected virtual void Dispose(bool dispose)
- {
- UnMount();
- }
- /// <summary>
- /// Uns the mount.
- /// </summary>
- private void UnMount()
- {
- if (_pfmFileMount != null)
- {
- Logger.Info("Unmounting {0}", IsoPath);
- _pfmFileMount.Cancel();
- _pfmFileMount.Detach();
- _isoManager.OnUnmount(this);
- _pfmFileMount.Dispose();
- _pfmFileMount = null;
- }
- }
- }
- }
|