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
|
/*
Copyright (C) 2007 Paul Davis
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 <stdio.h>
#include <errno.h>
#ifndef WIN32
#include <unistd.h>
#endif
#include <string.h>
#include <signal.h>
#include <stdlib.h>
#include <jack/jack.h>
#include <jack/metadata.h>
#include <jack/uuid.h>
jack_client_t *client;
static void signal_handler(int sig)
{
jack_client_close(client);
fprintf(stderr, "signal received, exiting ...\n");
exit(0);
}
static void
port_rename_callback (jack_port_id_t port, const char* old_name, const char* new_name, void* arg)
{
printf ("Port %d renamed from %s to %s\n", port, old_name, new_name);
}
static void
port_callback (jack_port_id_t port, int yn, void* arg)
{
printf ("Port %d %s\n", port, (yn ? "registered" : "unregistered"));
}
static void
connect_callback (jack_port_id_t a, jack_port_id_t b, int yn, void* arg)
{
printf ("Ports %d and %d %s\n", a, b, (yn ? "connected" : "disconnected"));
}
static void
client_callback (const char* client, int yn, void* arg)
{
printf ("Client %s %s\n", client, (yn ? "registered" : "unregistered"));
}
static int
graph_callback (void* arg)
{
printf ("Graph reordered\n");
return 0;
}
static void
propchange (jack_uuid_t subject, const char* key, jack_property_change_t change, void* arg)
{
char buf[JACK_UUID_STRING_SIZE];
const char* action = "";
switch (change) {
case PropertyCreated:
action = "created";
break;
case PropertyChanged:
action = "changed";
break;
case PropertyDeleted:
action = "deleted";
break;
}
if (jack_uuid_empty (subject)) {
printf ("All properties changed!\n");
} else {
jack_uuid_unparse (subject, buf);
if (key) {
printf ("key [%s] for %s %s\n", key, buf, action);
} else {
printf ("all keys for %s %s\n", buf, action);
}
}
}
int
main (int argc, char *argv[])
{
jack_options_t options = JackNullOption;
jack_status_t status;
if ((client = jack_client_open ("event-monitor", options, &status, NULL)) == 0) {
fprintf (stderr, "jack_client_open() failed, "
"status = 0x%2.0x\n", status);
if (status & JackServerFailed) {
fprintf (stderr, "Unable to connect to JACK server\n");
}
return 1;
}
if (jack_set_port_registration_callback (client, port_callback, NULL)) {
fprintf (stderr, "cannot set port registration callback\n");
return 1;
}
if (jack_set_port_rename_callback (client, port_rename_callback, NULL)) {
fprintf (stderr, "cannot set port registration callback\n");
return 1;
}
if (jack_set_port_connect_callback (client, connect_callback, NULL)) {
fprintf (stderr, "cannot set port connect callback\n");
return 1;
}
if (jack_set_client_registration_callback (client, client_callback, NULL)) {
fprintf (stderr, "cannot set client registration callback\n");
return 1;
}
if (jack_set_graph_order_callback (client, graph_callback, NULL)) {
fprintf (stderr, "cannot set graph order registration callback\n");
return 1;
}
if (jack_set_property_change_callback (client, propchange, NULL)) {
fprintf (stderr, "cannot set property change callback\n");
return 1;
}
if (jack_activate (client)) {
fprintf (stderr, "cannot activate client");
return 1;
}
#ifndef WIN32
signal(SIGINT, signal_handler);
signal(SIGQUIT, signal_handler);
signal(SIGHUP, signal_handler);
#endif
signal(SIGABRT, signal_handler);
signal(SIGTERM, signal_handler);
#ifdef WIN32
Sleep(INFINITE);
#else
sleep (-1);
#endif
exit (0);
}
|