kdelibs/kdecore/io/klockfile.h

104 lines
2.7 KiB
C
Raw Normal View History

/* This file is part of the KDE libraries
Copyright (C) 2022 Ivailo Monev <xakepa10@gmail.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2, as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
2014-11-13 01:04:59 +02:00
*/
#ifndef KLOCKFILE_H
#define KLOCKFILE_H
#include <kdecore_export.h>
2014-11-13 01:04:59 +02:00
#include <QString>
2014-11-13 01:04:59 +02:00
class KLockFilePrivate;
2014-11-13 01:04:59 +02:00
/**
* \class KLockFile klockfile.h <KLockFile>
*
* The KLockFile class provides NFS safe lockfiles.
*
* @author Ivailo Monev <xakepa10@gmail.com>
2014-11-13 01:04:59 +02:00
*/
class KDECORE_EXPORT KLockFile
2014-11-13 01:04:59 +02:00
{
public:
/*!
@brief Creates the object, does not attempt to acquire the lock
2014-11-13 01:04:59 +02:00
*/
KLockFile(const QString &file);
/*!
@brief Destroys the object, releasing the lock if held
2014-11-13 01:04:59 +02:00
*/
~KLockFile();
2014-11-13 01:04:59 +02:00
/*!
@brief Possible return values of the lock function
2014-11-13 01:04:59 +02:00
*/
enum LockResult {
//! @brief Lock was acquired successfully
LockOK = 0,
//! @brief The lock could not be acquired because it is held by another process
LockFail,
//! @brief The lock could not be acquired due to an error
LockError,
//! @brief A stale lock has been detected, i.e. the process that owned the lock has crashed
LockStale
};
enum LockFlag {
//! @brief Return immediately, do not wait for the lock to become available
NoBlockFlag = 1,
//! @brief Automatically remove a lock when it is detected to be stale
ForceFlag = 2
};
Q_DECLARE_FLAGS(LockFlags, LockFlag)
2014-11-13 01:04:59 +02:00
/*!
@brief Attempt to acquire the lock
@param flags A set of @ref LockFlag values OR'ed together
2014-11-13 01:04:59 +02:00
*/
LockResult lock(LockFlags flags = LockFlags());
2014-11-13 01:04:59 +02:00
/*!
@brief Returns whether the lock is held or not
2014-11-13 01:04:59 +02:00
*/
bool isLocked() const;
2014-11-13 01:04:59 +02:00
/*!
@brief Release the lock
2014-11-13 01:04:59 +02:00
*/
void unlock();
2014-11-13 01:04:59 +02:00
/*!
@brief Returns the pid of the process holding the lock.
@returns false if the pid could not be determined
2014-11-13 01:04:59 +02:00
*/
bool getLockInfo(qint64 &pid);
2014-11-13 01:04:59 +02:00
private:
Q_DISABLE_COPY(KLockFile);
KLockFilePrivate *const d;
2014-11-13 01:04:59 +02:00
};
Q_DECLARE_OPERATORS_FOR_FLAGS(KLockFile::LockFlags)
#endif