-
Notifications
You must be signed in to change notification settings - Fork 20
/
taglib.go
324 lines (271 loc) · 6.31 KB
/
taglib.go
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
// Go wrapper for taglib
// Generate stringer method for types
//go:generate stringer -type=TagName
package taglib
// #cgo pkg-config: taglib
// #cgo LDFLAGS: -ltag_c
// #include <stdlib.h>
// #include <tag_c.h>
import "C"
import (
"errors"
"strconv"
"sync"
"time"
"unsafe"
)
type TagName int
// Tag names
const (
Album TagName = iota
Artist
Bitrate
Channels
Comments
Genre
Length
Samplerate
Title
Track
Year
)
var (
ErrInvalid = errors.New("invalid file")
glock = sync.Mutex{}
)
func init() {
// Make everything utf-8
C.taglib_id3v2_set_default_text_encoding(3)
}
// Returns a string with this tag's comment.
func (file *File) Tag(tagname TagName) (tagvalue string) {
switch tagname {
case Album:
return file.Album()
case Artist:
return file.Artist()
case Bitrate:
return strconv.Itoa(file.Bitrate())
case Channels:
return strconv.Itoa(file.Channels())
case Comments:
return file.Comment()
case Genre:
return file.Genre()
case Length:
return file.Length().String()
case Samplerate:
return strconv.Itoa(file.Samplerate())
case Title:
return file.Title()
case Track:
return strconv.Itoa(file.Track())
case Year:
return strconv.Itoa(file.Year())
}
return ""
}
// Sets the tag.
func (file *File) SetTag(tagname TagName, tagvalue string) {
switch tagname {
case Album:
file.SetAlbum(tagvalue)
case Artist:
file.SetArtist(tagvalue)
case Comments:
file.SetComment(tagvalue)
case Genre:
file.SetGenre(tagvalue)
case Title:
file.SetTitle(tagvalue)
case Track:
intValue, convErr := strconv.Atoi(tagvalue)
if convErr == nil {
file.SetTrack(intValue)
}
case Year:
intValue, convErr := strconv.Atoi(tagvalue)
if convErr == nil {
file.SetYear(intValue)
}
}
}
type File struct {
fp *C.TagLib_File
tag *C.TagLib_Tag
props *C.TagLib_AudioProperties
}
// Reads and parses a music file. Returns an error if the provided filename is
// not a valid file.
func Read(filename string) (*File, error) {
glock.Lock()
defer glock.Unlock()
cs := C.CString(filename)
defer C.free(unsafe.Pointer(cs))
fp := C.taglib_file_new(cs)
if fp == nil || C.taglib_file_is_valid(fp) == 0 {
return nil, ErrInvalid
}
return &File{
fp: fp,
tag: C.taglib_file_tag(fp),
props: C.taglib_file_audioproperties(fp),
}, nil
}
// Close and free the file.
func (file *File) Close() {
glock.Lock()
defer glock.Unlock()
C.taglib_file_free(file.fp)
file.fp = nil
file.tag = nil
file.props = nil
}
func convertAndFree(cs *C.char) string {
if cs == nil {
return ""
}
defer C.free(unsafe.Pointer(cs))
return C.GoString(cs)
}
// Returns a string with this tag's title.
func (file *File) Title() string {
glock.Lock()
defer glock.Unlock()
return convertAndFree(C.taglib_tag_title(file.tag))
}
// Returns a string with this tag's artist.
func (file *File) Artist() string {
glock.Lock()
defer glock.Unlock()
return convertAndFree(C.taglib_tag_artist(file.tag))
}
// Returns a string with this tag's album name.
func (file *File) Album() string {
glock.Lock()
defer glock.Unlock()
return convertAndFree(C.taglib_tag_album(file.tag))
}
// Returns a string with this tag's comment.
func (file *File) Comment() string {
glock.Lock()
defer glock.Unlock()
return convertAndFree(C.taglib_tag_comment(file.tag))
}
// Returns a string with this tag's genre.
func (file *File) Genre() string {
glock.Lock()
defer glock.Unlock()
return convertAndFree(C.taglib_tag_genre(file.tag))
}
// Returns the tag's year or 0 if year is not set.
func (file *File) Year() int {
glock.Lock()
defer glock.Unlock()
return int(C.taglib_tag_year(file.tag))
}
// Returns the tag's track number or 0 if track number is not set.
func (file *File) Track() int {
glock.Lock()
defer glock.Unlock()
return int(C.taglib_tag_track(file.tag))
}
// Returns the length of the file.
func (file *File) Length() time.Duration {
glock.Lock()
defer glock.Unlock()
length := C.taglib_audioproperties_length(file.props)
return time.Duration(length) * time.Second
}
// Returns the bitrate of the file in kb/s.
func (file *File) Bitrate() int {
glock.Lock()
defer glock.Unlock()
return int(C.taglib_audioproperties_bitrate(file.props))
}
// Returns the sample rate of the file in Hz.
func (file *File) Samplerate() int {
glock.Lock()
defer glock.Unlock()
return int(C.taglib_audioproperties_samplerate(file.props))
}
// Returns the number of channels in the audio stream.
func (file *File) Channels() int {
glock.Lock()
defer glock.Unlock()
return int(C.taglib_audioproperties_channels(file.props))
}
func init() {
glock.Lock()
defer glock.Unlock()
C.taglib_set_string_management_enabled(0)
}
// Saves the \a file to disk.
func (file *File) Save() error {
var err error
glock.Lock()
defer glock.Unlock()
if C.taglib_file_save(file.fp) != 1 {
err = errors.New("Cannot save file")
}
return err
}
// Sets the tag's title.
func (file *File) SetTitle(s string) {
glock.Lock()
defer glock.Unlock()
cs := GetCCharPointer(s)
defer C.free(unsafe.Pointer(cs))
C.taglib_tag_set_title(file.tag, cs)
}
// Sets the tag's artist.
func (file *File) SetArtist(s string) {
glock.Lock()
defer glock.Unlock()
cs := GetCCharPointer(s)
defer C.free(unsafe.Pointer(cs))
C.taglib_tag_set_artist(file.tag, cs)
}
// Sets the tag's album.
func (file *File) SetAlbum(s string) {
glock.Lock()
defer glock.Unlock()
cs := GetCCharPointer(s)
defer C.free(unsafe.Pointer(cs))
C.taglib_tag_set_album(file.tag, cs)
}
// Sets the tag's comment.
func (file *File) SetComment(s string) {
glock.Lock()
defer glock.Unlock()
cs := GetCCharPointer(s)
defer C.free(unsafe.Pointer(cs))
C.taglib_tag_set_comment(file.tag, cs)
}
// Sets the tag's genre.
func (file *File) SetGenre(s string) {
glock.Lock()
defer glock.Unlock()
cs := GetCCharPointer(s)
defer C.free(unsafe.Pointer(cs))
C.taglib_tag_set_genre(file.tag, cs)
}
// Sets the tag's year. 0 indicates that this field should be cleared.
func (file *File) SetYear(i int) {
glock.Lock()
defer glock.Unlock()
ci := C.uint(i)
C.taglib_tag_set_year(file.tag, ci)
}
// Sets the tag's track number. 0 indicates that this field should be cleared.
func (file *File) SetTrack(i int) {
glock.Lock()
defer glock.Unlock()
ci := C.uint(i)
C.taglib_tag_set_track(file.tag, ci)
}
func GetCCharPointer(s string) *C.char {
// Add a 0x00 to end
b := append([]byte(s), 0)
return (*C.char)(C.CBytes(b))
}