source: roaraudio/roarclients/roar-config.c @ 5789:8dd93115a2ad

Last change on this file since 5789:8dd93115a2ad was 5765:d0e2788a0e0a, checked in by phi, 11 years ago

small updates to help and use of static keyword for roar-config.

File size: 8.0 KB
Line 
1//roar-config.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2012
5 *
6 *  This file is part of roarclients 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
21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
23 *
24 */
25
26#include <roaraudio.h>
27
28static const struct {
29 const char * name;
30 const char * cflags;
31 const char * libs;
32} flags[] = {
33 // native/own libs:
34 {"roar",      ROAR_CFLAGS, ROAR_LIBS        }, // NOTE: libroar *MUST* be the first entry
35 {"roardsp",   ROAR_CFLAGS, ROAR_LIBS_DSP    },
36 {"roarmidi",  ROAR_CFLAGS, ROAR_LIBS_MIDI   },
37 {"roarlight", ROAR_CFLAGS, ROAR_LIBS_LIGHT  },
38 {"roareio",   ROAR_CFLAGS, ROAR_LIBS_EIO    },
39 // comp libs:
40 {"roaresd",   ROAR_CFLAGS, ROAR_LIBS_C_ESD  },
41 {"esd",       ROAR_CFLAGS, ROAR_LIBS_C_ESD  },
42 {"roarartsc", ROAR_CFLAGS, ROAR_LIBS_C_ARTSC},
43 {"artsc",     ROAR_CFLAGS, ROAR_LIBS_C_ARTSC},
44 {"roarpulse", ROAR_CFLAGS, ROAR_LIBS_C_PULSE},
45 {"pulse",     ROAR_CFLAGS, ROAR_LIBS_C_PULSE},
46 {"roarpulse-simple", ROAR_CFLAGS, ROAR_LIBS_C_PULSE_SIMPLE},
47 {"pulse-simple",     ROAR_CFLAGS, ROAR_LIBS_C_PULSE_SIMPLE},
48 {"roarsndio", ROAR_CFLAGS, ROAR_LIBS_C_SNDIO},
49 {"sndio",     ROAR_CFLAGS, ROAR_LIBS_C_SNDIO},
50 {"roaryiff",  ROAR_CFLAGS, ROAR_LIBS_C_YIFF },
51 {"Y2",        ROAR_CFLAGS, ROAR_LIBS_C_YIFF },
52 {NULL, NULL, NULL}
53}, * flags_ptr = NULL;
54
55struct version {
56 int major, minor, revision;
57};
58
59static struct version parse_version(const char * version) {
60 struct version ret = {-1, -1, -1};
61 char * next;
62
63 if ( !strcasecmp(version, "current") )
64  version = COMMON_VERSION;
65
66 ret.major    = strtoll(version, &next, 0);
67 ret.minor    = strtoll(next+1, &next, 0);
68 ret.revision = strtoll(next+1, &next, 0);
69
70 return ret;
71}
72
73static int compare_versions_eq(struct version a, struct version b) {
74 return a.major == b.major && a.minor == b.minor && a.revision == b.revision;
75}
76
77static int compare_versions_gt(struct version a, struct version b) {
78 if ( a.major > b.major )
79  return 1;
80 if ( a.minor > b.minor )
81  return 1;
82 if ( a.revision > b.revision )
83  return 1;
84 return 0;
85}
86
87static int compare_versions_ge(struct version a, struct version b) {
88 return compare_versions_gt(a, b) || compare_versions_eq(a, b);
89}
90
91static int compare_versions_lt(struct version a, struct version b) {
92 return compare_versions_gt(b, a);
93}
94
95static int compare_versions_le(struct version a, struct version b) {
96 return compare_versions_lt(a, b) || compare_versions_eq(a, b);
97}
98
99static const struct {
100 const char * op;
101 int neg;
102 int (*func)(struct version a, struct version b);
103} compare_versions_funcs[] = {
104 {"eq", 0, compare_versions_eq},
105 {"ne", 1, compare_versions_eq},
106 {"gt", 0, compare_versions_gt},
107 {"ge", 0, compare_versions_ge},
108 {"lt", 0, compare_versions_lt},
109 {"le", 0, compare_versions_le}
110};
111
112static int compare_versions(const char * a, const char * op, const char * b) {
113 struct version va = parse_version(a);
114 struct version vb = parse_version(b);
115 size_t i;
116 int ret;
117
118 ROAR_DBG("compare_versions(a='%s', op='%s', b='%s'): {%i, %i, %i} <%s> {%i, %i, %i}\n", a, op, b, va.major, va.minor, va.revision, op, vb.major, vb.minor, vb.revision);
119
120 for (i = 0; i < (sizeof(compare_versions_funcs)/sizeof(*compare_versions_funcs)); i++) {
121  if ( !strcasecmp(compare_versions_funcs[i].op, op) ) {
122   ret = compare_versions_funcs[i].func(va, vb);
123   if ( compare_versions_funcs[i].neg )
124    ret = ret ? 0 : 1;
125
126   return ret ? 0 : 32;
127  }
128 }
129
130 ROAR_ERR("compare_versions(*): Operator \"%s\" not found.", op);
131 return 1;
132}
133
134void print_path(const char * name, int null_as_universal, const char * product, const char * provider) {
135 char * path = roar_libroar_get_path(name, null_as_universal, product, provider);
136 if ( path == NULL )
137  return;
138 printf("%s\n", path);
139 roar_mm_free(path);
140}
141
142void usage (void) {
143 printf("Usage: roar-config --version\n"
144        "       roar-config --compare-versions VERSIONA OPERATOR VERSIONB\n"
145        "       roar-config [{--output-pc|--output-normal}] [--libs] [--cflags] [LIB]\n"
146        "       roar-config [--product PRODUCT] [--provider PROVIDER] [--universal] --path PATH\n");
147
148 printf("\nOptions:\n\n");
149
150 printf("  --help              - Show this help\n"
151        "  --version           - Show version of library\n"
152        "  --compare-versions A OP B\n"
153        "                      - Compare version A against B with operator OP.\n"
154        "  --path NAME         - Print path NAME\n"
155        "  --product PRODUCT   - Product string for --path\n"
156        "  --provider PROVIDER - Provider string for --path\n"
157        "  --universal         - Use universal path for --path\n"
158        "  --libs              - Show linker flags (-lxxx) needed to link library\n"
159        "  --cflags            - Show compiler flags needed to link library\n"
160        "  --output-pc         - Output PC format\n"
161        "  --output-normal     - Output in \"classical\" format\n"
162       );
163
164}
165
166#define _strcat(buf, n) strncat(buf, n, sizeof(buf)-1-strlen(buf))
167
168int main (int argc, char * argv[]) {
169 enum { NORMAL, PC } mode = NORMAL;
170 int null_as_universal = 0;
171 const char * product = NULL;
172 const char * provider = NULL;
173 int i, h;
174 int cflags = 0;
175 int libs   = 0;
176 char buf[1024] = {0};
177
178 if ( argc == 1 ) {
179  usage();
180  return 0;
181 }
182
183 for (i = 1; i < argc; i++) {
184  if ( !strcmp(argv[i], "--version") ) {
185   printf("%s\n", COMMON_VERSION);
186  } else if ( !strcmp(argv[i], "--help") || !strcmp(argv[i], "-h") ) {
187   usage();
188   return 0;
189  } else if ( !strcmp(argv[i], "--compare-versions") ) {
190   return compare_versions(argv[i+1], argv[i+2], argv[i+3]);
191  } else if ( !strcmp(argv[i], "--product") ) {
192   product = argv[++i];
193  } else if ( !strcmp(argv[i], "--provider") ) {
194   provider = argv[++i];
195  } else if ( !strcmp(argv[i], "--universal") ) {
196   null_as_universal = 1;
197  } else if ( !strcmp(argv[i], "--path") ) {
198   print_path(argv[++i], null_as_universal, product, provider);
199  } else if ( !strcmp(argv[i], "--libs") ) {
200   libs   = 1;
201  } else if ( !strcmp(argv[i], "--cflags") ) {
202   cflags = 1;
203  } else if ( !strcmp(argv[i], "--output-normal") ) {
204   mode = NORMAL;
205  } else if ( !strcmp(argv[i], "--output-pc") ) {
206   mode = PC;
207  } else if ( flags_ptr == NULL ) {
208   if ( !strncmp(argv[i], "lib", 3) )
209    argv[i] += 3;
210
211   for (h = 0; flags[h].name != NULL; h++) {
212    if ( !strcasecmp(argv[i], flags[h].name) )
213     flags_ptr = &(flags[h]);
214   }
215
216   if ( flags_ptr == NULL ) {
217    fprintf(stderr, "Unknown lib: %s\n", argv[i]);
218    return 2;
219   }
220  } else {
221   fprintf(stderr, "Unknown option: %s\n", argv[i]);
222   usage();
223   return 1;
224  }
225 }
226
227 if ( flags_ptr == NULL )
228  flags_ptr = &(flags[0]);
229
230 switch (mode) {
231  case NORMAL:
232    if ( cflags || libs ) {
233     if ( cflags )
234      _strcat(buf, flags_ptr->cflags);
235
236     if ( libs )
237      _strcat(buf, flags_ptr->libs);
238
239     puts(buf);
240    }
241   break;
242  case PC:
243    printf(
244           "prefix=%s\n"
245           "exec_prefix=${prefix}\n"
246           "libdir=%s\n"
247           "includedir=%s\n",
248           PREFIX, PREFIX_LIB, PREFIX_INC
249          );
250    printf("\n");
251    printf(
252           "Name: lib%s\n"
253           "Description: lib%s is part of RoarAudio Sound System\n"
254           "Version: %s\n"
255//           "Requires: libroar\n"
256           "Conflicts:\n"
257           "Libs: -L${libdir} %s\n"
258           "Cflags: -I${includedir} %s\n",
259           flags_ptr->name,
260           flags_ptr->name,
261           COMMON_VERSION,
262           flags_ptr->libs,
263           flags_ptr->cflags
264          );
265   break;
266 }
267
268 return 0;
269}
270
271//ll
Note: See TracBrowser for help on using the repository browser.