ProxyDatabasePlugin.cxx 19.9 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2014 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 * http://www.musicpd.org
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "config.h"
#include "ProxyDatabasePlugin.hxx"
22
#include "db/Interface.hxx"
Max Kellermann's avatar
Max Kellermann committed
23 24 25 26
#include "db/DatabasePlugin.hxx"
#include "db/DatabaseListener.hxx"
#include "db/Selection.hxx"
#include "db/DatabaseError.hxx"
27
#include "db/PlaylistInfo.hxx"
Max Kellermann's avatar
Max Kellermann committed
28 29
#include "db/LightDirectory.hxx"
#include "db/LightSong.hxx"
30
#include "db/Stats.hxx"
31
#include "SongFilter.hxx"
32
#include "Compiler.h"
33
#include "config/ConfigData.hxx"
34
#include "tag/TagBuilder.hxx"
35
#include "tag/Tag.hxx"
36 37
#include "util/Error.hxx"
#include "util/Domain.hxx"
38
#include "protocol/Ack.hxx"
39 40 41
#include "event/SocketMonitor.hxx"
#include "event/IdleMonitor.hxx"
#include "Log.hxx"
42 43

#include <mpd/client.h>
44
#include <mpd/async.h>
45 46 47 48 49

#include <cassert>
#include <string>
#include <list>

50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
class ProxySong : public LightSong {
	Tag tag2;

public:
	explicit ProxySong(const mpd_song *song);
};

class AllocatedProxySong : public ProxySong {
	mpd_song *const song;

public:
	explicit AllocatedProxySong(mpd_song *_song)
		:ProxySong(_song), song(_song) {}

	~AllocatedProxySong() {
		mpd_song_free(song);
	}
};

69 70 71
class ProxyDatabase final : public Database, SocketMonitor, IdleMonitor {
	DatabaseListener &listener;

72 73 74 75 76
	std::string host;
	unsigned port;

	struct mpd_connection *connection;

77 78 79
	/* this is mutable because GetStats() must be "const" */
	mutable time_t update_stamp;

80 81 82 83 84 85 86 87 88 89 90 91
	/**
	 * The libmpdclient idle mask that was removed from the other
	 * MPD.  This will be handled by the next OnIdle() call.
	 */
	unsigned idle_received;

	/**
	 * Is the #connection currently "idle"?  That is, did we send
	 * the "idle" command to it?
	 */
	bool is_idle;

92
public:
93
	ProxyDatabase(EventLoop &_loop, DatabaseListener &_listener)
94 95
		:Database(proxy_db_plugin),
		 SocketMonitor(_loop), IdleMonitor(_loop),
96 97
		 listener(_listener) {}

98 99
	static Database *Create(EventLoop &loop, DatabaseListener &listener,
				const config_param &param,
100
				Error &error);
101

102
	virtual bool Open(Error &error) override;
103
	virtual void Close() override;
104
	virtual const LightSong *GetSong(const char *uri_utf8,
105
				     Error &error) const override;
106
	virtual void ReturnSong(const LightSong *song) const;
107

108 109 110 111
	virtual bool Visit(const DatabaseSelection &selection,
			   VisitDirectory visit_directory,
			   VisitSong visit_song,
			   VisitPlaylist visit_playlist,
112
			   Error &error) const override;
113

114
	virtual bool VisitUniqueTags(const DatabaseSelection &selection,
115 116
				     TagType tag_type, uint32_t group_mask,
				     VisitTag visit_tag,
117
				     Error &error) const override;
118

119 120
	virtual bool GetStats(const DatabaseSelection &selection,
			      DatabaseStats &stats,
121
			      Error &error) const override;
122

123 124 125
	virtual unsigned Update(const char *uri_utf8, bool discard,
				Error &error) override;

126
	virtual time_t GetUpdateStamp() const override {
127
		return update_stamp;
128 129
	}

130
private:
131
	bool Configure(const config_param &param, Error &error);
132 133 134 135

	bool Connect(Error &error);
	bool CheckConnection(Error &error);
	bool EnsureConnected(Error &error);
136 137

	void Disconnect();
138 139 140 141 142 143

	/* virtual methods from SocketMonitor */
	virtual bool OnSocketReady(unsigned flags) override;

	/* virtual methods from IdleMonitor */
	virtual void OnIdle() override;
144 145
};

146
static constexpr Domain libmpdclient_domain("libmpdclient");
147

