cmake/Source/cmFileLockUnix.cxx

79 lines
1.8 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2015-04-27 22:25:09 +02:00
#include "cmFileLock.h"
2016-07-09 11:21:54 +02:00
#include "cmSystemTools.h"
2015-04-27 22:25:09 +02:00
#include <errno.h> // errno
#include <fcntl.h>
2016-07-09 11:21:54 +02:00
#include <stdio.h> // SEEK_SET
2015-04-27 22:25:09 +02:00
#include <unistd.h>
2016-07-09 11:21:54 +02:00
cmFileLock::cmFileLock()
: File(-1)
2015-04-27 22:25:09 +02:00
{
}
cmFileLockResult cmFileLock::Release()
{
2016-07-09 11:21:54 +02:00
if (this->Filename.empty()) {
2015-04-27 22:25:09 +02:00
return cmFileLockResult::MakeOk();
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
const int lockResult = this->LockFile(F_SETLK, F_UNLCK);
this->Filename = "";
::close(this->File);
this->File = -1;
2016-07-09 11:21:54 +02:00
if (lockResult == 0) {
2015-04-27 22:25:09 +02:00
return cmFileLockResult::MakeOk();
2016-07-09 11:21:54 +02:00
}
2016-10-30 18:24:19 +01:00
return cmFileLockResult::MakeSystem();
2015-04-27 22:25:09 +02:00
}
cmFileLockResult cmFileLock::OpenFile()
{
this->File = ::open(this->Filename.c_str(), O_RDWR);
2016-07-09 11:21:54 +02:00
if (this->File == -1) {
2015-04-27 22:25:09 +02:00
return cmFileLockResult::MakeSystem();
2016-07-09 11:21:54 +02:00
}
2016-10-30 18:24:19 +01:00
return cmFileLockResult::MakeOk();
2015-04-27 22:25:09 +02:00
}
cmFileLockResult cmFileLock::LockWithoutTimeout()
{
2016-07-09 11:21:54 +02:00
if (this->LockFile(F_SETLKW, F_WRLCK) == -1) {
2015-04-27 22:25:09 +02:00
return cmFileLockResult::MakeSystem();
2016-07-09 11:21:54 +02:00
}
2016-10-30 18:24:19 +01:00
return cmFileLockResult::MakeOk();
2015-04-27 22:25:09 +02:00
}
cmFileLockResult cmFileLock::LockWithTimeout(unsigned long seconds)
{
2016-07-09 11:21:54 +02:00
while (true) {
if (this->LockFile(F_SETLK, F_WRLCK) == -1) {
if (errno != EACCES && errno != EAGAIN) {
2015-04-27 22:25:09 +02:00
return cmFileLockResult::MakeSystem();
}
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
return cmFileLockResult::MakeOk();
2016-07-09 11:21:54 +02:00
}
if (seconds == 0) {
2015-04-27 22:25:09 +02:00
return cmFileLockResult::MakeTimeout();
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
--seconds;
cmSystemTools::Delay(1000);
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
}
int cmFileLock::LockFile(int cmd, int type)
{
struct ::flock lock;
lock.l_start = 0;
2016-07-09 11:21:54 +02:00
lock.l_len = 0; // lock all bytes
lock.l_pid = 0; // unused (for F_GETLK only)
2015-04-27 22:25:09 +02:00
lock.l_type = static_cast<short>(type); // exclusive lock
lock.l_whence = SEEK_SET;
return ::fcntl(this->File, cmd, &lock);
}