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 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
|
/*
* Copyright (C) 2005-2008 by Pieter Palmers
* Copyright (C) 2005-2008 by Daniel Wagner
*
* This file is part of FFADO
* FFADO = Free Firewire (pro-)audio drivers for linux
*
* FFADO is based upon FreeBoB
*
* 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) version 3 of the License.
*
* 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, see <http://www.gnu.org/licenses/>.
*
*/
#include "config.h"
#include <libraw1394/raw1394.h>
#include <libiec61883/iec61883.h>
#include "debugmodule/debugmodule.h"
#include "devicemanager.h"
#include "libieee1394/configrom.h"
#include "libieee1394/ieee1394service.h"
#include "libutil/Configuration.h"
#include "libcontrol/MatrixMixer.h"
#include "libcontrol/CrossbarRouter.h"
#include "dice/dice_avdevice.h"
#include "dice/dice_eap.h"
using namespace Dice;
#include <argp.h>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <unistd.h>
#include <signal.h>
int run;
static void sighandler(int sig)
{
run = 0;
}
using namespace std;
using namespace Util;
DECLARE_GLOBAL_DEBUG_MODULE;
#define MAX_ARGS 1000
////////////////////////////////////////////////
// arg parsing
////////////////////////////////////////////////
const char *argp_program_version = "test-dice-eap 0.1";
const char *argp_program_bug_address = "<ffado-devel@lists.sf.net>";
static char doc[] = "test-dice-eap -- test program to examine the DICE EAP code.";
static char args_doc[] = "NODE_ID";
static struct argp_option options[] = {
{"verbose", 'v', "LEVEL", 0, "Produce verbose output" },
{"port", 'p', "PORT", 0, "Set port" },
{"node", 'n', "NODE", 0, "Set node" },
{"application",'a', NULL, 0, "Show the application space"},
{"counts", 'c', "COUNTS", 0, "Number of runs to do. -1 means to run forever."},
{ 0 }
};
struct arguments
{
arguments()
: nargs ( 0 )
, verbose( DEBUG_LEVEL_NORMAL )
, test( false )
, port( -1 )
, node( -1 )
, application( false )
, counts( -1 )
{
args[0] = 0;
}
char* args[MAX_ARGS];
int nargs;
int verbose;
bool test;
int port;
int node;
bool application;
int counts;
} arguments;
// Parse a single option.
static error_t
parse_opt( int key, char* arg, struct argp_state* state )
{
// Get the input argument from `argp_parse', which we
// know is a pointer to our arguments structure.
struct arguments* arguments = ( struct arguments* ) state->input;
char* tail;
errno = 0;
switch (key) {
case 'v':
arguments->verbose = strtol(arg, &tail, 0);
break;
case 't':
arguments->test = true;
break;
case 'a':
arguments->application = true;
break;
case 'p':
arguments->port = strtol(arg, &tail, 0);
if (errno) {
perror("argument parsing failed:");
return errno;
}
break;
case 'n':
arguments->node = strtol(arg, &tail, 0);
if (errno) {
perror("argument parsing failed:");
return errno;
}
break;
case 'c':
arguments->counts = strtol(arg, &tail, 0);
if (errno) {
perror("argument parsing failed:");
return errno;
}
break;
case ARGP_KEY_ARG:
if (state->arg_num >= MAX_ARGS) {
// Too many arguments.
argp_usage (state);
}
arguments->args[state->arg_num] = arg;
arguments->nargs++;
break;
case ARGP_KEY_END:
if(arguments->nargs<0) {
printf("not enough arguments\n");
return -1;
}
break;
default:
return ARGP_ERR_UNKNOWN;
}
return 0;
}
static struct argp argp = { options, parse_opt, args_doc, doc };
///////////////////////////
// main
//////////////////////////
int
main(int argc, char **argv)
{
run=1;
signal (SIGINT, sighandler);
signal (SIGPIPE, sighandler);
// arg parsing
if ( argp_parse ( &argp, argc, argv, 0, 0, &arguments ) ) {
printMessage("Could not parse command line\n" );
exit(-1);
}
errno = 0;
DeviceManager *m_deviceManager = new DeviceManager();
if ( !m_deviceManager ) {
printMessage("Could not allocate device manager\n" );
return -1;
}
if ( arguments.verbose ) {
m_deviceManager->setVerboseLevel(arguments.verbose);
}
if ( !m_deviceManager->initialize() ) {
printMessage("Could not initialize device manager\n" );
delete m_deviceManager;
return -1;
}
char s[1024];
if(arguments.node > -1) {
snprintf(s, 1024, "hw:%d,%d", arguments.port, arguments.node);
if ( !m_deviceManager->addSpecString(s) ) {
printMessage("Could not add spec string %s to device manager\n", s );
delete m_deviceManager;
return -1;
}
} else {
snprintf(s, 1024, "hw:%d", arguments.port);
if ( !m_deviceManager->addSpecString(s) ) {
printMessage("Could not add spec string %s to device manager\n", s );
delete m_deviceManager;
return -1;
}
}
if ( !m_deviceManager->discover(false) ) {
printMessage("Could not discover devices\n" );
delete m_deviceManager;
return -1;
}
if(m_deviceManager->getAvDeviceCount() == 0) {
printMessage("No devices found\n");
delete m_deviceManager;
return -1;
}
Dice::Device* avDevice = dynamic_cast<Dice::Device*>(m_deviceManager->getAvDeviceByIndex(0));
if(avDevice == NULL) {
printMessage("Device is not a DICE device\n" );
delete m_deviceManager;
return -1;
}
// now play
//avDevice->setVerboseLevel(DEBUG_LEVEL_VERY_VERBOSE);
bool supports_eap = EAP::supportsEAP(*avDevice);
if (!supports_eap) {
printMessage("EAP not supported on this device\n");
delete m_deviceManager;
return -1;
}
printMessage("device supports EAP\n");
EAP &eap = *(avDevice->getEAP());
if (arguments.application) {
eap.showApplication();
eap.showFullRouter();
eap.showFullPeakSpace();
}
else
eap.show();
eap.lockControl();
Control::Element *e = eap.getElementByName("MatrixMixer");
if(e == NULL) {
printMessage("Could not get MatrixMixer control element\n");
} else {
Control::MatrixMixer *m = dynamic_cast<Control::MatrixMixer *>(e);
if(m == NULL) {
printMessage("Element is not a MatrixMixer control element\n");
}/* else {
for(int row=0; row < 16; row++) {
for(int col=0; col < 18; col++) {
m->setValue(row, col, 0);
}
}
}*/
}
// after unlocking, these should not be used anymore
e = NULL;
eap.unlockControl();
while(run && arguments.counts != 0) {
eap.lockControl();
Control::Element *e = eap.getElementByName("Router");
if(e == NULL) {
printMessage("Could not get CrossbarRouter control element\n");
} else {
Control::CrossbarRouter *c = dynamic_cast<Control::CrossbarRouter *>(e);
if(c == NULL) {
printMessage("Element is not a CrossbarRouter control element\n");
} else {
std::map<std::string, double> peaks = c->getPeakValues();
for (std::map<std::string, double>::iterator it=peaks.begin(); it!=peaks.end();
++it) {
printMessage("%s: %g\n", it->first.c_str(), it->second);
}
}
}
// after unlocking, these should not be used anymore
e = NULL;
eap.unlockControl();
sleep(1);
arguments.counts--;
}
// cleanup
delete m_deviceManager;
return 0;
}
|