IPC status fields will be protected by an Adler-32 checksum too.
[MUtilities.git] / src / DirLocker.h
blobf4a683f501a9fbcc1483fff0e8c8335040ab3f2a
1 ///////////////////////////////////////////////////////////////////////////////
2 // MuldeR's Utilities for Qt
3 // Copyright (C) 2004-2014 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // Lesser General Public License for more details.
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 // http://www.gnu.org/licenses/lgpl-2.1.txt
20 //////////////////////////////////////////////////////////////////////////////////
22 #pragma once
24 //MUtils
25 #include <MUtils/Global.h>
27 //StdLib
28 #include <stdexcept>
30 //Qt
31 #include <QString>
32 #include <QFile>
34 ///////////////////////////////////////////////////////////////////////////////
35 // Directory Locker
36 ///////////////////////////////////////////////////////////////////////////////
38 namespace MUtils
40 namespace Internal
42 class DirLockException : public std::runtime_error
44 public:
45 DirLockException(const char *const message)
47 std::runtime_error(message)
52 class DirLock
54 public:
55 DirLock(const QString dirPath)
57 m_dirPath(dirPath)
59 if(m_dirPath.isEmpty())
61 throw DirLockException("Path must not be empty!");
63 const QByteArray testData = QByteArray(TEST_DATA);
64 bool okay = false;
65 for(int i = 0; i < 32; i++)
67 m_lockFile.reset(new QFile(QString("%1/~%2.lck").arg(m_dirPath, MUtils::rand_str())));
68 if(m_lockFile->open(QIODevice::WriteOnly | QIODevice::Truncate))
70 if(m_lockFile->write(testData) >= testData.size())
72 okay = true;
73 break;
75 m_lockFile->remove();
78 if(!okay)
80 throw DirLockException("Locking has failed!");
84 ~DirLock(void)
86 if(!m_lockFile.isNull())
88 m_lockFile->remove();
90 for(int i = 0; i < 8; i++)
92 if(MUtils::remove_directory(m_dirPath))
94 break;
99 inline const QString &path(void) const
101 return m_dirPath;
104 private:
105 static const char *const TEST_DATA;
106 const QString m_dirPath;
107 QScopedPointer<QFile> m_lockFile;
110 const char *const DirLock::TEST_DATA = "7QtDxPWotHGQYv1xHyQHFKjTB5u5VYKHE20NMDAgLRYoy16CZN7mEYijbjCJpORnoBbtHCzqyy1a6BLCMMiTUZpLzgjg4qnN505egUBqk3wMhPsYjFpkng9i37mWd1iF";