source: roaraudio/roard/include/roard.h @ 4101:42b7ee5d2f76

Last change on this file since 4101:42b7ee5d2f76 was 4101:42b7ee5d2f76, checked in by phi, 14 years ago

some work to support counters

File size: 4.7 KB
Line 
1//roard.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 _ROARD_H_
27#define _ROARD_H_
28
29// configure ROAR_INFO()
30int g_verbose;
31#define ROAR_DBG_INFOVAR g_verbose
32
33// need to include this first as we need the config
34#include <roaraudio.h>
35#include <roaraudio/units.h>
36#include <libroarlight/libroarlight.h>
37#include <libroareio/libroareio.h>
38
39#include <ctype.h>
40
41#ifdef ROAR_HAVE_H_SIGNAL
42#include <signal.h>
43#endif
44
45#if defined(ROAR_HAVE_SELECT) && defined(ROAR_HAVE_H_SYS_SELECT)
46#include <sys/select.h>
47#endif
48
49#ifdef ROAR_HAVE_WAIT
50#include <sys/wait.h>
51#endif
52
53#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER)
54#include <pwd.h>
55#endif
56
57#ifdef ROAR_HAVE_H_SYS_TIME
58#include <sys/time.h>
59#endif
60#ifdef ROAR_HAVE_H_TIME
61#include <time.h>
62#endif
63
64#ifdef ROAR_HAVE_LIBSLP
65#include <slp.h>
66#endif
67
68/*
69#ifdef __linux__
70#include <linux/unistd.h>
71#include <linux/ioprio.h>
72#endif
73*/
74
75#define ROAR_SUBSYS_NONE          0x00
76#define ROAR_SUBSYS_WAVEFORM      0x01
77#define ROAR_SUBSYS_MIDI          0x02
78#define ROAR_SUBSYS_CB            0x04
79#define ROAR_SUBSYS_LIGHT         0x08
80#define ROAR_SUBSYS_RAW           0x10
81#define ROAR_SUBSYS_COMPLEX       0x20
82#define ROAR_SUBSYS_RDTCS         0x40
83
84// listeing code:
85#define ROAR_MAX_LISTEN_SOCKETS  8
86
87union uniinst {
88 void * vp;
89 int    si;
90};
91
92// MFOI = Marked For Optional Include
93
94//#include "buffer.h"
95#include "codecfilter.h" /* MFOI */
96#include "container_framework.h" /* MFOI */
97#include "client.h"
98#include "driver.h" /* MFOI */
99#include "output.h"
100#include "mixer.h"
101//#include "convert.h"
102#include "streams.h"
103#include "network.h"
104#include "commands.h"
105#include "req.h"
106#include "emul_esd.h" /* MFOI */
107#include "emul_simple.h" /* MFOI */
108#include "emul_rsound.h" /* MFOI */
109#include "emul_rplay.h" /* MFOI */
110#include "sources.h"
111#include "sample.h"
112#include "meta.h"
113#include "midi.h"
114#include "ssynth.h"
115#include "light.h"
116#include "raw.h"
117#include "rdtcs.h"
118#include "waveform.h"
119#include "beep.h"
120#include "lib.h"
121#include "plugins.h"
122
123
124int alive;
125#ifdef ROAR_SUPPORT_LISTEN
126int g_no_listen;
127#endif
128
129uint32_t g_pos; // current possition in output stream
130
131int g_standby;
132int g_autostandby;
133
134#ifdef ROAR_SUPPORT_LISTEN
135struct roard_listen;
136#endif
137
138int main_loop (int driver, DRIVER_USERDATA_T driver_inst, struct roar_audio_info * sa, int sysclocksync);
139void cleanup_listen_socket (int terminate);
140void clean_quit (void);
141void clean_quit_prep (void);
142
143void on_sig_int  (int signum);
144void on_sig_term (int signum);
145void on_sig_chld (int signum);
146void on_sig_usr1 (int signum);
147
148#ifdef ROAR_SUPPORT_LISTEN
149int get_listen(struct roard_listen ** sock, char *** sockname);
150#endif
151
152#ifdef ROAR_SUPPORT_LISTEN
153struct roard_listen {
154 int used;
155 struct roar_vio_calls sock;
156 int proto;
157 union {
158  void * vp;
159  int    si;
160  struct {
161   int                    dir;
162   struct roar_audio_info info;
163  } stpl;
164 } inst;
165} g_listen[ROAR_MAX_LISTEN_SOCKETS];
166#endif
167
168int g_self_client;
169
170int g_terminate;
171
172struct roar_audio_info * g_sa, * g_max_sa;
173
174struct roard_config {
175 uint32_t flags;
176 struct {
177  uint32_t flags;
178  struct roar_mixer_settings mixer;
179  int                        mixer_channels;
180 } streams[ROAR_DIR_DIRIDS];
181 char * location;
182 size_t jumbo_mtu;
183} * g_config;
184
185struct _counters {
186 size_t clients, streams,
187        samples,
188        sources, outputs,
189        mixers, bridges,
190        listens;
191};
192
193struct {
194 struct _counters cur, sum;
195} g_counters;
196
197
198#define counters_init() memset(&g_counters, 0, sizeof(g_counters))
199//#define counters_inc(c,i) do { signed long int __i = (i); if ( __i < 0 && __i > (g_counters.cur.c) ) { ROAR_WARN("counters_inc(c=%s, i=%li): Decrement request bigger than current counter value. Counter out of syn!", )  } while (0)
200#define counters_inc(c,i) do { signed long int __i = (i); g_counters.cur.c += __i; if ( __i > 0 ) g_counters.sum.c += __i; } while (0)
201
202#define counters_get(g,c) ((g_counters.g.c))
203
204void counters_print(int type, int force);
205
206#endif
207
208//ll
Note: See TracBrowser for help on using the repository browser.