mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
74 lines
2.1 KiB
C++
74 lines
2.1 KiB
C++
/*
|
|
Copyright (C) 2003 Richard Lärkäng <nouseforaname@home.se>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include <kdebug.h>
|
|
#include <kapplication.h>
|
|
#include <kcmdlineargs.h>
|
|
|
|
#include "libkcddb/client.h"
|
|
#include "libkcddb/kcddbconfig.h"
|
|
#include "libkcddb/submit.h"
|
|
|
|
int
|
|
main(int argc, char ** argv)
|
|
{
|
|
KCmdLineArgs::init(argc, argv, "libkcddb_test", 0, KLocalizedString(), "");
|
|
|
|
KApplication app;
|
|
|
|
using namespace KCDDB;
|
|
|
|
TrackOffsetList list;
|
|
|
|
list
|
|
<< 150 // First track start.
|
|
<< 2592
|
|
<< 35472
|
|
<< 47891
|
|
<< 123310
|
|
<< 133125; // Disc end.
|
|
|
|
CDInfo cdInfo;
|
|
|
|
cdInfo.set("discid", "3606ed05");
|
|
cdInfo.set("revision", 4);
|
|
cdInfo.set("title", "Bamse och Bronto");
|
|
cdInfo.set("artist", "Musiksage");
|
|
cdInfo.set("year", 2001);
|
|
cdInfo.set("category", "misc");
|
|
cdInfo.set("genre", "Barnsaga");
|
|
cdInfo.set("extd", QString::fromUtf8("Berättare: Olof Thunberg"));
|
|
|
|
cdInfo.track(0).set("title", "Bamses signaturmelodi");
|
|
cdInfo.track(1).set("title","*");
|
|
cdInfo.track(2).set("title", "Brummavisan");
|
|
cdInfo.track(3).set("title", "*");
|
|
cdInfo.track(4).set("title", QString::fromUtf8("Jätteödlan Bronto"));
|
|
|
|
Client c;
|
|
c.config().setFreedbSubmitTransport(Submit::SMTP);
|
|
c.config().setSubmitAddress("test-submit@freedb.org");
|
|
|
|
c.setBlockingMode( true );
|
|
|
|
Result r = c.submit(cdInfo, list);
|
|
|
|
kDebug() << "Result: " << resultToString(r);
|
|
}
|
|
|