-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathStatusInfoPackage.cs
134 lines (113 loc) · 4.17 KB
/
StatusInfoPackage.cs
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
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Timers;
using System.Windows;
using EnvDTE;
using Microsoft.VisualBasic.Devices;
using Microsoft.VisualStudio.Shell;
using Microsoft.VisualStudio.Shell.Interop;
using Process = System.Diagnostics.Process;
namespace Lkytal.StatusInfo
{
/// <summary>
/// This is the class that implements the package exposed by this assembly.
///
/// The minimum requirement for a class to be considered a valid package for Visual Studio
/// is to implement the IVsPackage interface and register itself with the shell.
/// This package uses the helper classes defined inside the Managed Package Framework (MPF)
/// to do it: it derives from the Package class that provides the implementation of the
/// IVsPackage interface and uses the registration attributes defined in the framework to
/// register itself and its components with the shell.
/// </summary>
// This attribute tells the PkgDef creation utility (CreatePkgDef.exe) that this class is
// a package.
[PackageRegistration(UseManagedResourcesOnly = true)]
// This attribute is used to register the information needed to show this package
// in the Help/About dialog of Visual Studio.
[InstalledProductRegistration("#110", "#112", "1.0", IconResourceID = 400)]
[Guid(GuidList.guidStatusInfoPkgString)]
[ProvideAutoLoad(UIContextGuids80.NoSolution)]
[ProvideAutoLoad(UIContextGuids80.SolutionExists)]
[ProvideAutoLoad(UIContextGuids80.EmptySolution)]
[ProvideOptionPage(typeof(OptionsPage), "StatusBar Info", "General", 0, 0, true)]
public sealed class StatusInfoPackage : Package
{
private Timer refreshTimer;
private Process ideProcess;
private InfoControl infoControl;
private StatusBarInjector injector;
private PerformanceCounter totalCpuCounter;
private PerformanceCounter totalRamCounter;
private OptionsPage optionsPage;
/// <summary>
/// Initialization of the package; this method is called right after the package is sited, so this is the place
/// where you can put all the initialization code that rely on services provided by VisualStudio.
/// </summary>
protected override void Initialize()
{
Debug.WriteLine($"Entering Initialize() of: {this}");
base.Initialize();
var dte = (DTE)GetService(typeof(DTE));
DTEEvents eventsObj = dte.Events.DTEEvents;
eventsObj.OnStartupComplete += InitExt;
eventsObj.OnBeginShutdown += ShutDown;
}
private void InitExt()
{
Debug.WriteLine("Init function loaded");
refreshTimer = new Timer(1000);
refreshTimer.Elapsed += RefreshTimerElapsed;
ideProcess = Process.GetCurrentProcess();
ideProcess.InitCpuUsage();
totalCpuCounter = new PerformanceCounter("Processor", "% Processor Time", "_Total");
totalRamCounter = new PerformanceCounter("Memory", "Available Bytes");
infoControl = new InfoControl((long)(new ComputerInfo()).TotalPhysicalMemory);
injector = new StatusBarInjector(Application.Current.MainWindow);
injector.InjectControl(infoControl);
optionsPage = GetDialogPage(typeof(OptionsPage)) as OptionsPage;
if (optionsPage != null) infoControl.Format = optionsPage.Format;
refreshTimer.Start();
}
private void ShutDown()
{
refreshTimer.Stop();
}
public void OptionUpdated(string pName, object pValue)
{
Debug.WriteLine($"Get option: {pName}");
switch (pName)
{
case "Format":
infoControl.Format = (string)pValue;
break;
case "Interval":
refreshTimer.Interval = (int)pValue;
break;
case "UseFixedWidth":
infoControl.UseFixedWidth = (bool)pValue;
break;
case "FixedWidth":
infoControl.FixedWidth = (int)pValue;
break;
default:
Debug.WriteLine($"Error nonexsist option: {pName}");
break;
}
}
private void RefreshTimerElapsed(object sender, ElapsedEventArgs e)
{
UpdateInfoBar();
}
private void UpdateInfoBar()
{
infoControl.Dispatcher.BeginInvoke((Action)(() =>
{
infoControl.CpuUsage = (int)(ideProcess.GetCpuUsage() * 100);
infoControl.RamUsage = ideProcess.WorkingSet64;
infoControl.TotalCpuUsage = (int)totalCpuCounter.NextValue();
infoControl.FreeRam = totalRamCounter.NextSample().RawValue;
}));
}
}
}