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
|
/*
* Copyright (C) 2005-2008 by Pieter Palmers
*
* 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 <argp.h>
#include <stdlib.h>
#include <iostream>
#include <unistd.h>
#include <signal.h>
#include "controlclient.h"
/* Work around a bug in dbus-c++ 0.9.0 which prevents compilation under gcc7 */
#ifndef DBUS_HAS_RECURSIVE_MUTEX
#define DBUS_HAS_RECURSIVE_MUTEX
#endif
#include <dbus-c++/dbus.h>
static const char* SERVER_NAME = "org.ffado.Control";
static const char* SERVER_PATH = "/org/ffado/Control/Test/Fader";
using namespace std;
DECLARE_GLOBAL_DEBUG_MODULE;
////////////////////////////////////////////////
// arg parsing
////////////////////////////////////////////////
const char *argp_program_version = "test-dbus 0.1";
const char *argp_program_bug_address = "<ffado-devel@lists.sf.net>";
static char doc[] = "test-dbus -- test client for the DBUS interface";
static char args_doc[] = "";
static struct argp_option options[] = {
{"verbose", 'v', 0, 0, "Produce verbose output" },
{ 0 }
};
struct arguments
{
arguments()
: verbose( false )
{
args[0] = 0;
}
char* args[50];
bool verbose;
} 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;
switch (key) {
case 'v':
arguments->verbose = true;
break;
case ARGP_KEY_ARG:
if (state->arg_num >= 50) {
// Too many arguments.
argp_usage (state);
}
arguments->args[state->arg_num] = arg;
break;
case ARGP_KEY_END:
break;
default:
return ARGP_ERR_UNKNOWN;
}
return 0;
}
static struct argp argp = { options, parse_opt, args_doc, doc };
///////////////////////////
// main
//////////////////////////
DBus::BusDispatcher dispatcher;
static const int THREADS = 1;
static bool spin = true;
void leave( int sig )
{
spin = false;
dispatcher.leave();
}
void* worker_thread( void* )
{
DBus::Connection conn = DBus::Connection::SessionBus();
DBusControl::ContinuousClient client(conn, SERVER_PATH, SERVER_NAME);
int i=0;
while(spin)
{
try {
client.setValue(i++);
} catch(...) {
cout << "error on setValue()\n";
};
// try {
// std::map< DBus::String, DBus::String > info = client.Info();
// cout << info["testset1"] << " - " << info["testset2"] << std::endl;
// } catch(...) {
// cout << "error on Info()\n";
// };
cout << "* " << i << "*\n";
sleep(1);
}
return NULL;
}
void run_client_tests() {
DBus::default_dispatcher = &dispatcher;
pthread_t thread;
pthread_create(&thread, NULL, worker_thread, NULL);
dispatcher.enter();
pthread_join(thread, NULL);
}
int
main(int argc, char **argv)
{
signal(SIGTERM, leave);
signal(SIGINT, leave);
setDebugLevel(DEBUG_LEVEL_VERBOSE);
// arg parsing
argp_parse (&argp, argc, argv, 0, 0, &arguments);
errno = 0;
// char* tail;
if (errno) {
perror("argument parsing failed:");
return -1;
}
debugOutput(DEBUG_LEVEL_NORMAL, "DBUS test application\n");
DBus::_init_threading();
run_client_tests();
debugOutput(DEBUG_LEVEL_NORMAL, "bye...\n");
return 0;
}
|