-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathRouteManager.m
1035 lines (603 loc) · 26.8 KB
/
RouteManager.m
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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// RouteModel.m
// CycleStreets
//
// Created by neil on 22/03/2011.
// Copyright 2011 CycleStreets Ltd. All rights reserved.
//
#import "RouteManager.h"
#import "BUNetworkOperation.h"
#import "GlobalUtilities.h"
#import "CycleStreets.h"
#import "AppConstants.h"
#import "Files.h"
#import "RouteParser.h"
#import "HudManager.h"
#import "ValidationVO.h"
#import "BUNetworkOperation.h"
#import "SettingsManager.h"
#import "SavedRoutesManager.h"
#import "RouteVO.h"
#import <MapKit/MapKit.h>
#import "UserLocationManager.h"
#import "WayPointVO.h"
#import "ApplicationXMLParser.h"
#import "BUDataSourceManager.h"
static NSString *const LOCATIONSUBSCRIBERID=@"RouteManager";
@interface RouteManager()
@end
static NSString *useDom = @"1";
@implementation RouteManager
SYNTHESIZE_SINGLETON_FOR_CLASS(RouteManager);
//===========================================================
// - (id)init
//
//===========================================================
- (instancetype)init
{
self = [super init];
if (self) {
self.routes = [[NSMutableDictionary alloc]init];
self.activeRouteDir=OLDROUTEARCHIVEPATH;
[self evalRouteArchiveState];
}
return self;
}
//
/***********************************************
* @description NOTIFICATIONS
***********************************************/
//
-(void)listNotificationInterests{
BetterLog(@"");
[notifications addObject:REQUESTDIDCOMPLETEFROMSERVER];
[notifications addObject:DATAREQUESTFAILED];
[notifications addObject:REMOTEFILEFAILED];
[notifications addObject:REQUESTDIDFAIL];
[notifications addObject:XMLPARSERDIDFAILPARSING];
[notifications addObject:GPSLOCATIONCOMPLETE];
[notifications addObject:GPSLOCATIONUPDATE];
[notifications addObject:GPSLOCATIONFAILED];
[self addRequestID:CALCULATEROUTE];
[self addRequestID:RETRIEVEROUTEBYID];
[self addRequestID:UPDATEROUTE];
[super listNotificationInterests];
}
-(void)didReceiveNotification:(NSNotification*)notification{
[super didReceiveNotification:notification];
NSDictionary *dict=[notification userInfo];
BUNetworkOperation *response=[dict objectForKey:RESPONSE];
NSString *dataid=response.dataid;
BetterLog(@"response.dataid=%@",response.dataid);
if([self isRegisteredForRequest:dataid]){
if([notification.name isEqualToString:REMOTEFILEFAILED] || [notification.name isEqualToString:DATAREQUESTFAILED] || [notification.name isEqualToString:REQUESTDIDFAIL]){
[[HudManager sharedInstance] showHudWithType:HUDWindowTypeError withTitle:@"Network Error" andMessage:@"Unable to contact server"];
}
if([notification.name isEqualToString:XMLPARSERDIDFAILPARSING]){
[[HudManager sharedInstance] showHudWithType:HUDWindowTypeError withTitle:@"Route error" andMessage:@"Unable to load this route, please re-check route number."];
}
}
if([[UserLocationManager sharedInstance] hasSubscriber:LOCATIONSUBSCRIBERID ]){
if([notification.name isEqualToString:GPSLOCATIONCOMPLETE]){
[self locationDidComplete:notification];
}
if([notification.name isEqualToString:GPSLOCATIONFAILED]){
[self locationDidFail:notification];
}
}
}
#pragma mark - Core Location updates
-(void)locationDidFail:(NSNotification*)notification{
[[UserLocationManager sharedInstance] stopUpdatingLocationForSubscriber:LOCATIONSUBSCRIBERID];
[self queryFailureMessage: @"Could not plan valid route for selected waypoints."];
}
-(void)locationDidComplete:(NSNotification*)notification{
[[UserLocationManager sharedInstance] stopUpdatingLocationForSubscriber:LOCATIONSUBSCRIBERID];
CLLocation *location=(CLLocation*)[notification object];
MKMapItem *source=_mapRoutingRequest.source;
MKMapItem *destination=_mapRoutingRequest.destination;
CLLocationCoordinate2D fromcoordinate=source.placemark.coordinate;
CLLocationCoordinate2D tocoordinate=destination.placemark.coordinate;
if(fromcoordinate.latitude==0.0 && fromcoordinate.longitude==0.0){
[self loadRouteForCoordinates:location.coordinate to:tocoordinate];
}else if(tocoordinate.latitude==0.0 && tocoordinate.longitude==0.0){
[self loadRouteForCoordinates:fromcoordinate to:location.coordinate];
}else{
[self loadRouteForCoordinates:fromcoordinate to:tocoordinate];
}
}
#pragma mark - Load Routes for items
-(void)loadRouteForEndPoints:(CLLocation*)fromlocation to:(CLLocation*)tolocation{
[self loadRouteForCoordinates:fromlocation.coordinate to:tolocation.coordinate];
}
-(void)loadRouteForCoordinates:(CLLocationCoordinate2D)fromcoordinate to:(CLLocationCoordinate2D)tocoordinate{
CycleStreets *cycleStreets = [CycleStreets sharedInstance];
SettingsVO *settingsdp = [SettingsManager sharedInstance].dataProvider;
NSMutableDictionary *parameters=[NSMutableDictionary dictionaryWithObjectsAndKeys:[CycleStreets sharedInstance].APIKey,@"key",
[NSString stringWithFormat:@"%@,%@|%@,%@",BOX_FLOAT(fromcoordinate.longitude),BOX_FLOAT(fromcoordinate.latitude),BOX_FLOAT(tocoordinate.longitude),BOX_FLOAT(tocoordinate.latitude)],@"itinerarypoints",
useDom,@"useDom",
settingsdp.plan,@"plan",
[settingsdp returnKilometerSpeedValue],@"speed",
cycleStreets.files.clientid,@"clientid",
nil];
BUNetworkOperation *request=[[BUNetworkOperation alloc]init];
request.dataid=CALCULATEROUTE;
request.requestid=ZERO;
request.parameters=parameters;
request.source=DataSourceRequestCacheTypeUseNetwork;
__weak __typeof(&*self)weakSelf = self;
request.completionBlock=^(BUNetworkOperation *operation, BOOL complete,NSString *error){
[weakSelf loadRouteForEndPointsResponse:operation];
};
[[BUDataSourceManager sharedInstance] processDataRequest:request];
[[HudManager sharedInstance] showHudWithType:HUDWindowTypeProgress withTitle:@"Obtaining route from CycleStreets.net" andMessage:nil];
}
-(void)loadRouteForEndPointsResponse:(BUNetworkOperation*)response{
BetterLog(@"");
switch(response.validationStatus){
case ValidationCalculateRouteSuccess:
{
RouteVO *newroute = response.dataProvider;
[[SavedRoutesManager sharedInstance] addRoute:newroute toDataProvider:SAVEDROUTE_RECENTS];
[self warnOnFirstRoute];
[self selectRoute:newroute];
[self saveRoute:_selectedRoute];
[[NSNotificationCenter defaultCenter] postNotificationName:CALCULATEROUTERESPONSE object:nil];
[[HudManager sharedInstance] showHudWithType:HUDWindowTypeSuccess withTitle:@"Found route, added path to map" andMessage:nil];
}
break;
case ValidationCalculateRouteFailed:
[self queryFailureMessage:@"Routing error: Could not plan valid route for selected waypoints."];
break;
case ValidationCalculateRouteFailedOffNetwork:
[self queryFailureMessage:@"Routing error: not all waypoints are on known cycle routes."];
break;
default:
break;
}
}
-(void)loadRouteForRouteId:(NSString*)routeid{
SettingsVO *settingsdp = [SettingsManager sharedInstance].dataProvider;
NSMutableDictionary *parameters=[NSMutableDictionary dictionaryWithObjectsAndKeys:[CycleStreets sharedInstance].APIKey,@"key",
useDom,@"useDom",
settingsdp.plan,@"plan",
routeid,@"itinerary",
nil];
BUNetworkOperation *request=[[BUNetworkOperation alloc]init];
request.dataid=RETRIEVEROUTEBYID;
request.requestid=ZERO;
request.parameters=parameters;
request.source=DataSourceRequestCacheTypeUseNetwork;
request.completionBlock=^(BUNetworkOperation *operation, BOOL complete,NSString *error){
[self loadRouteForRouteIdResponse:operation];
};
[[BUDataSourceManager sharedInstance] processDataRequest:request];
// format routeid to decimal style ie xx,xxx,xxx
NSNumberFormatter *currencyformatter=[[NSNumberFormatter alloc]init];
[currencyformatter setNumberStyle:NSNumberFormatterDecimalStyle];
NSString *result=[currencyformatter stringFromNumber:[NSNumber numberWithInt:[routeid intValue]]];
[[HudManager sharedInstance] showHudWithType:HUDWindowTypeProgress withTitle:[NSString stringWithFormat:@"Loading route %@ on CycleStreets",result] andMessage:nil];
}
-(void)loadRouteForRouteId:(NSString*)routeid withPlan:(NSString*)plan{
BOOL found=[[SavedRoutesManager sharedInstance] findRouteWithId:routeid andPlan:plan];
if(found==YES){
RouteVO *route=[self loadRouteForFileID:[NSString stringWithFormat:@"%@_%@",routeid,plan]];
[self selectRoute:route];
[[NSNotificationCenter defaultCenter] postNotificationName:NEWROUTEBYIDRESPONSE object:nil];
[[HudManager sharedInstance] showHudWithType:HUDWindowTypeSuccess withTitle:@"Found route, this route is now selected." andMessage:nil];
}else{
NSMutableDictionary *parameters=[NSMutableDictionary dictionaryWithObjectsAndKeys:[CycleStreets sharedInstance].APIKey,@"key",
useDom,@"useDom",
plan,@"plan",
routeid,@"itinerary",
nil];
BUNetworkOperation *request=[[BUNetworkOperation alloc]init];
request.dataid=RETRIEVEROUTEBYID;
request.requestid=ZERO;
request.parameters=parameters;
request.source=DataSourceRequestCacheTypeUseNetwork;
request.completionBlock=^(BUNetworkOperation *operation, BOOL complete,NSString *error){
[self loadRouteForRouteIdResponse:operation];
};
[[BUDataSourceManager sharedInstance] processDataRequest:request];
[[HudManager sharedInstance] showHudWithType:HUDWindowTypeProgress withTitle:[NSString stringWithFormat:@"Searching for %@ route %@ on CycleStreets",[plan capitalizedString], routeid] andMessage:nil];
}
}
//
/***********************************************
* @description OS6 Routing request support
***********************************************/
//
-(void)loadRouteForRouting:(MKDirectionsRequest*)routingrequest{
MKMapItem *source=routingrequest.source;
MKMapItem *destination=routingrequest.destination;
CLLocationCoordinate2D fromlocation=source.placemark.coordinate;
CLLocationCoordinate2D tolocation=destination.placemark.coordinate;
// if a user has currentLocation as one of their pins
// MKDirectionsRequest will return 0,0 for it
// so we have to do another lookup in app to correct this!
if(fromlocation.latitude==0.0 || tolocation.latitude==0.0){
self.mapRoutingRequest=routingrequest;
[[UserLocationManager sharedInstance] startUpdatingLocationForSubscriber:LOCATIONSUBSCRIBERID];
}else{
[self loadRouteForCoordinates:fromlocation to:tolocation];
}
}
-(void)loadRouteForRouteIdResponse:(BUNetworkOperation*)response{
BetterLog(@"");
switch(response.validationStatus){
case ValidationCalculateRouteSuccess:
{
RouteVO *newroute=response.dataProvider;
[[SavedRoutesManager sharedInstance] addRoute:newroute toDataProvider:SAVEDROUTE_RECENTS];
[self selectRoute:newroute];
[self saveRoute:_selectedRoute ];
[[NSNotificationCenter defaultCenter] postNotificationName:NEWROUTEBYIDRESPONSE object:nil];
[[HudManager sharedInstance] showHudWithType:HUDWindowTypeSuccess withTitle:@"Found route, this route is now selected." andMessage:nil];
}
break;
case ValidationCalculateRouteFailed:
[self queryFailureMessage:@"Unable to find a route with this number."];
break;
default:
break;
}
}
#pragma mark - Waypoint requests
-(void)loadRouteForWaypoints:(NSMutableArray*)waypoints{
CycleStreets *cycleStreets = [CycleStreets sharedInstance];
SettingsVO *settingsdp = [SettingsManager sharedInstance].dataProvider;
NSMutableDictionary *parameters=[NSMutableDictionary dictionaryWithObjectsAndKeys:[CycleStreets sharedInstance].APIKey,@"key",
[self convertWaypointArrayforRequest:waypoints],@"itinerarypoints",
useDom,@"useDom",
settingsdp.plan,@"plan",
[settingsdp returnKilometerSpeedValue],@"speed",
cycleStreets.files.clientid,@"clientid",
nil];
BUNetworkOperation *request=[[BUNetworkOperation alloc]init];
request.dataid=CALCULATEROUTE;
request.requestid=ZERO;
request.parameters=parameters;
request.source=DataSourceRequestCacheTypeUseNetwork;
request.completionBlock=^(BUNetworkOperation *operation, BOOL complete,NSString *error){
[self loadRouteForEndPointsResponse:operation];
};
[[BUDataSourceManager sharedInstance] processDataRequest:request];
[[HudManager sharedInstance] showHudWithType:HUDWindowTypeProgress withTitle:@"Obtaining route from CycleStreets.net" andMessage:nil];
}
/*
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"name": "Senate House Hill, NCN 11"
},
"geometry": {
"type": "Point",
"coordinates": [
0.117823,
52.205299
]
}
}
]
}
*/
-(void)loadMetaDataForWaypoint:(WayPointVO*)waypoint{
// NSDictionary *postparameters=@{@"username":[CycleStreets sharedInstance].APIKey,
// @"password":@"cycleStreetsDev"};
NSMutableDictionary *getparameters=[NSMutableDictionary dictionaryWithObjectsAndKeys:waypoint.coordinateString,@"lonlat",
[CycleStreets sharedInstance].APIKey,@"key",
nil];
BUNetworkOperation *request=[[BUNetworkOperation alloc]init];
request.dataid=WAYPOINTMETADATA;
request.requestid=ZERO;
//request.parameters=[@{@"getparameters":getparameters, @"postparameters":postparameters} mutableCopy];
request.parameters=[getparameters mutableCopy];
request.source=DataSourceRequestCacheTypeUseNetwork;
__weak __typeof(&*waypoint)weakWaypoint = waypoint;
request.completionBlock=^(BUNetworkOperation *operation, BOOL complete, NSString *error){
[self loadMetaDataForWaypointResponse:operation forWaypoint:weakWaypoint];
};
[[BUDataSourceManager sharedInstance] processDataRequest:request];
}
-(void)loadMetaDataForWaypointResponse:(BUNetworkOperation*)response forWaypoint:(WayPointVO*)waypoint{
switch(response.validationStatus){
case ValidationRetrieveRouteByIdSuccess:
{
NSDictionary *responseDict=response.dataProvider;
waypoint.locationname=responseDict[@"features"][0][@"properties"][@"name"];
}
break;
default:
break;
}
}
//
/***********************************************
* @description converts array to lat,long|lat,long... formatted string
***********************************************/
//
-(NSString*)convertWaypointArrayforRequest:(NSMutableArray*)waypoints{
NSMutableArray *cooordarray=[NSMutableArray array];
for(int i=0;i<waypoints.count;i++){
WayPointVO *waypoint=waypoints[i];
[cooordarray addObject:waypoint.coordinateStringForAPI];
}
return [cooordarray componentsJoinedByString:@"|"];
}
#pragma mark - Route Updating for elevation
-(void)updateRoute:(RouteVO*)route{
BetterLog(@"");
NSMutableDictionary *parameters=[NSMutableDictionary dictionaryWithObjectsAndKeys:[CycleStreets sharedInstance].APIKey,@"key",
useDom,@"useDom",
route.plan,@"plan",
route.routeid,@"itinerary",
nil];
BUNetworkOperation *request=[[BUNetworkOperation alloc]init];
request.dataid=UPDATEROUTE;
request.requestid=ZERO;
request.parameters=parameters;
request.source=DataSourceRequestCacheTypeUseNetwork;
request.completionBlock=^(BUNetworkOperation *operation, BOOL complete,NSString *error){
[self updateRouteResponse:operation];
};
[[BUDataSourceManager sharedInstance] processDataRequest:request];
// format routeid to decimal style ie xx,xxx,xxx
NSNumberFormatter *currencyformatter=[[NSNumberFormatter alloc]init];
[currencyformatter setNumberStyle:NSNumberFormatterDecimalStyle];
NSString *result=[currencyformatter stringFromNumber:[NSNumber numberWithInt:[route.routeid intValue]]];
[[HudManager sharedInstance] showHudWithType:HUDWindowTypeProgress withTitle:[NSString stringWithFormat:@"Updating route %@",result] andMessage:nil];
}
-(void)updateRouteResponse:(BUNetworkOperation*)response{
BetterLog(@"");
switch(response.validationStatus){
case ValidationCalculateRouteSuccess:
{
RouteVO *newroute=response.dataProvider;
[[SavedRoutesManager sharedInstance] updateRouteWithRoute:newroute];
[[HudManager sharedInstance] showHudWithType:HUDWindowTypeSuccess withTitle:nil andMessage:nil];
}
break;
case ValidationCalculateRouteFailed:
[self queryFailureMessage:@"Unable to find a route with this number."];
break;
default:
break;
}
}
//
/***********************************************
* @description Old Route>New Route conversion evaluation
***********************************************/
//
#pragma mark - Legacy Route loading and conversion
-(void)evalRouteArchiveState{
// do we have a old route folder
NSFileManager* fileManager = [NSFileManager defaultManager];
[self createRoutesDir];
BOOL isDirectory;
BOOL doesDirExist=[fileManager fileExistsAtPath:[self oldroutesDirectory] isDirectory:&isDirectory];
if(doesDirExist==YES && isDirectory==YES){
self.legacyRoutes=[NSMutableArray array];
NSError *error=nil;
NSURL *url = [[NSURL alloc] initFileURLWithPath:[self oldroutesDirectory] isDirectory:YES ];
NSArray *properties = [NSArray arrayWithObjects: NSURLLocalizedNameKey, nil];
NSArray *oldroutes = [fileManager
contentsOfDirectoryAtURL:url
includingPropertiesForKeys:properties
options:(NSDirectoryEnumerationSkipsPackageDescendants |
NSDirectoryEnumerationSkipsHiddenFiles)
error:&error];
if(error==nil && [oldroutes count]>0){
for(NSURL *filename in oldroutes){
NSData *routedata=[[NSData alloc ] initWithContentsOfURL:filename];
RouteVO *newroute=(RouteVO*)[[ApplicationXMLParser sharedInstance] parseXML:routedata forType:CALCULATEROUTE];
[_legacyRoutes addObject:newroute];
[self saveRoute:newroute];
}
}
}else {
BetterLog(@"[INFO] OldRoutes dir was not there");
}
self.activeRouteDir=ROUTEARCHIVEPATH;
}
-(void)legacyRouteCleanup{
self.legacyRoutes=nil;
NSFileManager* fileManager = [NSFileManager defaultManager];
NSError *error=nil;
[fileManager removeItemAtPath:[self oldroutesDirectory] error:&error];
}
- (void) queryFailureMessage:(NSString *)message {
[[HudManager sharedInstance] showHudWithType:HUDWindowTypeError withTitle:message andMessage:nil];
}
#pragma mark - Route management
- (void) selectRoute:(RouteVO *)route {
BetterLog(@"");
self.selectedRoute=route;
[[SavedRoutesManager sharedInstance] selectRoute:route];
CycleStreets *cycleStreets = [CycleStreets sharedInstance];
[cycleStreets.files setMiscValue:route.fileid forKey:@"selectedroute"];
BetterLog(@"");
[[NSNotificationCenter defaultCenter] postNotificationName:CSROUTESELECTED object:[route routeid]];
}
- (void) clearSelectedRoute{
if(_selectedRoute!=nil){
self.selectedRoute=nil;
CycleStreets *cycleStreets = [CycleStreets sharedInstance];
[cycleStreets.files setMiscValue:EMPTYSTRING forKey:@"selectedroute"];
}
}
-(BOOL)hasSelectedRoute{
return _selectedRoute!=nil;
}
-(BOOL)routeIsSelectedRoute:(RouteVO*)route{
if(_selectedRoute!=nil){
return [route.fileid isEqualToString:_selectedRoute.fileid];
}else{
return NO;
}
}
- (void)warnOnFirstRoute {
CycleStreets *cycleStreets = [CycleStreets sharedInstance];
NSMutableDictionary *misc = [NSMutableDictionary dictionaryWithDictionary:[cycleStreets.files misc]];
NSString *experienceLevel = [misc objectForKey:@"experienced"];
if (experienceLevel == nil) {
[misc setObject:@"1" forKey:@"experienced"];
[cycleStreets.files setMisc:misc];
UIAlertView *firstAlert = [[UIAlertView alloc] initWithTitle:@"Warning"
message:@"Route quality cannot be guaranteed. Please proceed at your own risk. Do not use a mobile while cycling."
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[firstAlert show];
} else if ([experienceLevel isEqualToString:@"1"]) {
[misc setObject:@"2" forKey:@"experienced"];
[cycleStreets.files setMisc:misc];
UIAlertView *optionsAlert = [[UIAlertView alloc] initWithTitle:@"Routing modes"
message:@"You can change between fastest / quietest / balanced routing type using the route type button above."
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[optionsAlert show];
}
}
//
/***********************************************
* @description Pre Selects route as SR
***********************************************/
//
-(void)selectRouteWithIdentifier:(NSString*)identifier{
if (identifier!=nil) {
RouteVO *route = [_routes objectForKey:identifier];
if(route!=nil){
[self selectRoute:route];
}
}
}
//
/***********************************************
* @description loads route from disk and stores
***********************************************/
//
-(void)loadRouteWithIdentifier:(NSString*)identifier{
RouteVO *route=nil;
if (identifier!=nil) {
route = [self loadRouteForFileID:identifier];
}
if(route!=nil){
[_routes setObject:route forKey:identifier];
}
}
//
-(BOOL)hasSavedSelectedRoute{
CycleStreets *cycleStreets = [CycleStreets sharedInstance];
NSString *selectedroutefileid = [cycleStreets.files miscValueForKey:@"selectedroute"];
if(selectedroutefileid!=nil){
RouteVO *route=[self loadRouteForFileID:selectedroutefileid];
return route!=nil;
}
return NO;
}
// loads the currently saved selectedRoute by identifier
-(BOOL)loadSavedSelectedRoute{
BetterLog(@"");
CycleStreets *cycleStreets = [CycleStreets sharedInstance];
NSString *selectedroutefileid = [cycleStreets.files miscValueForKey:@"selectedroute"];
if(selectedroutefileid!=nil){
RouteVO *route=[self loadRouteForFileID:selectedroutefileid];
if(route!=nil){
[self selectRoute:route];
return YES;
}else{
[[NSNotificationCenter defaultCenter] postNotificationName:CSLASTLOCATIONLOAD object:nil];
return NO;
}
}
return NO;
}
-(void)removeRoute:(RouteVO*)route{
[_routes removeObjectForKey:route.fileid];
[self removeRouteFile:route];
}
#pragma mark - Route File I/O
-(RouteVO*)loadRouteForFileID:(NSString*)fileid{
NSString *routeFile = [[self routesDirectory] stringByAppendingPathComponent:[NSString stringWithFormat:@"route_%@", fileid]];
BetterLog(@"routeFile=%@",routeFile);
NSMutableData *data = [[NSMutableData alloc] initWithContentsOfFile:routeFile];
if(data!=nil){
NSKeyedUnarchiver *unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:data];
RouteVO *route = [unarchiver decodeObjectForKey:kROUTEARCHIVEKEY];
[unarchiver finishDecoding];
return route;
}
return nil;
}
- (void)saveRoute:(RouteVO *)route {
NSString *routeFile = [[self routesDirectory] stringByAppendingPathComponent:[NSString stringWithFormat:@"route_%@", route.fileid]];
//BetterLog(@"routeFile=%@",routeFile);
NSMutableData *data = [[NSMutableData alloc] init];
NSKeyedArchiver *archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:data];
[archiver encodeObject:route forKey:kROUTEARCHIVEKEY];
[archiver finishEncoding];
[data writeToFile:routeFile atomically:YES];
}
- (void)removeRouteFile:(RouteVO*)route{
NSFileManager* fileManager = [NSFileManager defaultManager];
NSString *routeFile = [[self routesDirectory] stringByAppendingPathComponent:[NSString stringWithFormat:@"route_%@", route.fileid]];
BOOL fileexists = [fileManager fileExistsAtPath:routeFile];
if(fileexists==YES){
NSError *error=nil;
[fileManager removeItemAtPath:routeFile error:&error];
}
}
-(BOOL)createRoutesDir{
NSFileManager* fileManager = [NSFileManager defaultManager];
NSArray* paths=NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
NSString* docsdir=[paths objectAtIndex:0];
NSString *ipath=[docsdir stringByAppendingPathComponent:ROUTEARCHIVEPATH];
BOOL isDir=YES;
if([fileManager fileExistsAtPath:ipath isDirectory:&isDir]){
return YES;
}else {
if([fileManager createDirectoryAtPath:ipath withIntermediateDirectories:NO attributes:nil error:nil ]){
return YES;
}else{
return NO;
}
}
}
#pragma mark - Legacy route methods
// legacy conversion call only
-(RouteVO*)legacyLoadRoute:(NSString*)routeid{
NSString *routeFile = [[self oldroutesDirectory] stringByAppendingPathComponent:routeid];
//BetterLog(@"routeFile=%@",routeFile);
NSMutableData *data = [[NSMutableData alloc] initWithContentsOfFile:routeFile];
NSKeyedUnarchiver *unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:data];
RouteVO *route = [unarchiver decodeObjectForKey:kROUTEARCHIVEKEY];
[unarchiver finishDecoding];
return route;
}