-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApplicationViewController.m
More file actions
233 lines (183 loc) · 6.93 KB
/
ApplicationViewController.m
File metadata and controls
233 lines (183 loc) · 6.93 KB
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
//
// RootViewController.m
// ContentionApp
//
#import "ApplicationViewController.h"
#import "ContentionAppAppDelegate.h"
@interface ApplicationViewController (private)
-(void) newNetworkData:(NSNotification *) n;
-(void) showDetail:(NSString *) identifier position: (int) index;
-(void) editName:(NSString *) identifier;
-(void) editImage:(NSString *) identifier;
-(void) addObservers;
-(void) setUpViewManager;
@end
@implementation ApplicationViewController
@synthesize sorteddata;
@synthesize vm;
@synthesize hoverView;
#pragma mark -
#pragma mark View lifecycle
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
[super viewDidLoad];
[DeviceImageLookup initialize];
[self setUpViewManager];
[self setUpHoverView];
[self addObservers];
self.navigationItem.rightBarButtonItem = self.editButtonItem;
self.navigationItem.title = @"Applications";
}
- (void)viewDidAppear:(BOOL)animated{
[super viewDidAppear:animated];
[UserEventLogger logscreenchange:@"applications"];
}
-(void) touched: (int) tag viewname:(NSString *) identifier position: (int) index{
if (tag == LABEL){
if (self.editing){
[self editName:identifier];
}else{
[self showHoverView:YES identifier:identifier];
}
}
if (tag == IMAGE){
if (self.editing){
[self editImage:identifier];
}else{
[self showDetail:identifier position:index];
}
}
}
-(void) updateImage:(NSString*) image forNode:(NSString*)identifier{
[ApplicationImageLookup update:image forNode:identifier];
ContentionAppAppDelegate *delegate = [[UIApplication sharedApplication] delegate];
[delegate.navigationControllerApplications popViewControllerAnimated:YES];
[UserEventLogger logimagechange:identifier newimage:image screen:@"application"];
}
- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex {
DeviceView *deviceView = ((NameAlert *) alertView).deviceView;
if (deviceView != NULL){
NSString* newname = [[alertView textFieldAtIndex:0] text];
if (![[newname stringByTrimmingCharactersInSet: [NSCharacterSet whitespaceAndNewlineCharacterSet]] isEqualToString:@""]){
[NameResolver update:[deviceView identifier] newname:newname];
[deviceView updateName:[[alertView textFieldAtIndex:0] text]];
[UserEventLogger lognamechange:[deviceView identifier] newname:newname screen:@"application"];
}
}
}
-(NSString *) getImage:(NSString *) s{
return [ApplicationImageLookup getImage:s];
}
-(float) getBandwidthProportion:(NSString *) n{
return [NetworkData getApplicationBandwidthProportion:n];
}
#pragma mark -
#pragma mark Private Methods
-(void) newNetworkData:(NSNotification *) n{
self.sorteddata = [[NetworkData getLatestApplicationData] sortedArrayUsingSelector:@selector(sortByValue:)] ;
[self.vm update:sorteddata];
}
-(void) setUpViewManager{
self.sorteddata = (NSMutableArray*)[[NetworkData getLatestApplicationData] sortedArrayUsingSelector:@selector(sortByValue:)] ;
ViewManager *tmpvm = [[ViewManager alloc] initWithView:self.view data:self.sorteddata viewcontroller:self];
[self setVm:tmpvm];
[tmpvm release];
}
-(void) addObservers{
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(newNetworkData:) name:@"newFlowData" object:nil];
}
-(void) showDetail:(NSString *) identifier position: (int) index{
ApplicationSubViewController *detail = [[ApplicationSubViewController alloc] initWithNibName:nil bundle:nil nodename:identifier];
detail.title = [NameResolver friendlynamefrommac: identifier];
ContentionAppAppDelegate *delegate = [[UIApplication sharedApplication] delegate];
[delegate.navigationControllerApplications pushViewController:detail animated: YES];
[detail release];
[UserEventLogger logdrilldown:identifier position:index screen:@"application"];
}
-(void) editImage:(NSString *) identifier{
CustomImagePicker *picker = [[CustomImagePicker alloc] initWithNibName:nil bundle:nil view:[self.vm viewForName:identifier] imagelist:[ImageList getList:@"applications"] parent:self];
picker.title = picker.title = [NSString stringWithFormat:@"%@ image", identifier];
ContentionAppAppDelegate *delegate = [[UIApplication sharedApplication] delegate];
[delegate.navigationControllerApplications pushViewController:picker animated: YES];
[picker release];
}
-(void) editName:(NSString *) identifier{
DeviceView *deviceview = [self.vm viewForName:identifier];
NameAlert *alert = [[NameAlert alloc]
initWithTitle: @"Application Name"
message:@"Specify the Application Name"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"OK", nil];
[alert addTextFieldWithValue:[deviceview name] label:@"Application Name"];
[alert setDeviceView:deviceview];
UITextField *tf = [alert textFieldAtIndex:0];
tf.clearButtonMode = UITextFieldViewModeWhileEditing;
tf.keyboardType = UIKeyboardTypeAlphabet;
tf.keyboardAppearance = UIKeyboardAppearanceAlert;
tf.autocapitalizationType = UITextAutocapitalizationTypeWords;
tf.autocorrectionType = UITextAutocorrectionTypeNo;
[alert show];
}
-(void) setUpHoverView{
CGRect frame = CGRectMake(round((self.view.frame.size.width - 160) / 2.0), self.view.frame.size.height - 150, self.view.frame.size.width / 2.0, self.view.frame.size.height / 8.0);
HoverView *hv = [[HoverView alloc] initWithFrame:frame];
hv.alpha = 0.0;
hv.backgroundColor = [UIColor clearColor];
[self setHoverView:hv];
[self.view addSubview:hoverView];
[hv release];
}
- (void)showHoverView:(BOOL)show identifier:(NSString*) identifier
{
// reset the timer
[myTimer invalidate];
[myTimer release];
myTimer = nil;
if (identifier != nil){
float bw = [NetworkData getCurrentApplicationBandwidth:identifier];
NSString* bwidth;
if (bw >= 1024){
bwidth = [NSString stringWithFormat:@"%.2f Mbps", bw/1024 ];
}else{
bwidth = [NSString stringWithFormat:@"%.2f Kbps", bw];
}
hoverView.bandwidthLabel.text= bwidth;
}else{
hoverView.bandwidthLabel.text = @"";
}
[self.view bringSubviewToFront:hoverView];
// fade animate the view out of view by affecting its alpha
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.40];
if (show)
{
// as we start the fade effect, start the timeout timer for automatically hiding HoverView
hoverView.alpha = 1.0;
myTimer = [[NSTimer timerWithTimeInterval:2.0 target:self selector:@selector(timerFired:) userInfo:nil repeats:NO] retain];
[[NSRunLoop currentRunLoop] addTimer:myTimer forMode:NSDefaultRunLoopMode];
}
else
{
hoverView.alpha = 0.0;
}
[UIView commitAnimations];
}
- (void)timerFired:(NSTimer *)timer
{
// time has passed, hide the HoverView
[self showHoverView: NO identifier:nil];
}
#pragma mark -
#pragma mark Memory management
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
}
- (void)viewDidUnload {
// Relinquish ownership of anything that can be recreated in viewDidLoad or on demand.
// For example: self.myOutlet = nil;
}
- (void)dealloc {
[super dealloc];
}
@end