网上找了一会儿,一时半刻找不到合适的实现SysV 消息队列的API,没办法,只好直接用Mutex 实现了一个PV操作的消息队列。
接口:
OS_MSGQ_Handle OS_MSGQ_Create(
API_IN int queueSize, // should <= MSGQ_SIZE_MAX
API_IN int dataSize // should <= MSGQ_DATASIZE_MAX
);
OS_RET OS_MSGQ_Destroy(
API_IN OS_MSGQ_Handle pHandle
);
OS_RET OS_MSGQ_Recv(
API_IN OS_MSGQ_Handle pHandle,
API_IN char *pmsg,
API_IN int size, // should <= dataSize
API_IN int wait
);
OS_RET OS_MSGQ_Send(
API_IN OS_MSGQ_Handle pHandle,
API_IN char *pmsg, int size ,
API_IN int wait
);
OS_RET OS_MSGQ_Flush(
API_IN OS_MSGQ_Handle pHandle
);
实现:
主要用了3个锁
API同步锁
读同步锁 接收的时候判断队伍是否为空,空的话挂起读同步锁
写同步锁 发送时判断队列是否满,满的话挂起写同步锁
Debug时,发现自己一直搞晕写与读,发送端对应写同步锁,接收端对应读同步锁。
写了2-3个小时才实现好。
Mutex:
接口:
OS_Mutex_Handle OS_Mutex_Create();
OS_RET OS_Mutex_Destroy(
API_IN OS_Mutex_Handle pHandle
);
OS_RET OS_Mutex_Lock(
API_IN OS_Mutex_Handle pHandle
);
OS_RET OS_Mutex_UnLock(
API_IN OS_Mutex_Handle pHandle
);
实现:
pthread_mutex_init(&mutex->mutexID, NULL);
pthread_mutex_lock(&mutex->mutexID);
pthread_mutex_unlock(&mutex->mutexID);
pthread_mutex_destroy(&mutex->mutexID);