1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
/*
Copyright (C) 2006-2009 Fons Adriaensen <fons@kokkinizita.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <stdlib.h>
#include <stdio.h>
#include <clthreads.h>
#include <sys/mman.h>
#include <signal.h>
#include "jclient.h"
static Jclient *jclient = 0;
static ITC_ctrl itcctrl;
static bool stop = false;
static void help (void)
{
fprintf (stderr, "\nAmbDec-%s (command line version)\n\n", VERSION);
fprintf (stderr, " (C) 2006-2009 Fons Adriaensen <fons@kokkinizita.net>\n\n");
fprintf (stderr, "Usage: ambdec_cli config-file\n");
exit (1);
}
static void sigint_handler (int)
{
signal (SIGINT, SIG_IGN);
stop = true;
}
static void syncdec (int ev)
{
itcctrl.send_event (ev, 1);
itcctrl.get_event (1 << ev);
}
static void applconf (AD_conf *C)
{
syncdec (EV_GO_SILENCE);
if (C->_state & AD_conf::ST_OUTS)
{
jclient->disconn_opports ();
syncdec (EV_GO_BYPASS);
jclient->create_opports (C);
syncdec (EV_GO_SILENCE);
jclient->connect_opports (C);
}
if (C->_state & AD_conf::ST_INPS) jclient->set_ipports (C);
if (C->_state & AD_conf::ST_OPTS) jclient->set_config (C);
if (C->_state & AD_conf::ST_MATR) jclient->set_matrix (C);
syncdec (EV_GO_PROCESS);
C->_state = 0;
}
int main (int ac, char *av [])
{
int ev;
AD_conf conf;
if (ac < 2) help ();
if (conf.load (av [1]))
{
fprintf (stderr, "Can't load configuration '%s'\n", av [1]);
return 2;
}
jclient = new Jclient ("Ambdec");
ITC_ctrl::connect (&itcctrl, EV_GO_BYPASS, jclient, EV_GO_BYPASS);
ITC_ctrl::connect (&itcctrl, EV_GO_SILENCE, jclient, EV_GO_SILENCE);
ITC_ctrl::connect (&itcctrl, EV_GO_PROCESS, jclient, EV_GO_PROCESS);
ITC_ctrl::connect (jclient, EV_GO_BYPASS, &itcctrl, EV_GO_BYPASS);
ITC_ctrl::connect (jclient, EV_GO_SILENCE, &itcctrl, EV_GO_SILENCE);
ITC_ctrl::connect (jclient, EV_GO_PROCESS, &itcctrl, EV_GO_PROCESS);
ITC_ctrl::connect (jclient, EV_EXIT, &itcctrl, EV_EXIT);
if (mlockall (MCL_CURRENT | MCL_FUTURE)) fprintf (stderr, "Warning: memory lock failed.\n");
signal (SIGINT, sigint_handler);
conf._state = AD_conf::ST_ALL;
applconf (&conf);
jclient->set_gain (1.0f);
itcctrl.set_time (0);
while (! stop)
{
ev = itcctrl.get_event_timed ();
switch (ev)
{
case Esync::EV_TIME:
itcctrl.inc_time (100000);
break;
case EV_EXIT:
printf ("Kicked out by jackd !\n");
stop = true;
break;
}
}
delete jclient;
return 0;
}
|