summaryrefslogtreecommitdiff
path: root/library/config.cpp
Unidiff
Diffstat (limited to 'library/config.cpp') (more/less context) (show whitespace changes)
-rw-r--r--library/config.cpp195
1 files changed, 195 insertions, 0 deletions
diff --git a/library/config.cpp b/library/config.cpp
index bdfcb3f..f68c336 100644
--- a/library/config.cpp
+++ b/library/config.cpp
@@ -18,26 +18,28 @@
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21#include <qdir.h> 21#include <qdir.h>
22#include <qmessagebox.h> 22#include <qmessagebox.h>
23#if QT_VERSION <= 230 && defined(QT_NO_CODECS) 23#if QT_VERSION <= 230 && defined(QT_NO_CODECS)
24#include <qtextcodec.h> 24#include <qtextcodec.h>
25#endif 25#endif
26#include <qtextstream.h> 26#include <qtextstream.h>
27 27
28#include <sys/stat.h> 28#include <sys/stat.h>
29#include <sys/types.h> 29#include <sys/types.h>
30#include <sys/time.h>
30#include <fcntl.h> 31#include <fcntl.h>
31#include <stdlib.h> 32#include <stdlib.h>
33#include <time.h>
32#include <unistd.h> 34#include <unistd.h>
33 35
34#define QTOPIA_INTERNAL_LANGLIST 36#define QTOPIA_INTERNAL_LANGLIST
35#include "config.h" 37#include "config.h"
36#include "global.h" 38#include "global.h"
37#include "qpeapplication.h" 39#include "qpeapplication.h"
38 40
39 41
40/* 42/*
41 * Internal Class 43 * Internal Class
42 */ 44 */
43class ConfigPrivate { 45class ConfigPrivate {
@@ -55,24 +57,195 @@ public:
55 multilang = o.multilang; 57 multilang = o.multilang;
56 return *this; 58 return *this;
57 } 59 }
58 60
59 QString trfile; 61 QString trfile;
60 QCString trcontext; 62 QCString trcontext;
61 bool multilang; 63 bool multilang;
62}; 64};
63 65
64///////////////////////////////////////////////////////////////// 66/////////////////////////////////////////////////////////////////
65///////////////////////////////////////////////////////////////// 67/////////////////////////////////////////////////////////////////
66 68
69#ifndef Q_OS_WIN32
70
71//#define DEBUG_CONFIG_CACHE
72
73const int CONFIG_CACHE_SIZE = 8192;
74const int CONFIG_CACHE_TIMEOUT = 1000;
75
76class ConfigData
77{
78public:
79 ConfigData(const ConfigData& o) :
80 cfg(o.cfg),
81 priv(o.priv ? new ConfigPrivate(*o.priv) : 0),
82 mtime(o.mtime),
83 size(o.size),
84 used(o.used)
85 { }
86
87 ConfigData& operator=(const ConfigData& o)
88 {
89 cfg = o.cfg;
90 delete priv;
91 priv = o.priv ? new ConfigPrivate(*o.priv) : 0;
92 mtime = o.mtime;
93 size = o.size;
94 used = o.used;
95 return *this;
96 }
97
98 ConfigData() : priv(0) {}
99 ~ConfigData() { delete priv; }
100
101 ConfigGroupMap cfg;
102 ConfigPrivate *priv; // Owned by this object
103 time_t mtime;
104 unsigned int size;
105 struct timeval used;
106};
107
108class ConfigCache : public QObject
109{
110public:
111 ConfigCache();
112
113 void insert(const QString &filename, const ConfigGroupMap &cfg, const ConfigPrivate* priv);
114 bool find(const QString &filename, ConfigGroupMap &cfg, ConfigPrivate*& priv);
115 void remove(const QString &filename);
116
117protected:
118 void timerEvent(QTimerEvent *);
119
120private:
121 void removeLru();
122
123 QMap<QString, ConfigData> configData;
124 unsigned int totalsize;
125 int tid;
126};
127
128ConfigCache::ConfigCache() : QObject(), totalsize(0), tid(0)
129{
130}
131
132void ConfigCache::insert(const QString &filename, const ConfigGroupMap &cfg, const ConfigPrivate* priv)
133{
134 // use stat() rather than QFileInfo for speed.
135 struct stat sbuf;
136 stat(filename.local8Bit().data(), &sbuf);
137
138 if (sbuf.st_size < CONFIG_CACHE_SIZE/2) {
139 ConfigData data;
140 data.cfg = cfg;
141 data.priv = priv ? new ConfigPrivate(*priv) : 0;
142 data.mtime = sbuf.st_mtime;
143 data.size = sbuf.st_size;
144 gettimeofday(&data.used, 0);
145
146 remove(filename);
147 configData.insert(filename, data);
148
149 totalsize += data.size;
150#ifdef DEBUG_CONFIG_CACHE
151 qDebug("++++++ insert %s", filename.latin1());
152#endif
153 }
154
155 if (totalsize > (uint)CONFIG_CACHE_SIZE) {
156 // We'll delay deleting anything until later.
157 // This lets us grow quite large during some operations,
158 // but we'll be reduced to a decent size later.
159 // This works well with the main use case - app startup.
160 if (!tid)
161 tid = startTimer(CONFIG_CACHE_TIMEOUT);
162 }
163}
164
165bool ConfigCache::find(const QString &filename, ConfigGroupMap &cfg, ConfigPrivate*& priv)
166{
167 QMap<QString, ConfigData>::Iterator it = configData.find(filename);
168 if (it != configData.end()) {
169 ConfigData data = *it;
170 // use stat() rather than QFileInfo for speed.
171 struct stat sbuf;
172 stat(filename.local8Bit().data(), &sbuf);
173
174 if (data.mtime == sbuf.st_mtime && (int)data.size == sbuf.st_size) {
175 cfg = data.cfg;
176 delete priv;
177 priv = data.priv ? new ConfigPrivate(*data.priv) : 0;
178 gettimeofday(&data.used, 0);
179#ifdef DEBUG_CONFIG_CACHE
180 qDebug("******* Cache hit: %s", filename.latin1());
181#endif
182 return TRUE;
183 }
184 }
185
186#ifdef DEBUG_CONFIG_CACHE
187 qDebug("------- Cache miss: %s", filename.latin1());
188#endif
189
190 return FALSE;
191}
192
193void ConfigCache::remove(const QString &filename)
194{
195 QMap<QString, ConfigData>::Iterator it = configData.find(filename);
196 if (it != configData.end()) {
197 totalsize -= (*it).size;
198 configData.remove(it);
199 }
200}
201
202void ConfigCache::timerEvent(QTimerEvent *)
203{
204#ifdef DEBUG_CONFIG_CACHE
205 qDebug( "cache size: %d", totalsize);
206#endif
207 while (totalsize > (uint)CONFIG_CACHE_SIZE)
208 removeLru();
209 killTimer(tid);
210 tid = 0;
211}
212
213void ConfigCache::removeLru()
214{
215 QMap<QString, ConfigData>::Iterator it = configData.begin();
216 QMap<QString, ConfigData>::Iterator lru = it;
217 ++it;
218 for (; it != configData.end(); ++it) {
219 if ((*it).used.tv_sec < (*lru).used.tv_sec ||
220 ((*it).used.tv_sec == (*lru).used.tv_sec &&
221 (*it).used.tv_usec < (*lru).used.tv_usec))
222 lru = it;
223 }
224
225#ifdef DEBUG_CONFIG_CACHE
226 qDebug("Cache full, removing: %s", lru.key().latin1());
227#endif
228 totalsize -= (*lru).size;
229 configData.remove(lru);
230}
231
232static ConfigCache *qpe_configCache = 0;
233
234#endif /* Q_OS_WIN32 */
235
236
237// ==========================================================================
238
239
67/*! 240/*!
68 \internal 241 \internal
69*/ 242*/
70QString Config::configFilename(const QString& name, Domain d) 243QString Config::configFilename(const QString& name, Domain d)
71{ 244{
72 switch (d) { 245 switch (d) {
73 case File: 246 case File:
74 return name; 247 return name;
75 case User: { 248 case User: {
76 QDir dir = (QString(getenv("HOME")) + "/Settings"); 249 QDir dir = (QString(getenv("HOME")) + "/Settings");
77 if ( !dir.exists() ) 250 if ( !dir.exists() )
78 mkdir(dir.path().local8Bit(),0700); 251 mkdir(dir.path().local8Bit(),0700);
@@ -556,24 +729,28 @@ void Config::write( const QString &fn )
556 return; 729 return;
557 } 730 }
558 731
559 f.close(); 732 f.close();
560 // now rename the file... 733 // now rename the file...
561 if ( rename( strNewFile, filename ) < 0 ) { 734 if ( rename( strNewFile, filename ) < 0 ) {
562 qWarning( "problem renaming the file %s to %s", strNewFile.latin1(), 735 qWarning( "problem renaming the file %s to %s", strNewFile.latin1(),
563 filename.latin1() ); 736 filename.latin1() );
564 QFile::remove( strNewFile ); 737 QFile::remove( strNewFile );
565 return; 738 return;
566 } 739 }
567 740
741#ifndef Q_OS_WIN32
742 if (qpe_configCache)
743 qpe_configCache->insert(filename, groups, d);
744#endif
568 changed = FALSE; 745 changed = FALSE;
569} 746}
570 747
571/*! 748/*!
572 Returns whether the Config is in a valid state. 749 Returns whether the Config is in a valid state.
573*/ 750*/
574bool Config::isValid() const 751bool Config::isValid() const
575{ 752{
576 return groups.end() != git; 753 return groups.end() != git;
577} 754}
578 755
579/*! 756/*!
@@ -594,40 +771,58 @@ void Config::read()
594 QString dftlFile = QPEApplication::qpeDir() + "etc/default/" + fi.fileName(); 771 QString dftlFile = QPEApplication::qpeDir() + "etc/default/" + fi.fileName();
595 if (QFile::exists(dftlFile)) { 772 if (QFile::exists(dftlFile)) {
596 readFilename = dftlFile; 773 readFilename = dftlFile;
597 failed = FALSE; 774 failed = FALSE;
598 } 775 }
599 } 776 }
600 if (failed) { 777 if (failed) {
601 git = groups.end(); 778 git = groups.end();
602 return; 779 return;
603 } 780 }
604 } 781 }
605 782
783#ifndef Q_OS_WIN32
784 if (!qpe_configCache)
785 qpe_configCache = new ConfigCache;
786
787 if (qpe_configCache->find(readFilename, groups, d)) {
788 if ( d && d->multilang ) {
789 QStringList l = Global::languageList();
790 lang = l[0];
791 glang = l[1];
792 }
793 git = groups.begin();
794 return;
795 }
796#endif
606 797
607 QFile f( readFilename ); 798 QFile f( readFilename );
608 if ( !f.open( IO_ReadOnly ) ) { 799 if ( !f.open( IO_ReadOnly ) ) {
609 git = groups.end(); 800 git = groups.end();
610 return; 801 return;
611 } 802 }
612 803
613 if (f.getch()!='[') { 804 if (f.getch()!='[') {
614 git = groups.end(); 805 git = groups.end();
615 return; 806 return;
616 } 807 }
617 f.ungetch('['); 808 f.ungetch('[');
618 809
619 QTextStream s( &f ); 810 QTextStream s( &f );
620 read( s ); 811 read( s );
621 f.close(); 812 f.close();
813
814#ifndef Q_OS_WIN32
815 qpe_configCache->insert(readFilename, groups, d);
816#endif
622} 817}
623 818
624/*! 819/*!
625 \internal 820 \internal
626*/ 821*/
627bool Config::parse( const QString &l ) 822bool Config::parse( const QString &l )
628{ 823{
629 QString line = l.stripWhiteSpace(); 824 QString line = l.stripWhiteSpace();
630 if ( line[ 0 ] == QChar( '[' ) ) { 825 if ( line[ 0 ] == QChar( '[' ) ) {
631 QString gname = line; 826 QString gname = line;
632 gname = gname.remove( 0, 1 ); 827 gname = gname.remove( 0, 1 );
633 if ( gname[ (int)gname.length() - 1 ] == QChar( ']' ) ) 828 if ( gname[ (int)gname.length() - 1 ] == QChar( ']' ) )