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
|
/*
Copyright (c) 1998, 1999, 2000, 2001, 2003, 2004 Benhur Stein
This file is part of Paj.
Paj is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
Paj 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 Lesser General Public License
for more details.
You should have received a copy of the GNU Lesser General Public License
along with Paj; if not, write to the Free Software Foundation, Inc.,
59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*/
// BusyState
#include "BusyState.h"
#include <AppKit/AppKit.h>
#include "../General/UniqueString.h"
NSString *BusyStateEntityType;
@implementation BusyState
static NSMutableDictionary *colorDict;
+ (void)initialize
{
if (self == [BusyState class]) {
BusyStateEntityType = U(@"Activity State");
}
}
+ (NSMutableDictionary *)colorDict
{
if (!colorDict)
colorDict = [[NSMutableDictionary alloc] init];
return colorDict;
}
+ (BusyState *)stateWithStartTime:(NSDate *)start
endTime:(NSDate *)end
container:(PajeContainer *)cont
relatedEntities:(NSArray *)related
{
return [[[self alloc] initWithStartTime:start
endTime:end
container:cont
relatedEntities:related] autorelease];
}
- (id)initWithStartTime:(NSDate *)start
endTime:(NSDate *)end
container:(PajeContainer *)cont
relatedEntities:(NSArray *)related
{
self = [super init];
startTime = [start retain];
endTime = [end retain];
container = [cont retain];
relatedEntities = [related retain];
return self;
}
- (void)dealloc
{
[startTime release];
[endTime release];
[container release];
[relatedEntities release];
[super dealloc];
}
+ (id)hierarchy {
static id hier = nil;
if (!hier)
hier = [[NSArray alloc] initWithObjects:@"Node", nil];
return hier;
}
- (id)container { return container; }
- (NSDate *)startTime { return startTime; }
- (NSDate *)endTime { return endTime; }
+ (PajeDrawingType)drawingType { return PajeVariableDrawingType; } //PajeStateDrawingType; }
- (PajeDrawingType)drawingType { return PajeVariableDrawingType; } //PajeStateDrawingType; }
- (NSNumber *)value {
return [NSNumber numberWithInt:[relatedEntities count]];
}
- (NSString *)entityType { return BusyStateEntityType;}
+ (NSString *)entityType { return BusyStateEntityType;}
+ (NSString *)name { return BusyStateEntityType;}
- (NSString *)name
{
unsigned ct = [relatedEntities count];
if (ct == 0) return @"Inactive";
if (ct == 1) return @"1 active thread";
return [NSString stringWithFormat:@"%d active threads", ct];
}
- (NSColor *)color
{
int ct = [relatedEntities count];
if (ct >= 10) return [NSColor redColor];
return [[NSColor blueColor] blendedColorWithFraction:ct/10. ofColor:[NSColor redColor]];
return [NSColor colorWithDeviceHue:.667 - ct/15. saturation:1.0 brightness:1.0 alpha:1.0];
}
- (NSArray *)relatedEntities { return relatedEntities; }
@end
|