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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
|
/****************************************************************************************
* Copyright (c) 2005 Martin Aumueller <aumueller@reserv.at> *
* Copyright (c) 2011 Ralf Engels <ralf-engels@gmx.de> *
* *
* 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, see <http://www.gnu.org/licenses/>. *
****************************************************************************************/
#include "FileTypeResolver.h"
#include "config.h"
#include <KMimeType>
#include <QFile>
#include <QFileInfo>
#include <QtDebug>
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wnon-virtual-dtor"
#ifdef TAGLIB_EXTRAS_FOUND
#include <audiblefile.h>
#include <realmediafile.h>
#endif // TAGLIB_EXTRAS_FOUND
#include <aifffile.h>
#include <asffile.h>
#include <flacfile.h>
#include <mp4file.h>
#include <mpcfile.h>
#include <mpegfile.h>
#include <oggfile.h>
#ifdef TAGLIB_OPUS_FOUND
#include <opusfile.h>
#endif // TAGLIB_OPUS_FOUND
#include <oggflacfile.h>
#include <speexfile.h>
#include <trueaudiofile.h>
#include <vorbisfile.h>
#include <wavfile.h>
#include <wavpackfile.h>
#ifdef TAGLIB_MOD_FOUND
#include <modfile.h>
#include <s3mfile.h>
#include <itfile.h>
#include <xmfile.h>
#endif // TAGLIB_MOD_FOUND
#pragma GCC diagnostic pop
TagLib::File *Meta::Tag::FileTypeResolver::createFile(TagLib::FileName fileName,
bool readProperties,
TagLib::AudioProperties::ReadStyle propertiesStyle) const
{
TagLib::File* result = 0;
QString fn = QFile::decodeName( fileName );
QString suffix = QFileInfo( fn ).suffix();
KMimeType::Ptr mimetype = KMimeType::findByPath( fn );
// -- check by mime type
if( mimetype->is( QLatin1String("audio/mpeg") )
|| mimetype->is( QLatin1String("audio/x-mpegurl") )
|| mimetype->is( QLatin1String("audio/mpeg") ))
{
result = new TagLib::MPEG::File(fileName, readProperties, propertiesStyle);
}
else if( mimetype->is( QLatin1String("audio/mp4") )
|| mimetype->is( QLatin1String("video/mp4") ) )
{
result = new TagLib::MP4::File(fileName, readProperties, propertiesStyle);
}
else if( mimetype->is( QLatin1String("audio/x-ms-wma") )
|| mimetype->is( QLatin1String("video/x-ms-asf") )
|| mimetype->is( QLatin1String("video/x-msvideo") )
|| mimetype->is( QLatin1String("video/x-ms-wmv") ) )
{
result = new TagLib::ASF::File(fileName, readProperties, propertiesStyle);
}
#ifdef TAGLIB_EXTRAS_FOUND
else if( mimetype->is( QLatin1String("audio/vnd.rn-realaudio") )
|| mimetype->is( QLatin1String("audio/x-pn-realaudioplugin") )
|| mimetype->is( QLatin1String("audio/vnd.rn-realvideo") ) )
{
result = new TagLibExtras::RealMedia::File(fileName, readProperties, propertiesStyle);
}
#endif
#ifdef TAGLIB_OPUS_FOUND
else if( mimetype->is( QLatin1String("audio/opus") )
|| mimetype->is( QLatin1String("audio/x-opus+ogg") ) )
{
result = new TagLib::Ogg::Opus::File(fileName, readProperties, propertiesStyle);
}
#endif
else if( mimetype->is( QLatin1String("audio/vorbis") )
|| mimetype->is( QLatin1String("audio/x-vorbis+ogg") ) )
{
result = new TagLib::Ogg::Vorbis::File(fileName, readProperties, propertiesStyle);
}
else if( mimetype->is( QLatin1String("audio/x-flac+ogg") ) )
{
result = new TagLib::Ogg::FLAC::File(fileName, readProperties, propertiesStyle);
}
else if( mimetype->is( QLatin1String("audio/x-aiff") ) )
{
result = new TagLib::RIFF::AIFF::File(fileName, readProperties, propertiesStyle);
}
else if( mimetype->is( QLatin1String("audio/x-flac") ) )
{
result = new TagLib::FLAC::File(fileName, readProperties, propertiesStyle);
}
else if( mimetype->is( QLatin1String("audio/x-musepack") ) )
{
result = new TagLib::MPC::File(fileName, readProperties, propertiesStyle);
}
else if( mimetype->is( QLatin1String("audio/x-wav") ) )
{
result = new TagLib::RIFF::WAV::File(fileName, readProperties, propertiesStyle);
}
else if( mimetype->is( QLatin1String("audio/x-wavpack") ) )
{
result = new TagLib::WavPack::File(fileName, readProperties, propertiesStyle);
}
else if( mimetype->is( QLatin1String("audio/x-tta") ) )
{
result = new TagLib::TrueAudio::File(fileName, readProperties, propertiesStyle);
}
else if( mimetype->is( QLatin1String("audio/x-speex") )
|| mimetype->is( QLatin1String("audio/x-speex+ogg") ) )
{
result = new TagLib::Ogg::Speex::File(fileName, readProperties, propertiesStyle);
}
#ifdef TAGLIB_MOD_FOUND
else if( mimetype->is( QLatin1String("audio/x-mod") ) )
{
result = new TagLib::Mod::File(fileName, readProperties, propertiesStyle);
}
else if( mimetype->is( QLatin1String("audio/x-s3m") ) )
{
result = new TagLib::S3M::File(fileName, readProperties, propertiesStyle);
}
else if( mimetype->is( QLatin1String("audio/x-it") ) )
{
result = new TagLib::IT::File(fileName, readProperties, propertiesStyle);
}
else if( mimetype->is( QLatin1String("audio/x-xm") ) )
{
result = new TagLib::XM::File(fileName, readProperties, propertiesStyle);
}
#endif
// -- check by extension
else if( suffix == QLatin1String("m4a")
|| suffix == QLatin1String("m4b")
|| suffix == QLatin1String("m4p")
|| suffix == QLatin1String("mp4")
|| suffix == QLatin1String("m4v")
|| suffix == QLatin1String("mp4v") )
{
result = new TagLib::MP4::File(fileName, readProperties, propertiesStyle);
}
else if( suffix == QLatin1String("wav") )
{
result = new TagLib::RIFF::WAV::File(fileName, readProperties, propertiesStyle);
}
else if( suffix == QLatin1String("wma")
|| suffix == QLatin1String("asf") )
{
result = new TagLib::ASF::File(fileName, readProperties, propertiesStyle);
}
#ifdef TAGLIB_OPUS_FOUND
// this is currently needed because shared-mime-info database doesn't have opus entry (2013-01)
else if( suffix == QLatin1String("opus") )
{
result = new TagLib::Ogg::Opus::File(fileName, readProperties, propertiesStyle);
}
#endif
#ifndef Q_WS_WIN
if( !result )
qDebug() << QString( "FileTypeResolver: file %1 (mimetype %2) not recognized as "
"Amarok-compatible" ).arg( fileName, mimetype->name() ).toLocal8Bit().data();
#endif
if( result && !result->isValid() ) {
delete result;
result = 0;
}
return result;
}
|