-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSideBarDataSource.m
243 lines (205 loc) · 7.77 KB
/
SideBarDataSource.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
//
// SideBarDataSource.m
// GPSLogger
//
// Created by German Laullon on 16/11/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//
#import "SideBarDataSource.h"
#import "PhotoNode.h"
#import "TrackNode.h"
#import "GPSPoint.h"
@interface SideBarDataSource (hiddem)
-(void)readFromNMEA0183:(NSURL *)file;
-(void)readFromGPXFile:(NSURL *)file;
-(void)readImage:(NSURL *)fileName;
-(NSNumber *)calcAngleXML:(NSXMLNode *)angle;
-(NSDate *)calcDateXML:(NSXMLNode *)date;
@end
@implementation SideBarDataSource
- (void)awakeFromNib
{
root = [NSTreeNode treeNodeWithRepresentedObject:@"root"];
tracks = [NSTreeNode treeNodeWithRepresentedObject:@"Tacks"];
photos = [NSTreeNode treeNodeWithRepresentedObject:@"Fotos"];
[root.mutableChildNodes addObject:tracks];
[root.mutableChildNodes addObject:photos];
}
- (id)outlineView:(NSOutlineView *)outlineView child:(NSInteger)index ofItem:(id)item
{
NSTreeNode *node = (NSTreeNode *)item;
if(!node){
node = root;
}
return [node.childNodes objectAtIndex:index];
}
- (BOOL)outlineView:(NSOutlineView *)outlineView isItemExpandable:(id)item
{
return !([item isKindOfClass:[TrackNode class]] || [item isKindOfClass:[PhotoNode class]]);
}
- (NSInteger)outlineView:(NSOutlineView *)outlineView numberOfChildrenOfItem:(id)item
{
NSTreeNode *node = (NSTreeNode *)item;
if(!node){
node = root;
}
return [node childNodes].count;
}
- (id)outlineView:(NSOutlineView *)outlineView objectValueForTableColumn:(NSTableColumn *)tableColumn byItem:(id)item
{
NSTreeNode *node = (NSTreeNode *)item;
return node.representedObject;
}
#pragma mark - props
-(NSArray *)photos
{
return photos.childNodes;
}
-(NSArray *)tracks
{
return tracks.childNodes;
}
#pragma mark - read
-(void)readFiles:(NSArray *)files
{
for(NSURL *file in files){
NSString *type = [[NSWorkspace sharedWorkspace] typeOfFile:file.path error:nil];
NSLog(@"type=%@",type);
if([type hasSuffix:@"gpx"]){
[self readFromGPXFile:file];
}else if([type hasSuffix:@"log"]){
[self readFromNMEA0183:file];
}else if([type hasSuffix:@"public.jpeg"]){
[self readImage:file];
}
}
}
-(void)readFromNMEA0183:(NSURL *)file
{
NSError *err=nil;
NSString *log = [NSString stringWithContentsOfURL:file encoding:NSASCIIStringEncoding error:&err];
if(err)
{
NSLog(@"readFromGPXFile => Error = %@",err);
return;
}
NSString *str;
int n=0;
NSScanner *scanner = [NSScanner scannerWithString:log];
TrackNode *tn=[TrackNode treeNodeWithRepresentedObject:[file lastPathComponent]];
while ([scanner scanUpToString:@"$GP" intoString:nil]) {
if([scanner scanUpToString:@"," intoString:&str]){
// NSLog(@"< %@ >",str);
if([str isEqualToString:@"$GPRMC"]){
if([scanner scanUpToString:@"*" intoString:&str]){
str = [str substringFromIndex:1]; // quitamos la primera ,
// NSLog(@"- %@ -",str);
NSArray *comps = [str componentsSeparatedByString:@","];
if([[comps objectAtIndex:1] isEqualToString:@"A"]){
GPSPoint *gp=[GPSPoint alloc];
[gp setIndex:[NSNumber numberWithInt:n++]];
double rawLatLng = [[comps objectAtIndex:4] doubleValue];
double d = floor(rawLatLng / 100) + ((rawLatLng - (floor(rawLatLng / 100) * 100)) / 60);
// NSLog(@"> %f => %f",rawLatLng,d);
if([[comps objectAtIndex:5] isEqualToString:@"W"]){
d = d*-1;
}
[gp setLongitud:[NSNumber numberWithDouble:d]];
rawLatLng = [[comps objectAtIndex:2] doubleValue];
d = floor(rawLatLng / 100) + ((rawLatLng - (floor(rawLatLng / 100) * 100)) / 60);
// NSLog(@"> %f => %f",rawLatLng,d);
if([[comps objectAtIndex:5] isEqualToString:@"S"]){
d = d*-1;
}
[gp setLatitud:[NSNumber numberWithDouble:d]];
//enlazamos con el track
[gp setTrack:tn];
[tn.points addObject:gp];
}
}
}
}
}
[[tracks mutableChildNodes] addObject:tn];
}
-(void)readFromGPXFile:(NSURL *)file
{
NSError *err=nil;
NSLog(@"readFromGPXFile => file = '%@'",file);
NSXMLDocument *xmlDoc = [[NSXMLDocument alloc] initWithContentsOfURL:file options:(NSXMLNodePreserveWhitespace|NSXMLNodePreserveCDATA) error:&err];
if(err)
{
NSLog(@"readFromGPXFile => Error = %@",err);
[self readFromNMEA0183:file];
return;
}
NSArray *trks=[[xmlDoc rootElement]elementsForName:@"trk"];
NSXMLElement *trk;
int n=0;
for(trk in trks){
NSString *name=[NSString stringWithFormat:@" Track %d",[[tracks childNodes] count]];
NSArray *names=[trk elementsForName:@"name"];
if([names count]==1) name=[[names objectAtIndex:0] stringValue];
TrackNode *tn=[TrackNode treeNodeWithRepresentedObject:name];
for(NSXMLElement *seg in [trk children]){
for(NSXMLElement *node in [seg children]){
if([[node name] isEqual:@"trkpt"])
{
GPSPoint *gp=[GPSPoint alloc];
[gp setIndex:[NSNumber numberWithInt:n]];
[gp setLongitud:[self calcAngleXML:[node attributeForName:@"lon"]]];
[gp setLatitud:[self calcAngleXML:[node attributeForName:@"lat"]]];
[gp setTag:[NSNumber numberWithInt:0]];
for(NSXMLElement *hijo in [node children]){
NSString *hn=[hijo name];
if([hn isEqual:@"time"]){
[gp setFecha:[self calcDateXML:hijo]];
// }else if([hn isEqual:@"name"]){
// NSString *name=[hijo stringValue];
// PointNode *nodo=[PointNode treeNodeWithRepresentedObject:name];
// [nodo setPointIndex:n];
// [[tn mutableChildNodes] addObject:nodo];
}else if([hn isEqual:@"ele"]){
[gp setAltitud:[NSNumber numberWithInt:[[hijo stringValue] intValue]]];
}
}
//enlazamos con el track
[gp setTrack:tn];
[tn.points addObject:gp];
}
}
}
[[tracks mutableChildNodes] addObject:tn];
}
}
- (void)readImage:(NSURL *)fileName
{
FSRef ref;
FSPathMakeRef((const UInt8 *)[[fileName path] fileSystemRepresentation], &ref, NULL);
CGImageSourceRef source = CGImageSourceCreateWithURL( (CFURLRef) CFURLCreateFromFSRef(kCFAllocatorDefault,&ref), NULL);
NSDictionary* metadata = (__bridge_transfer NSDictionary *)CGImageSourceCopyPropertiesAtIndex(source,0,NULL);
NSDictionary *exifs=[metadata objectForKey:@"{Exif}"];
NSMutableString *dateS=[[exifs objectForKey:(NSString *)kCGImagePropertyExifDateTimeOriginal] mutableCopy];
[dateS replaceOccurrencesOfString:@":" withString:@"-" options:0 range:NSMakeRange(0, 10)];
NSString *name=[fileName lastPathComponent];
PhotoNode *photo=[PhotoNode treeNodeWithRepresentedObject:name];
[photo setName:name];
[photo setDate:[NSDate dateWithString:dateS]];
[photo setDateO:dateS];
[photo setURL:fileName];
[[photos mutableChildNodes] addObject:photo];
}
#pragma mark - utils
- (NSNumber *)calcAngleXML:(NSXMLNode *)angle
{
NSNumber *res=[NSNumber numberWithDouble:[[angle stringValue]doubleValue]];
//NSLog(@"%@",[date stringValue]);
return res;
}
- (NSDate *)calcDateXML:(NSXMLNode *)date
{
//NSLog(@"%@",[date stringValue]);
NSCalendarDate *res=[NSCalendarDate dateWithString:[date stringValue] calendarFormat:@"%Y-%m-%dT%H:%M:%SZ"];
return res;
}
@end