source: roaraudio/roard/include/client.h @ 4683:9d58aba09f3e

Last change on this file since 4683:9d58aba09f3e was 4683:9d58aba09f3e, checked in by phi, 13 years ago

do not kick clients of registered protos on connect...

File size: 4.0 KB
Line 
1//client.h:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2010
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#ifndef _CLIENT_H_
27#define _CLIENT_H_
28
29/*
30 Defined in <roaraudio/client.h>
31
32
33#define ROAR_BUFFER_NAME 80
34
35#define ROAR_CLIENTS_MAX 64
36#define ROAR_CLIENTS_MAX_STREAMS_PER_CLIENT 4
37
38struct roar_client {
39 int fh; /-* controll connection *-/
40// int last_stream; /-* id of the last stream created *-/
41 char name[ROAR_BUFFER_NAME];
42 int pid;
43 char host[ROAR_BUFFER_NAME];
44 int execed;
45 int streams[ROAR_CLIENTS_MAX_STREAMS_PER_CLIENT];
46} * g_clients[ROAR_CLIENTS_MAX];
47*/
48
49// access level:
50enum roard_client_acclev {
51 ACCLEV_NONE     = 0, // only very basic commands like NOOP and IDENTIFY
52 ACCLEV_IDENTED,      // same as NONE but INDENTIFY worked.
53 ACCLEV_CONCTL,       // only allowed to do basic connection things.
54 ACCLEV_GUEST,        // guest connection (read only)
55 ACCLEV_USER,         // normal user connect (read write)
56 ACCLEV_PWRUSER,      // power user, may access other user's clients
57 ACCLEV_ALL           // full (admin) access (read write ctl)
58};
59
60struct roar_client_nsubscribe {
61 struct roar_subscriber * sub;
62};
63
64struct roar_client_server {
65 struct roar_client _client;
66 size_t blockc;
67 struct roar_subscriber ** waits;
68 enum roard_client_acclev acclev;
69} * g_clients[ROAR_CLIENTS_MAX];
70
71struct roard_listen;
72
73struct roard_proto {
74 int proto;
75 int (*new_client)(int client, struct roar_vio_calls * vio, struct roard_listen * lsock);
76 int (*check_client)(int client, struct roar_vio_calls * vio);
77};
78
79#define MAX_PROTOS 8
80struct roard_proto g_proto[MAX_PROTOS];
81
82// basic functions
83int clients_init       (void);
84int clients_free       (void);
85int clients_new        (void);
86int clients_new_from_fh(int fh, int proto, int byteorder, int update_nnode);
87int clients_delete     (int id);
88int clients_close      (int id, int nocheck_exec);
89int clients_set_fh     (int id, int    fh);
90int clients_set_pid    (int id, int    pid);
91int clients_set_uid    (int id, int    uid);
92int clients_set_gid    (int id, int    gid);
93int clients_set_name   (int id, char * name);
94int clients_set_proto  (int id, int    proto);
95int clients_get        (int id, struct roar_client ** client);
96int clients_get_server (int id, struct roar_client_server ** client);
97int clients_get_fh     (int id);
98
99int clients_block      (int id, int unblock);
100
101// network functions
102int clients_check_all  (void);
103int clients_check      (int id);
104int clients_send_mon   (struct roar_audio_info * sa, uint32_t pos);
105int clients_send_filter(struct roar_audio_info * sa, uint32_t pos);
106
107// proto support
108int clients_register_proto(struct roard_proto * proto);
109
110// stream functions
111int client_stream_exec   (int client, int stream);
112int client_stream_set_fh (int client, int stream, int fh);
113int client_stream_add    (int client, int stream);
114int client_stream_delete (int client, int stream);
115int client_stream_move   (int client, int stream);
116
117// notify thingys
118int  clients_wait    (int client, struct roar_event * events, size_t num);
119void clients_ncb_wait(struct roar_notify_core * core, struct roar_event * event, void * userdata);
120
121// acclev:
122enum roard_client_acclev clients_str2acclev(const char * acclev);
123const char * clients_acclev2str(const enum roard_client_acclev acclev);
124
125#endif
126
127//ll
Note: See TracBrowser for help on using the repository browser.