forked from goonj/goonj
-
Notifications
You must be signed in to change notification settings - Fork 1
/
GM3UPlaylist.m
165 lines (132 loc) · 3.89 KB
/
GM3UPlaylist.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
/*
File: GM3UPlaylist.m
Description: M3U playlist support for Goonj (implementation).
This file is part of Goonj.
Goonj 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 3 of the License, or
(at your option) any later version.
Goonj 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 Goonj. If not, see <http://www.gnu.org/licenses/>.
Copyright 2009 Pratul Kalia.
Copyright 2009 Ankur Sethi.
*/
#import "GM3UPlaylist.h"
@implementation GM3UPlaylist
- (id) initWithFile:(NSString *)aURL
{
if (self = [super init])
{
trackList = [[NSMutableArray alloc] initWithCapacity:0];
aURL = [aURL stringByExpandingTildeInPath];
if ([[NSFileManager defaultManager] fileExistsAtPath:aURL] == YES)
[self loadCollection:aURL];
return self;
}
return nil;
}
- (id) initWithTrackList:(NSArray *)aTrackList
{
if (self = [super init])
{
trackList = [[NSMutableArray alloc] initWithArray:aTrackList];
return self;
}
return nil;
}
- (void) addTrack:(GTrack *)track
{
if (track)
[trackList addObject:track];
}
- (void) addTrack:(GTrack *)track atIndex:(NSUInteger)index
{
if (track)
[trackList insertObject:track atIndex:index];
}
- (void) removeTrack:(GTrack *)track
{
[trackList removeObject:track];
}
- (void) removeTrackAtIndex:(NSUInteger)index
{
[trackList removeObjectAtIndex:index];
}
- (void) removeTracksAtIndexes:(NSIndexSet *)indexes
{
[trackList removeObjectsAtIndexes:indexes];
}
- (void) moveTrackFromIndex:(NSUInteger)initIndex toIndex:(NSUInteger)endIndex
{
id something = [trackList objectAtIndex:initIndex];
[trackList removeObjectAtIndex:initIndex];
[trackList insertObject:something atIndex:endIndex];
}
- (void) clearPlaylist
{
[trackList removeAllObjects];
}
- (NSUInteger) count
{
return [trackList count];
}
- (GTrack *) trackAtIndex:(NSUInteger)index
{
return [trackList objectAtIndex:index];
}
- (BOOL) saveCollectionAs:(NSString *)aURL
{
aURL = [aURL stringByExpandingTildeInPath];
NSError *err;
NSString *write = [NSString string];
for (GTrack *track in trackList)
{
NSString *current = [track valueForKey:@"location"];
write = [write stringByAppendingString:current];
write = [write stringByAppendingString:@"\n"];
}
// Atomic writes are safer.
[write writeToFile:aURL atomically:YES encoding:4 error:&err];
return YES;
}
- (BOOL) loadCollection:(NSString *)aURL
{
NSError *err; NSStringEncoding encoding;
GTrack *track;
NSArray *lines = [[NSString stringWithContentsOfFile:aURL usedEncoding:&encoding error:&err] componentsSeparatedByString:@"\n"];
for (NSString *temp in lines)
{
temp = [temp stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
// Currently, we are ignoring any lines with comments.
// TODO write the extm3u parser.
if (([temp length] > 0) && [temp characterAtIndex:0] != '#') {
track = [[GTrack alloc] initWithFile:temp];
[self addTrack:track];
}
}
return YES;
}
- (BOOL) isLocalCollection
{
return YES;
}
////
#pragma mark Now Playing methods
////
+ (id < GOrderedMutableCollection >) loadNowPlaying
{
id < GOrderedMutableCollection > pA = [[GM3UPlaylist alloc] initWithFile:[GUtilities nowPlayingPath]];
return pA;
}
+ (BOOL) saveNowPlaying
{
if ([[GM3UPlaylist alloc] saveCollectionAs:[GUtilities nowPlayingPath]])
return YES;
else
return NO;
}
@end