/***************************************************************************
* Copyright (C) 2008-2012 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* 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 <QtGui>
#include <taglib/tag.h>
#include <taglib/fileref.h>
#include <taglib/flacfile.h>
#include <taglib/oggflacfile.h>
#include <taglib/xiphcomment.h>
#include <taglib/tmap.h>
#include "cueparser.h"
#include "decoder_flac.h"
#include "flacmetadatamodel.h"
#include "decoderflacfactory.h"
// DecoderFLACFactory
bool DecoderFLACFactory::supports(const QString &source) const
{
return source.endsWith(".flac", Qt::CaseInsensitive) || source.endsWith(".oga", Qt::CaseInsensitive);
}
bool DecoderFLACFactory::canDecode(QIODevice *input) const
{
char buf[36];
if (input->peek(buf, 36) != 36)
return false;
if(!memcmp(buf, "fLaC", 4)) //native flac
return true;
if(!memcmp(buf, "OggS", 4) && !memcmp(buf + 29, "FLAC", 4)) //ogg flac
return true;
return false;
}
const DecoderProperties DecoderFLACFactory::properties() const
{
DecoderProperties properties;
properties.name = tr("FLAC Plugin");
properties.filters << "*.flac" << "*.oga";
properties.description = tr("FLAC Files");
properties.contentTypes << "audio/x-flac" << "audio/flac";
properties.shortName = "flac";
properties.protocols << "flac";
properties.hasAbout = true;
properties.hasSettings = false;
return properties;
}
Decoder *DecoderFLACFactory::create(const QString &path, QIODevice *i)
{
return new DecoderFLAC(path, i);
}
QList<FileInfo *> DecoderFLACFactory::createPlayList(const QString &fileName, bool useMetaData)
{
QList <FileInfo*> list;
TagLib::Ogg::XiphComment *tag = 0;
TagLib::FLAC::Properties *ap = 0;
TagLib::FLAC::File *flacFile = 0;
TagLib::Ogg::FLAC::File *oggFlacFile = 0;
//extract metadata of the one cue track
if(fileName.contains("://"))
{
QString path = fileName;
path.remove("flac://");
path.remove(QRegExp("#\\d+$"));
int track = fileName.section("#", -1).toInt();
list = createPlayList(path, true);