System V IPC&新

时间:2013-03-14 10:33:42

标签: c++ linux new-operator

我是Linux C和C ++编程的新手。我正在尝试为系统v ipc消息队列创建一个C ++类,我有一个问题。 我为这样的消息写了课:

class message
{
    friend class queue;
private:
    typedef struct
    {
        long mtype;
    char mdata[maxmsg_buf];
    }msgbuf_t, *msgbuf_ptr_t;

    msgbuf_ptr_t msgbuf_ptr;
public:
    message(void):msgbuf_ptr(NULL)
    {
        msgbuf_ptr = new msgbuf_t;
    }
    ipc::message::message(const long& type, const std::string& data):msgbuf_ptr(NULL)
    {
    msgbuf_ptr = new msgbuf_t;

    msgbuf_ptr->mtype = type;
    if(data.length() <= maxmsg_buf)
    {
    strncpy(msgbuf_ptr->mdata, data.c_str(), data.length());
    }
    }
};

class queue
{
private:
    mutable qid_t qid;
public:
    queue(const key_t& qkey = unique, const perm_t& qperm = usr_rw, const flag_t& qflag = none)
    {
         qid = msgget(qkey, qperm | qflag);
    if(qid == -1)
    {
    throw errno;                //specify exception for queue  
    }
    }
    void send(const ipc::message& msg, const int& sflag) const
    {
    if((msgsnd(qid, &msg.msgbuf_ptr, sizeof(msg.msgbuf_ptr->mdata), sflag)) == -1)
    {
    throw errno;                //specify exception for queue 
    }
    }
};


//Usage:
ipc::queue q(0x0000FFFF, ipc::usr_rw, ipc::create);
ipc::message msg(10L, "First test message for sysVipc queue");

q.send(msg);   //throws EFAULT from here

当我将msgbuf_ptr发送到msgsnd系统调用时,它返回EFAULT(错误地址)错误。所以我的问题是:我可以使用operator new分配msgbuf吗? 附:对不起,如果我的英语不好。

1 个答案:

答案 0 :(得分:1)

问题出在你的queue :: send方法中。 &msg.msgbuf_ptr是指向指针的指针。省略地址运算符&,你应该没问题。

编辑:没等了 msg.msgbuf_ptr->mdata是您的信息。 所以,你应该这样称呼它: msgsnd(qid, &msg.msgbuf_ptr + sizeof(msg.msgbuf.mtype), sizeof(msg.msgbuf_ptr->mdata), sflag)