forked from supermihi/pytaglib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
taglib.pyx
215 lines (176 loc) · 7.41 KB
/
taglib.pyx
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
# -*- coding: utf-8 -*-
# distutils: language = c++
# cython: language_level = 3
# Copyright 2021 Michael Helmling, michaelhelmling@posteo.de
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3 as
# published by the Free Software Foundation
import os
from libcpp.utility cimport pair
from pathlib import Path
cimport ctypes
version = '1.5.0'
cdef str toStr(ctypes.String s):
"""Converts TagLib::String to a Python str."""
return s.to8Bit(True).decode('UTF-8', 'replace')
cdef ctypes.String toCStr(value):
"""Convert a Python string or bytes to TagLib::String"""
if isinstance(value, str):
value = value.encode('UTF-8')
return ctypes.String(value, ctypes.UTF8)
cdef dict propertyMapToDict(ctypes.PropertyMap map):
"""Convert a TagLib::PropertyMap to a dict mapping unicode string to list of unicode strings."""
cdef:
ctypes.StringList values
pair[ctypes.String, ctypes.StringList] mapIter
dict dct = {}
str tag
for mapIter in map:
tag = toStr(mapIter.first)
dct[tag] = []
values = mapIter.second
for value in values:
dct[tag].append(toStr(value))
return dct
cdef class File:
"""Class representing an audio file with metadata ("tags").
To read tags from an audio file, create a *File* object, passing the file's path to the
constructor (should be a unicode string):
>>> f = taglib.File('/path/to/file.ogg')
The tags are stored in the attribute *tags* as a *dict* mapping strings (tag names)
to lists of strings (tag values).
>>> for tag, values in f:
>>> print('{}->{}'.format(tag, ', '.join(values)))
If the file contains some metadata that is not supported by pytaglib or not representable
as strings (e.g. cover art, proprietary data written by some programs, ...), according
identifiers will be placed into the *unsupported* attribute of the File object. Using the
method *removeUnsupportedProperties*, some or all of those can be removed.
Additionally, the readonly attributes *length*, *bitrate*, *sampleRate*, and *channels* are
available with their obvious meanings.
>>> print('File length: {}'.format(f.length))
Changes to the *tags* attribute are stored using the *save* method.
>>> f.save()
"""
cdef ctypes.File *cFile
cdef public dict tags
cdef readonly object path
cdef readonly list unsupported
cdef readonly object save_on_exit
def __cinit__(self, path, save_on_exit: bool = False):
if not isinstance(path, os.PathLike):
if not isinstance(path, unicode):
path = path.decode('utf8')
path = Path(path)
self.path = path
IF UNAME_SYSNAME == "Windows":
# create on windows takes wchar_t* which Cython automatically converts to
# from unicode strings
self.cFile = ctypes.create(str(self.path))
ELSE:
self.cFile = ctypes.create(str(self.path).encode('utf8'))
if not self.cFile or not self.cFile.isValid():
raise OSError(f'Could not read file {path}')
def __init__(self, path, save_on_exit: bool = False):
self.tags = dict()
self.unsupported = list()
self.readProperties()
self.save_on_exit = save_on_exit
cdef void readProperties(self):
"""Convert the Taglib::PropertyMap of the wrapped Taglib::File object into a python dict.
This method is not accessible from Python, and is called only once, immediately after
object creation.
"""
cdef:
ctypes.PropertyMap cTags = self.cFile.properties()
ctypes.String cString
ctypes.StringList unsupported
self.tags = propertyMapToDict(cTags)
unsupported = cTags.unsupportedData()
for cString in unsupported:
self.unsupported.append(toStr(cString))
def save(self):
"""Store the tags currently hold in the `tags` attribute into the file.
If some tags cannot be stored because the underlying metadata format does not support them,
the unsuccesful tags are returned as a "sub-dictionary" of `self.tags` which will be empty
if everything is ok.
Raises
------
OSError
If the save operation fails completely (file does not exist, insufficient rights, ...).
ValueError
When attempting to save after the file was closed.
"""
if self.is_closed:
raise ValueError('I/O operation on closed file.')
if self.readOnly:
raise OSError(f'Unable to save tags: file is read-only')
cdef:
ctypes.PropertyMap cTagdict, cRemaining
ctypes.String cKey, cValue
# populate cTagdict with the contents of self.tags
for key, values in self.tags.items():
cKey = toCStr(key.upper())
if isinstance(values, bytes) or isinstance(values, unicode):
# the user has accidentally used a single tag value instead a length-1 list
values = [ values ]
for value in values:
cTagdict[cKey].append(toCStr(value))
cRemaining = self.cFile.setProperties(cTagdict)
success = self.cFile.save()
if not success:
raise OSError('Unable to save tags: Unknown OS error')
return propertyMapToDict(cRemaining)
def removeUnsupportedProperties(self, properties):
"""This is a direct binding for the corresponding TagLib method."""
if not self.cFile:
raise ValueError('I/O operation on closed file.')
cdef ctypes.StringList cProps
for value in properties:
cProps.append(toCStr(value))
self.cFile.removeUnsupportedProperties(cProps)
def close(self):
"""Closes the file by deleting the underlying Taglib::File object. This will close any open
streams. Calling methods like `save()` or the read-only properties after `close()` will
raise an exception."""
if self.is_closed:
raise ValueError("File already closed")
del self.cFile
self.cFile = NULL
def __dealloc__(self):
if self.cFile:
del self.cFile
@property
def is_closed(self):
return self.cFile is NULL
property length:
def __get__(self):
self.check_closed()
return self.cFile.audioProperties().length()
property bitrate:
def __get__(self):
self.check_closed()
return self.cFile.audioProperties().bitrate()
property sampleRate:
def __get__(self):
self.check_closed()
return self.cFile.audioProperties().sampleRate()
property channels:
def __get__(self):
self.check_closed()
return self.cFile.audioProperties().channels()
property readOnly:
def __get__(self):
self.check_closed()
return self.cFile.readOnly()
cdef check_closed(self):
if self.is_closed:
raise ValueError('I/O operation on closed file.')
def __enter__(self):
return self
def __exit__(self, exc_type, exc_value, exc_traceback):
if self.save_on_exit:
self.save()
self.close()
def __repr__(self):
return f"File('{self.path}')"