source: roaraudio/roard/commands.c @ 3517:1a3218a3fc5b

Last change on this file since 3517:1a3218a3fc5b was 3517:1a3218a3fc5b, checked in by phi, 14 years ago

updated license headers, FSF moved office

File size: 3.9 KB
Line 
1//commands.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
5 *
6 *  This file is part of roard a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
23 *
24 */
25
26#include "roard.h"
27
28#if !defined(ROAR_TARGET_MICROCONTROLLER) && !defined(ROAR_MINIMAL)
29#define _NAME(x) (x)
30#else
31#define _NAME(x) ((char*)NULL)
32#endif
33
34struct roar_command g_commands[COMMAND_MAX_COMMANDS] = {
35  {ROAR_CMD_NOOP,         _NAME("NOOP"),         req_on_noop},
36  {ROAR_CMD_IDENTIFY,     _NAME("IDENTIFY"),     req_on_identify},
37  {ROAR_CMD_AUTH,         _NAME("AUTH"),         req_on_auth},
38  {ROAR_CMD_WHOAMI,       _NAME("WHOAMI"),       req_on_whoami},
39
40
41  {ROAR_CMD_NEW_STREAM,   _NAME("NEW_STREAM"),   req_on_new_stream},
42
43#ifdef ROAR_SUPPORT_META
44  {ROAR_CMD_SET_META,     _NAME("SET_META"),     req_on_set_meta},
45  {ROAR_CMD_GET_META,     _NAME("GET_META"),     req_on_get_meta},
46  {ROAR_CMD_LIST_META,    _NAME("LIST_META"),    req_on_list_meta},
47#endif
48
49  {ROAR_CMD_EXEC_STREAM,  _NAME("EXEC_STREAM"),  req_on_exec_stream},
50  {ROAR_CMD_QUIT,         _NAME("QUIT"),         (int(*)(int client, struct roar_message * mes, char * data))clients_delete},
51
52  {ROAR_CMD_CON_STREAM,   _NAME("CON_STREAM"),   req_on_con_stream},
53  {ROAR_CMD_PASSFH,       _NAME("PASSFH"),       req_on_passfh},
54
55  {ROAR_CMD_SERVER_OINFO, _NAME("SERVER_OINFO"), req_on_server_oinfo},
56  {ROAR_CMD_GET_STANDBY,  _NAME("GET_STANDBY"),  req_on_get_standby},
57  {ROAR_CMD_SET_STANDBY,  _NAME("SET_STANDBY"),  req_on_set_standby},
58  {ROAR_CMD_EXIT,         _NAME("EXIT"),         req_on_exit},
59
60  {ROAR_CMD_LIST_CLIENTS, _NAME("LIST_CLIENTS"), req_on_list_clients},
61  {ROAR_CMD_LIST_STREAMS, _NAME("LIST_STREAMS"), req_on_list_streams},
62  {ROAR_CMD_GET_CLIENT,   _NAME("GET_CLIENT"),   req_on_get_client},
63  {ROAR_CMD_GET_STREAM,   _NAME("GET_STREAM"),   req_on_get_stream},
64  {ROAR_CMD_KICK,         _NAME("KICK"),         req_on_kick},
65  {ROAR_CMD_ATTACH,       _NAME("ATTACH"),       req_on_attach},
66  {ROAR_CMD_SET_VOL,      _NAME("SET_VOL"),      req_on_set_vol},
67  {ROAR_CMD_GET_VOL,      _NAME("GET_VOL"),      req_on_get_vol},
68  {ROAR_CMD_GET_STREAM_PARA, _NAME("GET_STREAM_PARA"), req_on_get_stream_para},
69  {ROAR_CMD_SET_STREAM_PARA, _NAME("SET_STREAM_PARA"), req_on_set_stream_para},
70
71  {ROAR_CMD_ADD_DATA,     _NAME("ADD_DATA"),     req_on_add_data},
72
73  {ROAR_CMD_EOL,          _NAME("END OF LIST"),  NULL}
74 };
75
76int command_get_id_by_cmd (int command) {
77 int i;
78 int cmd;
79
80 for (i = 0; i < COMMAND_MAX_COMMANDS; i++) {
81  if ( (cmd = g_commands[i].cmd) == ROAR_CMD_EOL )
82   break;
83
84  if ( cmd == command )
85   return i;
86 }
87
88 return -1;
89}
90
91int command_exec (int client, struct roar_message * mes, char * data) {
92 int cmd = command_get_id_by_cmd(mes->cmd);
93 int (*func)(int client, struct roar_message * mes, char * data);
94
95 if ( cmd == -1 )
96  return -1;
97
98 if ( (func = g_commands[cmd].handler) == NULL )
99  return -1;
100
101 ROAR_DBG("command_exec(*): Execing command %i(%s) via %p", cmd, g_commands[cmd].name, func);
102
103 return func(client, mes, data);
104}
105
106int command_get_name (int command, char ** name) {
107 int cmd = command_get_id_by_cmd(command);
108
109 if ( cmd == -1 ) {
110  *name = NULL;
111  return -1;
112 }
113
114 *name = g_commands[cmd].name;
115
116 return 0;
117}
118
119
120//ll
Note: See TracBrowser for help on using the repository browser.