summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--library/applnk.cpp2
-rw-r--r--library/mimetype.cpp10
2 files changed, 8 insertions, 4 deletions
diff --git a/library/applnk.cpp b/library/applnk.cpp
index 5f7da8e..e9d519e 100644
--- a/library/applnk.cpp
+++ b/library/applnk.cpp
@@ -1183,193 +1183,193 @@ QString AppLnkSet::typeName( const QString& t ) const
1183 return st ? *st : QString::null; 1183 return st ? *st : QString::null;
1184} 1184}
1185 1185
1186/*! 1186/*!
1187 Returns the small pixmap associated with type \a t. 1187 Returns the small pixmap associated with type \a t.
1188 1188
1189 For applications, games and settings the type is \c Application; 1189 For applications, games and settings the type is \c Application;
1190 for documents the type is the document's MIME type. 1190 for documents the type is the document's MIME type.
1191*/ 1191*/
1192QPixmap AppLnkSet::typePixmap( const QString& t ) const 1192QPixmap AppLnkSet::typePixmap( const QString& t ) const
1193{ 1193{
1194 QPixmap *pm = d->typPix.find(t); 1194 QPixmap *pm = d->typPix.find(t);
1195 return pm ? *pm : QPixmap(); 1195 return pm ? *pm : QPixmap();
1196} 1196}
1197 1197
1198/*! 1198/*!
1199 Returns the large pixmap associated with type \a t. 1199 Returns the large pixmap associated with type \a t.
1200 1200
1201 For applications, games and settings the type is \c Application; 1201 For applications, games and settings the type is \c Application;
1202 for documents the type is the document's MIME type. 1202 for documents the type is the document's MIME type.
1203*/ 1203*/
1204QPixmap AppLnkSet::typeBigPixmap( const QString& t ) const 1204QPixmap AppLnkSet::typeBigPixmap( const QString& t ) const
1205{ 1205{
1206 QPixmap *pm = d->typPixBig.find(t); 1206 QPixmap *pm = d->typPixBig.find(t);
1207 return pm ? *pm : QPixmap(); 1207 return pm ? *pm : QPixmap();
1208} 1208}
1209 1209
1210/*! 1210/*!
1211 Returns the AppLnk with the given \a id. 1211 Returns the AppLnk with the given \a id.
1212*/ 1212*/
1213const AppLnk *AppLnkSet::find( int id ) const 1213const AppLnk *AppLnkSet::find( int id ) const
1214{ 1214{
1215 QListIterator<AppLnk> it( children() ); 1215 QListIterator<AppLnk> it( children() );
1216 1216
1217 for ( ; it.current(); ++it ) { 1217 for ( ; it.current(); ++it ) {
1218 const AppLnk *app = it.current(); 1218 const AppLnk *app = it.current();
1219 if ( app->id() == id ) 1219 if ( app->id() == id )
1220 return app; 1220 return app;
1221 } 1221 }
1222 1222
1223 return 0; 1223 return 0;
1224} 1224}
1225 1225
1226/*! 1226/*!
1227 Returns the AppLnk with the given \a exec attribute. 1227 Returns the AppLnk with the given \a exec attribute.
1228*/ 1228*/
1229const AppLnk *AppLnkSet::findExec( const QString& exec ) const 1229const AppLnk *AppLnkSet::findExec( const QString& exec ) const
1230{ 1230{
1231 QListIterator<AppLnk> it( children() ); 1231 QListIterator<AppLnk> it( children() );
1232 1232
1233 for ( ; it.current(); ++it ) { 1233 for ( ; it.current(); ++it ) {
1234 const AppLnk *app = it.current(); 1234 const AppLnk *app = it.current();
1235 if ( app->exec() == exec ) 1235 if ( app->exec() == exec )
1236 return app; 1236 return app;
1237 } 1237 }
1238 1238
1239 return 0; 1239 return 0;
1240} 1240}
1241 1241
1242/*! 1242/*!
1243 \class DocLnkSet applnk.h 1243 \class DocLnkSet applnk.h
1244 \brief The DocLnkSet class is a set of DocLnk objects. 1244 \brief The DocLnkSet class is a set of DocLnk objects.
1245*/ 1245*/
1246 1246
1247/*! 1247/*!
1248 \fn const QList<DocLnk>& DocLnkSet::children() const 1248 \fn const QList<DocLnk>& DocLnkSet::children() const
1249 1249
1250 Returns the members of the set. 1250 Returns the members of the set.
1251*/ 1251*/
1252 1252
1253/*! 1253/*!
1254 Constructs an empty DocLnkSet. 1254 Constructs an empty DocLnkSet.
1255 1255
1256 \sa appendFrom() 1256 \sa appendFrom()
1257*/ 1257*/
1258DocLnkSet::DocLnkSet() 1258DocLnkSet::DocLnkSet()
1259{ 1259{
1260} 1260}
1261 1261
1262/*! 1262/*!
1263 Constructs a DocLnkSet that contains DocLnk objects representing all 1263 Constructs a DocLnkSet that contains DocLnk objects representing all
1264 the files in the \a directory (and any subdirectories, recursively). 1264 the files in the \a directory (and any subdirectories, recursively).
1265 1265
1266 If \a mimefilter is not null, 1266 If \a mimefilter is not null,
1267 only documents with a MIME type matching \a mimefilter are selected. 1267 only documents with a MIME type matching \a mimefilter are selected.
1268 The value may contain multiple wild-card patterns separated by ";", 1268 The value may contain multiple wild-card patterns separated by ";",
1269 such as \c{*o/mpeg;audio/x-wav}. 1269 such as \c{*o/mpeg;audio/x-wav}.
1270 1270
1271 See also \link applnk.html#files-and-links Files and Links\endlink. 1271 See also \link applnk.html#files-and-links Files and Links\endlink.
1272 1272
1273*/ 1273*/
1274DocLnkSet::DocLnkSet( const QString &directory, const QString& mimefilter ) : 1274DocLnkSet::DocLnkSet( const QString &directory, const QString& mimefilter ) :
1275 AppLnkSet() 1275 AppLnkSet()
1276{ 1276{
1277 QDir dir( directory ); 1277 QDir dir( directory );
1278 mFile = dir.dirName(); 1278 mFile = dir.dirName();
1279 QDict<void> reference; 1279 QDict<void> reference(1021);
1280 1280
1281 QStringList subFilter = QStringList::split(";", mimefilter); 1281 QStringList subFilter = QStringList::split(";", mimefilter);
1282 QValueList<QRegExp> mimeFilters; 1282 QValueList<QRegExp> mimeFilters;
1283 for( QStringList::Iterator it = subFilter.begin(); it != subFilter.end(); ++ it ) 1283 for( QStringList::Iterator it = subFilter.begin(); it != subFilter.end(); ++ it )
1284 mimeFilters.append( QRegExp(*it, FALSE, TRUE) ); 1284 mimeFilters.append( QRegExp(*it, FALSE, TRUE) );
1285 1285
1286 findChildren(directory, mimeFilters, reference); 1286 findChildren(directory, mimeFilters, reference);
1287 1287
1288 const QList<DocLnk> &list = children(); 1288 const QList<DocLnk> &list = children();
1289 for ( QListIterator<DocLnk> it( list ); it.current(); ++it ) { 1289 for ( QListIterator<DocLnk> it( list ); it.current(); ++it ) {
1290 reference.remove( (*it)->file() ); 1290 reference.remove( (*it)->file() );
1291 } 1291 }
1292 for ( QDictIterator<void> dit(reference); dit.current(); ++dit ) { 1292 for ( QDictIterator<void> dit(reference); dit.current(); ++dit ) {
1293 if ( dit.current() == (void*)2 ) { 1293 if ( dit.current() == (void*)2 ) {
1294 // Unreferenced, make an unwritten link 1294 // Unreferenced, make an unwritten link
1295 DocLnk* dl = new DocLnk; 1295 DocLnk* dl = new DocLnk;
1296 QFileInfo fi( dit.currentKey() ); 1296 QFileInfo fi( dit.currentKey() );
1297 dl->setFile(fi.filePath()); 1297 dl->setFile(fi.filePath());
1298 dl->setName(fi.baseName()); 1298 dl->setName(fi.baseName());
1299 // #### default to current path? 1299 // #### default to current path?
1300 // dl->setCategories( ... ); 1300 // dl->setCategories( ... );
1301 bool match = mimefilter.isNull(); 1301 bool match = mimefilter.isNull();
1302 if ( !match ) 1302 if ( !match )
1303 for( QValueList<QRegExp>::Iterator it = mimeFilters.begin(); it != mimeFilters.end() && !match; ++ it ) 1303 for( QValueList<QRegExp>::Iterator it = mimeFilters.begin(); it != mimeFilters.end() && !match; ++ it )
1304 if ( (*it).match(dl->type()) >= 0 ) 1304 if ( (*it).match(dl->type()) >= 0 )
1305 match = TRUE; 1305 match = TRUE;
1306 if ( match /* && dl->type() != "application/octet-stream" */ 1306 if ( match /* && dl->type() != "application/octet-stream" */
1307 && !!dl->exec() ) 1307 && !!dl->exec() )
1308 add(dl); 1308 add(dl);
1309 else 1309 else
1310 delete dl; 1310 delete dl;
1311 } 1311 }
1312 } 1312 }
1313} 1313}
1314 1314
1315// other becomes empty 1315// other becomes empty
1316/*! 1316/*!
1317 Transfers all DocLnk objects from \a other to this set. \a other becomes 1317 Transfers all DocLnk objects from \a other to this set. \a other becomes
1318 empty. 1318 empty.
1319*/ 1319*/
1320void DocLnkSet::appendFrom( DocLnkSet& other ) 1320void DocLnkSet::appendFrom( DocLnkSet& other )
1321{ 1321{
1322 if ( &other == this ) 1322 if ( &other == this )
1323 return; 1323 return;
1324 QListIterator<AppLnk> it( other.mApps ); 1324 QListIterator<AppLnk> it( other.mApps );
1325 for ( ; it.current(); ) { 1325 for ( ; it.current(); ) {
1326 mApps.append(*it); 1326 mApps.append(*it);
1327 ++it; 1327 ++it;
1328 } 1328 }
1329 other.mApps.clear(); 1329 other.mApps.clear();
1330} 1330}
1331 1331
1332void DocLnkSet::findChildren(const QString &dr, const QValueList<QRegExp> &mimeFilters, QDict<void> &reference, int depth) 1332void DocLnkSet::findChildren(const QString &dr, const QValueList<QRegExp> &mimeFilters, QDict<void> &reference, int depth)
1333{ 1333{
1334 depth++; 1334 depth++;
1335 if ( depth > 10 ) 1335 if ( depth > 10 )
1336 return; 1336 return;
1337 1337
1338 QDir dir( dr ); 1338 QDir dir( dr );
1339 1339
1340 /* Opie got a different approach 1340 /* Opie got a different approach
1341 * I guess it's geek vs. consumer 1341 * I guess it's geek vs. consumer
1342 * in this case to be discussed 1342 * in this case to be discussed
1343 */ 1343 */
1344 if ( dir.exists( ".Qtopia-ignore" ) ) 1344 if ( dir.exists( ".Qtopia-ignore" ) )
1345 return; 1345 return;
1346 1346
1347 const QFileInfoList *list = dir.entryInfoList(); 1347 const QFileInfoList *list = dir.entryInfoList();
1348 if ( list ) { 1348 if ( list ) {
1349 QFileInfo* fi; 1349 QFileInfo* fi;
1350 for ( QFileInfoListIterator it(*list); (fi=*it); ++it ) { 1350 for ( QFileInfoListIterator it(*list); (fi=*it); ++it ) {
1351 QString bn = fi->fileName(); 1351 QString bn = fi->fileName();
1352 if ( bn[0] != '.' ) { 1352 if ( bn[0] != '.' ) {
1353 if ( fi->isDir() ) { 1353 if ( fi->isDir() ) {
1354 if ( bn != "CVS" && bn != "Qtopia" && bn != "QtPalmtop" ) 1354 if ( bn != "CVS" && bn != "Qtopia" && bn != "QtPalmtop" )
1355 findChildren(fi->filePath(), mimeFilters, reference, depth); 1355 findChildren(fi->filePath(), mimeFilters, reference, depth);
1356 } else { 1356 } else {
1357 if ( fi->extension(FALSE) == "desktop" ) { 1357 if ( fi->extension(FALSE) == "desktop" ) {
1358 DocLnk* dl = new DocLnk( fi->filePath() ); 1358 DocLnk* dl = new DocLnk( fi->filePath() );
1359 QFileInfo fi2(dl->file()); 1359 QFileInfo fi2(dl->file());
1360 bool match = FALSE; 1360 bool match = FALSE;
1361 if ( !fi2.exists() ) { 1361 if ( !fi2.exists() ) {
1362 dir.remove( dl->file() ); 1362 dir.remove( dl->file() );
1363 } 1363 }
1364 if ( mimeFilters.count() == 0 ) { 1364 if ( mimeFilters.count() == 0 ) {
1365 add( dl ); 1365 add( dl );
1366 match = TRUE; 1366 match = TRUE;
1367 } else { 1367 } else {
1368 for( QValueList<QRegExp>::ConstIterator it = mimeFilters.begin(); it != mimeFilters.end(); ++ it ) { 1368 for( QValueList<QRegExp>::ConstIterator it = mimeFilters.begin(); it != mimeFilters.end(); ++ it ) {
1369 if ( (*it).match(dl->type()) >= 0 ) { 1369 if ( (*it).match(dl->type()) >= 0 ) {
1370 add(dl); 1370 add(dl);
1371 match = TRUE; 1371 match = TRUE;
1372 } 1372 }
1373 } 1373 }
1374 } 1374 }
1375 if ( !match ) 1375 if ( !match )
diff --git a/library/mimetype.cpp b/library/mimetype.cpp
index 23de70b..ec45794 100644
--- a/library/mimetype.cpp
+++ b/library/mimetype.cpp
@@ -18,349 +18,353 @@
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21#define QTOPIA_INTERNAL_MIMEEXT 21#define QTOPIA_INTERNAL_MIMEEXT
22#include "mimetype.h" 22#include "mimetype.h"
23#include "applnk.h" 23#include "applnk.h"
24#include "resource.h" 24#include "resource.h"
25#include <qpe/qpeapplication.h> 25#include <qpe/qpeapplication.h>
26#include "config.h" 26#include "config.h"
27 27
28#include <qfile.h> 28#include <qfile.h>
29#include <qtextstream.h> 29#include <qtextstream.h>
30 30
31 31
32static void cleanupMime() 32static void cleanupMime()
33{ 33{
34 MimeType::clear(); 34 MimeType::clear();
35} 35}
36 36
37class MimeTypeData { 37class MimeTypeData {
38public: 38public:
39 MimeTypeData(const QString& i) : 39 MimeTypeData(const QString& i) :
40 id(i) 40 id(i)
41 { 41 {
42 apps.setAutoDelete(TRUE); 42 apps.setAutoDelete(TRUE);
43 } 43 }
44 QString id; 44 QString id;
45 QString extension; 45 QString extension;
46 QList<AppLnk> apps; 46 QList<AppLnk> apps;
47 47
48 QString description() 48 QString description()
49 { 49 {
50 if ( desc.isEmpty() ) 50 if ( desc.isEmpty() )
51 desc = QPEApplication::tr("%1 document").arg(apps.first()->name()); 51 desc = QPEApplication::tr("%1 document").arg(apps.first()->name());
52 return desc; 52 return desc;
53 } 53 }
54 54
55 QPixmap regIcon() 55 QPixmap regIcon()
56 { 56 {
57 if ( regicon.isNull() ) 57 if ( regicon.isNull() )
58 loadPixmaps(); 58 loadPixmaps();
59 return regicon; 59 return regicon;
60 } 60 }
61 61
62 QPixmap bigIcon() 62 QPixmap bigIcon()
63 { 63 {
64 if ( bigicon.isNull() ) 64 if ( bigicon.isNull() )
65 loadPixmaps(); 65 loadPixmaps();
66 return bigicon; 66 return bigicon;
67 } 67 }
68 68
69private: 69private:
70 void loadPixmaps() 70 void loadPixmaps()
71 { 71 {
72 if ( apps.count() ) { 72 if ( apps.count() ) {
73 QString icon; 73 QString icon;
74 for (AppLnk* lnk = apps.first(); icon.isNull() && lnk; lnk=apps.next()) { 74 for (AppLnk* lnk = apps.first(); icon.isNull() && lnk; lnk=apps.next()) {
75 QStringList icons = lnk->mimeTypeIcons(); 75 QStringList icons = lnk->mimeTypeIcons();
76 if ( icons.count() ) { 76 if ( icons.count() ) {
77 QStringList types = lnk->mimeTypes(); 77 QStringList types = lnk->mimeTypes();
78 for (QStringList::ConstIterator t=types.begin(),i=icons.begin(); t!=types.end() && i!=icons.end(); ++i,++t) { 78 for (QStringList::ConstIterator t=types.begin(),i=icons.begin(); t!=types.end() && i!=icons.end(); ++i,++t) {
79 if ( *t == id ) { 79 if ( *t == id ) {
80 icon = *i; 80 icon = *i;
81 break; 81 break;
82 } 82 }
83 } 83 }
84 } 84 }
85 } 85 }
86 if ( icon.isNull() ) { 86 if ( icon.isNull() ) {
87 AppLnk* lnk = apps.first(); 87 AppLnk* lnk = apps.first();
88 regicon = lnk->pixmap(); 88 regicon = lnk->pixmap();
89 bigicon = lnk->bigPixmap(); 89 bigicon = lnk->bigPixmap();
90 } else { 90 } else {
91 QImage unscaledIcon = Resource::loadImage( icon ); 91 QImage unscaledIcon = Resource::loadImage( icon );
92 regicon.convertFromImage( unscaledIcon.smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); 92 regicon.convertFromImage( unscaledIcon.smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) );
93 bigicon.convertFromImage( unscaledIcon.smoothScale( AppLnk::bigIconSize(), AppLnk::bigIconSize() ) ); 93 bigicon.convertFromImage( unscaledIcon.smoothScale( AppLnk::bigIconSize(), AppLnk::bigIconSize() ) );
94 } 94 }
95 } 95 }
96 } 96 }
97 97
98 QPixmap regicon; 98 QPixmap regicon;
99 QPixmap bigicon; 99 QPixmap bigicon;
100 QString desc; 100 QString desc;
101}; 101};
102 102
103class MimeType::Private : public QDict<MimeTypeData> { 103class MimeType::Private : public QDict<MimeTypeData> {
104public: 104public:
105 Private() {} 105 Private() {}
106 ~Private() {} 106 ~Private() {}
107 107
108 // ... 108 // ...
109}; 109};
110 110
111MimeType::Private* MimeType::d=0; 111MimeType::Private* MimeType::d=0;
112static QMap<QString,QString> *typeFor = 0; 112static QMap<QString,QString> *typeFor = 0;
113static QMap<QString,QStringList> *extFor = 0; 113static QMap<QString,QStringList> *extFor = 0;
114static bool appsUpdated = FALSE;
114 115
115MimeType::Private& MimeType::data() 116MimeType::Private& MimeType::data()
116{ 117{
117 if ( !d ) { 118 if ( !d ) {
118 d = new Private; 119 d = new Private;
119 d->setAutoDelete(TRUE); 120 d->setAutoDelete(TRUE);
120 static bool setCleanup = FALSE; 121 static bool setCleanup = FALSE;
121 if ( !setCleanup ) { 122 if ( !setCleanup ) {
122 qAddPostRoutine( cleanupMime ); 123 qAddPostRoutine( cleanupMime );
123 setCleanup = TRUE; 124 setCleanup = TRUE;
124 } 125 }
125 } 126 }
126 return *d; 127 return *d;
127} 128}
128 129
129/*! 130/*!
130 \class MimeType mimetype.h 131 \class MimeType mimetype.h
131 \brief The MimeType class provides MIME type information. 132 \brief The MimeType class provides MIME type information.
132 133
133 A MimeType object is a light-weight value which 134 A MimeType object is a light-weight value which
134 provides information about a MIME type. 135 provides information about a MIME type.
135 136
136 \ingroup qtopiaemb 137 \ingroup qtopiaemb
137*/ 138*/
138 139
139/*! 140/*!
140 Constructs a MimeType. 141 Constructs a MimeType.
141 Normally, \a ext_or_id is a MIME type, 142 Normally, \a ext_or_id is a MIME type,
142 but if \a ext_or_id starts with / or contains no /, 143 but if \a ext_or_id starts with / or contains no /,
143 it is interpretted as a filename and the 144 it is interpretted as a filename and the
144 extension (eg. .txt) is used as the 145 extension (eg. .txt) is used as the
145 MIME type. 146 MIME type.
146*/ 147*/
147MimeType::MimeType( const QString& ext_or_id ) 148MimeType::MimeType( const QString& ext_or_id )
148{ 149{
149 init(ext_or_id); 150 init(ext_or_id);
150} 151}
151 152
152/*! 153/*!
153 Constructs a MimeType from the type() of \a lnk. 154 Constructs a MimeType from the type() of \a lnk.
154*/ 155*/
155MimeType::MimeType( const DocLnk& lnk ) 156MimeType::MimeType( const DocLnk& lnk )
156{ 157{
157 init(lnk.type()); 158 init(lnk.type());
158} 159}
159 160
160/*! 161/*!
161 Returns the MIME type identifier. 162 Returns the MIME type identifier.
162*/ 163*/
163QString MimeType::id() const 164QString MimeType::id() const
164{ 165{
165 return i; 166 return i;
166} 167}
167 168
168/*! 169/*!
169 Returns a description of the MIME Type. This is usually based 170 Returns a description of the MIME Type. This is usually based
170 on the application() associated with the type. 171 on the application() associated with the type.
171*/ 172*/
172QString MimeType::description() const 173QString MimeType::description() const
173{ 174{
174 MimeTypeData* d = data(i); 175 MimeTypeData* d = data(i);
175 return d ? d->description() : QString::null; 176 return d ? d->description() : QString::null;
176} 177}
177 178
178/*! 179/*!
179 Returns a small QPixmap appropriate for the MIME type. 180 Returns a small QPixmap appropriate for the MIME type.
180*/ 181*/
181QPixmap MimeType::pixmap() const 182QPixmap MimeType::pixmap() const
182{ 183{
183 MimeTypeData* d = data(i); 184 MimeTypeData* d = data(i);
184 return d ? d->regIcon() : QPixmap(); 185 return d ? d->regIcon() : QPixmap();
185} 186}
186 187
187/*! 188/*!
188 \internal 189 \internal
189 This function is not generally available. 190 This function is not generally available.
190*/ 191*/
191QString MimeType::extension() const 192QString MimeType::extension() const
192{ 193{
193 return extensions().first(); 194 return extensions().first();
194} 195}
195 196
196 197
197/*! 198/*!
198 \internal 199 \internal
199 This function is not generally available. 200 This function is not generally available.
200*/ 201*/
201QStringList MimeType::extensions() const 202QStringList MimeType::extensions() const
202{ 203{
203 loadExtensions(); 204 loadExtensions();
204 return *(*extFor).find(i); 205 return *(*extFor).find(i);
205} 206}
206 207
207/*! 208/*!
208 Returns a larger QPixmap appropriate for the MIME type. 209 Returns a larger QPixmap appropriate for the MIME type.
209*/ 210*/
210QPixmap MimeType::bigPixmap() const 211QPixmap MimeType::bigPixmap() const
211{ 212{
212 MimeTypeData* d = data(i); 213 MimeTypeData* d = data(i);
213 return d ? d->bigIcon() : QPixmap(); 214 return d ? d->bigIcon() : QPixmap();
214} 215}
215 216
216/*! 217/*!
217 Returns the AppLnk defining the application associated 218 Returns the AppLnk defining the application associated
218 with this MIME type, or 0 if none is associated. 219 with this MIME type, or 0 if none is associated.
219 220
220 The caller must not retain the pointer, 221 The caller must not retain the pointer,
221 but of course you can dereference it to take a copy if needed. 222 but of course you can dereference it to take a copy if needed.
222 223
223 \sa Service::binding() 224 \sa Service::binding()
224*/ 225*/
225const AppLnk* MimeType::application() const 226const AppLnk* MimeType::application() const
226{ 227{
227 MimeTypeData* d = data(i); 228 MimeTypeData* d = data(i);
228 return d ? d->apps.first() : 0; 229 return d ? d->apps.first() : 0;
229} 230}
230 231
231static QString serviceBinding(const QString& service) 232static QString serviceBinding(const QString& service)
232{ 233{
233 // Copied from qtopiaservices 234 // Copied from qtopiaservices
234 QString svrc = service; 235 QString svrc = service;
235 for (int i=0; i<(int)svrc.length(); i++) 236 for (int i=0; i<(int)svrc.length(); i++)
236 if ( svrc[i]=='/' ) svrc[i] = '-'; 237 if ( svrc[i]=='/' ) svrc[i] = '-';
237 return "Service-"+svrc; 238 return "Service-"+svrc;
238} 239}
239 240
240/*! 241/*!
241 \internal 242 \internal
242*/ 243*/
243void MimeType::registerApp( const AppLnk& lnk ) 244void MimeType::registerApp( const AppLnk& lnk )
244{ 245{
245 QStringList list = lnk.mimeTypes(); 246 QStringList list = lnk.mimeTypes();
246 for (QStringList::ConstIterator it = list.begin(); it != list.end(); ++it) { 247 for (QStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
247 MimeTypeData* cur = data()[*it]; 248 MimeTypeData* cur = data()[*it];
248 AppLnk* l = new AppLnk(lnk); 249 AppLnk* l = new AppLnk(lnk);
249 if ( !cur ) { 250 if ( !cur ) {
250 cur = new MimeTypeData( *it ); 251 cur = new MimeTypeData( *it );
251 data().insert( *it, cur ); 252 data().insert( *it, cur );
252 cur->apps.append(l); 253 cur->apps.append(l);
253 } else if ( cur->apps.count() ) { 254 } else if ( cur->apps.count() ) {
254 Config binding(serviceBinding("Open/"+*it)); 255 Config binding(serviceBinding("Open/"+*it));
255 binding.setGroup("Service"); 256 binding.setGroup("Service");
256 QString def = binding.readEntry("default"); 257 QString def = binding.readEntry("default");
257 if ( l->exec() == def ) 258 if ( l->exec() == def )
258 cur->apps.prepend(l); 259 cur->apps.prepend(l);
259 else 260 else
260 cur->apps.append(l); 261 cur->apps.append(l);
261 } else { 262 } else {
262 cur->apps.append(l); 263 cur->apps.append(l);
263 } 264 }
264 } 265 }
265} 266}
266 267
267/*! 268/*!
268 \internal 269 \internal
269*/ 270*/
270void MimeType::clear() 271void MimeType::clear()
271{ 272{
272 delete d; 273 delete d;
273 d = 0; 274 d = 0;
275 delete typeFor; typeFor = 0;
276 delete extFor ; extFor = 0;
277 appsUpdated = FALSE;
274} 278}
275 279
276void MimeType::loadExtensions() 280void MimeType::loadExtensions()
277{ 281{
278 if ( !typeFor ) { 282 if ( !typeFor ) {
279 extFor = new QMap<QString,QStringList>; 283 extFor = new QMap<QString,QStringList>;
280 typeFor = new QMap<QString,QString>; 284 typeFor = new QMap<QString,QString>;
281 loadExtensions("/etc/mime.types"); 285 loadExtensions("/etc/mime.types");
282 loadExtensions(QPEApplication::qpeDir()+"etc/mime.types"); 286 loadExtensions(QPEApplication::qpeDir()+"etc/mime.types");
283 } 287 }
284} 288}
285 289
286void MimeType::loadExtensions(const QString& filename) 290void MimeType::loadExtensions(const QString& filename)
287{ 291{
288 QFile file(filename); 292 QFile file(filename);
289 if ( file.open(IO_ReadOnly) ) { 293 if ( file.open(IO_ReadOnly) ) {
290 QTextStream in(&file); 294 QTextStream in(&file);
291 QRegExp space("[ \t]+"); 295 QRegExp space("[ \t]+");
292 while (!in.atEnd()) { 296 while (!in.atEnd()) {
293 QStringList tokens = QStringList::split(space, in.readLine()); 297 QStringList tokens = QStringList::split(space, in.readLine());
294 QStringList::ConstIterator it = tokens.begin(); 298 QStringList::ConstIterator it = tokens.begin();
295 if ( it != tokens.end() ) { 299 if ( it != tokens.end() ) {
296 QString id = *it; ++it; 300 QString id = *it; ++it;
297 // new override old (though left overrides right) 301 // new override old (though left overrides right)
298 QStringList exts = (*extFor)[id]; 302 QStringList exts = (*extFor)[id];
299 QStringList newexts; 303 QStringList newexts;
300 while ( it != tokens.end() ) { 304 while ( it != tokens.end() ) {
301 exts.remove(*it); 305 exts.remove(*it);
302 if ( !newexts.contains(*it) ) 306 if ( !newexts.contains(*it) )
303 newexts.append(*it); 307 newexts.append(*it);
304 (*typeFor)[*it] = id; 308 (*typeFor)[*it] = id;
305 ++it; 309 ++it;
306 } 310 }
307 (*extFor)[id] = newexts + exts; 311 (*extFor)[id] = newexts + exts;
308 } 312 }
309 } 313 }
310 } 314 }
311} 315}
312 316
313void MimeType::init( const QString& ext_or_id ) 317void MimeType::init( const QString& ext_or_id )
314{ 318{
315 if ( ext_or_id[0] != '/' && ext_or_id.contains('/') ) { 319 if ( ext_or_id[0] != '/' && ext_or_id.contains('/') ) {
316 i = ext_or_id.lower(); 320 i = ext_or_id.lower();
317 } else { 321 } else {
318 loadExtensions(); 322 loadExtensions();
319 int dot = ext_or_id.findRev('.'); 323 int dot = ext_or_id.findRev('.');
320 QString ext = dot >= 0 ? ext_or_id.mid(dot+1) : ext_or_id; 324 QString ext = dot >= 0 ? ext_or_id.mid(dot+1) : ext_or_id;
321 i = (*typeFor)[ext.lower()]; 325 i = (*typeFor)[ext.lower()];
322 if ( i.isNull() ) 326 if ( i.isNull() )
323 i = "application/octet-stream"; 327 i = "application/octet-stream";
324 } 328 }
325 static bool appsUpdated = FALSE; 329
326 if ( !appsUpdated ) { 330 if ( !appsUpdated ) {
327 appsUpdated = TRUE;
328 updateApplications(); 331 updateApplications();
329 } 332 }
330} 333}
331 334
332MimeTypeData* MimeType::data(const QString& id) 335MimeTypeData* MimeType::data(const QString& id)
333{ 336{
334 MimeTypeData* d = data()[id]; 337 MimeTypeData* d = data()[id];
335 if ( !d ) { 338 if ( !d ) {
336 int s = id.find('/'); 339 int s = id.find('/');
337 QString idw = id.left(s)+"/*"; 340 QString idw = id.left(s)+"/*";
338 d = data()[idw]; 341 d = data()[idw];
339 } 342 }
340 return d; 343 return d;
341} 344}
342 345
343/*! 346/*!
344 Returns a Qtopia folder containing application definitions. 347 Returns a Qtopia folder containing application definitions.
345*/ 348*/
346QString MimeType::appsFolderName() 349QString MimeType::appsFolderName()
347{ 350{
348 return QPEApplication::qpeDir() + "apps"; 351 return QPEApplication::qpeDir() + "apps";
349} 352}
350 353
351/*! 354/*!
352 Reloads application definitions. 355 Reloads application definitions.
353*/ 356*/
354void MimeType::updateApplications() 357void MimeType::updateApplications()
355{ 358{
356 clear(); 359// clear();
360 appsUpdated = true;
357 AppLnkSet apps( appsFolderName() ); 361 AppLnkSet apps( appsFolderName() );
358 updateApplications(&apps); 362 updateApplications(&apps);
359} 363}
360 364
361void MimeType::updateApplications(AppLnkSet* folder) 365void MimeType::updateApplications(AppLnkSet* folder)
362{ 366{
363 for ( QListIterator<AppLnk> it( folder->children() ); it.current(); ++it ) { 367 for ( QListIterator<AppLnk> it( folder->children() ); it.current(); ++it ) {
364 registerApp(*it.current()); 368 registerApp(*it.current());
365 } 369 }
366} 370}