File: MAHealthGraph.m

package info (click to toggle)
mysql-gui-tools 5.0r12-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 105,540 kB
  • ctags: 50,897
  • sloc: sql: 348,439; pascal: 285,780; cpp: 94,578; ansic: 90,768; objc: 33,761; sh: 25,629; xml: 10,924; yacc: 10,755; java: 9,986; php: 2,806; python: 2,068; makefile: 1,945; perl: 3
file content (516 lines) | stat: -rw-r--r-- 13,068 bytes parent folder | download | duplicates (4)
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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
//
//  MAHealthGraph.m
//  MySQL Administrator
//
//  Created by Alfredo Kojima on Thu Jul 22 2004.
//  Copyright (c) 2004 MySQL AB. All rights reserved.
//

#import "MAHealthGraph.h"
#import <MySQLToolsCommon/NSString_extras.h>

#import "MATimeGraph.h"
 
#define GRAPH_HEIGHT 80
#define METER_GRAPH_WIDTH 65
#define GRAPH_SPACING 5
#define STATUS_HEIGHT 16

@implementation MAHealthGraph 

- (void)dealloc
{
  [_props release];
  [super dealloc];
}

- (void)setProperties:(NSDictionary*)properties
{
  if (_props != properties)
  {
    [_props release];
    _props= [properties retain];
  }
}


- (NSDictionary*)properties
{
  return _props;
}


- (void)updateServerVariables:(MYX_VARIABLES*)vars
{
  _serverValues= vars;
  _serverValuesChanged= YES;
}

- (void)updateValues:(MYX_VARIABLES*)vars
{
  // implemented by subclasses
}

- (double)evaluate:(NSString*)s
{
  MYX_COMPILED_EXPRESSION *expr;
  MYX_EXPRESSION_ERROR err;
  double res;
  
  expr= myx_compile_expression([[self prepareExpression:s serverVariablesOnly:NO] UTF8String], &err);
  if (!expr)
    return 0.0;
  res= myx_eval_expression(expr, _oldValues, _values, &err);
  myx_free_expression(expr);
  
  return res;
}

- (NSString*)prepareExpression:(NSString*)expr
           serverVariablesOnly:(BOOL)serverOnly
{
  NSMutableString *s= [[[NSMutableString alloc] init] autorelease];
  unsigned int i;
  
  [s setString:expr];
  
  if (_values && !serverOnly)
  {
    // replace status variables with their indices
    for (i= 0; i < _values->variables_num; i++)
    {
      [s replaceOccurrencesOfString:[NSString stringWithFormat:@"[%s]",(char*)_values->variables[i].name]
                         withString:[NSString stringWithFormat:@"[%i]",i]
                            options:NSCaseInsensitiveSearch
                              range:NSMakeRange(0,[s length])];
    }
  }

  // replace server variable static values
  if (_serverValues)
  {
    for (i= 0; i < _serverValues->variables_num; i++)
    {
      [s replaceOccurrencesOfString:[NSString stringWithFormat:@"[%s]",(char*)_serverValues->variables[i].name]
                         withString:[NSString stringWithFormat:@"%s",(char*)_serverValues->variables[i].value?:"0"]
                            options:NSCaseInsensitiveSearch
                              range:NSMakeRange(0,[s length])];
    }
  }
  return s;
}

@end

//======================================================================

@interface MAMeterGraph : MAMenuContextView
{
  NSImage *_image;
  float _value;
  NSString *_format;
}
- (void)setImage:(NSImage*)image;
- (void)setValue:(float)value;
- (void)setCaptionFormat:(NSString*)format;
@end

@implementation MAMeterGraph
- (void)dealloc
{
  [_format release];
  [_image release];
  [super dealloc];
}

- (void)setImage:(NSImage*)image
{
  if (_image != image)
  {
    [_image release];
    _image= [image retain];
  }
}

- (void)setCaptionFormat:(NSString*)format
{
  if (_format != format)
  {
    [_format release];
    _format= [format retain];
  }
}

- (void)setValue:(float)value
{
  _value= value;
  [self setNeedsDisplay:YES];
}

