| 
							- #include <stdio.h>
 - #include <stdlib.h>
 - #include <unistd.h>
 - #include <string.h>
 - #include <getopt.h>
 - 
 - #include <config.h>
 - 
 - #include <jack/jack.h>
 - 
 - char * my_name;
 - 
 - void
 - show_version (void)
 - {
 - 	fprintf (stderr, "%s: JACK Audio Connection Kit version " VERSION "\n",
 - 		my_name);
 - }
 - 
 - void
 - show_usage (void)
 - {
 - 	show_version ();
 - 	fprintf (stderr, "\nUsage: %s [options]\n", my_name);
 - 	fprintf (stderr, "List active Jack ports, and optionally display extra information.\n\n");
 - 	fprintf (stderr, "Display options:\n");
 - 	fprintf (stderr, "        -c, --connections     List connections to/from each port\n");
 - 	fprintf (stderr, "        -l, --latency         Display total latency in frames at each port\n");
 - 	fprintf (stderr, "        -p, --properties      Display port properties. Output may include:\n"
 - 			 "                              input|output, can-monitor, physical, terminal\n\n");
 - 	fprintf (stderr, "        -h, --help            Display this help message\n");
 - 	fprintf (stderr, "        --version             Output version information and exit\n\n");
 - 	fprintf (stderr, "For more information see http://jackit.sourceforge.net/\n");
 - }
 - 
 - int
 - main (int argc, char *argv[])
 - {
 - 	jack_client_t *client;
 - 	jack_status_t status;
 - 	const char **ports, **connections;
 - 	unsigned int i, j;
 - 	int show_con = 0;
 - 	int show_latency = 0;
 - 	int show_properties = 0;
 - 	int c;
 - 	int option_index;
 - 
 - 	struct option long_options[] = {
 - 		{ "connections", 0, 0, 'c' },
 - 		{ "latency", 0, 0, 'l' },
 - 		{ "properties", 0, 0, 'p' },
 - 		{ "help", 0, 0, 'h' },
 - 		{ "version", 0, 0, 'v' },
 - 		{ 0, 0, 0, 0 }
 - 	};
 - 
 - 	my_name = strrchr(argv[0], '/');
 - 	if (my_name == 0) {
 - 		my_name = argv[0];
 - 	} else {
 - 		my_name ++;
 - 	}
 - 
 - 	while ((c = getopt_long (argc, argv, "clphv", long_options, &option_index)) >= 0) {
 - 		switch (c) {
 - 		case 'c':
 - 			show_con = 1;
 - 			break;
 - 		case 'l':
 - 			show_latency = 1;
 - 			break;
 - 		case 'p':
 - 			show_properties = 1;
 - 			break;
 - 		case 'h':
 - 			show_usage ();
 - 			return 1;
 - 			break;
 - 		case 'v':
 - 			show_version ();
 - 			return 1;
 - 			break;
 - 		default:
 - 			show_usage ();
 - 			return 1;
 - 			break;
 - 		}
 - 	}
 - 
 - 	/* Open a client connection to the JACK server.  Starting a
 - 	 * new server only to list its ports seems pointless, so we
 - 	 * specify JackNoStartServer. */
 - 	//JOQ: need a new server name option
 - 
 - 	client = jack_client_open ("lsp", JackNoStartServer, &status);
 - 	if (client == NULL) {
 - 		if (status & JackServerFailed) {
 - 			fprintf (stderr, "JACK server not running\n");
 - 		} else {
 - 			fprintf (stderr, "jack_client_open() failed, "
 - 				 "status = 0x%x\n", status);
 - 		}
 - 		return 1;
 - 	}
 - 
 - 	ports = jack_get_ports (client, NULL, NULL, 0);
 - 
 - 	for (i = 0; ports[i]; ++i) {
 - 		printf ("%s\n", ports[i]);
 - 		if (show_con) {
 - 			if ((connections = jack_port_get_all_connections (client, jack_port_by_name(client, ports[i]))) != 0) {
 - 				for (j = 0; connections[j]; j++) {
 - 					printf ("   %s\n", connections[j]);
 - 				}
 - 				free (connections);
 - 			} 
 - 		}
 - 		if (show_latency) {
 - 			jack_port_t *port = jack_port_by_name (client, ports[i]);
 - 			if (port) {
 - 				printf ("	latency = %" PRIu32 " frames\n",
 - 					jack_port_get_total_latency (client, port));
 - 				free (port);
 - 			}
 - 		}
 - 		if (show_properties) {
 - 			jack_port_t *port = jack_port_by_name (client, ports[i]);
 - 			if (port) {
 - 				int flags = jack_port_flags (port);
 - 				printf ("	properties: ");
 - 				if (flags & JackPortIsInput) {
 - 					fputs ("input,", stdout);
 - 				}
 - 				if (flags & JackPortIsOutput) {
 - 					fputs ("output,", stdout);
 - 				}
 - 				if (flags & JackPortCanMonitor) {
 - 					fputs ("can-monitor,", stdout);
 - 				}
 - 				if (flags & JackPortIsPhysical) {
 - 					fputs ("physical,", stdout);
 - 				}
 - 				if (flags & JackPortIsTerminal) {
 - 					fputs ("terminal,", stdout);
 - 				}
 - 				putc ('\n', stdout);
 - 			}
 - 		}
 - 	}
 - 	jack_client_close (client);
 - 	exit (0);
 - }
 
 
  |