summaryrefslogtreecommitdiffhomepage
path: root/compat
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-09-30 11:28:32 +0200
committerStanislaw Halik <sthalik@misaki.pl>2017-09-30 11:28:32 +0200
commit819e635af2b64213f1076eb4a99bba8c48cfdb68 (patch)
treec2bf5d3fd83ff6996d252f9477562e7e26234a89 /compat
parenta48349deb6a70631ae95e9e0505930949f1e8dac (diff)
remove camel case
Diffstat (limited to 'compat')
-rw-r--r--compat/shm.cpp69
-rw-r--r--compat/shm.h8
2 files changed, 44 insertions, 33 deletions
diff --git a/compat/shm.cpp b/compat/shm.cpp
index a933f7f9..f09365f9 100644
--- a/compat/shm.cpp
+++ b/compat/shm.cpp
@@ -108,29 +108,34 @@ cleanup:
}
};
-PortableLockedShm::PortableLockedShm(const char* shmName, const char* mutexName, int mapSize)
+shm_wrapper::shm_wrapper(const char* shm_name, const char* mutex_name, int map_size)
{
secattr sa(GENERIC_ALL|SYNCHRONIZE);
- hMutex = CreateMutexA(sa.success ? &sa.attrs : nullptr, false, mutexName);
-
- if (!hMutex)
+ if (mutex_name == nullptr)
+ mutex = nullptr;
+ else
{
-#if !defined __WINE__
- qDebug() << "CreateMutexA:" << (int) GetLastError();
-#endif
- return;
+ mutex = CreateMutexA(sa.success ? &sa.attrs : nullptr, false, mutex_name);
+
+ if (!mutex)
+ {
+ #if !defined __WINE__
+ qDebug() << "CreateMutexA:" << (int) GetLastError();
+ #endif
+ return;
+ }
}
- hMapFile = CreateFileMappingA(
+ mapped_file = CreateFileMappingA(
INVALID_HANDLE_VALUE,
sa.success ? &sa.attrs : nullptr,
PAGE_READWRITE,
0,
- mapSize,
- shmName);
+ map_size,
+ shm_name);
- if (!hMapFile)
+ if (!mapped_file)
{
#if !defined __WINE__
qDebug() << "CreateFileMappingA:", (int) GetLastError();
@@ -139,11 +144,11 @@ PortableLockedShm::PortableLockedShm(const char* shmName, const char* mutexName,
return;
}
- mem = MapViewOfFile(hMapFile,
+ mem = MapViewOfFile(mapped_file,
FILE_MAP_WRITE,
0,
0,
- mapSize);
+ map_size);
if (!mem)
{
@@ -153,15 +158,15 @@ PortableLockedShm::PortableLockedShm(const char* shmName, const char* mutexName,
}
}
-PortableLockedShm::~PortableLockedShm()
+shm_wrapper::~shm_wrapper()
{
if(!UnmapViewOfFile(mem))
goto fail;
- if (!CloseHandle(hMapFile))
+ if (!CloseHandle(mapped_file))
goto fail;
- if (!CloseHandle(hMutex))
+ if (mutex && !CloseHandle(mutex))
goto fail;
return;
@@ -173,48 +178,54 @@ fail:
#endif
}
-bool PortableLockedShm::lock()
+bool shm_wrapper::lock()
{
- return WaitForSingleObject(hMutex, INFINITE) == WAIT_OBJECT_0;
+ if (mutex)
+ return WaitForSingleObject(mutex, INFINITE) == WAIT_OBJECT_0;
+ else
+ return false;
}
-bool PortableLockedShm::unlock()
+bool shm_wrapper::unlock()
{
- return ReleaseMutex(hMutex);
+ if (mutex)
+ return ReleaseMutex(mutex);
+ else
+ return false;
}
#else
#include <limits.h>
#pragma GCC diagnostic ignored "-Wunused-result"
-PortableLockedShm::PortableLockedShm(const char *shmName, const char* /*mutexName*/, int mapSize) : size(mapSize)
+shm_wrapper::shm_wrapper(const char *shm_name, const char* /*mutex_name*/, int map_size) : size(mapSize)
{
char filename[PATH_MAX+2] {};
strcpy(filename, "/");
- strcat(filename, shmName);
+ strcat(filename, shm_name);
fd = shm_open(filename, O_RDWR | O_CREAT, 0600);
- (void) ftruncate(fd, mapSize);
- mem = mmap(NULL, mapSize, PROT_READ|PROT_WRITE, MAP_SHARED, fd, (off_t)0);
+ (void) ftruncate(fd, map_size);
+ mem = mmap(NULL, map_size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, (off_t)0);
}
-PortableLockedShm::~PortableLockedShm()
+shm_wrapper::~shm_wrapper()
{
(void) munmap(mem, size);
(void) close(fd);
}
-bool PortableLockedShm::lock()
+bool shm_wrapper::lock()
{
return flock(fd, LOCK_EX) == 0;
}
-bool PortableLockedShm::unlock()
+bool shm_wrapper::unlock()
{
return flock(fd, LOCK_UN) == 0;
}
#endif
-bool PortableLockedShm::success()
+bool shm_wrapper::success()
{
#ifndef _WIN32
return mem != (void*) -1;
diff --git a/compat/shm.h b/compat/shm.h
index 3b37a8a3..61efaf68 100644
--- a/compat/shm.h
+++ b/compat/shm.h
@@ -21,18 +21,18 @@
#include "export.hpp"
-class OTR_COMPAT_EXPORT PortableLockedShm final
+class OTR_COMPAT_EXPORT shm_wrapper final
{
void* mem;
#if defined(_WIN32)
- HANDLE hMutex, hMapFile;
+ HANDLE mutex, mapped_file;
#else
int fd, size;
#endif
public:
- PortableLockedShm(const char *shmName, const char *mutexName, int mapSize);
- ~PortableLockedShm();
+ shm_wrapper(const char *shm_name, const char *mutex_name, int map_size);
+ ~shm_wrapper();
bool lock();
bool unlock();
bool success();