source: roaraudio/roard/commands.c @ 77:284968f15643

Last change on this file since 77:284968f15643 was 77:284968f15643, checked in by phi, 16 years ago

prepered a lot of code for multi-stream clientss

File size: 2.1 KB
Line 
1//commands.c:
2
3#include "roard.h"
4
5struct roar_command g_commands[COMMAND_MAX_COMMANDS] = {
6  {ROAR_CMD_NOOP,         "NOOP",         req_on_noop},
7  {ROAR_CMD_IDENTIFY,     "IDENTIFY",     req_on_identify},
8  {ROAR_CMD_AUTH,         "AUTH",         req_on_auth},
9  {ROAR_CMD_NEW_STREAM,   "NEW_STREAM",   req_on_new_stream},
10  {ROAR_CMD_SET_META,     "SET_META",     req_on_set_meta},
11  {ROAR_CMD_EXEC_STREAM,  "EXEC_STREAM",  req_on_exec_stream},
12  {ROAR_CMD_QUIT,         "QUIT",         clients_delete},
13
14  {ROAR_CMD_CON_STREAM,   "CON_STREAM",   req_on_con_stream},
15
16  {ROAR_CMD_SERVER_OINFO, "SERVER_OINFO", req_on_server_oinfo},
17  {ROAR_CMD_GET_STANDBY,  "GET_STANDBY",  req_on_get_standby},
18  {ROAR_CMD_SET_STANDBY,  "SET_STANDBY",  req_on_set_standby},
19  {ROAR_CMD_EXIT,         "EXIT",         req_on_exit},
20
21  {ROAR_CMD_LIST_CLIENTS, "LIST_CLIENTS", req_on_list_clients},
22  {ROAR_CMD_LIST_STREAMS, "LIST_STREAMS", req_on_list_streams},
23  {ROAR_CMD_GET_CLIENT,   "GET_CLIENT",   req_on_get_client},
24  {ROAR_CMD_GET_STREAM,   "GET_STREAM",   req_on_get_stream},
25  {ROAR_CMD_KICK,         "KICK",         req_on_kick},
26  {ROAR_CMD_SET_VOL,      "SET_VOL",      req_on_set_vol},
27  {ROAR_CMD_GET_VOL,      "GET_VOL",      req_on_get_vol},
28
29  {ROAR_CMD_ADD_DATA,     "ADD_DATA",     req_on_add_data},
30
31  {ROAR_CMD_EOL,          "END OF LIST",  NULL}
32 };
33
34int command_get_id_by_cmd (int command) {
35 int i;
36 int cmd;
37
38 for (i = 0; i < COMMAND_MAX_COMMANDS; i++) {
39  if ( (cmd = g_commands[i].cmd) == ROAR_CMD_EOL )
40   break;
41
42  if ( cmd == command )
43   return i;
44 }
45
46 return -1;
47}
48
49int command_exec (int client, struct roar_message * mes, char * data) {
50 int cmd = command_get_id_by_cmd(mes->cmd);
51 int (*func)(int client, struct roar_message * mes, char * data);
52
53 if ( cmd == -1 )
54  return -1;
55
56 if ( (func = g_commands[cmd].handler) == NULL )
57  return -1;
58
59 ROAR_DBG("command_exec(*): Execing command %i(%s) via %p", cmd, g_commands[cmd].name, func);
60
61 return func(client, mes, data);
62}
63
64int command_get_name (int command, char ** name) {
65 int cmd = command_get_id_by_cmd(command);
66
67 if ( cmd == -1 ) {
68  *name = NULL;
69  return -1;
70 }
71
72 *name = g_commands[cmd].name;
73
74 return 0;
75}
76
77
78//ll
Note: See TracBrowser for help on using the repository browser.