2019-08-03 09:48:50 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2015 Robin Gareus <robin@gareus.org>
|
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2014-02-24 13:49:58 -05:00
|
|
|
#include <iostream>
|
|
|
|
#include <cstdlib>
|
|
|
|
|
|
|
|
#include "misc.h"
|
|
|
|
|
|
|
|
void
|
|
|
|
TestReceiver::receive (Transmitter::Channel chn, const char * str)
|
|
|
|
{
|
|
|
|
const char *prefix = "";
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2014-02-24 13:49:58 -05:00
|
|
|
switch (chn) {
|
2020-10-13 15:46:52 -04:00
|
|
|
case Transmitter::Debug:
|
|
|
|
/* ignore */
|
|
|
|
return;
|
2014-02-24 13:49:58 -05:00
|
|
|
case Transmitter::Info:
|
|
|
|
/* ignore */
|
|
|
|
return;
|
|
|
|
case Transmitter::Warning:
|
|
|
|
prefix = ": [WARNING]: ";
|
|
|
|
break;
|
2020-10-13 15:46:52 -04:00
|
|
|
case Transmitter::Error:
|
|
|
|
prefix = ": [ERROR]: ";
|
|
|
|
break;
|
2014-02-24 13:49:58 -05:00
|
|
|
case Transmitter::Fatal:
|
|
|
|
prefix = ": [FATAL]: ";
|
|
|
|
break;
|
|
|
|
case Transmitter::Throw:
|
|
|
|
/* this isn't supposed to happen */
|
|
|
|
abort ();
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2014-02-24 13:49:58 -05:00
|
|
|
/* note: iostreams are already thread-safe: no external
|
|
|
|
lock required.
|
|
|
|
*/
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2014-02-24 13:49:58 -05:00
|
|
|
std::cout << prefix << str << std::endl;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2014-02-24 13:49:58 -05:00
|
|
|
if (chn == Transmitter::Fatal) {
|
|
|
|
::exit (9);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* temporarily required due to some code design confusion (Feb 2014) */
|
|
|
|
|
|
|
|
#include "ardour/vst_types.h"
|
|
|
|
|
|
|
|
int vstfx_init (void*) { return 0; }
|
|
|
|
void vstfx_exit () {}
|
|
|
|
void vstfx_destroy_editor (VSTState*) {}
|