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
|
/*
* File: seqlib.m - Interface to the alsa sequencer library.
*
* Copyright (C) 1999 Steve Ratcliffe
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* 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.
*/
#include "glib.h"
#include "elements.h"
#include "except.h"
#include "intl.h"
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include "seqlib.h"
#include "seqpriv.h"
/*
* Create a main client for an application. A queue is
* allocated and a client is created.
*/
seq_context_t *
seq_create_context()
{
seq_context_t *ctxp;
int q;
ctxp = g_new(seq_context_t, 1);
ctxp->main = ctxp; /* This is the main context */
if (snd_seq_open(&ctxp->handle, SND_SEQ_OPEN) < 0)
except(ioError, "Could not open sequencer: %s", snd_strerror(errno));
q = snd_seq_alloc_queue(ctxp->handle);
ctxp->client = snd_seq_client_id(ctxp->handle);
ctxp->queue = q;
ctxp->destlist = g_array_new(0, 0, sizeof(snd_seq_addr_t));
ctxp->queue = q;
ctxp->source.client = ctxp->client;
ctxp->source.port = 0;
seq_new_port(ctxp);
return ctxp;
}
/*
* Create another client context based on the specified
* context. The same queue will be used for both clients. A new
* client will be created.
* Arguments:
* ctxp -
*/
seq_context_t *
seq_new_client(seq_context_t *ctxp)
{
return NULL;/*XXX*/
}
/*
* Free a context and any associated data and resources. If the
* main context is freed then the sequencer is closed. TODO:
* link all together so can all be closed at once.
*/
void
seq_free_context(seq_context_t *cxtp)
{
if (cxtp->main == cxtp) {
/* This is the main context */
snd_seq_free_queue(cxtp->handle, cxtp->queue);
snd_seq_close(cxtp->handle);
}
g_free(cxtp);
}
/*
* Creates a new port on the specified context and returns the
* port number.
* Arguments:
* ctxp - Context to create the port for
*/
int
seq_new_port(seq_context_t *ctxp)
{
int ret;
ret = snd_seq_create_simple_port(ctxp->handle, NULL,
SND_SEQ_PORT_CAP_OUT |
SND_SEQ_PORT_CAP_SUBSCRIPTION |
SND_SEQ_PORT_CAP_IN,
SND_SEQ_PORT_TYPE_MIDI_GENERIC);
if (ret < 0) {
printf("Error creating port %s\n", snd_strerror(errno));
return -1;
}
ctxp->port_count++;
ctxp->source.port = ret;
return ret;/*XXX*/
}
void
seq_destroy_port(seq_context_t *cxtp, int port)
{
}
/*
* Set up the context so that all subsequent events will be sent
* to the specified client and port combination. A
* subscription is made to the client/port combination.
* Arguments:
* ctxp - Context to modify
* client - Client to send subsequent events to
* port - Port on the client to send events to
*/
int
seq_connect_add(seq_context_t *ctxp, int client, int port)
{
snd_seq_addr_t addr;
int ret;
memset(&addr, 0, sizeof(addr));
addr.client = client;
addr.port = port;
g_array_append_val(ctxp->destlist, addr);
ret = snd_seq_connect_to(ctxp->handle, ctxp->source.port, client, port);
return ret;
}
/*
* Set the initial time base and tempo. This should only be used
* for initialisation when there is nothing playing. To
* change the tempo during a song tempo change events are used.
* If realtime is false the resolution is in ticks per quarter
* note. If true, the the resolution is microseconds. There is
* a macro XXX to convert from SMPTE codes.
*
* Arguments:
* ctxp - Application context
* resolution - Ticks per quarter note or realtime resolution
* tempo - Beats per minute
* realtime - True if absolute time base
*/
int
seq_init_tempo(seq_context_t *ctxp, int resolution, int tempo, int realtime)
{
snd_seq_queue_tempo_t qtempo;
int ret;
memset(&qtempo, 0, sizeof(qtempo));
qtempo.queue = ctxp->queue;
qtempo.ppq = resolution;
qtempo.tempo = 60*1000000/tempo;
ret = snd_seq_set_queue_tempo(ctxp->handle, ctxp->queue, &qtempo);
return ret;
}
/*
* Set the context to use the specified queue. All events sent
* on this context will now use this queue.
*
* Arguments:
* ctxp - Context to modify
* q - The queue number
*/
void
seq_set_queue(seq_context_t *ctxp, int q)
{
}
/*
* Send the event to the specified client and port.
*
* Arguments:
* ctxp - Client context
* ev - Event to send
* client - Client to send the event to
* port - Port to send the event to
*/
int
seq_sendto(seq_context_t *ctxp, snd_seq_event_t *ev, int client, int port)
{
ev->source = ctxp->source;
ev->queue = ctxp->queue;
ev->dest.client = client;
ev->dest.port = port;
seq_write(ctxp, ev);
return 0;
}
/*
* Start the timer. (What about timers other than the system
* one?)
*/
void
seq_start_timer(seq_context_t *ctxp)
{
seq_control_timer(ctxp, SND_SEQ_EVENT_START);
}
/*
* Stop the timer. (What about timers other than the system
* one?)
*/
void
seq_stop_timer(seq_context_t *ctxp)
{
seq_control_timer(ctxp, SND_SEQ_EVENT_STOP);
}
void
seq_control_timer(seq_context_t *ctxp, int onoff)
{
snd_seq_event_t ev;
memset(&ev, 0, sizeof(ev));
ev.queue = ctxp->queue;
ev.dest.client = SND_SEQ_CLIENT_SYSTEM; /* system */
ev.dest.port = SND_SEQ_PORT_SYSTEM_TIMER; /* timer */
ev.data.queue.queue = ctxp->queue;
ev.flags = SND_SEQ_TIME_STAMP_REAL | SND_SEQ_TIME_MODE_REL;
ev.time.time.tv_sec = 0;
ev.time.time.tv_nsec = 0;
ev.type = onoff;
snd_seq_event_output(ctxp->handle, &ev);
snd_seq_flush_output(ctxp->handle);
}
/*
* Write out the event. This routine blocks until
* successfully written.
*
* Arguments:
* ctxp - Application context
* ep - Event
*/
int
seq_write(seq_context_t *ctxp, snd_seq_event_t *ep)
{
int err = 0;
err = snd_seq_event_output(ctxp->handle, ep);
if (err < 0)
return err;
#ifndef SND_SEQ_IOCTL_GET_CLIENT_POOL
/*
* If this is not defined then block mode writes will not be
* working correctly. Therefore loop until all events are flushed
* out.
*/
err = 0;
do {
err = snd_seq_flush_output(ctxp->handle);
if (err > 0)
usleep(2000);
} while (err > 0);
#endif
return err;
}
/*
* Return the handle to the underlying snd_seq stream.
* Arguments:
* ctxp - Application context
*/
void *
seq_handle(seq_context_t *ctxp)
{
return ctxp->handle;
}
|