-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMainController.m
437 lines (348 loc) · 13.7 KB
/
MainController.m
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
/*
* CPU History
* Christopher Bowns, 2008
*
* Formerly: Memory Monitor, by Bernhard Baehr
*
* Copyright © 2001-2003 Bernhard Baehr
*
* MainController.m - Main Application Controller Class
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#import "MainController.h"
// #ifndef NSLOG_DEBUG
// define NSLOG_DEBUG
// #endif
#define GRAPH_SIZE 128
@implementation MainController
- (void)drawImageOnWindow
{
[displayImage drawInRect:NSMakeRect(0, 0, NSWidth([window frame]), NSHeight([window frame]))
fromRect:NSMakeRect(0, 0, GRAPH_SIZE, GRAPH_SIZE) operation:NSCompositeCopy
fraction:1.0];
}
- (void)showHideWindow
{
float size;
if ([[preferences objectForKey:SHOW_GRAPH_WINDOW_KEY] boolValue]) {
size = [[preferences objectForKey:GRAPH_WINDOW_SIZE_KEY] floatValue];
[window setContentSize:NSMakeSize(size, size)];
[window orderWindow:NSWindowAbove relativeTo:[preferences windowNumber]];
[window setLevel:([[preferences objectForKey:GRAPH_WINDOW_ON_TOP_KEY] boolValue] ?
NSFloatingWindowLevel : NSNormalWindowLevel)];
[window setFrameAutosaveName:@"CPU History floater"];
if(![window setFrameUsingName:@"CPU History floater"])
[window center];
else {
NSRect frame = [window frame];
[window setFrame:frame display:NO];
}
// [window center];
} else
[window orderOut:self];
}
- (void)drawComplete
// completely redraw graphImage, put graph into displayImage
{
#ifdef NSLOG_DEBUG
NSLog(@"%s", _cmd);
#endif
CPUData cpudata;
unsigned cpu, numCPUs = [cpuInfo numCPUs];
float graphSpacer = [[preferences objectForKey:GRAPH_SPACER_WIDTH] floatValue];
float height = ( GRAPH_SIZE - (graphSpacer * (numCPUs - 1) ) ) / numCPUs; // returns just GRAPH_SIZE on single-core machines.
float width = GRAPH_SIZE;
float x = 0.0, y = 0.0, ybottom = 0.0;
float barWidth = (float)[[preferences objectForKey:BAR_WIDTH_SIZE_KEY] floatValue];
[graphImage lockFocus];
// draw the cpu usage graph
for (cpu = 0U; cpu < numCPUs; cpu++ ) {
[cpuInfo startBackwardIterate];
// init the base (bottom) of this cpu's graph space.
float yBase = cpu * (height + graphSpacer);
ybottom = yBase;
#ifdef NSLOG_DEBUG
NSLog(@"\n\n%s ybottom: %.2f", _cmd, ybottom);
NSLog(@"%s cpu %i: drawing starts at %f px high\n\n", _cmd, cpu, ybottom);
#endif
if (cpu != 0) // we need to draw the transparent spacer
{
[[NSColor colorWithCalibratedRed:0.0 green:0.0 blue:0.0 alpha:0.0] set];
#ifdef NSLOG_DEBUG
NSLog(@"%s spacer:\t\t(%.2f, %.2f) by (%.2f, %.2f)", _cmd, 0.0, ybottom - graphSpacer, width, graphSpacer);
NSLog(@"%s y = %.2f, ybottom = %.2f", _cmd, y, ybottom - graphSpacer);
#endif
NSRectFill (NSMakeRect(0, ybottom - graphSpacer, width, graphSpacer));
}
// set the idle background
[[preferences objectForKey:IDLE_COLOR_KEY] set];
NSRectFill(NSMakeRect(0, ybottom, width, height));
// loop through the previous CPU data and draw them.
for (x = width; x > 0.0 && [cpuInfo getPrev:&cpudata forCPU:cpu]; x -= barWidth) {
#ifdef NSLOG_DEBUG
NSLog(@"%s width left to draw: %.2f", _cmd, x);
NSLog(@"CPU %d: User: %.4f, Sys: %.4f, Idle: %.4f", cpu, cpudata.user, cpudata.sys, cpudata.idle);
#endif
ybottom = yBase;
y = cpudata.sys * height;
[[preferences objectForKey:SYS_COLOR_KEY] set];
#ifdef NSLOG_DEBUG
NSLog(@"%s system:\t\t(%.2f, %.2f) by (%.2f, %.2f)", _cmd, x - (float)barWidth, ybottom, (float)barWidth, y);
NSLog(@"%s y = %.2f, ybottom = %.2f", _cmd, y, ybottom);
#endif
NSRectFill (NSMakeRect(x - barWidth, ybottom, barWidth, y));
ybottom += y;
y = cpudata.user * height;
[[preferences objectForKey:USER_COLOR_KEY] set];
#ifdef NSLOG_DEBUG
NSLog(@"%s user:\t\t(%.2f, %.2f) by (%.2f, %.2f)", _cmd, x - barWidth, ybottom, barWidth, y);
NSLog(@"%s y = %.2f, ybottom = %.2f", _cmd, y, ybottom);
#endif
NSRectFill (NSMakeRect(x - barWidth, ybottom, barWidth, y));
ybottom += y;
y = cpudata.idle * height;
[[preferences objectForKey:IDLE_COLOR_KEY] set];
#ifdef NSLOG_DEBUG
NSLog(@"%s idle:\t\t(%.2f, %.2f) by (%.2f, %.2f)", _cmd, x - barWidth, ybottom, barWidth, y);
NSLog(@"%s y = %.2f, ybottom = %.2f", _cmd, y, ybottom);
#endif
NSRectFill (NSMakeRect(x - barWidth, ybottom, barWidth, y));
ybottom += y;
}
}
// transfer graph image to icon image
[graphImage unlockFocus];
[displayImage lockFocus];
[graphImage compositeToPoint:NSMakePoint(0.0, 0.0) operation:NSCompositeCopy];
[displayImage unlockFocus];
}
- (void)drawDelta
// update graphImage (based on previous graphImage), put graph into displayImage
{
#ifdef NSLOG_DEBUG
NSLog(@"%s", _cmd);
#endif
CPUData cpudata, cpudata0;
unsigned cpu, numCPUs = [cpuInfo numCPUs];
float graphSpacer = [[preferences objectForKey:GRAPH_SPACER_WIDTH] floatValue];
float height = ( GRAPH_SIZE - (graphSpacer * (numCPUs - 1) ) ) / numCPUs;
float width = GRAPH_SIZE;
float y = 0.0, ybottom = 0.0;
int barWidth = (int)[[preferences objectForKey:BAR_WIDTH_SIZE_KEY] floatValue];
// double interval = 0.1 * [[preferences objectForKey:UPDATE_FREQUENCY_KEY] floatValue];
[graphImage lockFocus];
// offset the old graph image
[graphImage compositeToPoint:NSMakePoint(-barWidth, 0) operation:NSCompositeCopy];
for (cpu = 0; cpu < numCPUs; cpu++ ) {
float yBase = cpu * (height + graphSpacer);
ybottom = yBase;
#ifdef NSLOG_DEBUG
NSLog(@"%s cpu %i: drawing starts at %f px high\n\n", _cmd, cpu, ybottom);
#endif
if (cpu != 0)
{
[[NSColor colorWithCalibratedRed:0.0 green:0.0 blue:0.0 alpha:0.0] set];
NSRectFill (NSMakeRect(width - (float)barWidth, ybottom - graphSpacer, (float)barWidth, graphSpacer));
}
[cpuInfo getLast:&cpudata0 forCPU:cpu];
[cpuInfo getCurrent:&cpudata forCPU:cpu];
// draw chronological graph into graph image
#ifdef NSLOG_DEBUG
NSLog(@"CPU %d: User: %f, Sys: %f, Idle: %f", cpu, cpudata.user, cpudata.sys, cpudata.idle);
#endif
y = cpudata.sys * height;
[[preferences objectForKey:SYS_COLOR_KEY] set];
#ifdef NSLOG_DEBUG
NSLog(@"%s system:\t\t(%.2f, %.2f) by (%.2f, %.2f)", _cmd, width - (float)barWidth, ybottom, (float)barWidth, y);
NSLog(@"%s y = %.2f, ybottom = %.2f", _cmd, y, ybottom);
#endif
NSRectFill (NSMakeRect(width - (float)barWidth, ybottom, (float)barWidth, y));
ybottom += y;
y = cpudata.user * height;
[[preferences objectForKey:USER_COLOR_KEY] set];
#ifdef NSLOG_DEBUG
NSLog(@"%s user:\t\t(%.2f, %.2f) by (%.2f, %.2f)", _cmd, width - (float)barWidth, ybottom, (float)barWidth, y);
NSLog(@"%s y = %.2f, ybottom = %.2f", _cmd, y, ybottom);
#endif
NSRectFill (NSMakeRect(width - (float)barWidth, ybottom, (float)barWidth, y));
ybottom += y;
y = cpudata.idle * height;
[[preferences objectForKey:IDLE_COLOR_KEY] set];
#ifdef NSLOG_DEBUG
NSLog(@"%s idle:\t\t(%.2f, %.2f) by (%.2f, %.2f)", _cmd, width - (float)barWidth, ybottom, (float)barWidth, y);
NSLog(@"%s y = %.2f, ybottom = %.2f", _cmd, y, ybottom);
#endif
NSRectFill (NSMakeRect(width - (float)barWidth, ybottom, (float)barWidth, y));
}
// transfer graph image to icon image
[graphImage unlockFocus];
[displayImage lockFocus];
[graphImage compositeToPoint:NSMakePoint(0.0, 0.0) operation:NSCompositeCopy];
[displayImage unlockFocus];
}
- (void)setApplicationIcon
// set the (scaled) application icon
{
float inc = GRAPH_SIZE * (1.0 - [[preferences objectForKey:DOCK_ICON_SIZE_KEY] floatValue]); // icon scaling
[iconImage lockFocus];
[displayImage drawInRect:NSMakeRect(inc, inc, GRAPH_SIZE - 2 * inc, GRAPH_SIZE - 2 * inc) fromRect:NSMakeRect(0, 0, GRAPH_SIZE, GRAPH_SIZE) operation:NSCompositeCopy fraction:1.0];
[iconImage unlockFocus];
[NSApp setApplicationIconImage:iconImage];
}
- (void)refreshGraph
// get a new sample and refresh the graph
{
[cpuInfo refresh];
[self drawDelta];
// [self drawComplete];
[self setApplicationIcon];
if ([[preferences objectForKey:SHOW_GRAPH_WINDOW_KEY] boolValue]) {
[window disableFlushWindow];
[view display];
[window enableFlushWindow];
[window flushWindow];
}
}
- (void)updateGraph
// completely redraw the graph (to show new preferences settings)
{
[self drawComplete];
[iconImage lockFocus];
[[NSColor clearColor] set];
NSRectFill (NSMakeRect(0, 0, GRAPH_SIZE, GRAPH_SIZE));
[iconImage unlockFocus];
[self setApplicationIcon];
if ([[preferences objectForKey:SHOW_GRAPH_WINDOW_KEY] boolValue]) {
[window disableFlushWindow];
[view display];
[window enableFlushWindow];
[window flushWindow];
}
}
- (void)setTimer
{
double newInterval = 0.1 * [[preferences objectForKey:UPDATE_FREQUENCY_KEY] floatValue];
if (timer) {
if (fabs([timer timeInterval] - newInterval) < 0.001)
return; /* frequency not changed */
[timer invalidate];
[timer release];
}
timer = [NSTimer scheduledTimerWithTimeInterval:newInterval
target:self selector:@selector(refreshGraph) userInfo:nil repeats:YES];
[timer retain];
}
- (void)showPreferences:(id)sender
{
[NSApp activateIgnoringOtherApps:YES]; /* activate application when called from Dock menu */
[preferences showPreferences:self];
}
- (void)showAboutBox:(id)sender
{
[NSApp activateIgnoringOtherApps:YES]; /* activate application when called from Dock menu */
[NSApp orderFrontStandardAboutPanel:sender];
}
- (BOOL)isLoginItem
{
id obj;
NSString *cpuHistoryPath = [[NSBundle mainBundle] bundlePath];
NSDictionary *loginItemDict = [NSDictionary dictionaryWithContentsOfFile:[NSString stringWithFormat:@"%@/Library/Preferences/loginwindow.plist", NSHomeDirectory()]];
NSEnumerator *loginItemEnumerator = [[loginItemDict objectForKey:@"AutoLaunchedApplicationDictionary"] objectEnumerator];
while ((obj = [loginItemEnumerator nextObject])) {
if ([[obj objectForKey:@"Path"] isEqualTo:cpuHistoryPath])
return (YES);
}
return (NO);
}
- (BOOL)updateFrameName
// calculate the frameName used to save the window position; return TRUE iff the name changed,
// i. e. the display configuration changed since last call of this method
{
NSRect rect;
NSScreen *screen;
BOOL nameDidChange;
NSString *string = @"CHWL"; // CPUHistoryWindowLocation
NSEnumerator *enumerator = [[NSScreen screens] objectEnumerator];
while ((screen = [enumerator nextObject])) {
rect = [screen frame];
string = [string
stringByAppendingString:[NSString stringWithFormat:@"%.0f%.0f%.0f%.0f",
rect.origin.x, rect.origin.y, rect.size.width, rect.size.height]];
}
nameDidChange = ! [string isEqualToString:frameName];
[frameName release];
frameName = string;
[frameName retain];
return (nameDidChange);
}
- (void)applicationDidFinishLaunching:(NSNotification *)notification
{
[NSApp setApplicationIconImage:[NSImage imageNamed:@"CPUHistory.icns"]];
preferences = [[Preferences alloc] init];
cpuInfo = [[CPUInfo alloc] initWithCapacity:GRAPH_SIZE];
if (nil == cpuInfo) //then we need to bomb out. We can't do anything else.
{
NSLog(@"%s failed to create CPUInfo object!", _cmd);
NSString *errorStr = [[NSString alloc] initWithFormat:@"There's not enough memory to allocate the CPU data array. Sorry, but I have to quit now."];
/* now display error dialog and quit */
NSRunAlertPanel(@"Error", errorStr, @"OK", nil, nil);
[errorStr release];
[preferences release];
[NSApp terminate:nil];
}
displayImage = [[NSImage allocWithZone:[self zone]] initWithSize:NSMakeSize(GRAPH_SIZE, GRAPH_SIZE)];
graphImage = [[NSImage allocWithZone:[self zone]] initWithSize:NSMakeSize(GRAPH_SIZE, GRAPH_SIZE)];
iconImage = [[NSImage allocWithZone:[self zone]] initWithSize:NSMakeSize(GRAPH_SIZE, GRAPH_SIZE)];
[self drawComplete];
window = [[TranslucentWindow allocWithZone:[self zone]]
initWithContentRect:NSMakeRect(0.0, 0.0, GRAPH_SIZE, GRAPH_SIZE)
styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:NO];
[window setReleasedWhenClosed:NO];
[window setBackgroundColor:[NSColor clearColor]];
[self updateFrameName];
[window setDelegate:self];
view = [[TranslucentView allocWithZone:[self zone]] initWithFrame:NSMakeRect(0.0, 0.0, GRAPH_SIZE, GRAPH_SIZE)];
[window setContentView:view];
[view setContentDrawer:self method:@selector(drawImageOnWindow)];
[view setAutoresizingMask:(NSViewHeightSizable | NSViewWidthSizable)];
[view setToolTip:@"CPU History"];
[self showHideWindow];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(showHideWindow) name:PREFERENCES_CHANGED object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(updateGraph) name:PREFERENCES_CHANGED object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(setTimer) name:PREFERENCES_CHANGED object:nil];
[self setTimer];
}
- (void)applicationWillTerminate:(NSNotification *)aNotification
{
if (timer) {
[timer invalidate];
[timer release];
timer = nil;
}
[preferences savePreferences];
[NSApp setApplicationIconImage:[NSImage imageNamed:@"CPUHistory.icns"]];
}
- (void)applicationDidChangeScreenParameters:(NSNotification *)aNotification
{
[self updateFrameName];
[window setFrameUsingName:frameName];
}
- (void)windowDidMove:(NSNotification *)aNotification
{
if (! [self updateFrameName])
[window saveFrameUsingName:frameName];
}
@end