1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# -*- python -*-
'''
cmdipc — System V and POSIX IPC from the command line
Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
'''
import os
import posix_ipc # http://semanchuk.com/philip/posix_ipc
SignalError = posix_ipc.SignalError
PermissionsError = posix_ipc.PermissionsError
ExistentialError = posix_ipc.ExistentialError
BusyError = posix_ipc.BusyError
CREAT = posix_ipc.O_CREAT
EXCL = posix_ipc.O_EXCL
def keycat(*keys):
return ''.join(keys)
def keysep(keys):
return ['/' + key for key in keys[1:].split('/')]
class Semaphore(posix_ipc.Semaphore):
def __init__(self, *args, **kwargs):
posix_ipc.Semaphore.__init__(self, *args, **kwargs)
self.key = self.name
def P(self, timeout = None):
self.acquire(timeout)
def V(self):
self.release()
def set_value(self, value):
for _ in range(value):
self.V()
def remove(self):
self.unlink()
self.close()
class SharedMemory(posix_ipc.SharedMemory):
def __init__(self, *args, **kwargs):
posix_ipc.SharedMemory.__init__(self, *args, **kwargs)
self.key = self.name
def read(self, byte_count = 0, offset = 0):
rc = []
byte_count = self.size if byte_count == 0 else byte_count
byte_count = min(byte_count, self.size - offset)
os.lseek(self.fd, offset, os.SEEK_SET)
while len(rc) < byte_count:
rc += list(os.read(self.fd, byte_count - len(rc)))
return bytes(rc)
def write(self, s, offset = 0):
s = s[:min(len(s), self.size - offset)]
os.lseek(self.fd, offset, os.SEEK_SET)
while len(s) > 0:
s = s[os.write(self.fd, s):]
def close(self):
self.close_fd()
def remove(self):
self.unlink()
self.close()
class MessageQueue(posix_ipc.MessageQueue):
def __init__(self, *args, **kwargs):
posix_ipc.MessageQueue.__init__(self, *args, **kwargs)
self.key = self.name
def remove(self):
self.unlink()
self.close()
|