File: FingerWindow.m

package info (click to toggle)
gnustep-examples 1%3A1.2.0-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,952 kB
  • ctags: 270
  • sloc: objc: 14,381; makefile: 65
file content (505 lines) | stat: -rw-r--r-- 13,561 bytes parent folder | download | duplicates (7)
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
/*
 *  FingerWindow.m: One of Finger.app windows
 *
 *  Copyright (c) 2000 Free Software Foundation, Inc.
 *  
 *  Author: Nicola Pero
 *  Date: February 2000
 *
 *  This sample program is part of GNUstep.
 *
 *  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., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#import <FingerIncludeAll.h>
#import "FingerWindow.h"

@implementation FingerWindow

-(void) dealloc
{
  if (task && [task isRunning])
    {
      [task terminate];
    }
  TEST_RELEASE (task);
  TEST_RELEASE (pipe[0]);
  TEST_RELEASE (pipe[1]);
  [[NSNotificationCenter defaultCenter] removeObserver: self];
  [super dealloc];
}
- (id) init
{
  GSVbox *vbox;
  GSHbox *hbox;
  NSButton* fingerButton;
  NSButton* pingButton;
  NSButton* traceButton;
  NSButton* whoisButton;
  NSScrollView* scroll;
  NSRect winFrame;
  float f = 0;
  NSSize bs;
  BOOL bigButtons;
  NSFont *font;
  
  if ([[[NSUserDefaults standardUserDefaults] stringForKey: @"ButtonSize"]
	isEqualToString: @"Small"])
    {
      font = [NSFont systemFontOfSize: SMALL_FONT_SIZE];
      bigButtons = NO;
    }
  else
    {
      font = [NSFont systemFontOfSize: BIG_FONT_SIZE];
      bigButtons = YES;
    }
  
  vbox = AUTORELEASE ([GSVbox new]);
  [vbox setBorder: 5];
  [vbox setDefaultMinYMargin: 5];
  
  text = AUTORELEASE ([TrivialTextView new]);
  
  scroll = AUTORELEASE ([[NSScrollView alloc] 
			  initWithFrame: NSMakeRect (0, 0, 300, 300)]);
  [scroll setDocumentView: text];
  [scroll setHasHorizontalScroller: YES];
  [scroll setHasVerticalScroller: YES];
  [scroll setBorderType: NSBezelBorder];
  [scroll setAutoresizingMask: (NSViewWidthSizable | NSViewHeightSizable)];

  [vbox addView: scroll];

  hbox = AUTORELEASE ([GSHbox new]);
  [hbox setBorder: 0];
  [hbox setDefaultMinXMargin: 8];

  form = AUTORELEASE ([NSForm new]);
  [form addEntry: @"User:"];
  [form addEntry: @"Host:"];
  [form setAutoresizingMask: (NSViewWidthSizable | NSViewMinYMargin 
			      | NSViewMaxYMargin)];
  [form setAutosizesCells: YES];
  [form sizeToFit];
  [form setEntryWidth: 240];

  [hbox addView: form];

  whoisButton = AUTORELEASE ([NSButton new]);
  if (bigButtons) 
    {
      [whoisButton setImage: [NSImage imageNamed: @"whois"]];
    }
  else
    {
      [whoisButton setImage: [NSImage imageNamed: @"whois32"]];
    }
  [whoisButton setTitle: @"Whois"];
  [whoisButton setFont: font]; 
  [whoisButton setImagePosition: NSImageAbove];
  [whoisButton setAlignment: NSCenterTextAlignment];
  [whoisButton sizeToFit];
  bs = [whoisButton frame].size;
  if (bs.width > f)
    {
      f = bs.width;
    }
  if (bs.height > f)
    {
      f = bs.height;
    }
  [whoisButton setAutoresizingMask: NSViewNotSizable];
  [whoisButton setTarget: self];
  [whoisButton setAction: @selector (startWhois:)];

  fingerButton = AUTORELEASE ([NSButton new]);
  if (bigButtons)
    {
      [fingerButton setImage: [NSImage imageNamed: @"finger"]];
    }
  else
    {
      [fingerButton setImage: [NSImage imageNamed: @"finger32"]];
    }
  [fingerButton setTitle: @"Finger"];
  [fingerButton setFont: font]; 
  [fingerButton setImagePosition: NSImageAbove];
  [fingerButton setAlignment: NSCenterTextAlignment];
  [fingerButton sizeToFit];
  bs = [fingerButton frame].size;
  if (bs.width > f)
    {
      f = bs.width;
    }
  if (bs.height > f)
    {
      f = bs.height;
    }
  [fingerButton setAutoresizingMask: NSViewNotSizable];
  [fingerButton setTarget: self];
  [fingerButton setAction: @selector (startFinger:)];

  pingButton = AUTORELEASE ([NSButton new]);
  if (bigButtons)
    {
      [pingButton setImage: [NSImage imageNamed: @"ping"]];
    }
  else
    {
      [pingButton setImage: [NSImage imageNamed: @"ping32"]];
    }
  [pingButton setTitle: @"Ping"];
  [pingButton setFont: font]; 
  [pingButton setImagePosition: NSImageAbove];
  [pingButton setAlignment: NSCenterTextAlignment];
  [pingButton sizeToFit];
  bs = [pingButton frame].size;
  if (bs.width > f)
    {
      f = bs.width;
    }
  if (bs.height > f)
    {
      f = bs.height;
    }
  [pingButton setAutoresizingMask: NSViewNotSizable];
  [pingButton setTarget: self];
  [pingButton setAction: @selector (startPing:)];

  traceButton = AUTORELEASE ([NSButton new]);
  if (bigButtons)
    {
      [traceButton setImage: [NSImage imageNamed: @"traceroute"]];
    }
  else  
    {
      [traceButton setImage: [NSImage imageNamed: @"traceroute32"]];
    }
  [traceButton setTitle: @"Trace"];
  [traceButton setFont: font]; 
  [traceButton setImagePosition: NSImageAbove];
  [traceButton setAlignment: NSCenterTextAlignment];
  [traceButton sizeToFit];
  bs = [traceButton frame].size;
  if (bs.width > f)
    {
      f = bs.width;
    }
  if (bs.height > f)
    {
      f = bs.height;
    }
  [traceButton setAutoresizingMask: NSViewNotSizable];
  [traceButton setTarget: self];
  [traceButton setAction: @selector (startTraceroute:)];

  stopButton = AUTORELEASE ([NSButton new]);
  if (bigButtons)
    {
      [stopButton setImage: [NSImage imageNamed: @"stop"]];
    }
  else
    {
      [stopButton setImage: [NSImage imageNamed: @"stop32"]];
    }
  [stopButton setTitle: @"Stop"];
  [stopButton setFont: font]; 
  [stopButton setImagePosition: NSImageAbove];
  [stopButton setAlignment: NSCenterTextAlignment];
  [stopButton sizeToFit];
  bs = [stopButton frame].size;
  if (bs.width > f)
    {
      f = bs.width;
    }
  if (bs.height > f)
    {
      f = bs.height;
    }
  [stopButton setAutoresizingMask: NSViewNotSizable];
  [stopButton setTarget: self];
  [stopButton setAction: @selector (stopTask:)];
  [stopButton setEnabled: NO];

  /* Make all the buttons of the same square size */
  bs = NSMakeSize (f, f);
  [fingerButton setFrameSize: bs];
  [whoisButton setFrameSize: bs];
  [pingButton setFrameSize: bs];
  [traceButton setFrameSize: bs];
  [stopButton setFrameSize: bs];  
  
  [hbox addView: fingerButton enablingXResizing: NO withMinXMargin: 12];
  [hbox addView: whoisButton enablingXResizing: NO];
  [hbox addView: pingButton enablingXResizing: NO];
  [hbox addView: traceButton enablingXResizing: NO];
  [hbox addView: stopButton enablingXResizing: NO];
  [hbox setAutoresizingMask: NSViewWidthSizable];
  
  [vbox addView: hbox enablingYResizing: NO];
  
  winFrame.size = [vbox frame].size;
  winFrame.origin = NSMakePoint (100, 100);
  self = [super initWithContentRect: winFrame
		styleMask: (NSTitledWindowMask 
			    | NSClosableWindowMask 
			    | NSMiniaturizableWindowMask 
			    | NSResizableWindowMask)
		backing: NSBackingStoreBuffered
		defer: YES];
  [self setTitle: @"Finger.app"];
  [self setContentView: vbox];
  [self setMinSize: [NSWindow frameRectForContentRect: winFrame
			      styleMask: [self styleMask]].size];
  return self;
}

- (void)taskEnded: (NSNotification *)aNotification
{
  [stopButton setEnabled: NO];
}

-(void)startFinger: (id)sender
{
  NSString *username;
  NSString *hostname;
  NSString *command;
  NSString *argument;

  command = [[NSUserDefaults standardUserDefaults] stringForKey: 
						     @"FingerCommand"];

  username = [[form cellAtIndex: 0] stringValue];
  hostname = [[form cellAtIndex: 1] stringValue];

  if ([hostname length] > 0)
    hostname = [@"@" stringByAppendingString: hostname];
  
  if (username)
    argument = [username stringByAppendingString: hostname];
  else
    argument = hostname;

  [self startTask: command
	withArgument: argument];
}

-(void)startWhois: (id)sender
{
  NSString *command;
  NSString *argument;

  command = [[NSUserDefaults standardUserDefaults] stringForKey: 
						     @"WhoisCommand"];

  argument = [[form cellAtIndex: 1] stringValue];

  [self startTask: command
	withArgument: argument];
}

-(void)startPing: (id)sender
{
  NSString *command;
  NSString *argument;

  command = [[NSUserDefaults standardUserDefaults] stringForKey: 
						     @"PingCommand"];

  argument = [[form cellAtIndex: 1] stringValue];

  [self startTask: command
	withArgument: argument];
}

