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
|
/* UpdateService.cs $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
namespace HandBrake.ApplicationServices.Services
{
using System;
using System.IO;
using System.Net;
using System.Threading;
using HandBrake.ApplicationServices.Model.General;
using HandBrake.ApplicationServices.Utilities;
/// <summary>
/// The Update Service
/// </summary>
public class UpdateService
{
/// <summary>
/// Begins checking for an update to HandBrake.
/// </summary>
/// <param name="callback">
/// The method that will be called when the check is finished.
/// </param>
/// <param name="debug">
/// Whether or not to execute this in debug mode.
/// </param>
/// <param name="url">
/// The url.
/// </param>
/// <param name="currentBuild">
/// The current Build.
/// </param>
/// <param name="skipBuild">
/// The skip Build.
/// </param>
/// <param name="currentVersion">
/// The current Version.
/// </param>
public static void BeginCheckForUpdates(AsyncCallback callback, bool debug, string url, int currentBuild, int skipBuild, string currentVersion)
{
ThreadPool.QueueUserWorkItem(delegate
{
try
{
// Initialize variables
WebRequest request = WebRequest.Create(url);
WebResponse response = request.GetResponse();
AppcastReader reader = new AppcastReader();
// Get the data, convert it to a string, and parse it into the AppcastReader
reader.GetUpdateInfo(new StreamReader(response.GetResponseStream()).ReadToEnd());
// Further parse the information
string build = reader.Build;
int latest = int.Parse(build);
int current = currentBuild;
int skip = skipBuild;
// If the user wanted to skip this version, don't report the update
if (latest == skip)
{
UpdateCheckInformation info = new UpdateCheckInformation { NewVersionAvailable = false };
callback(new UpdateCheckResult(debug, info));
return;
}
UpdateCheckInformation info2 = new UpdateCheckInformation
{
NewVersionAvailable = latest > current,
DescriptionUrl = reader.DescriptionUrl,
DownloadFile = reader.DownloadFile,
Build = reader.Build,
Version = reader.Version,
};
callback(new UpdateCheckResult(debug, info2));
}
catch (Exception exc)
{
callback(new UpdateCheckResult(debug, new UpdateCheckInformation { Error = exc }));
}
});
}
/// <summary>
/// End Check for Updates
/// </summary>
/// <param name="result">
/// The result.
/// </param>
/// <returns>
/// Update Check information
/// </returns>
public static UpdateCheckInformation EndCheckForUpdates(IAsyncResult result)
{
return ((UpdateCheckResult)result).Result;
}
}
}
|