148
static constexpr struct {
149
	TagType d;
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
	enum mpd_tag_type s;
} tag_table[] = {
	{ TAG_ARTIST, MPD_TAG_ARTIST },
	{ TAG_ALBUM, MPD_TAG_ALBUM },
	{ TAG_ALBUM_ARTIST, MPD_TAG_ALBUM_ARTIST },
	{ TAG_TITLE, MPD_TAG_TITLE },
	{ TAG_TRACK, MPD_TAG_TRACK },
	{ TAG_NAME, MPD_TAG_NAME },
	{ TAG_GENRE, MPD_TAG_GENRE },
	{ TAG_DATE, MPD_TAG_DATE },
	{ TAG_COMPOSER, MPD_TAG_COMPOSER },
	{ TAG_PERFORMER, MPD_TAG_PERFORMER },
	{ TAG_COMMENT, MPD_TAG_COMMENT },
	{ TAG_DISC, MPD_TAG_DISC },
	{ TAG_MUSICBRAINZ_ARTISTID, MPD_TAG_MUSICBRAINZ_ARTISTID },
	{ TAG_MUSICBRAINZ_ALBUMID, MPD_TAG_MUSICBRAINZ_ALBUMID },
	{ TAG_MUSICBRAINZ_ALBUMARTISTID,
	  MPD_TAG_MUSICBRAINZ_ALBUMARTISTID },
	{ TAG_MUSICBRAINZ_TRACKID, MPD_TAG_MUSICBRAINZ_TRACKID },
169 170 171 172
#if LIBMPDCLIENT_CHECK_VERSION(2,10,0)
	{ TAG_MUSICBRAINZ_RELEASETRACKID,
	  MPD_TAG_MUSICBRAINZ_RELEASETRACKID },
#endif
173 174 175
	{ TAG_NUM_OF_ITEM_TYPES, MPD_TAG_COUNT }
};

176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
static void
Copy(TagBuilder &tag, TagType d_tag,
     const struct mpd_song *song, enum mpd_tag_type s_tag)
{

	for (unsigned i = 0;; ++i) {
		const char *value = mpd_song_get_tag(song, s_tag, i);
		if (value == nullptr)
			break;

		tag.AddItem(d_tag, value);
	}
}

ProxySong::ProxySong(const mpd_song *song)
{
	directory = nullptr;
	uri = mpd_song_get_uri(song);
194
	real_uri = nullptr;
195 196
	tag = &tag2;
	mtime = mpd_song_get_last_modified(song);
197 198

#if LIBMPDCLIENT_CHECK_VERSION(2,3,0)
199 200
	start_time = SongTime::FromS(mpd_song_get_start(song));
	end_time = SongTime::FromS(mpd_song_get_end(song));
201
#else
202
	start_time = end_time = SongTime::zero();
203
#endif
204 205

	TagBuilder tag_builder;
206 207 208 209

	const unsigned duration = mpd_song_get_duration(song);
	if (duration > 0)
		tag_builder.SetDuration(SignedSongTime::FromS(duration));
210 211 212 213 214 215 216

	for (const auto *i = &tag_table[0]; i->d != TAG_NUM_OF_ITEM_TYPES; ++i)
		Copy(tag_builder, i->d, song, i->s);

	tag_builder.Commit(tag2);
}

217
gcc_const
218
static enum mpd_tag_type
219
Convert(TagType tag_type)
220
{
221
	for (auto i = &tag_table[0]; i->d != TAG_NUM_OF_ITEM_TYPES; ++i)
222 223 224 225 226 227
		if (i->d == tag_type)
			return i->s;

	return MPD_TAG_COUNT;
}

