forked from wtolson/go-taglib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaglib.go
253 lines (205 loc) · 5.38 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
// Go wrapper for taglib
// Generate stringer method for types
package taglib
// #cgo pkg-config: taglib
// #cgo LDFLAGS: -ltag_c
// #include <stdlib.h>
// #include <tag_c.h>
import "C"
import (
"errors"
"sync"
"time"
"unsafe"
)
func init() {
// Make everything utf-8
C.taglib_id3v2_set_default_text_encoding(3)
}
// File holds pointers to the C API of taglib, plus a mutex for concurrency
// safety, and the filename.
type File struct {
sync.Mutex
Filename string
// C API
fp *C.TagLib_File
tag *C.TagLib_Tag
props *C.TagLib_AudioProperties
}
// Read and parses a music file. Returns an error if the provided filename is
// not a valid file.
func Read(filename string) (*File, error) {
m := &sync.Mutex{}
m.Lock()
defer m.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, errors.New("invalid file")
}
return &File{
Filename: filename,
fp: fp,
tag: C.taglib_file_tag(fp),
props: C.taglib_file_audioproperties(fp),
}, nil
}
// Close and free the file.
func (file *File) Close() {
file.Lock()
defer file.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)
}
// Title returns a string with this tag's title.
func (file *File) Title() string {
file.Lock()
defer file.Unlock()
return convertAndFree(C.taglib_tag_title(file.tag))
}
// Artist returns a string with this tag's artist.
func (file *File) Artist() string {
file.Lock()
defer file.Unlock()
return convertAndFree(C.taglib_tag_artist(file.tag))
}
// Album returns a string with this tag's album name.
func (file *File) Album() string {
file.Lock()
defer file.Unlock()
return convertAndFree(C.taglib_tag_album(file.tag))
}
// Comment returns a string with this tag's comment.
func (file *File) Comment() string {
file.Lock()
defer file.Unlock()
return convertAndFree(C.taglib_tag_comment(file.tag))
}
// Genre returns a string with this tag's genre.
func (file *File) Genre() string {
file.Lock()
defer file.Unlock()
return convertAndFree(C.taglib_tag_genre(file.tag))
}
// Year returns the tag's year or 0 if year is not set.
func (file *File) Year() int {
file.Lock()
defer file.Unlock()
return int(C.taglib_tag_year(file.tag))
}
// Track returns the tag's track number or 0 if track number is not set.
func (file *File) Track() int {
file.Lock()
defer file.Unlock()
return int(C.taglib_tag_track(file.tag))
}
// Length returns the sound length of the file.
func (file *File) Length() time.Duration {
file.Lock()
defer file.Unlock()
length := C.taglib_audioproperties_length(file.props)
return time.Duration(length) * time.Second
}
// Bitrate returns the bitrate of the file in kb/s.
func (file *File) Bitrate() int {
file.Lock()
defer file.Unlock()
return int(C.taglib_audioproperties_bitrate(file.props))
}
// Samplerate returns the sample rate of the file in Hz.
func (file *File) Samplerate() int {
file.Lock()
defer file.Unlock()
return int(C.taglib_audioproperties_samplerate(file.props))
}
// Channels returns the number of channels in the audio stream.
func (file *File) Channels() int {
file.Lock()
defer file.Unlock()
return int(C.taglib_audioproperties_channels(file.props))
}
func init() {
m := &sync.Mutex{}
m.Lock()
defer m.Unlock()
C.taglib_set_string_management_enabled(0)
}
// Save the \a file to disk.
func (file *File) Save() error {
var err error
file.Lock()
defer file.Unlock()
if C.taglib_file_save(file.fp) != 1 {
err = errors.New("Cannot save file")
}
return err
}
// SetTitle writes the given string to the C file pointer.
func (file *File) SetTitle(s string) {
file.Lock()
defer file.Unlock()
cs := getCCharPointer(s)
defer C.free(unsafe.Pointer(cs))
C.taglib_tag_set_title(file.tag, cs)
}
// SetArtist writes the given string to the C file pointer.
func (file *File) SetArtist(s string) {
file.Lock()
defer file.Unlock()
cs := getCCharPointer(s)
defer C.free(unsafe.Pointer(cs))
C.taglib_tag_set_artist(file.tag, cs)
}
// SetAlbum writes the given string to the C file pointer.
func (file *File) SetAlbum(s string) {
file.Lock()
defer file.Unlock()
cs := getCCharPointer(s)
defer C.free(unsafe.Pointer(cs))
C.taglib_tag_set_album(file.tag, cs)
}
// SetComment writes the given string to the C file pointer.
func (file *File) SetComment(s string) {
file.Lock()
defer file.Unlock()
cs := getCCharPointer(s)
defer C.free(unsafe.Pointer(cs))
C.taglib_tag_set_comment(file.tag, cs)
}
// SetGenre writes the given string to the C file pointer.
func (file *File) SetGenre(s string) {
file.Lock()
defer file.Unlock()
cs := getCCharPointer(s)
defer C.free(unsafe.Pointer(cs))
C.taglib_tag_set_genre(file.tag, cs)
}
// SetYear writes the given int to the C file pointer. 0 indicates that this field should be cleared.
func (file *File) SetYear(i int) {
file.Lock()
defer file.Unlock()
ci := C.uint(i)
C.taglib_tag_set_year(file.tag, ci)
}
// SetTrack writes the given int to the C file pointer. 0 indicates that this field should be cleared.
func (file *File) SetTrack(i int) {
file.Lock()
defer file.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))
}