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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="GeneralUtilities.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>
// A Set of Static Utilities
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Utilities
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using HandBrake.Interop.Utilities;
/// <summary>
/// A Set of Static Utilities
/// </summary>
public class GeneralUtilities
{
#region Constants and Fields
/// <summary>
/// The Default Log Directory
/// </summary>
private static readonly string LogDir = DirectoryUtilities.GetLogDirectory();
#endregion
#region Properties
/// <summary>
/// Gets the number of HandBrake instances running.
/// </summary>
public static int ProcessId
{
get
{
return Process.GetCurrentProcess().Id;
}
}
#endregion
#region Public Methods
/// <summary>
/// Clear all the log files older than 30 Days
/// </summary>
/// <param name="daysToKeep">
/// The Number of Days to Keep
/// </param>
public static void ClearLogFiles(int daysToKeep)
{
if (Directory.Exists(LogDir))
{
// Get all the log files
var info = new DirectoryInfo(LogDir);
FileInfo[] logFiles = info.GetFiles("*.txt");
// Delete old and excessivly large files (> ~50MB).
foreach (FileInfo file in logFiles)
{
try
{
if (file.LastWriteTime < DateTime.Now.AddDays(-daysToKeep))
{
File.Delete(file.FullName);
}
else if (file.Length > 50000000)
{
File.Delete(file.FullName);
}
}
catch (Exception)
{
// Silently ignore files we can't delete. They are probably being used by the app right now.
}
}
}
}
/// <summary>
/// Generate the header for the log file.
/// </summary>
/// <returns>
/// The generatedlog header.
/// </returns>
public static StringBuilder CreateLogHeader()
{
var logHeader = new StringBuilder();
StringBuilder gpuBuilder = new StringBuilder();
foreach (var item in SystemInfo.GetGPUInfo)
{
gpuBuilder.AppendLine(string.Format(" {0}", item));
}
if (string.IsNullOrEmpty(gpuBuilder.ToString().Trim()))
{
gpuBuilder.Append("GPU Information is unavailable");
}
logHeader.AppendLine(string.Format("HandBrake {0}", VersionHelper.GetVersion()));
logHeader.AppendLine(string.Format("OS: {0}", Environment.OSVersion));
logHeader.AppendLine(string.Format("CPU: {0}", SystemInfo.GetCpuCount));
logHeader.AppendLine(string.Format("Ram: {0} MB, ", SystemInfo.TotalPhysicalMemory));
logHeader.AppendLine(string.Format("GPU Information:{0}{1}", Environment.NewLine, gpuBuilder.ToString().TrimEnd()));
logHeader.AppendLine(string.Format("Screen: {0}x{1}", SystemInfo.ScreenBounds.Bounds.Width, SystemInfo.ScreenBounds.Bounds.Height));
logHeader.AppendLine(string.Format("Temp Dir: {0}", Path.GetTempPath()));
logHeader.AppendLine(string.Format("Install Dir: {0}", Application.StartupPath));
logHeader.AppendLine(string.Format("Data Dir: {0}\n", DirectoryUtilities.GetUserStoragePath(VersionHelper.IsNightly())));
logHeader.AppendLine("-------------------------------------------");
return logHeader;
}
/// <summary>
/// Return the standard log format line of text for a given log message
/// </summary>
/// <param name="message">
/// The Log Message
/// </param>
/// <returns>
/// A Log Message in the format: "[hh:mm:ss] message"
/// </returns>
public static string LogLine(string message)
{
return string.Format("[{0}] {1}", DateTime.Now.TimeOfDay, message);
}
/// <summary>
/// The find hand brake instance ids.
/// </summary>
/// <param name="id">
/// The id.
/// </param>
/// <returns>
/// The <see cref="bool"/>. True if it's a running HandBrake instance.
/// </returns>
public static bool IsPidACurrentHandBrakeInstance(int id)
{
List<int> ids = Process.GetProcessesByName("HandBrake").Select(process => process.Id).ToList();
return ids.Contains(id);
}
#endregion
}
}
|