228
static bool
229
CheckError(struct mpd_connection *connection, Error &error)
230
{
231 232
	const auto code = mpd_connection_get_error(connection);
	if (code == MPD_ERROR_SUCCESS)
233 234
		return true;

235 236 237 238 239 240 241 242 243 244 245 246
	if (code == MPD_ERROR_SERVER) {
		/* libmpdclient's "enum mpd_server_error" is the same
		   as our "enum ack" */
		const auto server_error =
			mpd_connection_get_server_error(connection);
		error.Set(ack_domain, (int)server_error,
			  mpd_connection_get_error_message(connection));
	} else {
		error.Set(libmpdclient_domain, (int)code,
			  mpd_connection_get_error_message(connection));
	}

247
	mpd_connection_clear_error(connection);
248 249 250
	return false;
}

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
static bool
SendConstraints(mpd_connection *connection, const SongFilter::Item &item)
{
	switch (item.GetTag()) {
		mpd_tag_type tag;

#if LIBMPDCLIENT_CHECK_VERSION(2,9,0)
	case LOCATE_TAG_BASE_TYPE:
		if (mpd_connection_cmp_server_version(connection, 0, 18, 0) < 0)
			/* requires MPD 0.18 */
			return true;

		return mpd_search_add_base_constraint(connection,
						      MPD_OPERATOR_DEFAULT,
						      item.GetValue().c_str());
#endif

	case LOCATE_TAG_FILE_TYPE:
		return mpd_search_add_uri_constraint(connection,
						     MPD_OPERATOR_DEFAULT,
						     item.GetValue().c_str());

	case LOCATE_TAG_ANY_TYPE:
		return mpd_search_add_any_tag_constraint(connection,
							 MPD_OPERATOR_DEFAULT,
							 item.GetValue().c_str());

	default:
		tag = Convert(TagType(item.GetTag()));
		if (tag == MPD_TAG_COUNT)
			return true;

		return mpd_search_add_tag_constraint(connection,
						     MPD_OPERATOR_DEFAULT,
						     tag,
						     item.GetValue().c_str());
	}
}

static bool
SendConstraints(mpd_connection *connection, const SongFilter &filter)
{
	for (const auto &i : filter.GetItems())
		if (!SendConstraints(connection, i))
			return false;

	return true;
}

static bool
SendConstraints(mpd_connection *connection, const DatabaseSelection &selection)
{
#if LIBMPDCLIENT_CHECK_VERSION(2,9,0)
	if (!selection.uri.empty() &&
	    mpd_connection_cmp_server_version(connection, 0, 18, 0) >= 0) {
		/* requires MPD 0.18 */
		if (!mpd_search_add_base_constraint(connection,
						    MPD_OPERATOR_DEFAULT,
						    selection.uri.c_str()))
			return false;
	}
#endif

	if (selection.filter != nullptr &&
	    !SendConstraints(connection, *selection.filter))
		return false;

	return true;
}

321
Database *
322
ProxyDatabase::Create(EventLoop &loop, DatabaseListener &listener,
323
		      const config_param &param, Error &error)
324
{
325
	ProxyDatabase *db = new ProxyDatabase(loop, listener);
326
	if (!db->Configure(param, error)) {
327
		delete db;
328
		db = nullptr;
329 330 331 332 333 334
	}

	return db;
}

bool
335
ProxyDatabase::Configure(const config_param &param, gcc_unused Error &error)
336
{
337 338
	host = param.GetBlockValue("host", "");
	port = param.GetBlockValue("port", 0u);
339 340 341 342 343

	return true;
}

bool
344
ProxyDatabase::Open(Error &error)
345
{
346 347 348
	if (!Connect(error))
		return false;

349
	update_stamp = 0;
350 351 352 353 354 355 356 357

	return true;
}

void
ProxyDatabase::Close()
{
	if (connection != nullptr)
358
		Disconnect();
359 360 361 362 363 364 365
}

bool
ProxyDatabase::Connect(Error &error)
{
	const char *_host = host.empty() ? nullptr : host.c_str();
	connection = mpd_connection_new(_host, port, 0);
366
	if (connection == nullptr) {
367 368
		error.Set(libmpdclient_domain, (int)MPD_ERROR_OOM,
			  "Out of memory");
369 370 371
		return false;
	}

372 373 374 375 376 377 378
	if (!CheckError(connection, error)) {
		mpd_connection_free(connection);
		connection = nullptr;

		return false;
	}

379 380 381 382 383 384
	idle_received = unsigned(-1);
	is_idle = false;

	SocketMonitor::Open(mpd_async_get_fd(mpd_connection_get_async(connection)));
	IdleMonitor::Schedule();

385 386 387
	return true;
}

388 389
bool
ProxyDatabase::CheckConnection(Error &error)
390 391 392
{
	assert(connection != nullptr);

393
	if (!mpd_connection_clear_error(connection)) {
394
		Disconnect();
395 396 397
		return Connect(error);
	}

398 399 400 401 402 403 404 405 406 407 408 409
	if (is_idle) {
		unsigned idle = mpd_run_noidle(connection);
		if (idle == 0 && !CheckError(connection, error)) {
			Disconnect();
			return false;
		}

		idle_received |= idle;
		is_idle = false;
		IdleMonitor::Schedule();
	}

410 411 412 413 414 415 416 417 418
	return true;
}

