gpt4 book ai didi

c - SIGALRM 实现

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:52:14 26 4
gpt4 key购买 nike

我是一个非常初级的程序员,我正在 Ubuntu 中开发客户端服务器程序。这段代码属于我的服务器文件,我想实现一个信号SIGALRM,但我不知道如何才能正确地做到这一点。我的目标是:在我调用信号 alarm(ans.game_time) 的代码部分,我想运行那个函数 Time,这个函数应该等待 ans.game_time 秒,在这几秒内,玩家应该加入游戏(这最后一部分尚未实现,“播放”命令)。

结构:

typedef struct request req;
struct request
{
char str[256];
int client_pid;
int login; // In case of client, to identify if is logged
int whois; // To identify who is the client and the server
};

typedef struct answer ans;
struct answer
{
char str[256];
int server_pid;
int type;
int login;
int num_users;
char game_name[25];
int game_time;
int game_users[4];
};

服务器文件:

#include "header"
int array_client_PID[4], num_users = 0;
int GAME_STATUS = 0;

void Time(int sign)
{
signal(SIGALRM, Time);
alarm(3);
printf("I'm Alive");
}

int main(){

int fifo_1,fifo_2, pid, i, number_args;
char FIFO_CLIENT[20], command[20], arg_1[20], arg_2[20];
struct request req;
struct answer ans;

signal(SIGALRM, Time);

do{
read(fifo_1, &req, sizeof(req)); // Read request

if(req.login == 1) // USER REGISTATION: If logged
{
number_args = sscanf(req.str, "%s %s %s", command, arg_1, arg_2);

if(strcasecmp(command, "new") == 0)
{
if(GAME_STATUS == 0)
{
ans.game_time = atoi(arg_2); // Converts the string into a integrer time game
strcpy(ans.game_name, arg_2); // Put the name of the game on the structure
ans.game_users[0] = req.client_pid; // Put on the users avaiable to play, the name of the game creator
alarm(ans.game_time);
//CreateGame(ans); // not implemented yet

}
else
{
strcpy(ans.str,"One game is in execution. Just wait...\n");
}

}

if(GAME_STATUS== 1) // GAME STATUS: ON
{
printf("INSIDE GAME_STATUS 1\n");
// Receive commands inside the game
}
}
sprintf(FIFO_CLIENT, "FIFO_%d", req.client_pid); //2nd FIFO name with client PID
fifo_2=open(FIFO_CLIENT, O_WRONLY); // Open 2nd FIFO to answer
write(fifo_2, &ans, sizeof(ans)); // Write an answer

}while(1);
}

我试图理解它是如何正常工作的,但这个信号真的让我感到困惑。

最佳答案

alarm() 不是在服务器中实现周期性事件的好方法。它用作异步信号,因此很难在其他事情发生时进行适当处理。例如,如果您的服务器正在向客户端发送消息,让警报响起并开始生成输出可能会中断消息。底线是,这不是解决此问题的正确方法。

大多数客户端/服务器应用程序在其核心使用select()poll() 系统调用。这些系统调用允许您的应用程序在任意数量的文件描述符上等待事件发生(例如,数据到达),并可选择超时。这就是大多数服务器应用程序一次处理与多个客户端的连接的方式。

使用这些系统调用可能需要您围绕“状态机”模型重构您的应用程序,而不是使用程序流来表示状态。解释如何有效地做到这一点是一项比像这样的简短回答合理的任务更大的任务;准备做一些研究!

关于c - SIGALRM 实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25706783/

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