-(void)startTraceroute: (id)sender
{
  NSString *command;
  NSString *argument;

  command = [[NSUserDefaults standardUserDefaults] stringForKey: 
						     @"TracerouteCommand"];

  argument = [[form cellAtIndex: 1] stringValue];

  [self startTask: command
	withArgument: argument];
}

-(void)startTask: (NSString *)fullBinaryPath
    withArgument: (NSString *)argument
{
  NSArray      *arguments;
  NSFileHandle *fileHandle;
  NSString     *stringToShow;
  NSFileManager *fm;
  NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];

  [self stopTask: self];

  /* Check if binary is executable */
  fm = [NSFileManager defaultManager];
  /* Uhm -- if it is a directory, we are "executing" it.  This will not do any harm ?. */
  if ([fm isExecutableFileAtPath: fullBinaryPath] == NO)
    {
      NSString *alert;
      int       result;

      alert = [fullBinaryPath stringByAppendingString: 
				@" is not executable!"];
      result = NSRunAlertPanel (NULL, alert, @"Cancel", 
				@"Change command", NULL);
      if (result == NS_ALERTALTERNATE)
	{
	  [(Controller *)[NSApp delegate] runPreferencesPanel: self];
	}
      return;
    }

  /* Show command we are issuing in the text view */
  stringToShow = [fullBinaryPath stringByAppendingString: @" "];
  stringToShow = [stringToShow stringByAppendingString: argument];
  stringToShow = [stringToShow stringByAppendingString: @"\n"];
  [text appendBoldString: stringToShow];

  /* Show command in the window title */
  stringToShow = [fullBinaryPath lastPathComponent];
  stringToShow = [stringToShow stringByAppendingString: @" "];
  stringToShow = [stringToShow stringByAppendingString: argument];
  [self setTitle: stringToShow];
  
  /* Run the task */
  ASSIGN (task, AUTORELEASE ([NSTask new]));
  [task setLaunchPath: fullBinaryPath];
  
  arguments = [NSArray arrayWithObjects: argument, nil]; 
  [task setArguments: arguments];

  ASSIGN (pipe[0], [NSPipe pipe]);
  fileHandle = [pipe[0] fileHandleForReading];
  [task setStandardOutput: pipe[0]];
  [fileHandle readInBackgroundAndNotify];
  [nc addObserver: self 
      selector: @selector(readData:) 
      name: NSFileHandleReadCompletionNotification
      object: (id) fileHandle];
  
  ASSIGN (pipe[1], [NSPipe pipe]);
  fileHandle = [pipe[1] fileHandleForReading];
  [task setStandardError: pipe[1]];
  [fileHandle readInBackgroundAndNotify];
  [nc addObserver: self 
      selector: @selector(readData:) 
      name: NSFileHandleReadCompletionNotification
      object: (id) fileHandle];

  [nc addObserver: self 
      selector: @selector(taskEnded:) 
      name: NSTaskDidTerminateNotification 
      object: (id) task];

  [task launch];
  
  [stopButton setEnabled: YES];
}

