-rw-r--r-- | library/storage.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/library/storage.cpp b/library/storage.cpp index 912b22d..f4c1c02 100644 --- a/library/storage.cpp +++ b/library/storage.cpp | |||
@@ -66,150 +66,152 @@ static bool isCF(const QString& m) | |||
66 | return FALSE; | 66 | return FALSE; |
67 | } | 67 | } |
68 | 68 | ||
69 | StorageInfo::StorageInfo( QObject *parent ) | 69 | StorageInfo::StorageInfo( QObject *parent ) |
70 | : QObject( parent ) | 70 | : QObject( parent ) |
71 | { | 71 | { |
72 | mFileSystems.setAutoDelete( TRUE ); | 72 | mFileSystems.setAutoDelete( TRUE ); |
73 | channel = new QCopChannel( "QPE/Card", this ); | 73 | channel = new QCopChannel( "QPE/Card", this ); |
74 | connect( channel, SIGNAL(received(const QCString &, const QByteArray &)), | 74 | connect( channel, SIGNAL(received(const QCString &, const QByteArray &)), |
75 | this, SLOT(cardMessage( const QCString &, const QByteArray &)) ); | 75 | this, SLOT(cardMessage( const QCString &, const QByteArray &)) ); |
76 | update(); | 76 | update(); |
77 | } | 77 | } |
78 | 78 | ||
79 | const FileSystem *StorageInfo::fileSystemOf( const QString &filename ) | 79 | const FileSystem *StorageInfo::fileSystemOf( const QString &filename ) |
80 | { | 80 | { |
81 | for (QListIterator<FileSystem> i(mFileSystems); i.current(); ++i) { | 81 | for (QListIterator<FileSystem> i(mFileSystems); i.current(); ++i) { |
82 | if ( filename.startsWith( (*i)->path() ) ) | 82 | if ( filename.startsWith( (*i)->path() ) ) |
83 | return (*i); | 83 | return (*i); |
84 | } | 84 | } |
85 | return 0; | 85 | return 0; |
86 | } | 86 | } |
87 | 87 | ||
88 | 88 | ||
89 | void StorageInfo::cardMessage( const QCString& msg, const QByteArray& ) | 89 | void StorageInfo::cardMessage( const QCString& msg, const QByteArray& ) |
90 | { | 90 | { |
91 | if ( msg == "mtabChanged()" ) | 91 | if ( msg == "mtabChanged()" ) |
92 | update(); | 92 | update(); |
93 | } | 93 | } |
94 | // cause of the lack of a d pointer we need | 94 | // cause of the lack of a d pointer we need |
95 | // to store informations in a config file :( | 95 | // to store informations in a config file :( |
96 | void StorageInfo::update() | 96 | void StorageInfo::update() |
97 | { | 97 | { |
98 | //qDebug("StorageInfo::updating"); | 98 | //qDebug("StorageInfo::updating"); |
99 | #if defined(_OS_LINUX_) || defined(Q_OS_LINUX) | 99 | #if defined(_OS_LINUX_) || defined(Q_OS_LINUX) |
100 | struct mntent *me; | 100 | struct mntent *me; |
101 | FILE *mntfp = setmntent( "/etc/mtab", "r" ); | 101 | FILE *mntfp = setmntent( "/etc/mtab", "r" ); |
102 | 102 | ||
103 | QStringList curdisks; | 103 | QStringList curdisks; |
104 | QStringList curopts; | 104 | QStringList curopts; |
105 | QStringList curfs; | 105 | QStringList curfs; |
106 | bool rebuild = FALSE; | 106 | bool rebuild = FALSE; |
107 | int n=0; | 107 | int n=0; |
108 | if ( mntfp ) { | 108 | if ( mntfp ) { |
109 | while ( (me = getmntent( mntfp )) != 0 ) { | 109 | while ( (me = getmntent( mntfp )) != 0 ) { |
110 | QString fs = me->mnt_fsname; | 110 | QString fs = me->mnt_fsname; |
111 | if ( fs.left(7)=="/dev/hd" || fs.left(7)=="/dev/sd" | 111 | if ( fs.left(7)=="/dev/hd" || fs.left(7)=="/dev/sd" |
112 | || fs.left(8)=="/dev/mtd" || fs.left(9) == "/dev/mmcd" | 112 | || fs.left(8)=="/dev/mtd" || fs.left(9) == "/dev/mmcd" |
113 | || fs.left( 14 ) == "/dev/mmc/part1" | 113 | || fs.left( 14 ) == "/dev/mmc/part1" |
114 | || fs.left(5)=="tmpfs" ) | 114 | || fs.left(5)=="tmpfs" || fs.left(9)=="/dev/root" ) |
115 | { | 115 | { |
116 | n++; | 116 | n++; |
117 | curdisks.append(fs); | 117 | curdisks.append(fs); |
118 | curopts.append( me->mnt_opts ); | 118 | curopts.append( me->mnt_opts ); |
119 | //qDebug("-->fs %s opts %s", fs.latin1(), me->mnt_opts ); | 119 | //qDebug("-->fs %s opts %s", fs.latin1(), me->mnt_opts ); |
120 | curfs.append( me->mnt_dir ); | 120 | curfs.append( me->mnt_dir ); |
121 | bool found = FALSE; | 121 | bool found = FALSE; |
122 | for (QListIterator<FileSystem> i(mFileSystems); i.current(); ++i) { | 122 | for (QListIterator<FileSystem> i(mFileSystems); i.current(); ++i) { |
123 | if ( (*i)->disk() == fs ) { | 123 | if ( (*i)->disk() == fs ) { |
124 | found = TRUE; | 124 | found = TRUE; |
125 | break; | 125 | break; |
126 | } | 126 | } |
127 | } | 127 | } |
128 | if ( !found ) | 128 | if ( !found ) |
129 | rebuild = TRUE; | 129 | rebuild = TRUE; |
130 | } | 130 | } |
131 | } | 131 | } |
132 | endmntent( mntfp ); | 132 | endmntent( mntfp ); |
133 | } | 133 | } |
134 | if ( rebuild || n != (int)mFileSystems.count() ) { | 134 | if ( rebuild || n != (int)mFileSystems.count() ) { |
135 | mFileSystems.clear(); | 135 | mFileSystems.clear(); |
136 | QStringList::ConstIterator it=curdisks.begin(); | 136 | QStringList::ConstIterator it=curdisks.begin(); |
137 | QStringList::ConstIterator fsit=curfs.begin(); | 137 | QStringList::ConstIterator fsit=curfs.begin(); |
138 | QStringList::ConstIterator optsIt=curopts.begin(); | 138 | QStringList::ConstIterator optsIt=curopts.begin(); |
139 | for (; it!=curdisks.end(); ++it, ++fsit, ++optsIt) { | 139 | for (; it!=curdisks.end(); ++it, ++fsit, ++optsIt) { |
140 | QString opts = *optsIt; | 140 | QString opts = *optsIt; |
141 | 141 | ||
142 | QString disk = *it; | 142 | QString disk = *it; |
143 | QString humanname; | 143 | QString humanname; |
144 | bool removable = FALSE; | 144 | bool removable = FALSE; |
145 | if ( isCF(disk) ) { | 145 | if ( isCF(disk) ) { |
146 | humanname = tr("CF Card"); | 146 | humanname = tr("CF Card"); |
147 | removable = TRUE; | 147 | removable = TRUE; |
148 | } else if ( disk == "/dev/hda1" ) { | 148 | } else if ( disk == "/dev/hda1" ) { |
149 | humanname = tr("Hard Disk"); | 149 | humanname = tr("Hard Disk"); |
150 | } else if ( disk.left(9) == "/dev/mmcd" ) { | 150 | } else if ( disk.left(9) == "/dev/mmcd" ) { |
151 | humanname = tr("SD Card"); | 151 | humanname = tr("SD Card"); |
152 | removable = TRUE; | 152 | removable = TRUE; |
153 | } else if ( disk.left( 14 ) == "/dev/mmc/part1" ) { | 153 | } else if ( disk.left( 14 ) == "/dev/mmc/part1" ) { |
154 | humanname = tr("MMC Card"); | 154 | humanname = tr("MMC Card"); |
155 | removable = TRUE; | 155 | removable = TRUE; |
156 | } else if ( disk.left(7) == "/dev/hd" ) | 156 | } else if ( disk.left(7) == "/dev/hd" ) |
157 | humanname = tr("Hard Disk") + " " + disk; | 157 | humanname = tr("Hard Disk") + " " + disk; |
158 | else if ( disk.left(7) == "/dev/sd" ) | 158 | else if ( disk.left(7) == "/dev/sd" ) |
159 | humanname = tr("SCSI Hard Disk") + " " + disk; | 159 | humanname = tr("SCSI Hard Disk") + " " + disk; |
160 | else if ( disk.left(14) == "/dev/mtdblock6" ) //openzaurus ramfs | 160 | else if ( disk.left(14) == "/dev/mtdblock6" ) //openzaurus ramfs |
161 | humanname = tr("Internal Memory"); | 161 | humanname = tr("Internal Memory"); |
162 | else if ( disk == "/dev/mtdblock1" || humanname == "/dev/mtdblock/1" ) | 162 | else if ( disk == "/dev/mtdblock1" || humanname == "/dev/mtdblock/1" ) |
163 | humanname = tr("Internal Storage"); | 163 | humanname = tr("Internal Storage"); |
164 | else if ( disk.left(14) == "/dev/mtdblock/" ) | 164 | else if ( disk.left(14) == "/dev/mtdblock/" ) |
165 | humanname = tr("Internal Storage") + " " + disk; | 165 | humanname = tr("Internal Storage") + " " + disk; |
166 | else if ( disk.left(13) == "/dev/mtdblock" ) | 166 | else if ( disk.left(13) == "/dev/mtdblock" ) |
167 | humanname = tr("Internal Storage") + " " + disk; | 167 | humanname = tr("Internal Storage") + " " + disk; |
168 | else if ( disk.left(9) == "/dev/root" ) | ||
169 | humanname = tr("Internal Storage") + " " + disk; | ||
168 | else if ( disk.left(5) == "tmpfs" ) //ipaqs /mnt/ramfs | 170 | else if ( disk.left(5) == "tmpfs" ) //ipaqs /mnt/ramfs |
169 | humanname = tr("Internal Memory"); | 171 | humanname = tr("Internal Memory"); |
170 | FileSystem *fs = new FileSystem( disk, *fsit, humanname, removable, opts ); | 172 | FileSystem *fs = new FileSystem( disk, *fsit, humanname, removable, opts ); |
171 | mFileSystems.append( fs ); | 173 | mFileSystems.append( fs ); |
172 | } | 174 | } |
173 | emit disksChanged(); | 175 | emit disksChanged(); |
174 | } else { | 176 | } else { |
175 | // just update them | 177 | // just update them |
176 | for (QListIterator<FileSystem> i(mFileSystems); i.current(); ++i) | 178 | for (QListIterator<FileSystem> i(mFileSystems); i.current(); ++i) |
177 | i.current()->update(); | 179 | i.current()->update(); |
178 | } | 180 | } |
179 | #endif | 181 | #endif |
180 | } | 182 | } |
181 | 183 | ||
182 | bool deviceTab( const char *device) { | 184 | bool deviceTab( const char *device) { |
183 | QString name = device; | 185 | QString name = device; |
184 | bool hasDevice=false; | 186 | bool hasDevice=false; |
185 | struct mntent *me; | 187 | struct mntent *me; |
186 | FILE *mntfp = setmntent( "/etc/mtab", "r" ); | 188 | FILE *mntfp = setmntent( "/etc/mtab", "r" ); |
187 | if ( mntfp ) { | 189 | if ( mntfp ) { |
188 | while ( (me = getmntent( mntfp )) != 0 ) { | 190 | while ( (me = getmntent( mntfp )) != 0 ) { |
189 | QString deviceName = me->mnt_fsname; | 191 | QString deviceName = me->mnt_fsname; |
190 | // qDebug(deviceName); | 192 | // qDebug(deviceName); |
191 | if( deviceName.left(name.length()) == name) { | 193 | if( deviceName.left(name.length()) == name) { |
192 | hasDevice = true; | 194 | hasDevice = true; |
193 | } | 195 | } |
194 | } | 196 | } |
195 | } | 197 | } |
196 | endmntent( mntfp ); | 198 | endmntent( mntfp ); |
197 | return hasDevice; | 199 | return hasDevice; |
198 | } | 200 | } |
199 | 201 | ||
200 | /*! | 202 | /*! |
201 | * @fn hasCf() | 203 | * @fn hasCf() |
202 | * @brief returns whether device has Cf mounted | 204 | * @brief returns whether device has Cf mounted |
203 | * | 205 | * |
204 | */ | 206 | */ |
205 | bool StorageInfo::hasCf() | 207 | bool StorageInfo::hasCf() |
206 | { | 208 | { |
207 | return deviceTab("/dev/hd"); | 209 | return deviceTab("/dev/hd"); |
208 | } | 210 | } |
209 | 211 | ||
210 | /*! | 212 | /*! |
211 | * @fn hasSd() | 213 | * @fn hasSd() |
212 | * @brief returns whether device has SD mounted | 214 | * @brief returns whether device has SD mounted |
213 | * | 215 | * |
214 | */ | 216 | */ |
215 | bool StorageInfo::hasSd() | 217 | bool StorageInfo::hasSd() |