bool
ProxyDatabase::EnsureConnected(Error &error)
{
	return connection != nullptr
		? CheckConnection(error)
		: Connect(error);
419 420
}

421 422 423 424 425
void
ProxyDatabase::Disconnect()
{
	assert(connection != nullptr);

426 427 428
	IdleMonitor::Cancel();
	SocketMonitor::Steal();

429 430 431 432
	mpd_connection_free(connection);
	connection = nullptr;
}

433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
bool
ProxyDatabase::OnSocketReady(gcc_unused unsigned flags)
{
	assert(connection != nullptr);

	if (!is_idle) {
		// TODO: can this happen?
		IdleMonitor::Schedule();
		return false;
	}

	unsigned idle = (unsigned)mpd_recv_idle(connection, false);
	if (idle == 0) {
		Error error;
		if (!CheckError(connection, error)) {
			LogError(error);
			Disconnect();
			return false;
		}
	}

	/* let OnIdle() handle this */
	idle_received |= idle;
	is_idle = false;
	IdleMonitor::Schedule();
	return false;
}

void
ProxyDatabase::OnIdle()
{
	assert(connection != nullptr);

	/* handle previous idle events */

	if (idle_received & MPD_IDLE_DATABASE)
		listener.OnDatabaseModified();

	idle_received = 0;

	/* send a new idle command to the other MPD */

	if (is_idle)
		// TODO: can this happen?
		return;

	if (!mpd_send_idle_mask(connection, MPD_IDLE_DATABASE)) {
		Error error;
		if (!CheckError(connection, error))
			LogError(error);

		SocketMonitor::Steal();
		mpd_connection_free(connection);
		connection = nullptr;
		return;
	}

	is_idle = true;
	SocketMonitor::ScheduleRead();
}

494
const LightSong *
495
ProxyDatabase::GetSong(const char *uri, Error &error) const
496
{
497 498 499
	// TODO: eliminate the const_cast
	if (!const_cast<ProxyDatabase *>(this)->EnsureConnected(error))
		return nullptr;
500

501
	if (!mpd_send_list_meta(connection, uri)) {
502
		CheckError(connection, error);
503 504 505 506
		return nullptr;
	}

	struct mpd_song *song = mpd_recv_song(connection);
507 508 509 510
	if (!mpd_response_finish(connection) &&
	    !CheckError(connection, error)) {
		if (song != nullptr)
			mpd_song_free(song);
511 512 513
		return nullptr;
	}

514
	if (song == nullptr) {
515
		error.Format(db_domain, DB_NOT_FOUND, "No such song: %s", uri);
516 517
		return nullptr;
	}
518

519
	return new AllocatedProxySong(song);
520 521
}

522
void
523
ProxyDatabase::ReturnSong(const LightSong *_song) const
524
{
525
	assert(_song != nullptr);
526

527 528 529
	AllocatedProxySong *song = (AllocatedProxySong *)
		const_cast<LightSong *>(_song);
	delete song;
530 531
}

532
static bool
533
Visit(struct mpd_connection *connection, const char *uri,
534 535
      bool recursive, const SongFilter *filter,
      VisitDirectory visit_directory, VisitSong visit_song,
536
      VisitPlaylist visit_playlist, Error &error);
537 538

static bool
539
Visit(struct mpd_connection *connection,
540 541
      bool recursive, const SongFilter *filter,
      const struct mpd_directory *directory,
542
      VisitDirectory visit_directory, VisitSong visit_song,
543
      VisitPlaylist visit_playlist, Error &error)
544
{
545
	const char *path = mpd_directory_get_path(directory);
546
#if LIBMPDCLIENT_CHECK_VERSION(2,9,0)
547
	time_t mtime = mpd_directory_get_last_modified(directory);
548 549 550
#else
	time_t mtime = 0;
#endif
551

552
	if (visit_directory &&
553
	    !visit_directory(LightDirectory(path, mtime), error))
554
		return false;
555

556
	if (recursive &&
557
	    !Visit(connection, path, recursive, filter,
558
		   visit_directory, visit_song, visit_playlist, error))
559
		return false;
560

561
	return true;
562 563
}

564 565
gcc_pure
static bool
566
Match(const SongFilter *filter, const LightSong &song)
567 568 569 570
{
	return filter == nullptr || filter->Match(song);
}

571
static bool
572
Visit(const SongFilter *filter,
573
      const mpd_song *_song,
574
      VisitSong visit_song, Error &error)
