gpt4 book ai didi

c - 消息接收程序只打印每隔一条消息

转载 作者:太空宇宙 更新时间:2023-11-04 12:54:54 24 4
gpt4 key购买 nike

我已经实现了 http://beej.us/guide/bgipc/output/html/multipage/mq.html 第 7.6 节中的两个程序.

我已经扩展了它,所以有两个接收程序,它去哪一个是由消息类型决定的。

问题出现在接收程序B和C中。他们应该每次都打印出输入程序A的消息,但是他们只是每隔一段时间打印一次消息。

这是发送消息的地方,它读取前 6 个字符,如果是紧急消息,它会设置消息类型。

buf.mtype = 2;

while(fgets(buf.mtext, sizeof buf.mtext, stdin) != NULL) {
int len = strlen(buf.mtext);

strncpy(typeTest, buf.mtext, 6);

if(strncmp(typeTest, "URGENT", 6) == 0){
buf.mtype = 1;
}

printf("This is the message %s \n", buf.mtext);

/* ditch newline at end, if it exists */
if (buf.mtext[len-1] == '\n') buf.mtext[len-1] = '\0';

if (msgsnd(msqid, &buf, len+1, 0) == -1) /* +1 for '\0' */
perror("msgsnd");
}

这是接收消息的地方,然后 if 语句检查类型然后打印出来。

for(;;) { /* Spock never quits! */
if (msgrcv(msqid, &buf, sizeof buf.mtext, 0, 0) == -1) {
perror("msgrcv");
exit(1);
}

if(buf.mtype == 2){
printf("spock: \"%s\"\n", buf.mtext);
}
}

谁能解释为什么它只打印出每隔一条消息?

谢谢。

最佳答案

在你的程序 A 中,如果输入不是“紧急...”,你必须将 buf.mtype 设置为 2,你必须在循环中每次都这样做。

while(fgets(buf.mtext, sizeof buf.mtext, stdin) != NULL) {
int len = strlen(buf.mtext);

strncpy(typeTest, buf.mtext, 6);

if(strncmp(typeTest, "URGENT", 6) == 0){
buf.mtype = 1;
}
else buf.mtype= 2; // always set the default

printf("This is the message %s \n", buf.mtext);

/* ditch newline at end, if it exists */
if (buf.mtext[len-1] == '\n') buf.mtext[len-1] = '\0';

if (msgsnd(msqid, &buf, len+1, 0) == -1) /* +1 for '\0' */
perror("msgsnd");
}

在您的程序 B 和 C 中,您必须将每个程序的 msgtyp 设置为 1 或 2,以便从队列中获取正确的消息,例如:

int main(argc, argv)
{
int msgtype;
if (*argv[1]=='A')
msgtype= 1;
else if (*argv[1]=='B')
msgtype= 2;
else
msgtype= 0;
...
for(;;) { /* Spock never quits! */
if (msgrcv(msqid, &buf, sizeof buf.mtext, msgtype, 0) == -1) {
perror("msgrcv");
exit(1);
}

if(buf.mtype == msgtype){
printf("spock: \"%s\"\n", buf.mtext);
}
}
return 0;
}

关于c - 消息接收程序只打印每隔一条消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36058016/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com