*** empty log message ***
This commit is contained in:
parent
0b009e000a
commit
983b901a53
2 changed files with 61 additions and 44 deletions
|
@ -62,8 +62,10 @@ msgPool * msgPoolAllocate(int poolIdx, msgSpace *msg) {
|
|||
// TODO:récupérer l'id du poolData dans le msgSpace
|
||||
// détacher le morceau de mémoire du processus
|
||||
|
||||
// TODO:récupérer l'id de la pool (poolIdx) qui nous intéresse
|
||||
// ouvrir la
|
||||
// TODO:récupérer le poolData qui correspond à notre poolIdx.
|
||||
// attacher la zone mémoire correspondant à l'Id
|
||||
// utiliser des sémaphores pour vérouiller les acces en modif
|
||||
// sur la poolData de notre
|
||||
//msgSpacePoolData spoolData;
|
||||
|
||||
//dataId = msg->poolDataId;
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
#include "libnazgul.h"
|
||||
|
||||
/* prototypes des fonctions annexes à ne pas exporter */
|
||||
/* prototypes des f#define MSGSPACE_DEFAULT_MODE 0600
|
||||
#define MSGSPACE_ID_LEN 32
|
||||
|
||||
onctions annexes à ne pas exporter */
|
||||
int msgSpaceIdIntern(msgSpaceId dest,const msgSpaceId src );
|
||||
int msgPoolDataIdIntern(msgSpaceId dest,const msgSpaceId src );
|
||||
|
||||
|
@ -30,8 +33,8 @@ msgSpace * msgSpaceCreate(
|
|||
|
||||
mSIdNum++;
|
||||
mSAddr=NULL;
|
||||
/** recuperation de la liste des msgSpace **/
|
||||
/* (creation si elle n'existe pas */
|
||||
/** recuperation de la liste des msgSpace **/
|
||||
/* (creation si elle n'existe pas */
|
||||
|
||||
/** on créee le nouvel element **/
|
||||
printf("PAGESIZE : %d\n",(int)PAGESIZE);
|
||||
|
@ -46,7 +49,7 @@ msgSpace * msgSpaceCreate(
|
|||
);
|
||||
if (mSFd == -1 ) {
|
||||
fprintf( stderr, "msgSpace %s creation failed: %s\n",
|
||||
(char*)nzgId,
|
||||
(char*)nzgId,
|
||||
strerror( errno ) );
|
||||
return NULL;
|
||||
}
|
||||
|
@ -60,45 +63,57 @@ msgSpace * msgSpaceCreate(
|
|||
|
||||
/* Map the memory object */
|
||||
mSAddr = mmap( 0, sizeof( *mSAddr ),
|
||||
PROT_READ | PROT_WRITE,
|
||||
MAP_SHARED, mSFd, 0 );
|
||||
if( mSAddr == MAP_FAILED ) {
|
||||
fprintf( stderr, "mmap failed: %s\n",
|
||||
strerror( errno ) );
|
||||
return NULL;
|
||||
}
|
||||
PROT_READ | PROT_WRITE,
|
||||
MAP_SHARED, mSFd, 0 );
|
||||
if( mSAddr == MAP_FAILED ) {
|
||||
fprintf( stderr, "mmap failed: %s\n",
|
||||
strerror( errno ) );
|
||||
return NULL;
|
||||
}
|
||||
|
||||
printf( "Map addr is 0x%08x\n", (int)mSAddr );
|
||||
printf( "Map addr is 0x%08x\n", (int)mSAddr );
|
||||
|
||||
/* on ferme le descripteur du fichier */
|
||||
close(mSFd);
|
||||
/* on ferme le descripteur du fichier */
|
||||
close(mSFd);
|
||||
|
||||
/* on remplit la structure */
|
||||
strncpy(mSAddr->id,nzgId,MSGSPACE_ID_LEN);
|
||||
mSAddr->poolNb=poolNb;
|
||||
mSAddr->queueNb=queueNb;
|
||||
mSAddr->pid=getpid();
|
||||
/* on remplit la structure */
|
||||
strncpy(mSAddr->id,nzgId,MSGSPACE_ID_LEN);
|
||||
mSAddr->poolNb=poolNb;
|
||||
mSAddr->queueNb=queueNb;
|
||||
mSAddr->pid=getpid();
|
||||
|
||||
/* TODO: creation du poolData */
|
||||
msgPoolDataIdIntern(poolDataId,spaceId);
|
||||
/* creation du poolData */
|
||||
msgPoolDataIdIntern(poolDataId,spaceId);
|
||||
|
||||
mSPoolDataFd=shm_open(
|
||||
poolDataId,
|
||||
O_RDWR|O_CREAT|O_EXCL|O_TRUNC,
|
||||
MSGSPACE_DEFAULT_MODE
|
||||
);
|
||||
if (mSPoolDataFd == -1 ) {
|
||||
fprintf( stderr, "poolData %s creation failed: %s\n",
|
||||
(char*)poolDataId,
|
||||
strerror( errno ) );
|
||||
return NULL;
|
||||
}
|
||||
/* TODO:allocation de la bonne zone mémoire pour le poolData */
|
||||
|
||||
/* TODO: on ajoute spaceId a la liste des msgSpace connus */
|
||||
|
||||
/* TODO: on crée queueNb files de messages */
|
||||
|
||||
/* on créer poolNb pool de buffers */
|
||||
/* et on "attache" tout ce beau monde au spaceId */
|
||||
for (i=0;i<poolNb;i++){
|
||||
// creation d'une pool
|
||||
|
||||
// mSAddr->
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* TODO: on ajoute spaceId a la liste des msgSpace connus */
|
||||
|
||||
/* TODO: on crée queueNb files de messages */
|
||||
|
||||
/* on créer poolNb pool de buffers */
|
||||
/* et on "attache" tout ce beau monde au spaceId */
|
||||
for (i=0;i<poolNb;i++){
|
||||
// creation d'une pool
|
||||
|
||||
// mSAddr->
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* on renvoie un pointeur sur le bon spaceId */
|
||||
return mSAddr;
|
||||
/* on renvoie un pointeur sur le bon spaceId */
|
||||
return mSAddr;
|
||||
}
|
||||
|
||||
|
||||
|
@ -126,7 +141,7 @@ int msgSpaceDelete(msgSpaceId spaceId){
|
|||
if (msgSpaceIdIntern(nzgId,spaceId) == -1){
|
||||
//TODO: message d'erreur
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
if (shm_unlink(nzgId)<0){
|
||||
perror("shm_unlink");
|
||||
|
|
Loading…
Reference in a new issue