blob: ad4ecaf448b4fa92e5f442f1293e575293c7fbaf (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
using System.IO;
using System.Windows.Forms;
namespace Handbrake.Functions
{
public class Queue
{
ArrayList queue = new ArrayList();
string lastQuery;
public ArrayList getQueue()
{
return queue;
}
/// <summary>
/// Get's the next CLI query for encoding
/// </summary>
/// <returns>String</returns>
public string getNextItemForEncoding()
{
string query = queue[0].ToString();
lastQuery = query;
remove(0); // Remove the item which we are about to pass out.
return query;
}
/// <summary>
/// Add's a new item to the queue
/// </summary>
/// <param name="query">String</param>
public void add(string query)
{
queue.Add(query);
}
/// <summary>
/// Removes an item from the queue.
/// </summary>
/// <param name="index">Index</param>
/// <returns>Bolean true if successful</returns>
public Boolean remove(int index)
{
try
{
queue.RemoveAt(index);
return true;
}
catch (Exception)
{
return false;
}
}
/// <summary>
/// Returns how many items are in the queue
/// </summary>
/// <returns>Int</returns>
public int count()
{
return queue.Count;
}
/// <summary>
/// Get's the last query to be selected for encoding by getNextItemForEncoding()
/// </summary>
/// <returns>String</returns>
public string getLastQuery()
{
return lastQuery;
}
/// <summary>
/// Move an item with an index x, up in the queue
/// </summary>
/// <param name="index">Int</param>
public void moveUp(int index)
{
if (index != 0)
{
string item = queue[index].ToString();
queue.Insert((index - 1), item);
queue.RemoveAt((index + 1));
}
}
/// <summary>
/// Move an item with an index x, down in the queue
/// </summary>
/// <param name="index">Int</param>
public void moveDown(int index)
{
if (index != queue.Count - 1)
{
string item = queue[index].ToString();
queue.Insert((index + 2), item);
queue.RemoveAt((index));
}
}
/// <summary>
/// Writes the current queue to disk. hb_queue_recovery.dat
/// This function is called after getNextItemForEncoding()
/// </summary>
public void write2disk()
{
try
{
string tempPath = Path.Combine(Path.GetTempPath(), "hb_queue_recovery.dat");
using (StreamWriter writer = new StreamWriter(tempPath))
{
foreach (string item in queue)
{
writer.WriteLine(item);
}
writer.Close();
writer.Dispose();
}
}
catch (Exception)
{
// Any Errors will be out of diskspace/permissions problems. Don't report them as they'll annoy the user.
}
}
/// <summary>
/// Recover the queue from hb_queue_recovery.dat
/// </summary>
public void recoverQueue()
{
try
{
string tempPath = Path.Combine(Path.GetTempPath(), "hb_queue_recovery.dat");
using (StreamReader reader = new StreamReader(tempPath))
{
string queue_item = reader.ReadLine();
while (queue_item != null)
{
this.add(queue_item);
queue_item = reader.ReadLine();
}
}
}
catch (Exception exc)
{
MessageBox.Show("HandBrake was unable to recover the queue. \nError Information:" + exc.ToString(),"Queue Recovery Error",MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
}
|