-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBatteryViewModel.cs
291 lines (249 loc) · 8.27 KB
/
BatteryViewModel.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
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
using System;
using BatteryMonitor.Properties;
namespace BatteryMonitor
{
internal class BatteryViewModel : ViewModelBase
{
private string index;
private string deviceName;
private string manufacture;
private string chemistry;
private string manufactureDate;
private string designedCapacity;
private string currentCapacity;
private string currentCapacityPercent;
private string fullChargeCapacity;
private string batteryHealth;
private string voltage;
private string estimatedTime;
private string rate;
private string defaultAlert1;
private string defaultAlert2;
private string criticalBias;
private string chargeState;
private string powerState;
private string powerLineState;
private string cylceCount;
private string temperature;
public BatteryViewModel(BatteryData battery)
{
SetBattery(battery);
}
public BatteryViewModel(int index, BatteryData battery)
{
if (index > 0)
{
Index = index.ToString();
}
SetBattery(battery);
}
public string Index
{
get => index;
private set => SetProperty(ref index, value);
}
public string DeviceName
{
get => deviceName;
private set => SetProperty(ref deviceName, value);
}
public string Manufacture
{
get => manufacture;
private set => SetProperty(ref manufacture, value);
}
public string Chemistry
{
get => chemistry;
private set => SetProperty(ref chemistry, value);
}
public string ManufactureDate
{
get => manufactureDate;
private set => SetProperty(ref manufactureDate, value);
}
public string DesignedCapacity
{
get => designedCapacity;
private set => SetProperty(ref designedCapacity, value);
}
public string CurrentCapacity
{
get => currentCapacity;
private set => SetProperty(ref currentCapacity, value);
}
public string CurrentCapacityPercent
{
get => currentCapacityPercent;
private set => SetProperty(ref currentCapacityPercent, value);
}
public string FullChargeCapacity
{
get => fullChargeCapacity;
private set => SetProperty(ref fullChargeCapacity, value);
}
public string BatteryHealth
{
get => batteryHealth;
private set => SetProperty(ref batteryHealth, value);
}
public string Voltage
{
get => voltage;
private set => SetProperty(ref voltage, value);
}
public string EstimatedTime
{
get => estimatedTime;
private set => SetProperty(ref estimatedTime, value);
}
public string Rate
{
get => rate;
private set => SetProperty(ref rate, value);
}
public string DefaultAlert1
{
get => defaultAlert1;
private set => SetProperty(ref defaultAlert1, value);
}
public string DefaultAlert2
{
get => defaultAlert2;
private set => SetProperty(ref defaultAlert2, value);
}
public string CriticalBias
{
get => criticalBias;
private set => SetProperty(ref criticalBias, value);
}
public string ChargeState
{
get => chargeState;
private set => SetProperty(ref chargeState, value);
}
public string PowerState
{
get => powerState;
private set => SetProperty(ref powerState, value);
}
public string PowerLineState
{
get => powerLineState;
private set => SetProperty(ref powerLineState, value);
}
public string CylceCount
{
get => cylceCount;
private set => SetProperty(ref cylceCount, value);
}
public string Temperature
{
get => temperature;
private set => SetProperty(ref temperature, value);
}
public void SetBattery(BatteryData battery)
{
DeviceName = battery.DeviceName;
Manufacture = battery.ManufactureName;
Chemistry = ConvertChemistry(battery.Chemistry);
if (battery.ManufactureDate != DateTime.MinValue)
{
ManufactureDate = battery.ManufactureDate.ToString(Resources.FormatDate);
}
else
{
ManufactureDate = string.Empty;
}
DesignedCapacity = battery.DesignedMaxCapacity.ToString();
CurrentCapacity = battery.CurrentCapacity.ToString();
CurrentCapacityPercent = ((battery.CurrentCapacity * 100.0) / battery.FullChargedCapacity).ToString("F0");
FullChargeCapacity = battery.FullChargedCapacity.ToString();
BatteryHealth = ((battery.FullChargedCapacity * 100.0) / battery.DesignedMaxCapacity).ToString("F0");
Voltage = ((double)battery.Voltage / 1000.0).ToString();
if (battery.EstimatedTime != TimeSpan.Zero)
{
EstimatedTime = battery.EstimatedTime.ToString();
}
else
{
EstimatedTime = string.Empty;
}
if (battery.DischargeRate != int.MinValue)
{
Rate = battery.DischargeRate.ToString();
}
else
{
Rate = string.Empty;
}
DefaultAlert1 = battery.DefaultAlert1.ToString();
DefaultAlert2 = battery.DefaultAlert2.ToString();
CriticalBias = battery.CriticalBias.ToString();
ChargeState = ConvertChargeState(battery.PowerState);
PowerState = ConvertPowerState(battery.PowerState);
PowerLineState = ConvertPowerLineState(battery.PowerState);
CylceCount = battery.CycleCount.ToString();
if (!double.IsNaN(battery.Temperature))
{
Temperature = battery.Temperature.ToString();
}
else
{
Temperature = string.Empty;
}
}
private string ConvertPowerLineState(PowerStates powerState)
{
if ((powerState & PowerStates.PowerOnline) != 0)
{
return Resources.PowerStatePluggedIn;
}
return Resources.PowerLineStateOffline;
}
private string ConvertPowerState(PowerStates powerState)
{
if ((powerState & PowerStates.Charging) != 0)
{
return Resources.PowerStateCharging;
}
if ((powerState & PowerStates.Discharging) != 0)
{
return Resources.PowerStateDischarging;
}
return Resources.PowerStateNotCharging;
}
private string ConvertChargeState(PowerStates powerState)
{
if ((powerState & PowerStates.Critical) != 0)
{
return Resources.PowerStateCritical;
}
return Resources.PowerStateNormal;
}
private string ConvertChemistry(string chemistry)
{
switch (chemistry)
{
case "PbAc":
return Resources.ChemistryPbAc;
case "LiP":
return Resources.ChemistryLiPo;
case "Li-I":
return Resources.ChemistryLiIo;
case "LION":
return Resources.ChemistryLiIo;
case "NiCd":
return Resources.ChemistryNiCd;
case "NiMH":
return Resources.ChemistryNiMH;
case "NiZn":
return Resources.ChemistryNiZn;
case "RAM":
return Resources.ChemistryRAM;
default:
return chemistry;
}
}
}
}