2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2011-09-05 23:09:20 +02:00
|
|
|
|
|
|
|
#ifndef MPD_DB_PRINT_H
|
|
|
|
#define MPD_DB_PRINT_H
|
|
|
|
|
2020-03-13 01:08:53 +01:00
|
|
|
#include <cstdint>
|
2022-07-04 18:26:23 +02:00
|
|
|
#include <span>
|
2017-02-08 09:22:15 +01:00
|
|
|
|
|
|
|
enum TagType : uint8_t;
|
2012-08-29 19:27:03 +02:00
|
|
|
class SongFilter;
|
2012-08-07 23:06:41 +02:00
|
|
|
struct DatabaseSelection;
|
2015-08-06 22:10:25 +02:00
|
|
|
struct Partition;
|
|
|
|
class Response;
|
2011-09-05 23:09:20 +02:00
|
|
|
|
2014-02-28 08:14:31 +01:00
|
|
|
/**
|
|
|
|
* @param full print attributes/tags
|
2014-02-28 19:02:23 +01:00
|
|
|
* @param base print only base name of songs/directories?
|
2014-02-28 08:14:31 +01:00
|
|
|
*/
|
2016-10-29 10:21:57 +02:00
|
|
|
void
|
2015-08-06 22:10:25 +02:00
|
|
|
db_selection_print(Response &r, Partition &partition,
|
|
|
|
const DatabaseSelection &selection,
|
2016-10-29 10:21:57 +02:00
|
|
|
bool full, bool base);
|
2011-09-13 21:24:22 +02:00
|
|
|
|
2018-07-25 11:18:45 +02:00
|
|
|
void
|
|
|
|
PrintSongUris(Response &r, Partition &partition,
|
|
|
|
const SongFilter *filter);
|
|
|
|
|
2016-10-29 10:21:57 +02:00
|
|
|
void
|
2015-08-06 22:10:25 +02:00
|
|
|
PrintUniqueTags(Response &r, Partition &partition,
|
2022-07-04 18:26:23 +02:00
|
|
|
std::span<const TagType> tag_types,
|
2016-10-29 10:21:57 +02:00
|
|
|
const SongFilter *filter);
|
2011-09-05 23:09:20 +02:00
|
|
|
|
|
|
|
#endif
|