source: roaraudio/include/roaraudio.h @ 4708:c9d40761088a

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

updated copyright statements

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