source: roaraudio/include/roaraudio.h @ 472:e098480dd275

Last change on this file since 472:e098480dd275 was 472:e098480dd275, checked in by phi, 16 years ago

this maybe get compiling on old gccs work

File size: 2.8 KB
Line 
1//roaraudio.h:
2
3#ifndef _ROARAUDIO_H_
4#define _ROARAUDIO_H_
5
6#include <stdlib.h>
7#include <unistd.h>
8#include <stdio.h>
9#include <string.h>
10#include <errno.h>
11#include <sys/types.h>
12#include <limits.h>
13#include <sys/mman.h>
14
15// TODO: can we move the next block into roard specific includes?
16#include <grp.h>
17#include <pwd.h>
18#include <sys/stat.h>
19
20#include <arpa/inet.h>
21
22#include <sys/socket.h>
23#include <netinet/in.h>
24#include <netinet/tcp.h>
25#include <sys/un.h>
26
27#include <netdb.h>
28
29#include <roaraudio/config.h>
30
31// NOTE: we need this macro in some of our header files.
32#if INT_MAX >= 32767
33#define roar_intm16  int
34#define roar_uintm16 unsigned int
35#else
36#define roar_intm16  int16_t
37#define roar_uintm16 uint16_t
38#endif
39
40#include <roaraudio/proto.h>
41#include <roaraudio/audio.h>
42#include <roaraudio/stream.h>
43#include <roaraudio/client.h>
44#include <roaraudio/sample.h>
45#include <roaraudio/meta.h>
46#include <roaraudio/acl.h>
47
48#include <libroar/libroar.h>
49
50#define ROAR_DEFAULT_PORT        16002
51#define ROAR_DEFAULT_HOST        "localhost"
52
53#define ROAR_DEFAULT_SOCK_GLOBAL "/tmp/roar"
54#define ROAR_DEFAULT_SOCK_USER   ".roar"
55
56#define ROAR_DEFAULT_SOCKGRP     "audio"
57
58#define ROAR_LIBS                "-lroar"
59#define ROAR_CFLAGS              ""
60
61//some basic macros:
62#define ROAR_STDIN  0
63#define ROAR_STDOUT 1
64#define ROAR_STDERR 2
65
66#define ROAR_DEBUG_OUTFH stderr
67
68#ifdef ROAR_DBG_PREFIX
69#undef ROAR_DBG_PREFIX
70#endif
71#define ROAR_DBG_PREFIX "roaraudio"
72
73#define ROAR_DBG_FULLPREFIX "(" ROAR_DBG_PREFIX ": " __FILE__ ":%i): "
74
75#if __GNUC__ < 3
76 #define ROAR_DBG(format, args...)
77 #define ROAR_ERR(format, args...)
78 #define ROAR_WARN(format, args...)
79#else
80
81#ifdef DEBUG
82 #define ROAR_DBG(format, args...)  fprintf(ROAR_DEBUG_OUTFH, ROAR_DBG_FULLPREFIX "DEBUG: " format "\n", __LINE__, ## args)
83#else
84 #define ROAR_DBG(format, args...)
85#endif
86
87#define ROAR_ERR(format, args...)  fprintf(ROAR_DEBUG_OUTFH, ROAR_DBG_FULLPREFIX "Error: "   format "\n", __LINE__, ## args)
88#define ROAR_WARN(format, args...) fprintf(ROAR_DEBUG_OUTFH, ROAR_DBG_FULLPREFIX "Warning: " format "\n", __LINE__, ## args)
89
90#endif
91
92#ifdef ROAR_HAVE_SAFE_OVERFLOW
93#define ROAR_MATH_OVERFLOW_ADD(a, b) ((a)+(b))
94#else
95#define ROAR_MATH_OVERFLOW_ADD(a, b) ((4294967295U - (a)) + 1 + (b))
96#endif
97
98#ifdef ROAR_HAVE_MLOCK
99#ifdef __linux__
100#define ROAR_MLOCK(p,s) mlock((p), (s))
101#else
102#undef ROAR_HAVE_MLOCK
103#define ROAR_MLOCK(p,s)
104#warning No working mlock() support for this platform
105#endif
106#endif
107
108
109#if BYTE_ORDER == BIG_ENDIAN
110
111#define ROAR_NET2HOST32(x) (x)
112#define ROAR_HOST2NET32(x) (x)
113#define ROAR_NET2HOST16(x) (x)
114#define ROAR_HOST2NET16(x) (x)
115
116//#elif BYTE_ORDER == LITTLE_ENDIAN
117#else
118
119#define ROAR_NET2HOST32(x) ntohl((x))
120#define ROAR_HOST2NET32(x) htonl((x))
121#define ROAR_NET2HOST16(x) ntohs((x))
122#define ROAR_HOST2NET16(x) htons((x))
123
124#endif
125
126#endif
127
128//ll
Note: See TracBrowser for help on using the repository browser.