575 576 577 578
{
	if (!visit_song)
		return true;

579 580
	const ProxySong song(_song);
	return !Match(filter, song) || visit_song(song, error);
581 582 583
}

static bool
584
Visit(const struct mpd_playlist *playlist,
585
      VisitPlaylist visit_playlist, Error &error)
586 587 588 589
{
	if (!visit_playlist)
		return true;

590 591
	PlaylistInfo p(mpd_playlist_get_path(playlist),
		       mpd_playlist_get_last_modified(playlist));
592

593
	return visit_playlist(p, LightDirectory::Root(), error);
594 595
}

596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
class ProxyEntity {
	struct mpd_entity *entity;

public:
	explicit ProxyEntity(struct mpd_entity *_entity)
		:entity(_entity) {}

	ProxyEntity(const ProxyEntity &other) = delete;

	ProxyEntity(ProxyEntity &&other)
		:entity(other.entity) {
		other.entity = nullptr;
	}

	~ProxyEntity() {
		if (entity != nullptr)
			mpd_entity_free(entity);
	}

	ProxyEntity &operator=(const ProxyEntity &other) = delete;

	operator const struct mpd_entity *() const {
		return entity;
	}
};

static std::list<ProxyEntity>
623 624
ReceiveEntities(struct mpd_connection *connection)
{
625
	std::list<ProxyEntity> entities;
626
	struct mpd_entity *entity;
627
	while ((entity = mpd_recv_entity(connection)) != nullptr)
628
		entities.push_back(ProxyEntity(entity));
629 630 631 632 633 634

	mpd_response_finish(connection);
	return entities;
}

static bool
635
Visit(struct mpd_connection *connection, const char *uri,
636 637
      bool recursive, const SongFilter *filter,
      VisitDirectory visit_directory, VisitSong visit_song,
638
      VisitPlaylist visit_playlist, Error &error)
639
{
640
	if (!mpd_send_list_meta(connection, uri))
641
		return CheckError(connection, error);
642

643
	std::list<ProxyEntity> entities(ReceiveEntities(connection));
644
	if (!CheckError(connection, error))
645 646
		return false;

647
	for (const auto &entity : entities) {
648 649 650 651 652
		switch (mpd_entity_get_type(entity)) {
		case MPD_ENTITY_TYPE_UNKNOWN:
			break;

		case MPD_ENTITY_TYPE_DIRECTORY:
653
			if (!Visit(connection, recursive, filter,
654 655
				   mpd_entity_get_directory(entity),
				   visit_directory, visit_song, visit_playlist,
656
				   error))
657
				return false;
658 659 660
			break;

		case MPD_ENTITY_TYPE_SONG:
661 662
			if (!Visit(filter,
				   mpd_entity_get_song(entity), visit_song,
663
				   error))
664
				return false;
665 666 667
			break;

		case MPD_ENTITY_TYPE_PLAYLIST:
668
			if (!Visit(mpd_entity_get_playlist(entity),
669
				   visit_playlist, error))
670
				return false;
671 672 673 674
			break;
		}
	}

675
	return CheckError(connection, error);
676 677
}

678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697
static bool
SearchSongs(struct mpd_connection *connection,
	    const DatabaseSelection &selection,
	    VisitSong visit_song,
	    Error &error)
{
	assert(selection.recursive);
	assert(visit_song);

	const bool exact = selection.filter == nullptr ||
		!selection.filter->HasFoldCase();

	if (!mpd_search_db_songs(connection, exact) ||
	    !SendConstraints(connection, selection) ||
	    !mpd_search_commit(connection))
		return CheckError(connection, error);

	bool result = true;
	struct mpd_song *song;
	while (result && (song = mpd_recv_song(connection)) != nullptr) {
698
		AllocatedProxySong song2(song);
699

700 701
		result = !Match(selection.filter, song2) ||
			visit_song(song2, error);
702 703 704 705 706 707
	}

	mpd_response_finish(connection);
	return result && CheckError(connection, error);
}

708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724
/**
 * Check whether we can use the "base" constraint.  Requires
 * libmpdclient 2.9 and MPD 0.18.
 */
gcc_pure
static bool
ServerSupportsSearchBase(const struct mpd_connection *connection)
{
#if LIBMPDCLIENT_CHECK_VERSION(2,9,0)
	return mpd_connection_cmp_server_version(connection, 0, 18, 0) >= 0;
#else
	(void)connection;

	return false;
#endif
}

