summaryrefslogtreecommitdiff
authoralwin <alwin>2004-02-21 23:05:04 (UTC)
committer alwin <alwin>2004-02-21 23:05:04 (UTC)
commit4cfad0d1331a5e3adc8bc2599783750875e6fd2b (patch) (unidiff)
treefda9d83c9cdf75a1340f3465460b5fe86009ac02
parent51c51fef13a91b263acba430faaa3332bf145343 (diff)
downloadopie-4cfad0d1331a5e3adc8bc2599783750875e6fd2b.zip
opie-4cfad0d1331a5e3adc8bc2599783750875e6fd2b.tar.gz
opie-4cfad0d1331a5e3adc8bc2599783750875e6fd2b.tar.bz2
on removable medias take a look into .opiestorage.cf and read the list
of subdirs of the media where to search for documents. If this value isn't set, it will reduce search to FS+"/Documents" so not the whole media is searched. ToDo: Work on mediummount so users can set this values.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--library/global.cpp21
1 files changed, 15 insertions, 6 deletions
diff --git a/library/global.cpp b/library/global.cpp
index 05d23ac..6c0a66a 100644
--- a/library/global.cpp
+++ b/library/global.cpp
@@ -1,124 +1,125 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. 2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of the Qtopia Environment. 4** This file is part of the Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20#define QTOPIA_INTERNAL_LANGLIST 20#define QTOPIA_INTERNAL_LANGLIST
21#include <qpe/qpedebug.h> 21#include <qpe/qpedebug.h>
22#include <qpe/global.h> 22#include <qpe/global.h>
23#include <qpe/qdawg.h> 23#include <qpe/qdawg.h>
24#include <qpe/qpeapplication.h> 24#include <qpe/qpeapplication.h>
25#include <qpe/resource.h> 25#include <qpe/resource.h>
26#include <qpe/storage.h> 26#include <qpe/storage.h>
27#include <qpe/applnk.h> 27#include <qpe/applnk.h>
28#include <qpe/qcopenvelope_qws.h> 28#include <qpe/qcopenvelope_qws.h>
29#include <qpe/config.h>
29 30
30#include <qfile.h> 31#include <qfile.h>
31#include <qlabel.h> 32#include <qlabel.h>
32#include <qtimer.h> 33#include <qtimer.h>
33#include <qmap.h> 34#include <qmap.h>
34#include <qdict.h> 35#include <qdict.h>
35#include <qdir.h> 36#include <qdir.h>
36#include <qmessagebox.h> 37#include <qmessagebox.h>
37#include <qregexp.h> 38#include <qregexp.h>
38 39
39#include <stdlib.h> 40#include <stdlib.h>
40#include <sys/stat.h> 41#include <sys/stat.h>
41#include <sys/wait.h> 42#include <sys/wait.h>
42#include <sys/types.h> 43#include <sys/types.h>
43#include <fcntl.h> 44#include <fcntl.h>
44#include <unistd.h> 45#include <unistd.h>
45#include <errno.h> 46#include <errno.h>
46 47
47#include <qwindowsystem_qws.h> // for qwsServer 48#include <qwindowsystem_qws.h> // for qwsServer
48#include <qdatetime.h> 49#include <qdatetime.h>
49 50
50#include <qfile.h> 51#include <qfile.h>
51 52
52namespace { 53namespace {
53 // checks if the storage should be searched 54 // checks if the storage should be searched
54 bool checkStorage(const QString &path ){ // this is a small Config replacement cause config is too limited -zecke 55 bool checkStorage(const QString &path ){ // this is a small Config replacement cause config is too limited -zecke
55 QFile file(path ); 56 QFile file(path );
56 if(!file.open(IO_ReadOnly ) ) 57 if(!file.open(IO_ReadOnly ) )
57 return true; 58 return true;
58 59
59 QByteArray array = file.readAll(); 60 QByteArray array = file.readAll();
60 QStringList list = QStringList::split('\n', QString( array ) ); 61 QStringList list = QStringList::split('\n', QString( array ) );
61 for(QStringList::Iterator it = list.begin(); it != list.end(); ++it ){ 62 for(QStringList::Iterator it = list.begin(); it != list.end(); ++it ){
62 if( (*it).startsWith("autocheck = 0" ) ){ 63 if( (*it).startsWith("autocheck = 0" ) ){
63 return false; 64 return false;
64 }else if( (*it).startsWith("autocheck = 1" ) ){ 65 }else if( (*it).startsWith("autocheck = 1" ) ){
65 return true; 66 return true;
66 } 67 }
67 } 68 }
68 return true; 69 return true;
69 } 70 }
70} 71}
71 72
72//#include "quickexec_p.h" 73//#include "quickexec_p.h"
73 74
74class Emitter : public QObject { 75class Emitter : public QObject {
75 Q_OBJECT 76 Q_OBJECT
76public: 77public:
77 Emitter( QWidget* receiver, const QString& document ) 78 Emitter( QWidget* receiver, const QString& document )
78 { 79 {
79 connect(this, SIGNAL(setDocument(const QString&)), 80 connect(this, SIGNAL(setDocument(const QString&)),
80 receiver, SLOT(setDocument(const QString&))); 81 receiver, SLOT(setDocument(const QString&)));
81 emit setDocument(document); 82 emit setDocument(document);
82 disconnect(this, SIGNAL(setDocument(const QString&)), 83 disconnect(this, SIGNAL(setDocument(const QString&)),
83 receiver, SLOT(setDocument(const QString&))); 84 receiver, SLOT(setDocument(const QString&)));
84 } 85 }
85 86
86signals: 87signals:
87 void setDocument(const QString&); 88 void setDocument(const QString&);
88}; 89};
89 90
90 91
91class StartingAppList : public QObject { 92class StartingAppList : public QObject {
92 Q_OBJECT 93 Q_OBJECT
93public: 94public:
94 static void add( const QString& name ); 95 static void add( const QString& name );
95 static bool isStarting( const QString name ); 96 static bool isStarting( const QString name );
96private slots: 97private slots:
97 void handleNewChannel( const QString &); 98 void handleNewChannel( const QString &);
98private: 99private:
99 StartingAppList( QObject *parent=0, const char* name=0 ) ; 100 StartingAppList( QObject *parent=0, const char* name=0 ) ;
100 101
101 QDict<QTime> dict; 102 QDict<QTime> dict;
102 static StartingAppList *appl; 103 static StartingAppList *appl;
103}; 104};
104 105
105StartingAppList* StartingAppList::appl = 0; 106StartingAppList* StartingAppList::appl = 0;
106 107
107StartingAppList::StartingAppList( QObject *parent, const char* name ) 108StartingAppList::StartingAppList( QObject *parent, const char* name )
108 :QObject( parent, name ) 109 :QObject( parent, name )
109{ 110{
110#if QT_VERSION >= 232 && defined(QWS) 111#if QT_VERSION >= 232 && defined(QWS)
111 connect( qwsServer, SIGNAL( newChannel(const QString&)), 112 connect( qwsServer, SIGNAL( newChannel(const QString&)),
112 this, SLOT( handleNewChannel(const QString&)) ); 113 this, SLOT( handleNewChannel(const QString&)) );
113#endif 114#endif
114 dict.setAutoDelete( TRUE ); 115 dict.setAutoDelete( TRUE );
115} 116}
116 117
117void StartingAppList::add( const QString& name ) 118void StartingAppList::add( const QString& name )
118{ 119{
119#if QT_VERSION >= 232 && !defined(QT_NO_COP) 120#if QT_VERSION >= 232 && !defined(QT_NO_COP)
120 if ( !appl ) 121 if ( !appl )
121 appl = new StartingAppList; 122 appl = new StartingAppList;
122 QTime *t = new QTime; 123 QTime *t = new QTime;
123 t->start(); 124 t->start();
124 appl->dict.insert( "QPE/Application/" + name, t ); 125 appl->dict.insert( "QPE/Application/" + name, t );
@@ -673,146 +674,154 @@ void Global::invoke(const QString &c)
673} 674}
674 675
675 676
676/*! 677/*!
677 Executes the application identfied by \a c, passing \a 678 Executes the application identfied by \a c, passing \a
678 document if it isn't null. 679 document if it isn't null.
679 680
680 Note that a better approach might be to send a QCop message to the 681 Note that a better approach might be to send a QCop message to the
681 application's QPE/Application/\e{appname} channel. 682 application's QPE/Application/\e{appname} channel.
682*/ 683*/
683void Global::execute( const QString &c, const QString& document ) 684void Global::execute( const QString &c, const QString& document )
684{ 685{
685 // ask the server to do the work 686 // ask the server to do the work
686#if !defined(QT_NO_COP) 687#if !defined(QT_NO_COP)
687 if ( document.isNull() ) { 688 if ( document.isNull() ) {
688 QCopEnvelope e( "QPE/System", "execute(QString)" ); 689 QCopEnvelope e( "QPE/System", "execute(QString)" );
689 e << c; 690 e << c;
690 } else { 691 } else {
691 QCopEnvelope e( "QPE/System", "execute(QString,QString)" ); 692 QCopEnvelope e( "QPE/System", "execute(QString,QString)" );
692 e << c << document; 693 e << c << document;
693 } 694 }
694#endif 695#endif
695 return; 696 return;
696} 697}
697 698
698/*! 699/*!
699 Returns the string \a s with the characters '\', '"', and '$' quoted 700 Returns the string \a s with the characters '\', '"', and '$' quoted
700 by a preceeding '\'. 701 by a preceeding '\'.
701 702
702 \sa stringQuote() 703 \sa stringQuote()
703*/ 704*/
704QString Global::shellQuote(const QString& s) 705QString Global::shellQuote(const QString& s)
705{ 706{
706 QString r="\""; 707 QString r="\"";
707 for (int i=0; i<(int)s.length(); i++) { 708 for (int i=0; i<(int)s.length(); i++) {
708 char c = s[i].latin1(); 709 char c = s[i].latin1();
709 switch (c) { 710 switch (c) {
710 case '\\': case '"': case '$': 711 case '\\': case '"': case '$':
711 r+="\\"; 712 r+="\\";
712 } 713 }
713 r += s[i]; 714 r += s[i];
714 } 715 }
715 r += "\""; 716 r += "\"";
716 return r; 717 return r;
717} 718}
718 719
719/*! 720/*!
720 Returns the string \a s with the characters '\' and '"' quoted by a 721 Returns the string \a s with the characters '\' and '"' quoted by a
721 preceeding '\'. 722 preceeding '\'.
722 723
723 \sa shellQuote() 724 \sa shellQuote()
724*/ 725*/
725QString Global::stringQuote(const QString& s) 726QString Global::stringQuote(const QString& s)
726{ 727{
727 QString r="\""; 728 QString r="\"";
728 for (int i=0; i<(int)s.length(); i++) { 729 for (int i=0; i<(int)s.length(); i++) {
729 char c = s[i].latin1(); 730 char c = s[i].latin1();
730 switch (c) { 731 switch (c) {
731 case '\\': case '"': 732 case '\\': case '"':
732 r+="\\"; 733 r+="\\";
733 } 734 }
734 r += s[i]; 735 r += s[i];
735 } 736 }
736 r += "\""; 737 r += "\"";
737 return r; 738 return r;
738} 739}
739 740
740/*! 741/*!
741 Finds all documents on the system's document directories which 742 Finds all documents on the system's document directories which
742 match the filter \a mimefilter, and appends the resulting DocLnk 743 match the filter \a mimefilter, and appends the resulting DocLnk
743 objects to \a folder. 744 objects to \a folder.
744*/ 745*/
745void Global::findDocuments(DocLnkSet* folder, const QString &mimefilter) 746void Global::findDocuments(DocLnkSet* folder, const QString &mimefilter)
746{ 747{
747 QString homedocs = QString(getenv("HOME")) + "/Documents"; 748 QString homedocs = QString(getenv("HOME")) + "/Documents";
748 DocLnkSet d(homedocs,mimefilter); 749 DocLnkSet d(homedocs,mimefilter);
749 folder->appendFrom(d); 750 folder->appendFrom(d);
750 /** let's do intellegint way of searching these files 751 /** let's do intellegint way of searching these files
751 * a) the user don't want to check mediums global 752 * a) the user don't want to check mediums global
752 * b) the user wants to check but use the global options for it 753 * b) the user wants to check but use the global options for it
753 * c) the user wants to check it but not this medium 754 * c) the user wants to check it but not this medium
754 * d) the user wants to check and this medium as well 755 * d) the user wants to check and this medium as well
755 * 756 *
756 * In all cases we need to apply a different mimefilter to 757 * In all cases we need to apply a different mimefilter to
757 * the medium. 758 * the medium.
758 * a) mimefilter.isEmpty() we need to apply the responding filter 759 * a) mimefilter.isEmpty() we need to apply the responding filter
759 * either the global or the one on the medium 760 * either the global or the one on the medium
760 * 761 *
761 * b) mimefilter is set to an application we need to find out if the 762 * b) mimefilter is set to an application we need to find out if the
762 * mimetypes are included in the mime mask of the medium 763 * mimetypes are included in the mime mask of the medium
763 */ 764 */
764 StorageInfo storage; 765 StorageInfo storage;
765 const QList<FileSystem> &fs = storage.fileSystems(); 766 const QList<FileSystem> &fs = storage.fileSystems();
766 QListIterator<FileSystem> it ( fs ); 767 QListIterator<FileSystem> it ( fs );
767 for ( ; it.current(); ++it ) { 768 for ( ; it.current(); ++it ) {
768 if ( (*it)->isRemovable() ) { // let's find out if we should search on it 769 if ( (*it)->isRemovable() ) { // let's find out if we should search on it
769 // this is a candidate look at the cf and see if we should search on it 770 // this is a candidate look at the cf and see if we should search on it
770 QString path = (*it)->path(); 771 QString path = (*it)->path();
771 if( !checkStorage((*it)->path() + "/.opiestorage.cf" ) ) 772 if( !checkStorage((*it)->path() + "/.opiestorage.cf" ) )
772 continue; 773 continue;
773 DocLnkSet ide( path, mimefilter ); 774 Config conf((*it)->path() + "/.opiestorage.cf", Config::File );
774 folder->appendFrom(ide); 775 conf.setGroup("subdirs");
776 QStringList subDirs = conf.readListEntry("subdirs",':');
777 if (subDirs.isEmpty()) {
778 subDirs.append("Documents");
779 }
780 for (unsigned c = 0; c < subDirs.count();++c) {
781 DocLnkSet ide( path+"/"+subDirs[c], mimefilter );
782 folder->appendFrom(ide);
783 }
775 } else if ( (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs" ) { 784 } else if ( (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs" ) {
776 QString path = (*it)->path() + "/Documents"; 785 QString path = (*it)->path() + "/Documents";
777 DocLnkSet ide( path, mimefilter ); 786 DocLnkSet ide( path, mimefilter );
778 folder->appendFrom(ide); 787 folder->appendFrom(ide);
779 } 788 }
780 } 789 }
781} 790}
782 791
783QStringList Global::languageList() 792QStringList Global::languageList()
784{ 793{
785 QString lang = getenv("LANG"); 794 QString lang = getenv("LANG");
786 QStringList langs; 795 QStringList langs;
787 langs.append(lang); 796 langs.append(lang);
788 int i = lang.find("."); 797 int i = lang.find(".");
789 if ( i > 0 ) 798 if ( i > 0 )
790 lang = lang.left( i ); 799 lang = lang.left( i );
791 i = lang.find( "_" ); 800 i = lang.find( "_" );
792 if ( i > 0 ) 801 if ( i > 0 )
793 langs.append(lang.left(i)); 802 langs.append(lang.left(i));
794 return langs; 803 return langs;
795} 804}
796 805
797QStringList Global::helpPath() 806QStringList Global::helpPath()
798{ 807{
799 QString qpeDir = QPEApplication::qpeDir(); 808 QString qpeDir = QPEApplication::qpeDir();
800 QStringList path; 809 QStringList path;
801 QStringList langs = Global::languageList(); 810 QStringList langs = Global::languageList();
802 for (QStringList::ConstIterator it = langs.fromLast(); it!=langs.end(); --it) { 811 for (QStringList::ConstIterator it = langs.fromLast(); it!=langs.end(); --it) {
803 QString lang = *it; 812 QString lang = *it;
804 if ( !lang.isEmpty() ) 813 if ( !lang.isEmpty() )
805 path += qpeDir + "/help/" + lang + "/html"; 814 path += qpeDir + "/help/" + lang + "/html";
806 } 815 }
807 path += qpeDir + "/pics"; 816 path += qpeDir + "/pics";
808 path += qpeDir + "/help/html"; 817 path += qpeDir + "/help/html";
809 /* we even put english into the en dir so try it as fallback as well for opie */ 818 /* we even put english into the en dir so try it as fallback as well for opie */
810 path += qpeDir + "/help/en/html"; 819 path += qpeDir + "/help/en/html";
811 path += qpeDir + "/docs"; 820 path += qpeDir + "/docs";
812 821
813 822
814 return path; 823 return path;
815} 824}
816 825
817 826
818#include "global.moc" 827#include "global.moc"