| 12
 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
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 
 | /***********************************************************
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
The Netherlands.
                        All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the names of Stichting Mathematisch
Centrum or CWI or Corporation for National Research Initiatives or
CNRI not be used in advertising or publicity pertaining to
distribution of the software without specific, written prior
permission.
While CWI is the initial source for this software, a modified version
is made available by the Corporation for National Research Initiatives
(CNRI) at the Internet address ftp://ftp.python.org.
STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
******************************************************************/
#include "Python.h"
#include "pymactoolbox.h"
#include <Sound.h>
#pragma options align=mac68k
struct SampleRateAvailable_arg {
	short	numrates;
	Handle	rates;
};
struct SampleSizeAvailable_arg {
	short	numsizes;
	Handle	sizes;
};
#pragma options align=reset
static PyObject *ErrorObject;
/* Convert Python object to unsigned Fixed */
static int
PyMac_GetUFixed(PyObject *v, Fixed *f)
{
	double d;
	unsigned long uns;
	
	if( !PyArg_Parse(v, "d", &d))
		return 0;
	uns = (unsigned long)(d * 0x10000);
	*f = (Fixed)uns;
	return 1;
}
/* Convert a Point to a Python object */
static PyObject *
PyMac_BuildUFixed(Fixed f)
{
	double d;
	unsigned long funs;
	
	funs = (unsigned long)f;
	
	d = funs;
	d = d / 0x10000;
	return Py_BuildValue("d", d);
}
/* ----------------------------------------------------- */
static char sndih_getChannelAvailable__doc__[] =
""
;
static PyObject *
sndih_getChannelAvailable(self, args)
	PyObject *self;	/* Not used */
	PyObject *args;
{
	long inRefNum;
	short nchannel;
	OSErr err;
	if (!PyArg_ParseTuple(args, "l", &inRefNum))
		return NULL;
	
	if( (err=SPBGetDeviceInfo(inRefNum, siChannelAvailable, (Ptr)&nchannel)) != noErr )
		return PyMac_Error(err);
	return Py_BuildValue("h", nchannel);
}
static char sndih_getNumberChannels__doc__[] =
""
;
static PyObject *
sndih_getNumberChannels(self, args)
	PyObject *self;	/* Not used */
	PyObject *args;
{
	long inRefNum;
	short nchannel;
	OSErr err;
	if (!PyArg_ParseTuple(args, "l", &inRefNum))
		return NULL;
	
	if( (err=SPBGetDeviceInfo(inRefNum, siNumberChannels, (Ptr)&nchannel)) != noErr )
		return PyMac_Error(err);
	return Py_BuildValue("h", nchannel);
}
static char sndih_setNumberChannels__doc__[] =
""
;
static PyObject *
sndih_setNumberChannels(self, args)
	PyObject *self;	/* Not used */
	PyObject *args;
{
	long inRefNum;
	short nchannel;
	OSErr err;
	if (!PyArg_ParseTuple(args, "lh", &inRefNum, &nchannel))
		return NULL;
	
	if( (err=SPBSetDeviceInfo(inRefNum, siNumberChannels, (Ptr)&nchannel)) != noErr )
		return PyMac_Error(err);
	Py_INCREF(Py_None);
	return Py_None;
}
static char sndih_getContinuous__doc__[] =
""
;
static PyObject *
sndih_getContinuous(self, args)
	PyObject *self;	/* Not used */
	PyObject *args;
{
	long inRefNum;
	short onoff;
	OSErr err;
	if (!PyArg_ParseTuple(args, "l", &inRefNum))
		return NULL;
	
	if( (err=SPBGetDeviceInfo(inRefNum, siContinuous, (Ptr)&onoff)) != noErr )
		return PyMac_Error(err);
	return Py_BuildValue("h", onoff);
}
static char sndih_setContinuous__doc__[] =
""
;
static PyObject *
sndih_setContinuous(self, args)
	PyObject *self;	/* Not used */
	PyObject *args;
{
	long inRefNum;
	short onoff;
	OSErr err;
	if (!PyArg_ParseTuple(args, "lh", &inRefNum, &onoff))
		return NULL;
	
	if( (err=SPBSetDeviceInfo(inRefNum, siContinuous, (Ptr)&onoff)) != noErr )
		return PyMac_Error(err);
	Py_INCREF(Py_None);
	return Py_None;
}
static char sndih_getInputSourceNames__doc__[] =
""
;
static PyObject *
sndih_getInputSourceNames(self, args)
	PyObject *self;	/* Not used */
	PyObject *args;
{
	long inRefNum;
	Handle names;
	OSErr err;
	if (!PyArg_ParseTuple(args, "l", &inRefNum))
		return NULL;
	
	if( (err=SPBGetDeviceInfo(inRefNum, siInputSourceNames, (Ptr)&names)) != noErr )
		return PyMac_Error(err);
	return Py_BuildValue("O&", ResObj_New, names);
}
static char sndih_getInputSource__doc__[] =
""
;
static PyObject *
sndih_getInputSource(self, args)
	PyObject *self;	/* Not used */
	PyObject *args;
{
	long inRefNum;
	short source;
	OSErr err;
	if (!PyArg_ParseTuple(args, "l", &inRefNum))
		return NULL;
	
	if( (err=SPBGetDeviceInfo(inRefNum, siInputSource, (Ptr)&source)) != noErr )
		return PyMac_Error(err);
	return Py_BuildValue("h", source);
}
static char sndih_setInputSource__doc__[] =
""
;
static PyObject *
sndih_setInputSource(self, args)
	PyObject *self;	/* Not used */
	PyObject *args;
{
	long inRefNum;
	short source;
	OSErr err;
	if (!PyArg_ParseTuple(args, "lh", &inRefNum, &source))
		return NULL;
	
	if( (err=SPBSetDeviceInfo(inRefNum, siInputSource, (Ptr)&source)) != noErr )
		return PyMac_Error(err);
	Py_INCREF(Py_None);
	return Py_None;
}
static char sndih_getPlayThruOnOff__doc__[] =
""
;
static PyObject *
sndih_getPlayThruOnOff(self, args)
	PyObject *self;	/* Not used */
	PyObject *args;
{
	long inRefNum;
	short onoff;
	OSErr err;
	if (!PyArg_ParseTuple(args, "l", &inRefNum))
		return NULL;
	
	if( (err=SPBGetDeviceInfo(inRefNum, siPlayThruOnOff, (Ptr)&onoff)) != noErr )
		return PyMac_Error(err);
	return Py_BuildValue("h", onoff);
}
static char sndih_setPlayThruOnOff__doc__[] =
""
;
static PyObject *
sndih_setPlayThruOnOff(self, args)
	PyObject *self;	/* Not used */
	PyObject *args;
{
	long inRefNum;
	short onoff;
	OSErr err;
	if (!PyArg_ParseTuple(args, "lh", &inRefNum, &onoff))
		return NULL;
	
	if( (err=SPBSetDeviceInfo(inRefNum, siPlayThruOnOff, (Ptr)&onoff)) != noErr )
		return PyMac_Error(err);
	Py_INCREF(Py_None);
	return Py_None;
}
static char sndih_getSampleRate__doc__[] =
""
;
static PyObject *
sndih_getSampleRate(self, args)
	PyObject *self;	/* Not used */
	PyObject *args;
{
	long inRefNum;
	Fixed sample_rate;
	OSErr err;
	if (!PyArg_ParseTuple(args, "l", &inRefNum))
		return NULL;
	
	if( (err=SPBGetDeviceInfo(inRefNum, siSampleRate, (Ptr)&sample_rate)) != noErr )
		return PyMac_Error(err);
	return Py_BuildValue("O&", PyMac_BuildUFixed, sample_rate);
}
static char sndih_setSampleRate__doc__[] =
""
;
static PyObject *
sndih_setSampleRate(self, args)
	PyObject *self;	/* Not used */
	PyObject *args;
{
	long inRefNum;
	Fixed sample_rate;
	OSErr err;
	if (!PyArg_ParseTuple(args, "lO&", &inRefNum, PyMac_GetUFixed, &sample_rate))
		return NULL;
	
	if( (err=SPBSetDeviceInfo(inRefNum, siSampleRate, (Ptr)&sample_rate)) != noErr )
		return PyMac_Error(err);
	Py_INCREF(Py_None);
	return Py_None;
}
static char sndih_getSampleSize__doc__[] =
""
;
static PyObject *
sndih_getSampleSize(self, args)
	PyObject *self;	/* Not used */
	PyObject *args;
{
	long inRefNum;
	short bits;
	OSErr err;
	if (!PyArg_ParseTuple(args, "l", &inRefNum))
		return NULL;
	
	if( (err=SPBGetDeviceInfo(inRefNum, siSampleSize, (Ptr)&bits)) != noErr )
		return PyMac_Error(err);
	return Py_BuildValue("h", bits);
}
static char sndih_setSampleSize__doc__[] =
""
;
static PyObject *
sndih_setSampleSize(self, args)
	PyObject *self;	/* Not used */
	PyObject *args;
{
	long inRefNum;
	short size;
	OSErr err;
	if (!PyArg_ParseTuple(args, "lh", &inRefNum, &size))
		return NULL;
	
	if( (err=SPBSetDeviceInfo(inRefNum, siSampleSize, (Ptr)&size)) != noErr )
		return PyMac_Error(err);
	Py_INCREF(Py_None);
	return Py_None;
}
static char sndih_getSampleSizeAvailable__doc__[] =
""
;
static PyObject *
sndih_getSampleSizeAvailable(self, args)
	PyObject *self;	/* Not used */
	PyObject *args;
{
	long inRefNum;
	struct SampleSizeAvailable_arg arg;
	OSErr err;
	PyObject *rsizes;
	short *fsizes;
	int i;
	arg.sizes = NULL;
	rsizes = NULL;
	if (!PyArg_ParseTuple(args, "l", &inRefNum))
		return NULL;
	
	if( (err=SPBGetDeviceInfo(inRefNum, siSampleSizeAvailable, (Ptr)&arg)) != noErr ) {
		return PyMac_Error(err);
	}
	fsizes = (short *)*(arg.sizes);
	/* Handle contains a list of rates */
	if( (rsizes = PyTuple_New(arg.numsizes)) == NULL)
		return NULL;
	for( i=0; i<arg.numsizes; i++ )
		PyTuple_SetItem(rsizes, i, PyInt_FromLong((long)fsizes[i]));
	return rsizes;
}
static char sndih_getSampleRateAvailable__doc__[] =
""
;
static PyObject *
sndih_getSampleRateAvailable(self, args)
	PyObject *self;	/* Not used */
	PyObject *args;
{
	long inRefNum;
	struct SampleRateAvailable_arg arg;
	OSErr err;
	PyObject *rrates, *obj;
	Fixed *frates;
	int i;
	arg.rates = NULL;
	rrates = NULL;
	if (!PyArg_ParseTuple(args, "l", &inRefNum))
		return NULL;
	
	if( (err=SPBGetDeviceInfo(inRefNum, siSampleRateAvailable, (Ptr)&arg)) != noErr ) {
		return PyMac_Error(err);
	}
	frates = (Fixed *)*(arg.rates);
	if( arg.numrates == 0 ) {
		/* The handle contains upper and lowerbound */
		rrates = Py_BuildValue("O&O&", frates[0], frates[1]);
		if (rrates == NULL) return NULL;
	} else {
		/* Handle contains a list of rates */
		if( (rrates = PyTuple_New(arg.numrates)) == NULL)
			return NULL;
		for( i=0; i<arg.numrates; i++ ) {
			if( (obj = Py_BuildValue("O&", PyMac_BuildUFixed, frates[i]))==NULL)
				goto out;
			PyTuple_SetItem(rrates, i, obj);
		}
	}
	return Py_BuildValue("hO", arg.numrates, rrates);
out:
	Py_XDECREF(rrates);
	return NULL;
}
/* List of methods defined in the module */
static struct PyMethodDef sndih_methods[] = {
 {"getChannelAvailable",	(PyCFunction)sndih_getChannelAvailable,	METH_VARARGS,	sndih_getChannelAvailable__doc__},
 {"getNumberChannels",	(PyCFunction)sndih_getNumberChannels,	METH_VARARGS,	sndih_getNumberChannels__doc__},
 {"setNumberChannels",	(PyCFunction)sndih_setNumberChannels,	METH_VARARGS,	sndih_setNumberChannels__doc__},
 {"getContinuous",	(PyCFunction)sndih_getContinuous,	METH_VARARGS,	sndih_getContinuous__doc__},
 {"setContinuous",	(PyCFunction)sndih_setContinuous,	METH_VARARGS,	sndih_setContinuous__doc__},
 {"getInputSourceNames",	(PyCFunction)sndih_getInputSourceNames,	METH_VARARGS,	sndih_getInputSourceNames__doc__},
 {"getInputSource",	(PyCFunction)sndih_getInputSource,	METH_VARARGS,	sndih_getInputSource__doc__},
 {"setInputSource",	(PyCFunction)sndih_setInputSource,	METH_VARARGS,	sndih_setInputSource__doc__},
 {"getPlayThruOnOff",	(PyCFunction)sndih_getPlayThruOnOff,	METH_VARARGS,	sndih_getPlayThruOnOff__doc__},
 {"setPlayThruOnOff",	(PyCFunction)sndih_setPlayThruOnOff,	METH_VARARGS,	sndih_setPlayThruOnOff__doc__},
 {"getSampleRate",	(PyCFunction)sndih_getSampleRate,	METH_VARARGS,	sndih_getSampleRate__doc__},
 {"setSampleRate",	(PyCFunction)sndih_setSampleRate,	METH_VARARGS,	sndih_setSampleRate__doc__},
 {"getSampleSize",	(PyCFunction)sndih_getSampleSize,	METH_VARARGS,	sndih_getSampleSize__doc__},
 {"setSampleSize",	(PyCFunction)sndih_setSampleSize,	METH_VARARGS,	sndih_setSampleSize__doc__},
 {"getSampleSizeAvailable",	(PyCFunction)sndih_getSampleSizeAvailable,	METH_VARARGS,	sndih_getSampleSizeAvailable__doc__},
 {"getSampleRateAvailable",	(PyCFunction)sndih_getSampleRateAvailable,	METH_VARARGS,	sndih_getSampleRateAvailable__doc__},
 
	{NULL,	 (PyCFunction)NULL, 0, NULL}		/* sentinel */
};
/* Initialization function for the module (*must* be called initSndihooks) */
static char Sndihooks_module_documentation[] = 
""
;
void
init_Sndihooks()
{
	PyObject *m, *d;
	/* Create the module and add the functions */
	m = Py_InitModule4("_Sndihooks", sndih_methods,
		Sndihooks_module_documentation,
		(PyObject*)NULL,PYTHON_API_VERSION);
	/* Add some symbolic constants to the module */
	d = PyModule_GetDict(m);
	ErrorObject = PyString_FromString("Sndihooks.error");
	PyDict_SetItemString(d, "error", ErrorObject);
	/* XXXX Add constants here */
	
	/* Check for errors */
	if (PyErr_Occurred())
		Py_FatalError("can't initialize module Sndihooks");
}
 |