- (void)drawRect:(NSRect)aRect
{
  NSRect rect;
  NSRect frame= [self frame];
  NSSize isize;
  NSPoint pos;
  NSString *cap;
  NSFont *font;
  float y;
  int i;
  
  [[NSColor blackColor] set];
  NSRectFill(aRect);
  
  rect.origin= NSMakePoint(0,0);
  isize= rect.size= [_image size];
  
  pos= NSMakePoint((frame.size.width - rect.size.width)/2,
                   10 + (frame.size.height - rect.size.height)/2);
  y= pos.y;

  [_image dissolveToPoint:pos
                 fromRect:rect
                 fraction:0.2];

  rect.origin= NSMakePoint(0,0);
  rect.size= [_image size];
  rect.size.height = ceil(((ceil(_value)*rect.size.height)/10)*10/100.0);
  [_image dissolveToPoint:pos
                 fromRect:rect
                 fraction:1.0];

  font= [NSFont systemFontOfSize:8];
  cap= [NSString stringWithFormat:_format,_value];
  pos.x= (frame.size.width - [font widthOfString:cap])/2;
  pos.y= 5;

  [cap drawAtPoint:pos 
    withAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[NSColor whiteColor],NSForegroundColorAttributeName,
      font, NSFontAttributeName,nil]];
  
  [[NSColor blackColor] set];
  for (i= 0; i < 10; i++)
  {
    [NSBezierPath strokeLineFromPoint:NSMakePoint(0,y+isize.height/10*i+0.5)
                               toPoint:NSMakePoint(frame.size.width,y+isize.height/10*i+0.5)];
  }
}

@end

// ============================================================================

@implementation MALineHealthGraph 

- (id)initWithProperties:(NSDictionary*)properties
{
  self= [super init];
  if (self)
  {
    NSTextFieldCell *cell;
    int i;

	[self setAutoresizingMask:NSViewWidthSizable];
	[self setFrame:NSMakeRect(0, 0, 100+METER_GRAPH_WIDTH+GRAPH_SPACING, GRAPH_HEIGHT+STATUS_HEIGHT)];

    _meter= [[MAMeterGraph alloc] init];
    [_meter setFrame:NSMakeRect(0,STATUS_HEIGHT,METER_GRAPH_WIDTH,GRAPH_HEIGHT)];
    [_meter setAutoresizingMask:NSViewMaxXMargin];

    _graph= [[MATimeGraph alloc] init];
    [_graph setFrame:NSMakeRect(METER_GRAPH_WIDTH+GRAPH_SPACING,STATUS_HEIGHT,
								100,GRAPH_HEIGHT)];
    [_graph setAutoresizingMask:NSViewWidthSizable];
    
    cell= [[[NSTextFieldCell alloc] initTextCell:@""] autorelease];
    [cell setFont:[NSFont systemFontOfSize:[NSFont smallSystemFontSize]]];
    [cell setBordered:YES];
    [cell setDrawsBackground:YES];

    _infoMatrix= [[NSMatrix alloc] initWithFrame:NSMakeRect(METER_GRAPH_WIDTH+GRAPH_SPACING, 0, 
															100, STATUS_HEIGHT)
                                            mode:NSTrackModeMatrix
                                       prototype:cell
                                    numberOfRows:1
                                 numberOfColumns:4];
    [_infoMatrix setAutosizesCells:YES];
    for (i= 0; i < 4; i++)
      _cells[i]= [_infoMatrix cellAtRow:0 column:i];

    [_infoMatrix setAutoresizingMask:NSViewWidthSizable];
    [_infoMatrix setIntercellSpacing:NSMakeSize(0,0)];

    [self addSubview:_meter];
    [self addSubview:_graph];
    [self addSubview:_infoMatrix];

    [_graph release];
    [_meter release];
    [_infoMatrix release];

    [self setAttachedObject:self];
    [_meter setAttachedObject:self];
    [_graph setAttachedObject:self];

    [self setProperties: properties];
  }
  
  return self;
}


- (void)setMenu:(NSMenu*)menu
{
  [super setMenu:menu];
  [_meter setMenu:menu];
  [_graph setMenu:menu];
  [_infoMatrix setMenu:menu];
}


