Continue msgSpace naming
This commit is contained in:
parent
665cb90dd6
commit
4b9ddb3187
4 changed files with 79 additions and 47 deletions
|
@ -11,5 +11,7 @@
|
|||
#include <errno.h>
|
||||
|
||||
#define PAGESIZE sysconf(_SC_PAGESIZE)
|
||||
#define MSGSPACE_DEFAULT_MODE 0600
|
||||
#define MSGSPACE_ID_LEN 32
|
||||
|
||||
#endif
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
#ifndef _NZG_IFACE
|
||||
#define _NZG_IFACE 1
|
||||
|
||||
|
||||
#include "nzg_global.h"
|
||||
#define MSGSPACE_DEFAULT_MODE 0600
|
||||
#define MSGSPACE_ID_LEN 32
|
||||
|
||||
typedef char msgSpaceId[MSGSPACE_ID_LEN];
|
||||
|
||||
typedef char msgSpaceListId[4*MSGSPACE_ID_LEN];
|
||||
|
@ -19,12 +15,17 @@ typedef char msgSpaceQueueId[4*MSGSPACE_ID_LEN];
|
|||
/* pid[] */
|
||||
/* liste des processus demandeurs */
|
||||
typedef struct MsgPool {
|
||||
int bufferSize;
|
||||
int bufferNb;
|
||||
} msgPool;
|
||||
|
||||
typedef struct MsgPoolData {
|
||||
msgSpacePoolId id;
|
||||
int bufferNb;
|
||||
int bufferSize;
|
||||
int allocDispBuffer;
|
||||
int allocOverload;
|
||||
} msgPool;
|
||||
} msgPoolData;
|
||||
|
||||
/* TODO: queueId */
|
||||
|
||||
|
|
|
@ -55,9 +55,17 @@ int msgSpacePoolId2nzgPoolId(msgSpacePoolId dest,msgSpacePoolId src, int num){
|
|||
// //donne l'adr en mappant in the memory
|
||||
//poolAddr = mmap(NULL, sizeof(*msgPool), PROT_NONE, MAP_SHARED, poolFd, 0);
|
||||
|
||||
msgPool * msgPoolAllocate(int poolFd, msgSpace *msg) {
|
||||
msgPool * msgPoolAllocate(int poolIdx, msgSpace *msg) {
|
||||
msgPool * poolAddr;
|
||||
int dataId;
|
||||
|
||||
// TODO:récupérer l'id du poolData dans le msgSpace
|
||||
// détacher le morceau de mémoire du processus
|
||||
|
||||
// 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,7 +1,11 @@
|
|||
#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 );
|
||||
|
||||
/*
|
||||
* spaceId : identifiant externe de l'espace de msg
|
||||
|
@ -18,10 +22,13 @@ msgSpace * msgSpaceCreate(
|
|||
msgSpaceId nzgId;
|
||||
/* msgSpaceList mSList; */
|
||||
int mSFd; // shm file descriptor
|
||||
int mSPoolDataFd; // shm file descriptor
|
||||
int i;
|
||||
static int mSIdNum=-1;
|
||||
msgSpace * mSAddr;
|
||||
|
||||
msgSpacePoolId poolDataId;
|
||||
msgPoolData * mSPoolDataAddr;
|
||||
|
||||
fprintf(stderr,"Creating msgSpace with id : %s\n",spaceId);
|
||||
|
||||
|
@ -76,7 +83,21 @@ msgSpace * msgSpaceCreate(
|
|||
mSAddr->queueNb=queueNb;
|
||||
mSAddr->pid=getpid();
|
||||
|
||||
/* TODO: creation du poolData */
|
||||
/* 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 */
|
||||
|
||||
|
@ -143,7 +164,7 @@ int msgSpaceIdIntern(msgSpaceId dest,const msgSpaceId src ){
|
|||
return 0;
|
||||
}
|
||||
|
||||
int msgSpacePoolDataIdIntern(msgSpaceId dest,const msgSpaceId src ){
|
||||
int msgPoolDataIdIntern(msgSpaceId dest,const msgSpaceId src ){
|
||||
if (strlen(src)>MSGSPACE_ID_LEN){
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue