blob: 7d332f1b94d992613dad0519580bf7f2bbadad84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Source.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// An object representing a scanned DVD
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Services.Scan.Model
{
using System.Collections.Generic;
using System.IO;
using System.Xaml;
using System.Xml.Serialization;
using HandBrakeWPF.Model;
using HandBrakeWPF.Utilities;
/// <summary>
/// An object representing a scanned DVD
/// </summary>
public class Source
{
/// <summary>
/// Initializes a new instance of the <see cref="Source"/> class.
/// Default constructor for this object
/// </summary>
public Source()
{
this.Titles = new List<Title>();
}
/// <summary>
/// Gets or sets ScanPath.
/// The Path used by the Scan Service.
/// </summary>
public string ScanPath { get; set; }
/// <summary>
/// Gets or sets Titles. A list of titles from the source
/// </summary>
[XmlIgnore]
public List<Title> Titles { get; set; }
public string SourceName { get; private set; }
/// <summary>
/// Copy this Source to another Source Model
/// </summary>
/// <param name="source">
/// The source.
/// </param>
public void CopyTo(Source source)
{
source.Titles = this.Titles;
source.ScanPath = this.ScanPath;
// Scan Path is a File.
if (File.Exists(this.ScanPath))
{
this.SourceName = Path.GetFileNameWithoutExtension(this.ScanPath);
}
// Scan Path is a folder.
if (Directory.Exists(this.ScanPath))
{
// Check to see if it's a Drive. If yes, use the volume label.
foreach (DriveInformation item in DriveUtilities.GetDrives())
{
if (item.RootDirectory.Contains(this.ScanPath.Replace("\\\\", "\\")))
{
this.SourceName = item.VolumeLabel;
}
}
// Otherwise, it may be a path of files.
if (string.IsNullOrEmpty(this.SourceName))
{
this.SourceName = Path.GetFileName(this.ScanPath);
}
}
}
}
}
|