- (void)setMeterImage:(NSImage*)image
{
  [_meter setImage:[image retain]];
}

- (void)setProperties:(NSDictionary*)properties
{
  NSRect base= [self frame];
  
  [super setProperties:properties];

  if ([properties objectForKey:@"valueCaption"])
  {
    [_meter setHidden:NO];
    [_graph setFrame:NSMakeRect(METER_GRAPH_WIDTH+GRAPH_SPACING, [_graph frame].origin.y, base.size.width-(METER_GRAPH_WIDTH+GRAPH_SPACING), GRAPH_HEIGHT)];
    [_infoMatrix setFrame:NSMakeRect(METER_GRAPH_WIDTH+GRAPH_SPACING, [_infoMatrix frame].origin.y, base.size.width-(METER_GRAPH_WIDTH+GRAPH_SPACING), STATUS_HEIGHT)];
  }
  else
  {
    [_meter setHidden:YES];
    [_graph setFrame:NSMakeRect(0, [_graph frame].origin.y, base.size.width, GRAPH_HEIGHT)];
    [_infoMatrix setFrame:NSMakeRect(0, [_infoMatrix frame].origin.y, base.size.width, STATUS_HEIGHT)]; 
  }

  if (_meter)
    [_meter setCaptionFormat:
      [NSString stringWithFormat:@"%@ %%.01f%%", [_props objectForKey:@"valueCaption"]]];

  if ([[_props objectForKey:@"showTitle"] boolValue])
    [_graph setCaption:[_props objectForKey:@"title"]];
  else
    [_graph setCaption:nil];

  _max= [[_props objectForKey:@"maxValue"] doubleValue];
  [_graph setRangeMin:[[_props objectForKey:@"minValue"] doubleValue]
                  max:_max];

  if (_expr)
  {
    myx_free_expression(_expr);
    _serverValuesChanged= YES;
  }
  _expr= NULL;
  
  [self setNeedsDisplay:YES];
}


- (void)updateValues:(MYX_VARIABLES*)vars
{
  MYX_EXPRESSION_ERROR err;

  _oldValues= _values;
  _values= vars;
      
  if (_serverValuesChanged)
  {
    NSString *expr= [self prepareExpression:[_props objectForKey:@"valueFormula"]
                        serverVariablesOnly:NO];
    if (_expr)
      myx_free_expression(_expr);

    _expr= myx_compile_expression([expr UTF8String], &err);
    if (!_expr)
    {
      NSLog(@"could not compile expression %@", expr);
    }
    _serverValuesChanged= NO;
  }
  
  if (_expr && _oldValues)
  {
    double value;
    value= myx_eval_expression(_expr, _oldValues, _values, &err);
    if (err != MYX_EXPRESSION_NO_ERROR)
    {
      value= 0.0;
      //NSLog(@"Expression error: %i (%@)", err, [_props objectForKey:@"valueFormula"]);
    }
	
	if ([_props objectForKey:@"maxFormula"])
    {
      _max= [self evaluate:[_props objectForKey:@"maxFormula"]];
      [_graph setRangeMin:[[_props objectForKey:@"minValue"] doubleValue]
                      max:_max];
    }
	
    if (value > _max && [[_props objectForKey:@"autoExtend"] boolValue])
    {
      _max= value;
      [_graph setRangeMin:[[_props objectForKey:@"minValue"] doubleValue]
                      max:_max];
    }
	[_graph addValue:value timestamp:time(NULL)];
    if (_meter)
    {
      [_meter setValue:((value-[[_props objectForKey:@"minValue"] doubleValue])*100/_max)];
    }

    {
      double max, min, avg;
      [_graph getStatsMin:&min max:&max average:&avg];
      [_cells[0] setStringValue:[NSString stringWithFormat:@"Current: %.0f", value]];
      [_cells[1] setStringValue:[NSString stringWithFormat:@"Maximal: %.0f", max]];
      [_cells[2] setStringValue:[NSString stringWithFormat:@"Minimal: %.0f", min]];
      [_cells[3] setStringValue:[NSString stringWithFormat:@"Average: %.0f", avg]];
    }
  }
}

@end

// ============================================================================

@implementation MABarHealthGraph