-(void)stopTask: (id)sender
{
  NSFileHandle *fileHandle;

  if ([task isRunning])
    {    
      /* Be fine so that ping gives us all the statistical infos */
      [task interrupt];
      if ([task isRunning])
	[task terminate];
      /* Now wait 0.1 seconds for the ping statistical info */ 
      /* [FIXME Some better solution -- or at least make the 0.1
           seconds configurable] */
      [[NSRunLoop currentRunLoop] 
	runUntilDate: [NSDate dateWithTimeIntervalSinceNow: 0.1]];
      /* Then discard the remaining data */
      fileHandle = [pipe[0] fileHandleForReading];
      [fileHandle closeFile];    
      fileHandle = [pipe[1] fileHandleForReading];
      [fileHandle closeFile];
      /* Remove us from notifications */
      [[NSNotificationCenter defaultCenter] 
	removeObserver: self 
	name: NSFileHandleReadCompletionNotification
	object: nil];
      [[NSNotificationCenter defaultCenter] 
	removeObserver: self 
	name: NSTaskDidTerminateNotification
	object: nil];
    }
}

-(void)readData: (NSNotification *)aNotification
{
  NSData   *readData;
  NSString *readString;
  NSFileHandle *fileHandle;
  
  readData = [[aNotification userInfo] 
	       objectForKey: NSFileHandleNotificationDataItem];
  readString = [[NSString alloc] initWithData: readData
				 encoding:  NSNonLossyASCIIStringEncoding];
  AUTORELEASE (readString);
  [text appendString: readString];
  
  if ([task isRunning])
    {
      fileHandle = [pipe[0] fileHandleForReading];
      if ([fileHandle readInProgress] == NO)
	[fileHandle readInBackgroundAndNotify];

      fileHandle = [pipe[1] fileHandleForReading];
      if ([fileHandle readInProgress] == NO)
	[fileHandle readInBackgroundAndNotify];
    }
}

- (void)resetResults: (id)sender
{
  [self stopTask: self];
  [text setString: nil];
}

- (void)saveResults: (id)sender
{
  NSSavePanel *savePanel;
  int result;

  [self stopTask: self];

  savePanel = [NSSavePanel savePanel];
  result = [savePanel runModal];
  if (result == NSOKButton)
    {
      /* TODO: Ask before overwriting file ?*/
      [[text string] writeToFile: [savePanel filename] 
		     atomically: YES];
    }
}

/* Not used now */
- (void)controlTextDidEndEditing: (NSNotification *)aNotification
{
  [self startFinger: self];
}

@end