File: MonitorClass.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 (224 lines) | stat: -rw-r--r-- 4,597 bytes parent folder | download | duplicates (2)
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
//
//  MonitorClass.m
//  MySQLMonitor
//
//  Created by Alfredo Kojima on 05/8/1.
//  Copyright 2005 MySQL AB. All rights reserved.
//

#import "MonitorClass.h"


@implementation MonitorClass

-(id)initWithWebView:(WebView*)w 
{
	self = [super init];
	return self;
}


-(void)windowScriptObjectAvailable:(WebScriptObject*)wso 
{
	[wso setValue:self forKey:@"MySQLMonitor"];
}

+(NSString*)webScriptNameForSelector:(SEL)aSel {
	NSString *retval = nil;

	if (aSel == @selector(getStatus:)) {
		retval = @"getStatus";
  } else if (aSel == @selector(queryStatus)) {
    retval = @"queryStatus";
	} else if (aSel == @selector(connectHost:username:password:)) {
		retval = @"connect";
  } else if (aSel == @selector(testConnection:username:password:)) {
		retval = @"testConnection";
	} else {
		NSLog(@"\tunknown selector");
	}
	
	return retval;
}


+(BOOL)isSelectorExcludedFromWebScript:(SEL)aSel 
{	
	if (aSel == @selector(getStatus:) 
      || aSel == @selector(connectHost:username:password:)
      || aSel == @selector(testConnection:username:password:)
      || aSel == @selector(queryStatus)) {
		return NO;
	}
	return YES;
}

+(BOOL)isKeyExcludedFromWebScript:(const char*)k 
{
	return YES;
}


- (NSString*)queryStatus
{
  NSMutableDictionary *dict= [[[NSMutableDictionary alloc] init] autorelease];
  const char *query;
  MYSQL_RES *res;
  MYSQL_ROW row;
    
  if (_oldMySQL)
    query= "SHOW STATUS";
  else
    query= "SHOW GLOBAL STATUS";
  
  if (mysql_query(_mysql, query) != 0)
    return nil;
  
  if ((res= mysql_store_result(_mysql)))
  {
    while ((row= mysql_fetch_row(res)))
    {
      if (row && row[0] && row[1])
      {
        NSNumber *number= [NSNumber numberWithDouble:strtod(row[1], NULL)];

        [dict setObject: number
                 forKey: [NSString stringWithUTF8String:row[0]]];
      }
    }
    mysql_free_result(res);
  }
  
  if (_ostats)
    [_ostats release];
  _ostats= _stats;
  _stats= [dict retain];
  
  return @"1";
}


- (double)getDelta:(NSString*)stat
{
  double v1, v2;
  v1= [[_ostats objectForKey:stat] doubleValue];
  v2= [[_stats objectForKey:stat] doubleValue];
  return v2-v1;
}


- (NSString*)getStatus:(NSString*)stat
{
  NSString *result= nil;
  
  if (!_mysql)
    return nil;
  
  if ([stat isEqualTo:@"Qcache_hitrate"])
  {
    double hits, inserts, notcached;

    result= @"0";
    if (_ostats)
    {
      hits= [self getDelta:@"Qcache_hits"];
      inserts= [self getDelta:@"Qcache_inserts"];
      notcached= [self getDelta:@"Qcache_not_cached"];
    
      if ((hits+inserts+notcached) > 0)
        result= [NSString stringWithFormat:@"%.0f", (hits/(hits+inserts+notcached))*100];
    }
  }
  else
  {
    result= [NSString stringWithFormat:@"%f", [[_stats objectForKey:stat] doubleValue]];
  }
  return result;
}


- (NSString*)testConnection:(NSString*)host
                   username:(NSString*)username
                   password:(NSString*)password
{
  MYSQL mysql;

  char *hostname = malloc([host length]+1);
  int port = 3306;
  sscanf([host UTF8String], "%[^:]s:%i", hostname, &port);
  
  mysql_init(&mysql);
  if (mysql_real_connect(&mysql,
                         hostname, 
                         [username UTF8String],
                         [password UTF8String],
                         NULL,
                         port,
                         NULL,
                         0) != 0)
  {
    free(hostname);
    mysql_close(&mysql);
    return @"";
  }
  else
  {
    NSString *msg;
    msg= [NSString stringWithUTF8String:mysql_error(&mysql)];
    free(hostname);
    mysql_close(&mysql);
    return msg;
  }
}



- (NSNumber*)connectHost:(NSString*)host
                username:(NSString*)username
                password:(NSString*)password
{
  char *hostname = malloc([host length]+1);
  int port = 3306;
  
  sscanf([host UTF8String], "%[^:]s:%i", hostname, &port);
  
  if (_mysql)
  {
    mysql_close(_mysql);
    
    [_stats release];
    [_ostats release];
    _stats= nil;
    _ostats= nil;
  }

  _mysql= mysql_init(NULL);
  if (mysql_real_connect(_mysql,
                         hostname, 
                         [username UTF8String],
                         [password UTF8String],
                         NULL,
                         port,
                         NULL,
                         0) != 0)
  {
    free(hostname);
    
    if (mysql_get_server_version(_mysql) < 50000)
      _oldMySQL= YES;
    else
      _oldMySQL= NO;
    
    return [NSNumber numberWithInt:1];
  }
  else
  {
    free(hostname);
    return [NSNumber numberWithInt:0];
  }
}




@end