725 726 727 728 729
bool
ProxyDatabase::Visit(const DatabaseSelection &selection,
		     VisitDirectory visit_directory,
		     VisitSong visit_song,
		     VisitPlaylist visit_playlist,
730
		     Error &error) const
731
{
732 733 734
	// TODO: eliminate the const_cast
	if (!const_cast<ProxyDatabase *>(this)->EnsureConnected(error))
		return nullptr;
735

736 737 738 739
	if (!visit_directory && !visit_playlist && selection.recursive &&
	    (ServerSupportsSearchBase(connection)
	     ? !selection.IsEmpty()
	     : selection.HasOtherThanBase()))
740 741 742 743 744
		/* this optimized code path can only be used under
		   certain conditions */
		return ::SearchSongs(connection, selection, visit_song, error);

	/* fall back to recursive walk (slow!) */
745
	return ::Visit(connection, selection.uri.c_str(),
746
		       selection.recursive, selection.filter,
747
		       visit_directory, visit_song, visit_playlist,
748
		       error);
749 750
}

751 752
bool
ProxyDatabase::VisitUniqueTags(const DatabaseSelection &selection,
753
			       TagType tag_type,
754 755
			       gcc_unused uint32_t group_mask,
			       VisitTag visit_tag,
756
			       Error &error) const
757
{
758 759 760 761
	// TODO: eliminate the const_cast
	if (!const_cast<ProxyDatabase *>(this)->EnsureConnected(error))
		return nullptr;

762 763
	enum mpd_tag_type tag_type2 = Convert(tag_type);
	if (tag_type2 == MPD_TAG_COUNT) {
764
		error.Set(libmpdclient_domain, "Unsupported tag");
765 766 767 768
		return false;
	}

	if (!mpd_search_db_tags(connection, tag_type2))
769
		return CheckError(connection, error);
770

771 772
	if (!SendConstraints(connection, selection))
		return CheckError(connection, error);
773

774 775
	// TODO: use group_mask

776
	if (!mpd_search_commit(connection))
777
		return CheckError(connection, error);
778 779 780 781 782 783

	bool result = true;

	struct mpd_pair *pair;
	while (result &&
	       (pair = mpd_recv_pair_tag(connection, tag_type2)) != nullptr) {
784 785
		TagBuilder tag;
		tag.AddItem(tag_type, pair->value);
786 787 788 789 790 791 792 793 794

		if (tag.IsEmpty())
			/* if no tag item has been added, then the
			   given value was not acceptable
			   (e.g. empty); forcefully insert an empty
			   tag in this case, as the caller expects the
			   given tag type to be present */
			tag.AddEmptyItem(tag_type);

795
		result = visit_tag(tag.Commit(), error);
796 797 798 799
		mpd_return_pair(connection, pair);
	}

	return mpd_response_finish(connection) &&
800
		CheckError(connection, error) &&
801 802 803
		result;
}

804 805
bool
ProxyDatabase::GetStats(const DatabaseSelection &selection,
806
			DatabaseStats &stats, Error &error) const
807 808 809 810
{
	// TODO: match
	(void)selection;

811 812 813 814
	// TODO: eliminate the const_cast
	if (!const_cast<ProxyDatabase *>(this)->EnsureConnected(error))
		return nullptr;

815 816 817
	struct mpd_stats *stats2 =
		mpd_run_stats(connection);
	if (stats2 == nullptr)
818
		return CheckError(connection, error);
819

820 821
	update_stamp = (time_t)mpd_stats_get_db_update_time(stats2);

822
	stats.song_count = mpd_stats_get_number_of_songs(stats2);
823
	stats.total_duration = std::chrono::seconds(mpd_stats_get_db_play_time(stats2));
824 825 826 827 828 829 830
	stats.artist_count = mpd_stats_get_number_of_artists(stats2);
	stats.album_count = mpd_stats_get_number_of_albums(stats2);
	mpd_stats_free(stats2);

	return true;
}

831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846
unsigned
ProxyDatabase::Update(const char *uri_utf8, bool discard,
		      Error &error)
{
	if (!EnsureConnected(error))
		return 0;

	unsigned id = discard
		? mpd_run_rescan(connection, uri_utf8)
		: mpd_run_update(connection, uri_utf8);
	if (id == 0)
		CheckError(connection, error);

	return id;
}

847 848
const DatabasePlugin proxy_db_plugin = {
	"proxy",
849
	DatabasePlugin::FLAG_REQUIRE_STORAGE,
850 851
	ProxyDatabase::Create,
};