Semaphores.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00061
#ifndef SEMAPHORES_INC
00062
#define SEMAPHORES_INC
00063
00064
#include <sys/sem.h>
00065
#include <sys/types.h>
00066
#include <sys/ipc.h>
00067
#include <sys/shm.h>
00068
00069
namespace PLearn {
00070
using namespace std;
00071
00072
00073
#if (defined(__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED)) || defined(_NO_XOPEN4)
00074
00075
#else
00076
00077 union semun {
00078 int val;
00079 struct semid_ds *
buf;
00080 unsigned short int *
array;
00081 struct seminfo *
__buf;
00082 };
00083
#endif
00084
00087 class SemId {
00088
public:
00089 int id;
00090 SemId(
int i = -1) :
id(i) {}
00091 SemId(
SemId& semid) :
id(semid.
id) {}
00092 };
00093
00094 class ResourceSemaphore {
00095
protected:
00096 SemId id;
00097 bool owner;
00098
00099 int n_semaphores;
00100
00101
public:
00102
00104
ResourceSemaphore(
int nb_semaphores=1);
00105
00107
ResourceSemaphore(
SemId semid);
00108
00113
void lock(
int resource=0);
00114
00117
void unlock(
int resource=0);
00118
00120
bool locked(
int resource=0);
00121
00123
void clearAnyLock();
00125
void clearAnyLock(
int resource);
00126
00128
~ResourceSemaphore();
00129 };
00130
00131 class CountEventsSemaphore {
00132
protected:
00133 SemId id;
00134 bool owner;
00135
00136 int n_semaphores;
00137
00138
public:
00139
00141
CountEventsSemaphore(
int nb_semaphores=1);
00142
00144
CountEventsSemaphore(
SemId semid);
00145
00148
void signal(
int type=0);
00149
00154
void wait(
int n_occurences,
int type=0);
00155
00157
int value(
int type=0);
00158
00160
void setValue(
int value,
int resource=0);
00161
00163
~CountEventsSemaphore();
00164 };
00165
00166
template <
class T>
00167 class SharedMemory {
00168
protected:
00169 SemId id;
00170 bool owner;
00171
00172 int size_;
00173 T*
segment;
00174
public:
00176 SharedMemory(
int n_items=1) :
owner(true) {
00177
size_ = n_items*
sizeof(T);
00178
int rv=shmget(IPC_PRIVATE,
size_, 0666 | IPC_CREAT);
00179
if (rv == -1)
PLERROR(
"SharedMemory::SharedMemory, shmget failed:%s",strerror(errno));
00180
else id.id=rv;
00181
segment = (T*)shmat(
id.
id,0,0);
00182
if (
segment == 0)
00183
PLERROR(
"SharedMemory::SharedMemory, shmat failed trying to allocate %d bytes: err=%s",
00184
size_,strerror(errno));
00185
00186 }
00187
00189 SharedMemory(
SemId semid) :
id(semid),
owner(false) {
00190
struct shmid_ds buf;
00191
int r = shmctl(
id.
id,IPC_STAT,&buf);
00192
if (r == -1)
00193
PLERROR(
"SharedMemory:: slave SharedMemory(%d) shmctl returns -1, %s",
00194
id.
id,strerror(errno));
00195
size_ = buf.shm_segsz;
00196
segment = (T*)shmat(
id.
id,0,0);
00197 }
00198
00200 T*
data()
const {
return segment; }
00201
00202 int size()
const {
return size_ /
sizeof(T); }
00203
00205 ~SharedMemory() {
00206
int rv=shmdt((
char*)
segment);
00207
if (rv == -1)
00208
PLERROR(
"SharedMemory::~SharedMemory (id=%d) shmdt failed, %s",
00209
id.
id,strerror(errno));
00210
if (
owner)
00211 {
00212 rv=shmctl(
id.
id,IPC_RMID,0);
00213
if (rv == -1)
00214
PLERROR(
"SharedMemory::~SharedMemory (id=%d) shmctl failed, %s",
00215
id.
id,strerror(errno));
00216 cout <<
"released shared memory segment ID = " <<
id.id <<
endl;
00217 }
00218 }
00219 };
00220
00221 }
00222
00223
#endif
Generated on Tue Aug 17 16:05:06 2004 for PLearn by
1.3.7