source: roaraudio/include/roaraudio.h @ 4097:7517aa33cf65

Last change on this file since 4097:7517aa33cf65 was 4097:7517aa33cf65, checked in by phi, 14 years ago

moved #defines to where they should be

File size: 8.4 KB
RevLine 
[0]1//roaraudio.h:
2
[704]3/*
[3608]4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2010
[704]5 *
6 *  This file is 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 Lesser 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 Lesser General Public License for more details.
18 *
19 *  You should have received a copy of the GNU Lesser 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.
[704]23 *
24 *  NOTE: Even though this file is LGPLed it (may) include GPLed files
25 *  so the license of this file is/may therefore downgraded to GPL.
26 *  See HACKING for details.
27 */
28
[0]29#ifndef _ROARAUDIO_H_
30#define _ROARAUDIO_H_
31
[1074]32#include <roaraudio/config.h>
[1428]33#include <roaraudio/muconthacks.h>
[1073]34#include <roaraudio/win32hacks.h> // we include this at the beginning of the file
35                                  // so we can define well known standard types known to everyone
36                                  // and everywhere but win32 here
37
[1251]38// consts we need to set depending on the OS and features:
39#if defined(ROAR_NEED_GNU_SOURCE) && !defined(_GNU_SOURCE)
40#define _GNU_SOURCE
41#endif
42
43#if defined(ROAR_NEED_BSD_VISIBLE) && !defined(__BSD_VISIBLE)
44#define __BSD_VISIBLE 1
45#endif
46
[1477]47#include <stdint.h>
[0]48#include <stdlib.h>
[1426]49
50#ifdef ROAR_HAVE_H_UNISTD
[0]51#include <unistd.h>
[1426]52#endif
53
[0]54#include <stdio.h>
55#include <string.h>
56#include <errno.h>
[1425]57
58#ifdef ROAR_HAVE_H_SYS_TYPES
[0]59#include <sys/types.h>
[1425]60#endif
61
[0]62#include <limits.h>
[1422]63#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER)
[57]64#include <sys/mman.h>
[1075]65#endif
[0]66
[60]67// TODO: can we move the next block into roard specific includes?
[1422]68#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER)
[60]69#include <grp.h>
70#include <pwd.h>
71#include <sys/stat.h>
[1074]72#endif
[60]73
[1072]74#ifdef ROAR_TARGET_WIN32
75#include <winsock2.h>
[1375]76#else /* ROAR_TARGET_WIN32 */
77#ifdef ROAR_HAVE_BSDSOCKETS
78
79#if defined(ROAR_HAVE_IPV4) || defined(ROAR_HAVE_IPV6)
[0]80#include <arpa/inet.h>
[1375]81#endif
[0]82
[1472]83#ifdef ROAR_HAVE_SELECT
[0]84#include <sys/socket.h>
[1472]85#endif
[1375]86
87#ifdef ROAR_HAVE_IPV4
[0]88#include <netinet/in.h>
89#include <netinet/tcp.h>
[1375]90#endif
91#ifdef ROAR_HAVE_UNIX
[0]92#include <sys/un.h>
[1072]93#endif
[0]94
[1375]95#endif /* ROAR_HAVE_BSDSOCKETS */
96#endif /* ROAR_TARGET_WIN32 */
97
[480]98#ifdef __NetBSD__
99#include <netinet/in_systm.h>
100#endif
101
[1424]102#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER)
[0]103#include <netdb.h>
[1074]104#endif
[0]105
106// NOTE: we need this macro in some of our header files.
[3566]107// TODO: This is oubslute, we will remove it soon.
[0]108#if INT_MAX >= 32767
109#define roar_intm16  int
110#define roar_uintm16 unsigned int
111#else
112#define roar_intm16  int16_t
113#define roar_uintm16 uint16_t
114#endif
115
[988]116// this is to avoid warning messages on platforms
117// where sizeof(void*) == 8 and szeof(int) == 4
118#ifdef __LP64__
119#define ROAR_INSTINT long int
120#else
121#define ROAR_INSTINT int
122#endif
123
[874]124#ifndef __BEGIN_DECLS
125#ifdef __cplusplus
126# define __BEGIN_DECLS extern "C" {
127# define __END_DECLS }
128#else
129# define __BEGIN_DECLS
130# define __END_DECLS
131#endif
132#endif
133
134__BEGIN_DECLS
135
[0]136#include <roaraudio/proto.h>
[780]137#include <roaraudio/error.h>
[0]138#include <roaraudio/audio.h>
139#include <roaraudio/stream.h>
140#include <roaraudio/client.h>
141#include <roaraudio/sample.h>
[4097]142#include <roaraudio/beep.h>
[87]143#include <roaraudio/meta.h>
[3048]144#include <roaraudio/genre.h>
[344]145#include <roaraudio/acl.h>
[2418]146#include <roaraudio/misc.h>
[4073]147#include <roaraudio/byteorder.h>
[4097]148#include <roaraudio/socket.h>
[0]149
150#include <libroar/libroar.h>
151
[4057]152// Some glocal network defaults:
153#ifndef ROAR_NET_INET4_LOCALHOST
154#define ROAR_NET_INET4_LOCALHOST "localhost"
155#endif
156#ifndef ROAR_NET_INET4_ANYHOST
157#define ROAR_NET_INET4_ANYHOST   "0.0.0.0"
158#endif
159
160#ifndef ROAR_NET_INET6_LOCALHOST
161#define ROAR_NET_INET6_LOCALHOST "ipv6-localhost"
162#endif
163#ifndef ROAR_NET_INET6_ANYHOST
164#define ROAR_NET_INET6_ANYHOST   "::"
165#endif
166
[2514]167// IP:
168#define ROAR_DEFAULT_PORT        16002
169
[2512]170// IPv4
[2514]171#define ROAR_DEFAULT_INET4_PORT  ROAR_DEFAULT_PORT
[4057]172#define ROAR_DEFAULT_INET4_HOST  ROAR_NET_INET4_LOCALHOST
[2512]173// aliases:
174#define ROAR_DEFAULT_HOST        ROAR_DEFAULT_INET4_HOST
175
176// IPv6:
[2514]177#define ROAR_DEFAULT_INET6_PORT  ROAR_DEFAULT_PORT
[4057]178#define ROAR_DEFAULT_INET6_HOST  ROAR_NET_INET6_LOCALHOST
[0]179
[508]180// UNIX Domain Sockets
[0]181#define ROAR_DEFAULT_SOCK_GLOBAL "/tmp/roar"
182#define ROAR_DEFAULT_SOCK_USER   ".roar"
183
[508]184// DECnet
185#define ROAR_DEFAULT_OBJECT      "roar"
186#define ROAR_DEFAULT_NUM         0
[515]187#define ROAR_DEFAULT_LISTEN_OBJECT "::" ROAR_DEFAULT_OBJECT
[508]188
[4057]189// now handled by configure:
[927]190//#define ROAR_DEFAULT_SOCKGRP     "audio"
[450]191
[4057]192
193// defines for emulations:
194// ESD:
195#define ROAR_DEFAULT_ESD_GSOCK   "/tmp/.esd/socket"
196#define ROAR_DEFAULT_ESD_PORT    16001
197// RSound:
198#define ROAR_DEFAULT_RSOUND_GSOCK  "/tmp/rsound"
199#define ROAR_DEFAULT_RSOUND_PORT   12345
200#define ROAR_DEFAULT_RSOUND_OBJECT "::rsound"
201// PulseAudio:
202#define ROAR_DEFAULT_PA_PORT     4712
203// RPlay:
204#define ROAR_DEFAULT_RPLAY_PORT  5556
205
[2064]206#if defined(ROAR_HAVE_LIBWSOCK32) && defined(ROAR_HAVE_LIBWS2_32)
207#define ROAR_LIBS_WIN32          " -lwsock32 -lws2_32"
208#else
209#define ROAR_LIBS_WIN32          ""
210#endif
211
212#ifdef ROAR_HAVE_LIBSOCKET
213#define ROAR_LIBS_LIBSOCKET      " -lsocket"
214#else
215#define ROAR_LIBS_LIBSOCKET      ""
216#endif
217
218#ifdef ROAR_HAVE_LIBSENDFILE
219#define ROAR_LIBS_LIBSENDFILE    " -lsendfile"
220#else
221#define ROAR_LIBS_LIBSENDFILE    ""
222#endif
223
224#define ROAR_LIBS_NET_LIBS       ROAR_LIBS_LIBSOCKET ROAR_LIBS_WIN32
225
226#define ROAR_LIBS                "-lroar"       ROAR_LIBS_LIBSENDFILE ROAR_LIBS_NET_LIBS
[2024]227#define ROAR_LIBS_DSP            "-lroardsp "   ROAR_LIBS
228#define ROAR_LIBS_MIDI           "-lroarmidi "  ROAR_LIBS_DSP
229#define ROAR_LIBS_LIGHT          "-lroarlight " ROAR_LIBS
[2277]230#define ROAR_LIBS_EIO            "-lroareio "   ROAR_LIBS
[313]231#define ROAR_CFLAGS              ""
[0]232
[2876]233// comp libs:
234#define ROAR_LIBS_C_ESD          "-lroaresd "   ROAR_LIBS
235#define ROAR_LIBS_C_ARTSC        "-lroarartsc " ROAR_LIBS
236#define ROAR_LIBS_C_PULSE        "-lroarpulse " ROAR_LIBS
[3826]237#define ROAR_LIBS_C_PULSE_SIMPLE "-lroarpulse-simple " ROAR_LIBS_C_PULSE
[2876]238#define ROAR_LIBS_C_SNDIO        "-lroarsndio " ROAR_LIBS
239#define ROAR_LIBS_C_YIFF         "-lroaryiff "  ROAR_LIBS
240
[0]241//some basic macros:
242#define ROAR_STDIN  0
243#define ROAR_STDOUT 1
244#define ROAR_STDERR 2
245
246#define ROAR_DEBUG_OUTFH stderr
247
248#ifdef ROAR_DBG_PREFIX
249#undef ROAR_DBG_PREFIX
250#endif
251#define ROAR_DBG_PREFIX "roaraudio"
252
253#define ROAR_DBG_FULLPREFIX "(" ROAR_DBG_PREFIX ": " __FILE__ ":%i): "
254
[2969]255// some default info levels:
256#define ROAR_DBG_INFO_NONE             0
257#define ROAR_DBG_INFO_NOTICE           1
258#define ROAR_DBG_INFO_INFO             2
259#define ROAR_DBG_INFO_VERBOSE          3
260
[472]261#if __GNUC__ < 3
262 #define ROAR_DBG(format, args...)
263 #define ROAR_ERR(format, args...)
264 #define ROAR_WARN(format, args...)
[2969]265 #define ROAR_INFO(format, level, args...)
[472]266#else
267
[0]268#ifdef DEBUG
[3612]269 #define ROAR_DBG(format, args...)  roar_debug_msg(ROAR_DEBUG_TYPE_DEBUG, __LINE__, __FILE__, ROAR_DBG_PREFIX, format, ## args)
[0]270#else
271 #define ROAR_DBG(format, args...)
272#endif
273
[3612]274#define ROAR_ERR(format, args...)  roar_debug_msg(ROAR_DEBUG_TYPE_ERROR, __LINE__, __FILE__, ROAR_DBG_PREFIX, format, ## args)
275#define ROAR_WARN(format, args...) roar_debug_msg(ROAR_DEBUG_TYPE_WARNING, __LINE__, __FILE__, ROAR_DBG_PREFIX, format, ## args)
[0]276
[2969]277// INFO function:
[4054]278#ifdef DEBUG
279 #define ROAR_INFO(format, level, args...) roar_debug_msg(ROAR_DEBUG_TYPE_INFO, __LINE__, __FILE__, ROAR_DBG_PREFIX, format, ## args)
280#elif defined(ROAR_DBG_INFOVAR)
[3612]281 #define ROAR_INFO(format, level, args...) if ( (ROAR_DBG_INFOVAR) >= (level) ) roar_debug_msg(ROAR_DEBUG_TYPE_INFO, __LINE__, __FILE__, ROAR_DBG_PREFIX, format, ## args)
[2969]282#else
283 #define ROAR_INFO(format, level, args...)
284#endif
285
[472]286#endif
[0]287
288#ifdef ROAR_HAVE_SAFE_OVERFLOW
289#define ROAR_MATH_OVERFLOW_ADD(a, b) ((a)+(b))
290#else
291#define ROAR_MATH_OVERFLOW_ADD(a, b) ((4294967295U - (a)) + 1 + (b))
292#endif
293
[56]294#ifdef ROAR_HAVE_MLOCK
[312]295#ifdef __linux__
[57]296#define ROAR_MLOCK(p,s) mlock((p), (s))
[312]297#else
[701]298int _ROAR_MLOCK(const void *addr, size_t len);
[700]299#define ROAR_MLOCK _ROAR_MLOCK
[56]300#endif
[699]301#endif
[0]302
[3352]303#ifdef ROAR_HAVE_STRCASESTR
304#define _roar_strcasestr(a,b) strcasestr((a), (b))
305#else
306#define _roar_strcasestr(a,b) NULL
307#endif
308
[874]309__END_DECLS
310
[0]311#endif
312
313//ll
Note: See TracBrowser for help on using the repository browser.