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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="PrePostActionService.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>
// Defines the WhenDoneService type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Services
{
using System;
using System.Diagnostics;
using System.IO;
using System.Windows.Forms;
using System.Windows.Media;
using Caliburn.Micro;
using HandBrakeWPF.EventArgs;
using HandBrakeWPF.Model.Options;
using HandBrakeWPF.Services.Interfaces;
using HandBrakeWPF.Services.Queue.Interfaces;
using HandBrakeWPF.Services.Scan.Interfaces;
using HandBrakeWPF.Utilities;
using HandBrakeWPF.ViewModels.Interfaces;
using EncodeCompletedEventArgs = HandBrakeWPF.Services.Encode.EventArgs.EncodeCompletedEventArgs;
using ILog = HandBrakeWPF.Services.Logging.Interfaces.ILog;
/// <summary>
/// The when done service.
/// </summary>
public class PrePostActionService : IPrePostActionService
{
private readonly ILog log;
private readonly IUserSettingService userSettingService;
private readonly IWindowManager windowManager;
private readonly IScan scanService;
public PrePostActionService(IQueueService queueProcessor, IUserSettingService userSettingService, IWindowManager windowManager, IScan scanService, ILog logService)
{
this.log = logService;
this.userSettingService = userSettingService;
this.windowManager = windowManager;
this.scanService = scanService;
queueProcessor.QueueCompleted += this.QueueProcessorQueueCompleted;
queueProcessor.QueuePaused += this.QueueProcessor_QueuePaused;
queueProcessor.EncodeCompleted += this.EncodeService_EncodeCompleted;
queueProcessor.JobProcessingStarted += this.EncodeService_EncodeStarted;
}
private void QueueProcessor_QueuePaused(object sender, EventArgs e)
{
// Allow the system to sleep again.
Execute.OnUIThread(() =>
{
if (this.userSettingService.GetUserSetting<bool>(UserSettingConstants.PreventSleep))
{
Win32.AllowSleep();
}
});
}
/// <summary>
/// The encode service_ encode started.
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The e.
/// </param>
private void EncodeService_EncodeStarted(object sender, EventArgs e)
{
if (this.userSettingService.GetUserSetting<bool>(UserSettingConstants.PreventSleep))
{
Win32.PreventSleep();
}
}
/// <summary>
/// The encode service_ encode completed.
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The EncodeCompletedEventArgs.
/// </param>
private void EncodeService_EncodeCompleted(object sender, EncodeCompletedEventArgs e)
{
// Send the file to the users requested application
if (e.Successful)
{
this.SendToApplication(e.SourceFileName, e.FileName);
}
if (this.userSettingService.GetUserSetting<bool>(UserSettingConstants.PlaySoundWhenDone))
{
this.PlayWhenDoneSound();
}
}
/// <summary>
/// The queue processor queue completed event handler.
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The e.
/// </param>
private void QueueProcessorQueueCompleted(object sender, QueueCompletedEventArgs e)
{
if (e.WasManuallyStopped)
{
return;
}
if (this.userSettingService.GetUserSetting<bool>(UserSettingConstants.PlaySoundWhenQueueDone))
{
this.PlayWhenDoneSound();
}
if (this.userSettingService.GetUserSetting<int>(UserSettingConstants.WhenCompleteAction) == (int)WhenDone.DoNothing)
{
return;
}
// Give the user the ability to cancel the shutdown. Default 60 second timer.
bool isCancelled = false;
if (!this.userSettingService.GetUserSetting<bool>(UserSettingConstants.WhenDonePerformActionImmediately))
{
ICountdownAlertViewModel titleSpecificView = IoC.Get<ICountdownAlertViewModel>();
Execute.OnUIThread(
() =>
{
titleSpecificView.SetAction((WhenDone)this.userSettingService.GetUserSetting<int>(UserSettingConstants.WhenCompleteAction));
this.windowManager.ShowDialog(titleSpecificView);
isCancelled = titleSpecificView.IsCancelled;
});
}
if (!isCancelled)
{
this.ServiceLogMessage(string.Format("Performing 'When Done' Action: {0}", this.userSettingService.GetUserSetting<int>(UserSettingConstants.WhenCompleteAction)));
// Do something when the encode ends.
switch ((WhenDone)this.userSettingService.GetUserSetting<int>(UserSettingConstants.WhenCompleteAction))
{
case WhenDone.Shutdown:
ProcessStartInfo shutdown = new ProcessStartInfo("Shutdown", "-s -t 60");
shutdown.UseShellExecute = false;
Process.Start(shutdown);
Execute.OnUIThread(() => System.Windows.Application.Current.Shutdown());
break;
case WhenDone.LogOff:
this.scanService.Dispose();
Win32.ExitWindowsEx(0, 0);
break;
case WhenDone.Sleep:
Application.SetSuspendState(PowerState.Suspend, true, true);
break;
case WhenDone.Hibernate:
Application.SetSuspendState(PowerState.Hibernate, true, true);
break;
case WhenDone.LockSystem:
Win32.LockWorkStation();
break;
case WhenDone.QuickHandBrake:
Execute.OnUIThread(() => System.Windows.Application.Current.Shutdown());
break;
}
}
// Allow the system to sleep again.
Execute.OnUIThread(() =>
{
if (this.userSettingService.GetUserSetting<bool>(UserSettingConstants.PreventSleep))
{
Win32.AllowSleep();
}
});
}
private void SendToApplication(string source, string destination)
{
if (this.userSettingService.GetUserSetting<bool>(UserSettingConstants.SendFile) &&
!string.IsNullOrEmpty(this.userSettingService.GetUserSetting<string>(UserSettingConstants.SendFileTo)))
{
string arguments = this.userSettingService.GetUserSetting<string>(UserSettingConstants.SendFileToArgs);
arguments = arguments.Replace("{source}", string.Format("\"{0}\"", source));
arguments = arguments.Replace("{destination}", string.Format("\"{0}\"", destination));
var process = new ProcessStartInfo(this.userSettingService.GetUserSetting<string>(UserSettingConstants.SendFileTo), arguments);
this.ServiceLogMessage(string.Format("Sending output file to: {0}, with arguments: {1} ", destination, arguments));
Process.Start(process);
}
}
private void PlayWhenDoneSound()
{
string filePath = this.userSettingService.GetUserSetting<string>(UserSettingConstants.WhenDoneAudioFile);
if (!string.IsNullOrEmpty(filePath) && File.Exists(filePath))
{
this.ServiceLogMessage("Playing Sound: " + filePath);
var uri = new Uri(filePath, UriKind.RelativeOrAbsolute);
var player = new MediaPlayer();
player.MediaFailed += (object sender, ExceptionEventArgs e) => { this.ServiceLogMessage(e?.ToString()); };
player.Open(uri);
player.Play();
}
else
{
this.ServiceLogMessage("Unable to play sound. Reason: File not found!");
}
}
private void ServiceLogMessage(string message)
{
this.log.LogMessage(string.Format("# {1}{0}", Environment.NewLine, message));
}
}
}
|