l3.libnazgul/src/queueInit.c

72 lines
1.6 KiB
C
Raw Normal View History

2004-02-23 21:30:30 +00:00
#include "libnazgul.h"
#include "ids.h"
2004-02-25 10:32:41 +00:00
msgQueue * msgQueueInit(msgSpaceId externId, int queueIdx) {
2004-02-23 21:30:30 +00:00
int queueFd;
msgQueue * queue;
2004-02-24 09:22:26 +00:00
sem_t * semProtectFd;
msgQueueSemId queueSemProtectId;
sem_t * semReadableFd;
msgQueueSemId queueSemReadableId;
2004-02-23 21:30:30 +00:00
msgQueueId queueId;
queue = NULL;
2004-02-24 09:22:26 +00:00
2004-02-25 10:32:41 +00:00
2004-02-24 09:22:26 +00:00
msgQueueProtSemIdIntern(queueSemProtectId,externId,queueIdx);
msgQueueReadSemIdIntern(queueSemReadableId,externId,queueIdx);
2004-02-25 10:32:41 +00:00
2004-02-24 09:22:26 +00:00
// creation du semaphore de lecture
semReadableFd = sem_open(queueSemReadableId,
O_CREAT|O_EXCL, SEM_DEFAULT_MODE, 0);
if(semReadableFd == SEM_FAILED) {
NZG_ERROR("sem_open", queueSemReadableId);
goto ERROR;
}
2004-02-23 21:30:30 +00:00
2004-02-24 09:22:26 +00:00
// creation du semaphore de protection
semProtectFd = sem_open(queueSemProtectId,
2004-02-25 11:12:03 +00:00
O_CREAT|O_EXCL, SEM_DEFAULT_MODE, 0);
2004-02-24 09:22:26 +00:00
if(semProtectFd == SEM_FAILED) {
NZG_ERROR("sem_open", queueSemProtectId);
goto ERROR;
}
2004-02-25 11:12:03 +00:00
/* if(sem_wait(semProtectFd)==-1){
2004-02-24 09:22:26 +00:00
NZG_ERROR("sem_wait",queueSemProtectId);
goto ERROR;
2004-02-25 11:12:03 +00:00
} */
2004-02-24 09:22:26 +00:00
2004-02-23 21:30:30 +00:00
if(msgQueueIdIntern(queueId, externId, queueIdx) < 0) {
return NULL;
}
queueFd = shm_open(queueId, O_RDWR|O_CREAT|O_EXCL|O_TRUNC, MSGSPACE_DEFAULT_MODE);
if(queueFd == -1) {
2004-02-25 11:12:03 +00:00
NZG_ERROR("shm_open : queueInit",queueId);
return NULL;
2004-02-23 21:30:30 +00:00
}
2004-02-25 11:12:03 +00:00
if(ftruncate(queueFd, sizeof(msgQueue)) == -1) {
fprintf( stderr, "Queue resizing failed: %s\n",
strerror( errno ) );
return NULL;
}
2004-02-23 21:30:30 +00:00
2004-02-25 11:12:03 +00:00
queue=msgQueueOpen(queueId);
2004-02-23 21:30:30 +00:00
/* on remplit la structure msgQueue */
queue->elemCounter = 0;
2004-02-25 11:12:03 +00:00
strcpy(queue->id,queueId);
2004-02-24 08:48:48 +00:00
strcpy(queue->headId,queue->id);
strcpy(queue->tailId,queue->id);
2004-02-23 21:30:30 +00:00
/* on ferme tout ce qu'il faut */
close(queueFd);
2004-02-25 11:12:03 +00:00
msgQueueProtUnlock(externId,queueIdx);
2004-02-24 09:22:26 +00:00
2004-02-23 21:30:30 +00:00
return queue;
ERROR:
return NULL;
2004-02-24 09:22:26 +00:00
2004-02-23 21:30:30 +00:00
}