iceoryx_utils/posix_wrapper/file_lock.hpp🔗
Namespaces🔗
Name |
---|
iox building block to easily create free function for logging in a library context |
iox::posix |
Classes🔗
Name | |
---|---|
class | iox::posix::FileLock Posix file lock C++ wrapping class Following RAII, the lock is acquired on creation and released on destruction. Releasing the locks works even if the process crashes with a segfault or using SIGKILL. 'lslocks' can be used to display all system-wide locks (see man page) |
Source code🔗
// Copyright (c) 2021 by Apex.AI Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// SPDX-License-Identifier: Apache-2.0
#ifndef IOX_UTILS_POSIX_WRAPPER_FILE_LOCK_HPP
#define IOX_UTILS_POSIX_WRAPPER_FILE_LOCK_HPP
#include "iceoryx_utils/cxx/expected.hpp"
#include "iceoryx_utils/cxx/string.hpp"
#include "iceoryx_utils/design_pattern/creation.hpp"
namespace iox
{
namespace posix
{
enum class FileLockError
{
INVALID_STATE,
NO_FILE_NAME_PROVIDED,
LOCKED_BY_OTHER_PROCESS,
ACCESS_DENIED,
INVALID_FILE_NAME,
QUOTA_EXHAUSTED,
INVALID_CHARACTERS_IN_FILE_NAME,
SYSTEM_LIMIT,
PROCESS_LIMIT,
NO_SUCH_DIRECTORY,
SPECIAL_FILE,
FILE_TOO_LARGE,
FILE_IN_USE,
OUT_OF_MEMORY,
I_O_ERROR,
SYS_CALL_NOT_IMPLEMENTED,
INTERNAL_LOGIC_ERROR,
};
#if defined(QNX) || defined(QNX__) || defined(__QNX__)
constexpr char PATH_PREFIX[] = "/var/lock/";
#else
constexpr char PATH_PREFIX[] = "/tmp/";
#endif
class FileLock : public DesignPattern::Creation<FileLock, FileLockError>
{
public:
static constexpr int32_t ERROR_CODE = -1;
static constexpr int32_t INVALID_FD = -1;
using FileName_t = cxx::string<250>;
using PathName_t = cxx::string<1024>;
FileLock(const FileLock&) = delete;
FileLock& operator=(const FileLock&) = delete;
FileLock(FileLock&& rhs) noexcept;
FileLock& operator=(FileLock&& rhs) noexcept;
~FileLock() noexcept;
private:
int32_t m_fd{INVALID_FD};
FileName_t m_name{""};
FileLock(const FileName_t& name) noexcept;
cxx::expected<FileLockError> initializeFileLock() noexcept;
FileLockError convertErrnoToFileLockError(const int32_t errnum) const noexcept;
cxx::expected<FileLockError> closeFileDescriptor() noexcept;
friend class DesignPattern::Creation<FileLock, FileLockError>;
};
} // namespace posix
} // namespace iox
#endif // IOX_UTILS_POSIX_WRAPPER_FILE_LOCK_HPP
Updated on 31 May 2022 at 15:29:15 CEST