summaryrefslogtreecommitdiff
path: root/library/filemanager.cpp
Unidiff
Diffstat (limited to 'library/filemanager.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--library/filemanager.cpp18
1 files changed, 10 insertions, 8 deletions
diff --git a/library/filemanager.cpp b/library/filemanager.cpp
index 2e5efdd..fbfa1d9 100644
--- a/library/filemanager.cpp
+++ b/library/filemanager.cpp
@@ -161,167 +161,169 @@ bool FileManager::loadFile( const DocLnk &f, QByteArray &ba )
161 if ( fl.size() > 0 ) 161 if ( fl.size() > 0 )
162 fl.readBlock( ba.data(), fl.size() ); 162 fl.readBlock( ba.data(), fl.size() );
163 fl.close(); 163 fl.close();
164 return TRUE; 164 return TRUE;
165} 165}
166 166
167/*! 167/*!
168 Copies the document specified by \a src to the document specified 168 Copies the document specified by \a src to the document specified
169 by \a dest. 169 by \a dest.
170 170
171 Returns whether the operation succeeded. 171 Returns whether the operation succeeded.
172*/ 172*/
173bool FileManager::copyFile( const AppLnk &src, const AppLnk &dest ) 173bool FileManager::copyFile( const AppLnk &src, const AppLnk &dest )
174{ 174{
175 QFile srcFile( src.file() ); 175 QFile srcFile( src.file() );
176 if ( !srcFile.open( IO_ReadOnly ) ) 176 if ( !srcFile.open( IO_ReadOnly ) )
177 return FALSE; 177 return FALSE;
178 178
179 QString fileName = dest.file() + ".new"; 179 QString fileName = dest.file() + ".new";
180 180
181 ensurePathExists( fileName ); 181 ensurePathExists( fileName );
182 182
183 bool ok = TRUE; 183 bool ok = TRUE;
184 ok = copyFile( src.file(), fileName ); 184 ok = copyFile( src.file(), fileName );
185 185
186 if ( ok ) 186 if ( ok )
187 ok = dest.writeLink(); 187 ok = dest.writeLink();
188 188
189 if ( ok ) 189 if ( ok )
190 { 190 {
191 // okay now rename the file... 191 // okay now rename the file...
192 if ( !renameFile( fileName, dest.file() ) ) 192 if ( !renameFile( fileName, dest.file() ) )
193 // remove the tmp file, otherwise, it will just lay around... 193 // remove the tmp file, otherwise, it will just lay around...
194 QFile::remove( fileName ); 194 QFile::remove( fileName );
195 } 195 }
196 else 196 else
197 { 197 {
198 QFile::remove( fileName ); 198 QFile::remove( fileName );
199 } 199 }
200 return ok; 200 return ok;
201} 201}
202 202
203bool FileManager::copyFile( const QString & src, const QString & dest ) 203bool FileManager::copyFile( const QString & src, const QString & dest )
204{ 204{
205 //open read file 205 //open read file
206 QFile srcFile( src ); 206 QFile srcFile( src );
207 if( !srcFile.open( IO_ReadOnly|IO_Raw) ) 207 if( !srcFile.open( IO_ReadOnly|IO_Raw) )
208 { 208 {
209 qWarning( "open read failed %s, %s", src.latin1(), dest.latin1() ); 209 qWarning( "open read failed %s, %s", src.latin1(), dest.latin1() );
210 return FALSE; 210 return FALSE;
211 } 211 }
212 212
213 //open write file 213 //open write file
214 QFile destFile( dest ); 214 QFile destFile( dest );
215 if( !destFile.open( IO_WriteOnly|IO_Raw ) ) 215 if( !destFile.open( IO_WriteOnly|IO_Raw ) )
216 { 216 {
217 qWarning( "open write failed %s, %s", src.latin1(), dest.latin1() ); 217 qWarning( "open write failed %s, %s", src.latin1(), dest.latin1() );
218 srcFile.close(); 218 srcFile.close();
219 return FALSE; 219 return FALSE;
220 } 220 }
221 221
222 //copy content 222 //copy content
223 const int bufsize = 16384; 223 const int bufsize = 16384;
224 char buffer[bufsize]; 224 char buffer[bufsize];
225 bool ok = TRUE; 225 bool ok = TRUE;
226 int bytesRead = 0; 226 int bytesRead = 0;
227 while ( ok && !srcFile.atEnd() ) 227 while ( ok && !srcFile.atEnd() )
228 { 228 {
229 bytesRead = srcFile.readBlock( buffer, bufsize ); 229 bytesRead = srcFile.readBlock( buffer, bufsize );
230 if ( bytesRead < 0 ) 230 if ( bytesRead < 0 )
231 ok = FALSE; 231 ok = FALSE;
232 while ( ok && bytesRead > 0 ) 232 while ( ok && bytesRead > 0 )
233 { 233 {
234 int bytesWritten = destFile.writeBlock( buffer, bytesRead ); 234 int bytesWritten = destFile.writeBlock( buffer, bytesRead );
235 if ( bytesWritten < 0 ) 235 if ( bytesWritten < 0 )
236 ok = FALSE; 236 ok = FALSE;
237 else 237 else
238 bytesRead -= bytesWritten; 238 bytesRead -= bytesWritten;
239 } 239 }
240 } 240 }
241 srcFile.close(); 241 srcFile.close();
242 destFile.close(); 242 destFile.close();
243 // Set file permissions 243 // Set file permissions
244 struct stat status; 244 struct stat status;
245 if( stat( QFile::encodeName( src ), &status ) == 0 ) 245 if( stat( QFile::encodeName( src ), &status ) == 0 )
246 { 246 {
247 chmod( QFile::encodeName( dest ), status.st_mode ); 247 chmod( QFile::encodeName( dest ), status.st_mode );
248 } 248 }
249 return ok; 249 return ok;
250} 250}
251 251
252 252
253bool FileManager::renameFile( const QString & src, const QString & dest ) 253bool FileManager::renameFile( const QString & src, const QString & dest )
254{ 254{
255 if( rename( QFile::encodeName( src ), QFile::encodeName( dest ) ) == -1); 255 if( rename( QFile::encodeName( src ), QFile::encodeName( dest ) ) == -1);
256 { 256 {
257 qWarning( "problem renaming file %s to %s, errno: %d", src.latin1(), dest.latin1(), errno ); 257 if ( errno != 2 && errno != 11 ) //ignore ENOENT and EAGAIN - bug in system?
258 return false; 258 {
259 qWarning( "problem renaming file %s to %s, errno: %d", src.latin1(), dest.latin1(), errno );
260 return false;
261 }
259 } 262 }
260 return true; 263 return true;
261} 264}
262 265
263/*! 266/*!
264 Opens the document specified by \a f as a readable QIODevice. 267 Opens the document specified by \a f as a readable QIODevice.
265 The caller must delete the return value. 268 The caller must delete the return value.
266 269
267 Returns 0 if the operation fails. 270 Returns 0 if the operation fails.
268*/ 271*/
269QIODevice* FileManager::openFile( const DocLnk& f ) 272QIODevice* FileManager::openFile( const DocLnk& f )
270{ 273{
271 QString fn = f.file(); 274 QString fn = f.file();
272 QFile* fl = new QFile( fn ); 275 QFile* fl = new QFile( fn );
273 if ( !fl->open( IO_ReadOnly ) ) 276 if ( !fl->open( IO_ReadOnly ) )
274 { 277 {
275 delete fl; 278 delete fl;
276 fl = 0; 279 fl = 0;
277 } 280 }
278 return fl; 281 return fl;
279} 282}
280 283
281/*! 284/*!
282 Opens the document specified by \a f as a writable QIODevice. 285 Opens the document specified by \a f as a writable QIODevice.
283 The caller must delete the return value. 286 The caller must delete the return value.
284 287
285 Returns 0 if the operation fails. 288 Returns 0 if the operation fails.
286*/ 289*/
287QIODevice* FileManager::saveFile( const DocLnk& f ) 290QIODevice* FileManager::saveFile( const DocLnk& f )
288{ 291{
289 QString fn = f.file(); 292 QString fn = f.file();
290 ensurePathExists( fn ); 293 ensurePathExists( fn );
291 QFile* fl = new QFile( fn ); 294 QFile* fl = new QFile( fn );
292 if ( fl->open( IO_WriteOnly ) ) 295 if ( fl->open( IO_WriteOnly ) )
293 { 296 {
294 f.writeLink(); 297 f.writeLink();
295 } 298 }
296 else 299 else
297 { 300 {
298 delete fl; 301 delete fl;
299 fl = 0; 302 fl = 0;
300 } 303 }
301 return fl; 304 return fl;
302} 305}
303 306
304/*! 307/*!
305 Returns whether the document specified by \a f current exists 308 Returns whether the document specified by \a f current exists
306 as a file on disk. 309 as a file on disk.
307*/ 310*/
308bool FileManager::exists( const DocLnk &f ) 311bool FileManager::exists( const DocLnk &f )
309{ 312{
310 return QFile::exists(f.file()); 313 return QFile::exists(f.file());
311} 314}
312 315
313/*! 316/*!
314 Ensures that the path \a fn exists, by creating required directories. 317 Ensures that the path \a fileName exists, by creating required directories.
315 Returns TRUE if successful. 318 Returns TRUE if successful.
316*/ 319*/
317bool FileManager::ensurePathExists( const QString &fn ) 320bool FileManager::ensurePathExists( const QString &fileName )
318{ 321{
319 QFileInfo fi(fn); 322 QDir directory = QFileInfo( fileName ).dir();
320 fi.setFile( fi.dirPath(TRUE) ); 323 if ( !directory.exists() )
321 if ( !fi.exists() )
322 { 324 {
323 if ( system( ("mkdir -p " + QFile::encodeName( fi.filePath() ) ) ) ) 325 if ( !directory.mkdir( directory.absPath() ) )
324 return FALSE; 326 return FALSE;
325 } 327 }
326 return TRUE; 328 return TRUE;
327} 329}