1 /* Copyright (C) 1997 Andre Noll <maan@tuebingen.mpg.de>, see file COPYING. */
3 /** \file afh_common.c Common audio format handler functions. */
5 #include <sys/mman.h> /* mmap */
14 typedef void afh_init_func(struct audio_format_handler
*);
17 * Declaration of the audio format handler init functions.
19 * These symbols are referenced in the afl array below.
21 * Most audio format handlers depend on an external library and are not
22 * compiled in if the library is not installed. Hence it is well possible that
23 * not all of these functions are defined. It does not hurt to declare them
24 * anyway, and this avoids another set of ifdefs.
26 extern afh_init_func mp3_afh_init
, ogg_afh_init
, aac_afh_init
, wma_afh_init
,
27 spx_afh_init
, flac_afh_init
, opus_afh_init
;
29 /** The list of all status items */
30 const char *status_item_list
[] = {STATUS_ITEMS
};
33 * The list of supported audio formats.
35 * We always define the full array of audio formats even if some audio formats
36 * were not compiled in. This is because for each audio file the number of its
37 * audio format is stored in the database. We don't want these numbers to become
38 * stale just because the user installed a new version of paraslash that
39 * supports a different set of audio formats.
41 * It can still be easily detected whether an audio format is compiled in by
42 * checking if the init function pointer is not \p NULL.
44 static struct audio_format_handler afl
[] = {
51 #if defined(HAVE_OGG) && defined(HAVE_VORBIS)
57 #if defined(HAVE_FAAD)
67 #if defined(HAVE_OGG) && defined(HAVE_SPEEX)
73 #if defined(HAVE_OGG) && defined(HAVE_FLAC)
74 .init
= flac_afh_init
,
79 #if defined(HAVE_OGG) && defined(HAVE_OPUS)
80 .init
= opus_afh_init
,
89 * Get the name of the given audio format.
91 * \param i The audio format number.
93 * \return This returns a pointer to statically allocated memory so it
94 * must not be freed by the caller.
96 const char *audio_format_name(int i
)
98 if (i
< 0 || i
>= ARRAY_SIZE(afl
) - 1)
103 static inline int next_audio_format(int format
)
106 if (!afl
[format
].name
)
109 if (afl
[format
].init
)
114 /** Iterate over each supported audio format. */
115 #define FOR_EACH_AUDIO_FORMAT(i) for (i = 0; afl[i].name; i = next_audio_format(i))
118 * Call the init function of each supported audio format handler.
124 PARA_NOTICE_LOG("supported audio formats: %s\n", AUDIO_FORMAT_HANDLERS
);
125 FOR_EACH_AUDIO_FORMAT(i
) {
126 PARA_INFO_LOG("initializing %s handler\n",
127 audio_format_name(i
));
128 afl
[i
].init(&afl
[i
]);
133 * Tell whether an audio format handler provides chunk tables.
135 * Each audio format handler either provides a chunk table or supports dynamic
138 * \param audio_format_id Offset in the afl array.
140 * \return True if dynamic chunks are supported, false if the audio format
141 * handler provides chunk tables.
143 bool afh_supports_dynamic_chunks(int audio_format_id
)
145 return afl
[audio_format_id
].get_chunk
;
149 * Guess the audio format judging from filename.
151 * \param name The filename.
153 * \return This function returns \p -E_AUDIO_FORMAT if it has no idea what kind
154 * of audio file this might be. Otherwise the (non-negative) number of the
155 * audio format is returned.
157 int guess_audio_format(const char *name
)
159 int i
,j
, len
= strlen(name
);
161 FOR_EACH_AUDIO_FORMAT(i
) {
162 for (j
= 0; afl
[i
].suffixes
[j
]; j
++) {
163 const char *p
= afl
[i
].suffixes
[j
];
164 int plen
= strlen(p
);
167 if (name
[len
- plen
- 1] != '.')
169 if (strcasecmp(name
+ len
- plen
, p
))
171 // PARA_DEBUG_LOG("might be %s\n", audio_format_name(i));
175 return -E_AUDIO_FORMAT
;
178 static int get_file_info(int format
, const char *path
, char *data
,
179 size_t size
, int fd
, struct afh_info
*afhi
)
182 const char *fmt
= audio_format_name(format
);
184 memset(afhi
, 0, sizeof(*afhi
));
185 ret
= afl
[format
].get_file_info(data
, size
, fd
, afhi
);
187 PARA_WARNING_LOG("%s: %s format not detected: %s\n",
188 path
, fmt
, para_strerror(-ret
));
191 PARA_NOTICE_LOG("%s: detected %s format\n", path
, fmt
);
196 * Call get_file_info() to obtain an afhi structure.
198 * \param path The full path of the audio file.
199 * \param data Pointer to the contents of the (mapped) file.
200 * \param size The file size in bytes.
201 * \param fd The open file descriptor.
202 * \param afhi Result pointer.
204 * \return The number of the audio format on success, \p -E_AUDIO_FORMAT if no
205 * compiled in audio format handler is able to handler the file.
207 * This function tries to find an audio format handler that can interpret the
208 * file given by \a data and \a size.
210 * It first tries to determine the audio format from the filename given by \a
211 * path. If this doesn't work, all other audio format handlers are tried until
212 * one is found that can handle the file.
214 int compute_afhi(const char *path
, char *data
, size_t size
, int fd
,
215 struct afh_info
*afhi
)
219 format
= guess_audio_format(path
);
221 ret
= get_file_info(format
, path
, data
, size
, fd
, afhi
);
225 FOR_EACH_AUDIO_FORMAT(i
) {
226 if (i
== format
) /* we already tried this one to no avail */
228 ret
= get_file_info(i
, path
, data
, size
, fd
, afhi
);
232 return -E_AUDIO_FORMAT
;
235 afhi
->techinfo
= para_strdup(NULL
);
236 if (!afhi
->tags
.artist
)
237 afhi
->tags
.artist
= para_strdup(NULL
);
238 if (!afhi
->tags
.title
)
239 afhi
->tags
.title
= para_strdup(NULL
);
240 if (!afhi
->tags
.year
)
241 afhi
->tags
.year
= para_strdup(NULL
);
242 if (!afhi
->tags
.album
)
243 afhi
->tags
.album
= para_strdup(NULL
);
244 if (!afhi
->tags
.comment
)
245 afhi
->tags
.comment
= para_strdup(NULL
);
246 PARA_DEBUG_LOG("techinfo: %s\n", afhi
->techinfo
);
247 PARA_DEBUG_LOG("artist: %s\n", afhi
->tags
.artist
);
248 PARA_DEBUG_LOG("title: %s\n", afhi
->tags
.title
);
249 PARA_DEBUG_LOG("year: %s\n", afhi
->tags
.year
);
250 PARA_DEBUG_LOG("album: %s\n", afhi
->tags
.album
);
251 PARA_DEBUG_LOG("comment: %s\n", afhi
->tags
.comment
);
256 * Deallocate the contents of an afh_info structure.
258 * \param afhi The structure to clear.
260 * This only frees the memory the various pointer fields of \a afhi point to.
261 * It does *not* free \a afhi itself.
263 void clear_afhi(struct afh_info
*afhi
)
267 free(afhi
->chunk_table
);
268 free(afhi
->techinfo
);
269 free(afhi
->tags
.artist
);
270 free(afhi
->tags
.title
);
271 free(afhi
->tags
.year
);
272 free(afhi
->tags
.album
);
273 free(afhi
->tags
.comment
);
276 static inline size_t get_chunk_len(long unsigned chunk_num
,
277 const struct afh_info
*afhi
)
279 return afhi
->chunk_table
[chunk_num
+ 1] - afhi
->chunk_table
[chunk_num
];
283 * Get one chunk of audio data.
285 * This implicitly calls the ->open method of the audio format handler at the
288 * \param chunk_num The number of the chunk to get.
289 * \param afhi Describes the audio file.
290 * \param audio_format_id Determines the afh.
291 * \param map The memory mapped audio file.
292 * \param mapsize Passed to the afh's ->open() method.
293 * \param buf Result pointer.
294 * \param len The length of the chunk in bytes.
295 * \param afh_context Value/result, determines whether ->open() is called.
297 * Upon return, \a buf will point so memory inside \a map. The returned buffer
298 * must therefore not be freed by the caller.
302 __must_check
int afh_get_chunk(long unsigned chunk_num
, struct afh_info
*afhi
,
303 uint8_t audio_format_id
, const void *map
, size_t mapsize
,
304 const char **buf
, size_t *len
, void **afh_context
)
306 struct audio_format_handler
*afh
= afl
+ audio_format_id
;
308 if (afh_supports_dynamic_chunks(audio_format_id
)) {
312 ret
= afh
->open(map
, mapsize
, afh_context
);
316 ret
= afl
[audio_format_id
].get_chunk(chunk_num
, *afh_context
,
319 afh
->close(*afh_context
);
324 size_t pos
= afhi
->chunk_table
[chunk_num
];
326 *len
= get_chunk_len(chunk_num
, afhi
);
332 * Deallocate resources allocated due to dynamic chunk handling.
334 * This function should be called if afh_get_chunk() was called at least once.
335 * It is OK to call it even for audio formats which do not support dynamic
336 * chunks, in which case the function does nothing.
338 * \param afh_context As returned from the ->open method of the afh.
339 * \param audio_format_id Determines the afh.
341 void afh_close(void *afh_context
, uint8_t audio_format_id
)
343 struct audio_format_handler
*afh
= afl
+ audio_format_id
;
345 if (!afh_supports_dynamic_chunks(audio_format_id
))
351 afh
->close(afh_context
);
355 * Find a suitable start chunk.
357 * \param approx_chunk_num Upper bound for the chunk number to return.
358 * \param afhi Needed for the chunk table.
359 * \param audio_format_id Determines the afh.
361 * \return For audio format handlers which support dynamic chunks, the function
362 * returns the given chunk number. Otherwise it returns the first non-empty
363 * chunk <= \a approx_chunk_num.
365 * \sa \ref afh_get_chunk().
367 int32_t afh_get_start_chunk(int32_t approx_chunk_num
,
368 const struct afh_info
*afhi
, uint8_t audio_format_id
)
372 if (afh_supports_dynamic_chunks(audio_format_id
))
373 return approx_chunk_num
;
375 for (k
= PARA_MAX(0, approx_chunk_num
); k
>= 0; k
--)
376 if (get_chunk_len(k
, afhi
) > 0)
382 * Get the header of an audio file.
384 * \param afhi The audio file handler data describing the file.
385 * \param audio_format_id Determines the audio format handler.
386 * \param map The data of the audio file.
387 * \param mapsize The amount of bytes of the mmapped audio file.
388 * \param buf The length of the header is stored here.
389 * \param len Points to a buffer containing the header on return.
391 * This function sets \a buf to \p NULL and \a len to zero if \a map or \a
392 * afhi is \p NULL, or if the current audio format does not need special
395 * Otherwise, it is checked whether the audio format handler given by
396 * \a audio_format_id defines a ->get_header() method. If it does, this
397 * method is called to obtain the header. If ->get_header() is \p NULL,
398 * a reference to the first chunk of the audio file is returned.
400 * Once the header is no longer needed, the caller must call \ref
401 * afh_free_header() to free the resources allocated by this function.
403 void afh_get_header(struct afh_info
*afhi
, uint8_t audio_format_id
,
404 void *map
, size_t mapsize
, char **buf
, size_t *len
)
406 struct audio_format_handler
*afh
= afl
+ audio_format_id
;
408 if (!map
|| !afhi
|| !afhi
->header_len
) {
413 if (!afh
->get_header
) {
414 *len
= afhi
->header_len
;
418 afh
->get_header(map
, mapsize
, buf
, len
);
422 * Deallocate any resources obtained from afh_get_header().
424 * \param header_buf Pointer obtained via afh_get_header().
425 * \param audio_format_id Determines the audio format handler.
427 void afh_free_header(char *header_buf
, uint8_t audio_format_id
)
429 struct audio_format_handler
*afh
= afl
+ audio_format_id
;
436 * Pretty-print the contents of a struct afh_info into a buffer.
438 * \param audio_format_num The audio format number.
439 * \param afhi Pointer to the structure that contains the information.
440 * \param result Pretty-printed ahfi is here after the call.
442 * The \a result buffer is dynamically allocated and should be freed by the
445 * \return The number of bytes. This function never fails.
447 unsigned afh_get_afhi_txt(int audio_format_num
, struct afh_info
*afhi
, char **result
)
449 return xasprintf(result
, "%s: %dkbit/s\n" /* bitrate */
450 "%s: %s\n" /* format */
451 "%s: %dHz\n" /* frequency */
452 "%s: %d\n" /* channels */
453 "%s: %" PRIu32
"\n" /* seconds total */
454 "%s: %lu: %lu\n" /* chunk time */
455 "%s: %" PRIu32
"\n" /* num chunks */
456 "%s: %" PRIu32
"\n" /* max chunk size */
457 "%s: %s\n" /* techinfo */
458 "%s: %s\n" /* artist */
459 "%s: %s\n" /* title */
460 "%s: %s\n" /* year */
461 "%s: %s\n" /* album */
462 "%s: %s\n", /* comment */
463 status_item_list
[SI_bitrate
], afhi
->bitrate
,
464 status_item_list
[SI_format
], audio_format_name(audio_format_num
),
465 status_item_list
[SI_frequency
], afhi
->frequency
,
466 status_item_list
[SI_channels
], afhi
->channels
,
467 status_item_list
[SI_seconds_total
], afhi
->seconds_total
,
468 status_item_list
[SI_chunk_time
], (long unsigned)afhi
->chunk_tv
.tv_sec
,
469 (long unsigned)afhi
->chunk_tv
.tv_usec
,
470 status_item_list
[SI_num_chunks
], afhi
->chunks_total
,
471 status_item_list
[SI_max_chunk_size
], afhi
->max_chunk_size
,
472 status_item_list
[SI_techinfo
], afhi
->techinfo
? afhi
->techinfo
: "",
473 status_item_list
[SI_artist
], afhi
->tags
.artist
? afhi
->tags
.artist
: "",
474 status_item_list
[SI_title
], afhi
->tags
.title
? afhi
->tags
.title
: "",
475 status_item_list
[SI_year
], afhi
->tags
.year
? afhi
->tags
.year
: "",
476 status_item_list
[SI_album
], afhi
->tags
.album
? afhi
->tags
.album
: "",
477 status_item_list
[SI_comment
], afhi
->tags
.comment
? afhi
->tags
.comment
: ""
482 * Determine the maximal chunk size by investigating the chunk table.
484 * \param afhi Value/result.
486 * This function iterates over the chunk table and sets ->max_chunk_size
487 * accordingly. The function exists only for backward compatibility since as of
488 * version 0.6.0, para_server stores the maximal chunk size in its database.
489 * This function is only called if the database value is zero, indicating that
490 * the file was added by an older server version.
492 void set_max_chunk_size(struct afh_info
*afhi
)
494 uint32_t n
, max
= 0, old
= 0;
496 for (n
= 0; n
<= afhi
->chunks_total
; n
++) {
497 uint32_t val
= afhi
->chunk_table
[n
];
499 * If the first chunk is the header, do not consider it for the
500 * calculation of the largest chunk size.
502 if (n
== 0 || (n
== 1 && afhi
->header_len
> 0)) {
506 max
= PARA_MAX(max
, val
- old
);
509 afhi
->max_chunk_size
= max
;
513 * Create a copy of the given file with altered meta tags.
515 * \param audio_format_id Specifies the audio format.
516 * \param map The (read-only) memory map of the input file.
517 * \param mapsize The size of the input file in bytes.
518 * \param tags The new tags.
519 * \param output_fd Altered file is created using this file descriptor.
520 * \param filename The name of the temporary output file.
522 * This calls the ->rewrite_tags method of the audio format handler associated
523 * with \a audio_format_id to create a copy of the memory-mapped file given
524 * by \a map and \a mapsize, but with altered tags according to \a tags. If
525 * the audio format handler for \a audio_format_id lacks this optional method,
526 * the function returns (the paraslash error code of) \p ENOTSUP.
530 int afh_rewrite_tags(int audio_format_id
, void *map
, size_t mapsize
,
531 struct taginfo
*tags
, int output_fd
, const char *filename
)
533 struct audio_format_handler
*afh
= afl
+ audio_format_id
;
535 if (!afh
->rewrite_tags
)
536 return -ERRNO_TO_PARA_ERROR(ENOTSUP
);
537 return afh
->rewrite_tags(map
, mapsize
, tags
, output_fd
, filename
);