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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 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
|
/*
ark -- archiver for the KDE project
Copyright (C) 2003 Georg Robbers <Georg.Robbers@urz.uni-hd.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, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "arch.h"
#include "archiveformatinfo.h"
#include "settings.h"
#include <klocale.h>
#include <kdebug.h>
#include <kdesktopfile.h>
#include <kfilterdev.h>
#include <qfile.h>
ArchiveFormatInfo * ArchiveFormatInfo::m_pSelf = 0;
ArchiveFormatInfo::ArchiveFormatInfo()
:m_lastExtensionUnknown( false )
{
buildFormatInfos();
}
ArchiveFormatInfo * ArchiveFormatInfo::self()
{
if ( !m_pSelf )
m_pSelf = new ArchiveFormatInfo();
return m_pSelf;
}
void ArchiveFormatInfo::buildFormatInfos()
{
addFormatInfo( TAR_FORMAT, "application/x-tgz", ".tar.gz" );
addFormatInfo( TAR_FORMAT, "application/x-tzo", ".tar.lzo" );
addFormatInfo( TAR_FORMAT, "application/x-tarz", ".tar.z" );
addFormatInfo( TAR_FORMAT, "application/x-tbz", ".tar.bz2" );
addFormatInfo( TAR_FORMAT, "application/x-tbz2", ".tar.bz2" );
// x-tar as the last one to get its comment for all the others, too
addFormatInfo( TAR_FORMAT, "application/x-tar", ".tar" );
addFormatInfo( LHA_FORMAT, "application/x-lha", ".lha" );
addFormatInfo( ZIP_FORMAT, "application/x-jar", ".jar" );
addFormatInfo( ZIP_FORMAT, "application/x-zip", ".zip" );
addFormatInfo( ZIP_FORMAT, "application/x-zip-compressed", ".zip" );
addFormatInfo( COMPRESSED_FORMAT, "application/x-gzip", ".gz" );
addFormatInfo( COMPRESSED_FORMAT, "application/x-bzip", ".bz" );
addFormatInfo( COMPRESSED_FORMAT, "application/x-bzip2", ".bz2" );
addFormatInfo( COMPRESSED_FORMAT, "application/x-lzop", ".lzo" );
addFormatInfo( COMPRESSED_FORMAT, "application/x-compress", ".Z" );
find( COMPRESSED_FORMAT ).description = i18n( "Compressed File" );
addFormatInfo( ZOO_FORMAT, "application/x-zoo", ".zoo" );
addFormatInfo( RAR_FORMAT, "application/x-rar", ".rar" );
addFormatInfo( RAR_FORMAT, "application/x-rar-compressed", ".rar" );
addFormatInfo( AA_FORMAT, "application/x-deb", ".deb" );
addFormatInfo( AA_FORMAT, "application/x-archive",".a" );
addFormatInfo( SEVENZIP_FORMAT, "application/x-7z", ".7z" );
if ( ArkSettings::aceSupport() )
addFormatInfo( ACE_FORMAT, "application/x-ace", ".ace" );
}
void ArchiveFormatInfo::addFormatInfo( ArchType type, QString mime, QString stdExt )
{
FormatInfo & info = find( type );
KDesktopFile * desktopFile = new KDesktopFile( mime + ".desktop", true, "mime" );
if( !desktopFile )
kdWarning( 1601 ) << "MimeType " << mime << " seems to be missing." << endl;
KMimeType mimeType( desktopFile );
info.mimeTypes.append( mimeType.name() );
info.extensions += mimeType.patterns();
info.defaultExtensions += stdExt;
info.allDescriptions.append( mimeType.comment() );
info.description = mimeType.comment();
delete desktopFile;
}
QString ArchiveFormatInfo::filter()
{
QStringList allExtensions;
QString filter;
InfoList::Iterator it;
for ( it = m_formatInfos.begin(); it != m_formatInfos.end(); ++it )
{
allExtensions += (*it).extensions;
filter += "\n" + (*it).extensions.join( " " ) + '|' + (*it).description;
}
return allExtensions.join( " " ) + '|' + i18n( "All Valid Archives\n" )
+ "*|" + i18n( "All Files" )
+ filter;
}
const QStringList ArchiveFormatInfo::supportedMimeTypes( bool includeCompressed )
{
QStringList list;
InfoList::Iterator end = m_formatInfos.end();
for ( InfoList::Iterator it = m_formatInfos.begin(); it != end; ++it )
{
if ( includeCompressed || ( *it ).type != COMPRESSED_FORMAT )
{
list += ( *it ).mimeTypes;
}
}
return list;
}
QStringList ArchiveFormatInfo::allDescriptions()
{
QStringList descriptions;
InfoList::Iterator it;
for ( it = m_formatInfos.begin(); it != m_formatInfos.end(); ++it )
descriptions += (*it).allDescriptions;
return descriptions;
}
ArchiveFormatInfo::FormatInfo & ArchiveFormatInfo::find( ArchType type )
{
InfoList::Iterator it = m_formatInfos.begin();
for( ; it != m_formatInfos.end(); ++it )
if( (*it).type == type )
return (*it);
FormatInfo info;
info.type = type;
return ( *m_formatInfos.append( info ) );
}
ArchType ArchiveFormatInfo::archTypeByExtension( const QString & archname )
{
InfoList::Iterator it = m_formatInfos.begin();
QStringList::Iterator ext;
for( ; it != m_formatInfos.end(); ++it )
{
ext = (*it).extensions.begin();
for( ; ext != (*it).extensions.end(); ++ext )
if( archname.endsWith( (*ext).remove( '*' ) ) )
return (*it).type;
}
return UNKNOWN_FORMAT;
}
ArchType ArchiveFormatInfo::archTypeForMimeType( const QString & mimeType )
{
InfoList::Iterator it = m_formatInfos.begin();
for( ; it != m_formatInfos.end(); ++it )
{
int index = (*it).mimeTypes.findIndex( mimeType );
if( index != -1 )
return (*it).type;
}
return UNKNOWN_FORMAT;
}
ArchType ArchiveFormatInfo::archTypeForURL( const KURL & url )
{
m_lastExtensionUnknown = false;
if( url.isEmpty() )
return UNKNOWN_FORMAT;
if( !QFile::exists( url.path() ) )
return archTypeByExtension( url.path() );
QString mimeType = KMimeType::findByURL( url, 0, true, true )->name();
kdDebug( 1601 ) << "find by url: " << mimeType << endl;
if( mimeType == KMimeType::defaultMimeType() )
{
m_lastExtensionUnknown = true;
mimeType = KMimeType::findByFileContent( url.path() )->name();
}
ArchType archType = archTypeForMimeType( mimeType );
if ( archType == UNKNOWN_FORMAT )
m_lastExtensionUnknown = true;
return archType;
}
QString ArchiveFormatInfo::findMimeType( const KURL & url )
{
QString mimeType = KMimeType::findByURL( url )->name();
if ( mimeType != "application/x-bzip2" && mimeType != "application/x-gzip" )
return mimeType;
QIODevice * dev = KFilterDev::deviceForFile( url.path(), mimeType );
if ( !dev )
return mimeType;
char buffer[ 0x200 ];
dev->open( IO_ReadOnly );
Q_LONG n = dev->readBlock( buffer, 0x200 );
delete dev;
if ( n == 0x200 && buffer[0] != 0 && !strncmp(buffer + 257, "ustar", 5) )
{
if (mimeType == "application/x-bzip2")
return "application/x-tbz";
else
return "application/x-tgz";
}
return mimeType;
}
QString ArchiveFormatInfo::mimeTypeForDescription( const QString & description )
{
InfoList::Iterator it = m_formatInfos.begin();
int index;
for( ; it != m_formatInfos.end(); ++it )
{
index = (*it).allDescriptions.findIndex( description );
if ( index != -1 )
return (* (*it).mimeTypes.at( index ) );
}
return QString::null;
}
QString ArchiveFormatInfo::descriptionForMimeType( const QString & mimeType )
{
InfoList::Iterator it = m_formatInfos.begin();
int index;
for( ; it != m_formatInfos.end(); ++it )
{
index = (*it).mimeTypes.findIndex( mimeType );
if ( index != -1 )
return (* (*it).allDescriptions.at( index ) );
}
return QString::null;
}
QString ArchiveFormatInfo::defaultExtension( const QString & mimeType )
{
InfoList::Iterator it = m_formatInfos.begin();
int index;
for( ; it != m_formatInfos.end(); ++it )
{
index = (*it).mimeTypes.findIndex( mimeType );
if ( index != -1 )
return (* (*it).defaultExtensions.at( index ) );
}
return QString::null;
}
bool ArchiveFormatInfo::wasUnknownExtension()
{
return m_lastExtensionUnknown;
}
|