blob: 652bb30d9fed6e8b4a6e5e4f7475fa45394dfae6 (
plain)
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
|
/***************************************************************************
begin : Tue Aug 3 2004
copyright : (C) 2004 by Scott Wheeler
email : wheeler@kde.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. *
* *
***************************************************************************/
#include "musicbrainzquery.h"
#if HAVE_MUSICBRAINZ
#include "trackpickerdialog.h"
#include "tag.h"
#include "collectionlist.h"
#include "tagtransactionmanager.h"
#include <tdemainwindow.h>
#include <tdeapplication.h>
#include <kstatusbar.h>
#include <tdelocale.h>
#include <kdebug.h>
#include <tqfileinfo.h>
MusicBrainzLookup::MusicBrainzLookup(const FileHandle &file) :
KTRMLookup(file.absFilePath()),
m_file(file)
{
message(i18n("Querying MusicBrainz server..."));
}
void MusicBrainzLookup::recognized()
{
KTRMLookup::recognized();
confirmation();
delete this;
}
void MusicBrainzLookup::unrecognized()
{
KTRMLookup::unrecognized();
message(i18n("No matches found."));
delete this;
}
void MusicBrainzLookup::collision()
{
KTRMLookup::collision();
confirmation();
delete this;
}
void MusicBrainzLookup::error()
{
KTRMLookup::error();
message(i18n("Error connecting to MusicBrainz server."));
delete this;
}
void MusicBrainzLookup::message(const TQString &s) const
{
TDEMainWindow *w = static_cast<TDEMainWindow *>(kapp->mainWidget());
w->statusBar()->message(TQString("%1 (%2)").arg(s).arg(m_file.fileInfo().fileName()), 3000);
}
void MusicBrainzLookup::confirmation()
{
// Here we do a bit of queuing to make sure that we don't pop up multiple
// instances of the confirmation dialog at once.
static TQValueList< TQPair<FileHandle, KTRMResultList> > queue;
if(results().isEmpty())
return;
if(!queue.isEmpty()) {
queue.append(tqMakePair(m_file, results()));
return;
}
queue.append(tqMakePair(m_file, results()));
while(!queue.isEmpty()) {
TQPair<FileHandle, KTRMResultList> item = queue.first();
FileHandle file = item.first;
KTRMResultList results = item.second;
TrackPickerDialog dialog(file.fileInfo().fileName(), results);
if(dialog.exec() == TQDialog::Accepted && !dialog.result().isEmpty()) {
KTRMResult result = dialog.result();
Tag *tag = TagTransactionManager::duplicateTag(file.tag());
if(!result.title().isEmpty())
tag->setTitle(result.title());
if(!result.artist().isEmpty())
tag->setArtist(result.artist());
if(!result.album().isEmpty())
tag->setAlbum(result.album());
if(result.track() != 0)
tag->setTrack(result.track());
if(result.year() != 0)
tag->setYear(result.year());
PlaylistItem *item = CollectionList::instance()->lookup(file.absFilePath());
TagTransactionManager::instance()->changeTagOnItem(item, tag);
TagTransactionManager::instance()->commit();
}
queue.pop_front();
}
}
#endif
|