source: roaraudio/include/roaraudio.h @ 5358:f3d3dc789cd7

Last change on this file since 5358:f3d3dc789cd7 was 5339:73250793bed1, checked in by phi, 12 years ago

added vendor database

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