2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2014-07-31 16:45:21 +02:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2014-07-31 16:45:21 +02:00
|
|
|
|
|
|
|
|
#include <QSharedMemory>
|
|
|
|
|
#include <QSystemSemaphore>
|
|
|
|
|
|
|
|
|
|
namespace QmlDesigner {
|
|
|
|
|
|
|
|
|
|
class SharedMemory
|
|
|
|
|
{
|
|
|
|
|
friend class SharedMemoryLocker;
|
|
|
|
|
public:
|
|
|
|
|
SharedMemory();
|
|
|
|
|
SharedMemory(const QString &key);
|
|
|
|
|
~SharedMemory();
|
|
|
|
|
|
|
|
|
|
void setKey(const QString &key);
|
|
|
|
|
QString key() const;
|
|
|
|
|
|
|
|
|
|
bool create(int size, QSharedMemory::AccessMode mode = QSharedMemory::ReadWrite);
|
|
|
|
|
int size() const;
|
|
|
|
|
|
|
|
|
|
bool attach(QSharedMemory::AccessMode mode = QSharedMemory::ReadWrite);
|
|
|
|
|
bool isAttached() const;
|
|
|
|
|
bool detach();
|
|
|
|
|
|
|
|
|
|
void *data();
|
|
|
|
|
const void* constData() const;
|
|
|
|
|
const void *data() const;
|
|
|
|
|
|
|
|
|
|
bool lock();
|
|
|
|
|
bool unlock();
|
|
|
|
|
|
|
|
|
|
QSharedMemory::SharedMemoryError error() const;
|
|
|
|
|
QString errorString() const;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
#ifdef Q_OS_UNIX
|
|
|
|
|
bool initKeyInternal();
|
2016-11-29 16:53:03 +01:00
|
|
|
void cleanHandleInternal();
|
2019-07-24 11:00:38 +02:00
|
|
|
bool createInternal(QSharedMemory::AccessMode mode, size_t size);
|
2014-07-31 16:45:21 +02:00
|
|
|
bool attachInternal(QSharedMemory::AccessMode mode);
|
|
|
|
|
bool detachInternal();
|
|
|
|
|
int handle();
|
|
|
|
|
|
|
|
|
|
void setErrorString(const QString &function);
|
|
|
|
|
#endif
|
|
|
|
|
private:
|
|
|
|
|
#ifndef Q_OS_UNIX
|
|
|
|
|
QSharedMemory m_sharedMemory;
|
|
|
|
|
#else
|
|
|
|
|
void *m_memory;
|
2019-07-24 11:00:38 +02:00
|
|
|
size_t m_size;
|
2014-07-31 16:45:21 +02:00
|
|
|
QString m_key;
|
|
|
|
|
QByteArray m_nativeKey;
|
|
|
|
|
QSharedMemory::SharedMemoryError m_error;
|
|
|
|
|
QString m_errorString;
|
|
|
|
|
QSystemSemaphore m_systemSemaphore;
|
|
|
|
|
bool m_lockedByMe;
|
|
|
|
|
int m_fileHandle;
|
|
|
|
|
bool m_createdByMe;
|
|
|
|
|
#endif
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace QmlDesigner
|