- (id)initWithProperties:(NSDictionary*)props
{
  self= [super init];
  if (self)
  {
	_images[0]= [[NSImage imageNamed:@"health_bar_empty.png"] retain];
	_images[1]= [[NSImage imageNamed:@"health_bar_filled.png"] retain];
	
	[self setFrameSize:NSMakeSize(100.0, [_images[0] size].height+2.0)];

	[self setAttachedObject:self];
	
	[self setProperties:props];
  }
  return self;
}

- (void)dealloc
{
  [_images[0] release];
  [_images[1] release];
  [super dealloc];
}


- (void)setProperties:(NSDictionary*)properties
{
  _max= [[_props objectForKey:@"maxValue"] doubleValue];
  
  [super setProperties:properties];
}


- (void)drawRect:(NSRect)rect 
{
  NSSize size= [self frame].size;
  float x;
  NSFont *font= [NSFont systemFontOfSize:10.0];
  NSMutableDictionary *attr= [NSMutableDictionary dictionaryWithObjectsAndKeys:
	[NSColor blackColor], NSForegroundColorAttributeName,
	font, NSFontAttributeName,
	nil];
  NSString *str;
  float xoffs= 0.0;
  NSRect imgrect;
  
  /*
  if ([[_props objectForKey:@"showTitle"] boolValue])
  {
	NSRect r= rect;
	str= [_props objectForKey:@"title"];
	xoffs= [font widthOfString:str]+5.0;
	NSDrawWindowBackground(r);
	[str drawAtPoint:NSMakePoint(0.0, 3.0) withAttributes:attr];
  }
   */  
  [attr setObject:[NSColor whiteColor] forKey:NSForegroundColorAttributeName];
  
  [[NSColor blackColor] set];
  rect.origin.x= xoffs;
  NSRectFill(rect);
  
  imgrect.origin= NSMakePoint(0.0,0.0);
  imgrect.size= [_images[0] size];

  for (x= 0.5; x < (size.width-2.0) * _value / _max; x+= imgrect.size.width)
  {
	[_images[1] drawAtPoint:NSMakePoint(x, 1.0)
				   fromRect:imgrect
				  operation:NSCompositeCopy
				   fraction:1.0];	
  }
  for (x= ceil((size.width-2.0) * _value / _max); x < size.width-2.0; x+= imgrect.size.width)
  {
	[_images[0] drawAtPoint:NSMakePoint(x, 1.0)
				   fromRect:imgrect
				  operation:NSCompositeCopy
				   fraction:1.0];
  }
  
  str= [NSString stringWithFormat:@"%@ %@", [_props objectForKey:@"valueCaption"],
	[NSString stringWithMultNumber:(long long)_value]];
  [str drawAtPoint:NSMakePoint(5.0+xoffs, 2.0) withAttributes:attr];

  str= [NSString stringWithFormat:@"%@ %@", [_props objectForKey:@"maxCaption"],
	[NSString stringWithMultNumber:(long long)_max]];
  [str drawAtPoint:NSMakePoint(size.width-[font widthOfString:str]-5.0, 2.0)
	withAttributes:attr];
}


- (void)updateValues:(MYX_VARIABLES*)vars
{
  MYX_EXPRESSION_ERROR err;
  
  _oldValues= _values;
  _values= vars;
  
  if (_serverValuesChanged)
  {
    NSString *expr= [self prepareExpression:[_props objectForKey:@"valueFormula"]
                        serverVariablesOnly:NO];
    if (_expr)
      myx_free_expression(_expr);
	
    _expr= myx_compile_expression([expr UTF8String], &err);
    if (!_expr)
    {
      NSLog(@"could not compile expression %@", expr);
    }
    _serverValuesChanged= NO;
	
    if ([_props objectForKey:@"maxFormula"])
    {
      _max= [self evaluate:[_props objectForKey:@"maxFormula"]];
    }
  }
  
  if (_expr && _oldValues)
  {
    _value= myx_eval_expression(_expr, _oldValues, _values, &err);
    if (err != MYX_EXPRESSION_NO_ERROR)
    {
      _value= 0.0;
    }
	[self setNeedsDisplay:YES];
  }
}

@end