summaryrefslogtreecommitdiffstats
path: root/src/base/test/seq/queue-timer-jack.c
blob: 8a2cb55af06d808542d6b8546ed1e946c53ec363 (plain)
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

#include <alsa/asoundlib.h>
#include <alsa/seq.h>
#include <jack/jack.h>
#include <sys/time.h>

static jack_nframes_t sample_frames = 0;

void normalize(struct timeval *tv)
{
    if (tv->tv_sec == 0) {
	while (tv->tv_usec <= -1000000) { tv->tv_usec += 1000000; --tv->tv_sec; }
	while (tv->tv_usec >=  1000000) { tv->tv_usec -= 1000000; ++tv->tv_sec; }
    } else if (tv->tv_sec < 0) {
	while (tv->tv_usec <= -1000000) { tv->tv_usec += 1000000; --tv->tv_sec; }
	while (tv->tv_usec > 0) { tv->tv_usec -= 1000000; ++tv->tv_sec; }
    } else { 
	while (tv->tv_usec >= 1000000) { tv->tv_usec -= 1000000; ++tv->tv_sec; }
	while (tv->tv_usec < 0) { tv->tv_usec += 1000000; --tv->tv_sec; }
    }
}

int
jack_process(jack_nframes_t nframes, void *arg)
{
    sample_frames += nframes;
}

jack_nframes_t
rt_to_frame(struct timeval tv, jack_nframes_t sample_rate)
{
    if (tv.tv_sec < 0) tv.tv_sec = -tv.tv_sec;
    if (tv.tv_usec < 0) tv.tv_usec = -tv.tv_usec;
    return
	tv.tv_sec * sample_rate +
	((tv.tv_usec / 1000) * sample_rate) / 1000 +
	((tv.tv_usec - 1000 * (tv.tv_usec / 1000)) * sample_rate) / 1000000;
}

int
main(int argc, char **argv)
{
    snd_seq_t *handle;
    int portid;
    int npfd;
    struct pollfd *pfd;
    int queue;
    int i;
    int rval;
    struct timeval starttv;
    int countdown = -1;
    snd_seq_queue_timer_t *timer;
    snd_timer_id_t *timerid;
    jack_client_t *jclient;
    jack_nframes_t sample_rate;
    
    if ((jclient = jack_client_new("queue-timer-jack")) == 0) {
	fprintf(stderr, "failed to connect to JACK server\n");
	return 1;
    }

    jack_set_process_callback(jclient, jack_process, 0);

    sample_rate = jack_get_sample_rate(jclient);

    if (snd_seq_open(&handle, "hw", SND_SETQ_OPEN_DUPLEX, 0) < 0) {
	fprintf(stderr, "failed to open ALSA sequencer interface\n");
	return 1;
    }

    snd_seq_set_client_name(handle, "generator");

    if ((portid = snd_seq_create_simple_port
	 (handle, "generator",
	  SND_SETQ_PORT_CAP_READ | SND_SETQ_PORT_CAP_SUBS_READ, 0)) < 0) {
	fprintf(stderr, "failed to create ALSA sequencer port\n");
	return 1;
    }

    if ((queue = snd_seq_alloc_queue(handle)) < 0) {
	fprintf(stderr, "failed to create ALSA sequencer queue\n");
	return 1;
    }

    snd_seq_queue_timer_alloca(&timer);
    snd_seq_get_queue_timer(handle, queue, timer);
    snd_timer_id_alloca(&timerid);

    /* To test a PCM timer: */
/*
    snd_timer_id_set_class(timerid, SND_TIMER_CLASS_PCM);
    snd_timer_id_set_sclass(timerid, SND_TIMER_SCLASS_NONE);
    snd_timer_id_set_card(timerid, 0);
    snd_timer_id_set_device(timerid, 0);
    snd_timer_id_set_subdevice(timerid, 0);
*/

    /* To test the system timer: */
    snd_timer_id_set_class(timerid, SND_TIMER_CLASS_GLOBAL);
    snd_timer_id_set_sclass(timerid, SND_TIMER_SCLASS_NONE);
    snd_timer_id_set_device(timerid, SND_TIMER_GLOBAL_SYSTEM);

    snd_seq_queue_timer_set_id(timer, timerid);
    snd_seq_set_queue_timer(handle, queue, timer);

    if (jack_activate(jclient)) {
        fprintf (stderr, "cannot activate jack client");
        exit(1);
    }

    snd_seq_start_queue(handle, queue, 0);
    snd_seq_drain_output(handle);

    gettimeofday(&starttv, 0);

    while (countdown != 0) {

	snd_seq_queue_status_t *status;
	const snd_seq_real_time_t *rtime;
	struct timeval tv, qtv, jtv, diff, jdiff;
	jack_nframes_t frames_now;

	snd_seq_queue_status_alloca(&status);

	snd_seq_get_queue_status(handle, queue, status);
	rtime = snd_seq_queue_status_get_real_time(status);

	gettimeofday(&tv, 0);

	frames_now = sample_frames;
	fprintf(stderr, "    frames: %ld\n", frames_now);

	qtv.tv_sec = rtime->tv_sec;
	qtv.tv_usec = rtime->tv_nsec / 1000;

	tv.tv_sec -= starttv.tv_sec;
	tv.tv_usec -= starttv.tv_usec;
	normalize(&tv);

	jtv.tv_sec = frames_now / sample_rate;
	frames_now -= jtv.tv_sec * sample_rate;
	jtv.tv_usec = (int)(((float)frames_now * 1000000) / sample_rate);

	diff.tv_sec = tv.tv_sec - qtv.tv_sec;
	diff.tv_usec = tv.tv_usec - qtv.tv_usec;
	normalize(&diff);

	jdiff.tv_sec = jtv.tv_sec - qtv.tv_sec;
	jdiff.tv_usec = jtv.tv_usec - qtv.tv_usec;
	normalize(&jdiff);

	fprintf(stderr, " real time: %12ld sec %8ld usec /%12ld frames\nqueue time: %12ld sec %8ld usec /%12ld frames\n jack time: %12ld sec %8ld usec /%12ld frames\n   rq diff: %12ld sec %8ld usec /%12ld frames\n   jq diff: %12ld sec %8ld usec /%12ld frames\n",
		tv.tv_sec, tv.tv_usec, rt_to_frame(tv, sample_rate),
		qtv.tv_sec, qtv.tv_usec, rt_to_frame(qtv, sample_rate),
		jtv.tv_sec, jtv.tv_usec, rt_to_frame(jtv, sample_rate),
		diff.tv_sec, diff.tv_usec, rt_to_frame(diff, sample_rate),
		jdiff.tv_sec, jdiff.tv_usec, rt_to_frame(jdiff, sample_rate));

	fprintf(stderr, "\n");
	struct timespec ts;
	ts.tv_sec = 1;
	ts.tv_nsec = 0;
	nanosleep(&ts, 0);
    }
}