source: roaraudio/roard/include/roard.h @ 4932:b16e4a17473c

Last change on this file since 4932:b16e4a17473c was 4932:b16e4a17473c, checked in by phi, 13 years ago

added dummy files for the rolestack

File size: 5.2 KB
RevLine 
[0]1//roard.h:
2
[668]3/*
[4708]4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2011
[668]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
[3517]21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
[668]23 *
24 */
25
[0]26#ifndef _ROARD_H_
27#define _ROARD_H_
28
[2970]29// configure ROAR_INFO()
30int g_verbose;
31#define ROAR_DBG_INFOVAR g_verbose
32
[4299]33// configure ROAR_*()
34#define ROAR_DBG_PREFIX "roard"
35
[1482]36// need to include this first as we need the config
37#include <roaraudio.h>
[3207]38#include <roaraudio/units.h>
[1964]39#include <libroarlight/libroarlight.h>
[2283]40#include <libroareio/libroareio.h>
[1482]41
[2726]42#include <ctype.h>
[1482]43
[3056]44#ifdef ROAR_HAVE_H_SIGNAL
[0]45#include <signal.h>
[1482]46#endif
47
[1537]48#if defined(ROAR_HAVE_SELECT) && defined(ROAR_HAVE_H_SYS_SELECT)
[0]49#include <sys/select.h>
[1482]50#endif
51
52#ifdef ROAR_HAVE_WAIT
[248]53#include <sys/wait.h>
[1482]54#endif
55
56#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER)
[444]57#include <pwd.h>
[1482]58#endif
59
[3202]60#ifdef ROAR_HAVE_H_SYS_TIME
[1198]61#include <sys/time.h>
[3202]62#endif
63#ifdef ROAR_HAVE_H_TIME
[1198]64#include <time.h>
[1482]65#endif
[242]66
[1993]67#ifdef ROAR_HAVE_LIBSLP
68#include <slp.h>
69#endif
70
[243]71/*
[242]72#ifdef __linux__
[243]73#include <linux/unistd.h>
[242]74#include <linux/ioprio.h>
75#endif
[243]76*/
[242]77
[1917]78#define ROAR_SUBSYS_NONE          0x00
79#define ROAR_SUBSYS_WAVEFORM      0x01
80#define ROAR_SUBSYS_MIDI          0x02
81#define ROAR_SUBSYS_CB            0x04
82#define ROAR_SUBSYS_LIGHT         0x08
[2232]83#define ROAR_SUBSYS_RAW           0x10
[2681]84#define ROAR_SUBSYS_COMPLEX       0x20
[2838]85#define ROAR_SUBSYS_RDTCS         0x40
[1917]86
[2530]87// listeing code:
[4766]88#define ROAR_MAX_LISTEN_SOCKETS   16
[2530]89
[3977]90union uniinst {
91 void * vp;
92 int    si;
93};
94
[3763]95// MFOI = Marked For Optional Include
96
[0]97//#include "buffer.h"
[4504]98#include "caps.h"
[4231]99#include "memlock.h"
[3763]100#include "codecfilter.h" /* MFOI */
101#include "container_framework.h" /* MFOI */
[4932]102#include "rolestack.h"
[0]103#include "client.h"
[4469]104#include "auth.h"
[3763]105#include "driver.h" /* MFOI */
[0]106#include "output.h"
107#include "mixer.h"
108//#include "convert.h"
109#include "streams.h"
110#include "network.h"
111#include "commands.h"
112#include "req.h"
[3763]113#include "emul_esd.h" /* MFOI */
114#include "emul_simple.h" /* MFOI */
115#include "emul_rsound.h" /* MFOI */
[3968]116#include "emul_rplay.h" /* MFOI */
[4699]117#include "emul_gopher.h" /* MFOI */
[0]118#include "sources.h"
[40]119#include "sample.h"
[4359]120#include "hwmixer.h"
[89]121#include "meta.h"
[244]122#include "midi.h"
[2446]123#include "ssynth.h"
[1816]124#include "light.h"
[2236]125#include "raw.h"
[2717]126#include "rdtcs.h"
[2945]127#include "waveform.h"
[3572]128#include "beep.h"
[245]129#include "lib.h"
[3353]130#include "plugins.h"
[0]131
[242]132
[0]133int alive;
[1494]134#ifdef ROAR_SUPPORT_LISTEN
[1155]135int g_no_listen;
[1494]136#endif
[0]137
[246]138uint32_t g_pos; // current possition in output stream
139
[0]140int g_standby;
[920]141int g_autostandby;
[0]142
[3730]143#ifdef ROAR_SUPPORT_LISTEN
144struct roard_listen;
145#endif
146
[4811]147int main_loop (struct roar_audio_info * sa, int sysclocksync);
[574]148void cleanup_listen_socket (int terminate);
[0]149void clean_quit (void);
150void clean_quit_prep (void);
151
[3800]152void on_sig_int  (int signum);
[2732]153void on_sig_term (int signum);
[248]154void on_sig_chld (int signum);
[2112]155void on_sig_usr1 (int signum);
[0]156
[1494]157#ifdef ROAR_SUPPORT_LISTEN
[3731]158int get_listen(struct roard_listen ** sock, char *** sockname);
[4678]159int add_listen (char * addr, int port, int sock_type, char * user, char * group, int proto, int dir, struct roar_audio_info * info);
[3730]160#endif
161
162#ifdef ROAR_SUPPORT_LISTEN
[3253]163struct roard_listen {
[3802]164 int used;
165 struct roar_vio_calls sock;
[3128]166 int proto;
167 union {
168  void * vp;
169  int    si;
170  struct {
171   int                    dir;
172   struct roar_audio_info info;
173  } stpl;
174 } inst;
175} g_listen[ROAR_MAX_LISTEN_SOCKETS];
[1494]176#endif
[0]177
[37]178int g_self_client;
179
[71]180int g_terminate;
181
[1609]182struct roar_audio_info * g_sa, * g_max_sa;
183
[4442]184#define CONF_DEF_STRING "***default***"
185
[1609]186struct roard_config {
187 uint32_t flags;
188 struct {
189  uint32_t flags;
190  struct roar_mixer_settings mixer;
191  int                        mixer_channels;
192 } streams[ROAR_DIR_DIRIDS];
[2017]193 char * location;
[4421]194 char * description;
[3039]195 size_t jumbo_mtu;
[4245]196 int memlock_level;
[4851]197#ifdef ROAR_HAVE_SYSTEM
198 struct {
199  const char * post_shutdown;
200 } scripts;
201#endif
[1609]202} * g_config;
[0]203
[4101]204struct _counters {
205 size_t clients, streams,
206        samples,
207        sources, outputs,
208        mixers, bridges,
209        listens;
210};
211
212struct {
213 struct _counters cur, sum;
214} g_counters;
215
216
217#define counters_init() memset(&g_counters, 0, sizeof(g_counters))
218//#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)
219#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)
220
221#define counters_get(g,c) ((g_counters.g.c))
222
223void counters_print(int type, int force);
224
[0]225#endif
226
227//ll
Note: See TracBrowser for help on using the repository browser.