Skip to content

Instantly share code, notes, and snippets.

@mkuron
Created June 16, 2016 15:56
Show Gist options
  • Save mkuron/ea0405d1e619328067aa69852c907402 to your computer and use it in GitHub Desktop.
Save mkuron/ea0405d1e619328067aa69852c907402 to your computer and use it in GitHub Desktop.
midi module extracted from pygame
#!/bin/bash
cd $(dirname $0)
cython pypm.pyx
python setup.py build_ext --force --inplace
"""midi
pygame module for interacting with midi input and output.
The midi module can send output to midi devices, and get input
from midi devices. It can also list midi devices on the system.
Including real midi devices, and virtual ones.
It uses the portmidi library. Is portable to which ever platforms
portmidi supports (currently windows, OSX, and linux).
This uses pyportmidi for now, but may use its own bindings at some
point in the future. The pyportmidi bindings are included with pygame.
New in pygame 1.9.0.
"""
#TODO:
# - finish writing tests.
# - likely as interactive tests... so you'd need to plug in a midi device.
# - create a background thread version for input threads.
# - that can automatically inject input into the event queue
# once the input object is running. Like joysticks.
import pygame
import pygame.locals
import atexit
#
MIDIIN = pygame.locals.USEREVENT + 10
MIDIOUT = pygame.locals.USEREVENT + 11
_init = False
_pypm = None
__all__ = [ "Input",
"MIDIIN",
"MIDIOUT",
"MidiException",
"Output",
"get_count",
"get_default_input_id",
"get_default_output_id",
"get_device_info",
"init",
"midis2events",
"quit",
"time",
]
__theclasses__ = ["Input", "Output"]
def init():
"""initialize the midi module
midi.init(): return None
Call the initialisation function before using the midi module.
It is safe to call this more than once.
"""
global _init, _pypm
if not _init:
import pypm
_pypm = pypm
_pypm.Initialize()
_init = True
atexit.register(quit)
def quit():
"""uninitialize the midi module
midi.quit(): return None
Called automatically atexit if you don't call it.
It is safe to call this function more than once.
"""
global _init, _pypm
if _init:
# TODO: find all Input and Output classes and close them first?
_pypm.Terminate()
_init = False
del _pypm
#del pygame._pypm
def _check_init():
if not _init:
raise RuntimeError("midi not initialised.")
def get_count():
"""gets the number of devices.
midi.get_count(): return num_devices
Device ids range from 0 to get_count() -1
"""
_check_init()
return _pypm.CountDevices()
def get_default_input_id():
"""gets default input device number
midi.get_default_input_id(): return default_id
Return the default device ID or -1 if there are no devices.
The result can be passed to the Input()/Ouput() class.
On the PC, the user can specify a default device by
setting an environment variable. For example, to use device #1.
set PM_RECOMMENDED_INPUT_DEVICE=1
The user should first determine the available device ID by using
the supplied application "testin" or "testout".
In general, the registry is a better place for this kind of info,
and with USB devices that can come and go, using integers is not
very reliable for device identification. Under Windows, if
PM_RECOMMENDED_OUTPUT_DEVICE (or PM_RECOMMENDED_INPUT_DEVICE) is
*NOT* found in the environment, then the default device is obtained
by looking for a string in the registry under:
HKEY_LOCAL_MACHINE/SOFTWARE/PortMidi/Recommended_Input_Device
and HKEY_LOCAL_MACHINE/SOFTWARE/PortMidi/Recommended_Output_Device
for a string. The number of the first device with a substring that
matches the string exactly is returned. For example, if the string
in the registry is "USB", and device 1 is named
"In USB MidiSport 1x1", then that will be the default
input because it contains the string "USB".
In addition to the name, get_device_info() returns "interf", which
is the interface name. (The "interface" is the underlying software
system or API used by PortMidi to access devices. Examples are
MMSystem, DirectX (not implemented), ALSA, OSS (not implemented), etc.)
At present, the only Win32 interface is "MMSystem", the only Linux
interface is "ALSA", and the only Max OS X interface is "CoreMIDI".
To specify both the interface and the device name in the registry,
separate the two with a comma and a space, e.g.:
MMSystem, In USB MidiSport 1x1
In this case, the string before the comma must be a substring of
the "interf" string, and the string after the space must be a
substring of the "name" name string in order to match the device.
Note: in the current release, the default is simply the first device
(the input or output device with the lowest PmDeviceID).
"""
return _pypm.GetDefaultInputDeviceID()
def get_default_output_id():
"""gets default output device number
midi.get_default_output_id(): return default_id
Return the default device ID or -1 if there are no devices.
The result can be passed to the Input()/Ouput() class.
On the PC, the user can specify a default device by
setting an environment variable. For example, to use device #1.
set PM_RECOMMENDED_OUTPUT_DEVICE=1
The user should first determine the available device ID by using
the supplied application "testin" or "testout".
In general, the registry is a better place for this kind of info,
and with USB devices that can come and go, using integers is not
very reliable for device identification. Under Windows, if
PM_RECOMMENDED_OUTPUT_DEVICE (or PM_RECOMMENDED_INPUT_DEVICE) is
*NOT* found in the environment, then the default device is obtained
by looking for a string in the registry under:
HKEY_LOCAL_MACHINE/SOFTWARE/PortMidi/Recommended_Input_Device
and HKEY_LOCAL_MACHINE/SOFTWARE/PortMidi/Recommended_Output_Device
for a string. The number of the first device with a substring that
matches the string exactly is returned. For example, if the string
in the registry is "USB", and device 1 is named
"In USB MidiSport 1x1", then that will be the default
input because it contains the string "USB".
In addition to the name, get_device_info() returns "interf", which
is the interface name. (The "interface" is the underlying software
system or API used by PortMidi to access devices. Examples are
MMSystem, DirectX (not implemented), ALSA, OSS (not implemented), etc.)
At present, the only Win32 interface is "MMSystem", the only Linux
interface is "ALSA", and the only Max OS X interface is "CoreMIDI".
To specify both the interface and the device name in the registry,
separate the two with a comma and a space, e.g.:
MMSystem, In USB MidiSport 1x1
In this case, the string before the comma must be a substring of
the "interf" string, and the string after the space must be a
substring of the "name" name string in order to match the device.
Note: in the current release, the default is simply the first device
(the input or output device with the lowest PmDeviceID).
"""
_check_init()
return _pypm.GetDefaultOutputDeviceID()
def get_device_info(an_id):
""" returns information about a midi device
midi.get_device_info(an_id): return (interf, name, input, output, opened)
interf - a text string describing the device interface, eg 'ALSA'.
name - a text string for the name of the device, eg 'Midi Through Port-0'
input - 0, or 1 if the device is an input device.
output - 0, or 1 if the device is an output device.
opened - 0, or 1 if the device is opened.
If the id is out of range, the function returns None.
"""
_check_init()
return _pypm.GetDeviceInfo(an_id)
class Input(object):
"""Input is used to get midi input from midi devices.
Input(device_id)
Input(device_id, buffer_size)
buffer_size -the number of input events to be buffered waiting to
be read using Input.read()
"""
def __init__(self, device_id, buffer_size=4096):
"""
The buffer_size specifies the number of input events to be buffered
waiting to be read using Input.read().
"""
_check_init()
if device_id == -1:
raise MidiException("Device id is -1, not a valid output id. -1 usually means there were no default Output devices.")
try:
r = get_device_info(device_id)
except TypeError:
raise TypeError("an integer is required")
except OverflowError:
raise OverflowError("long int too large to convert to int")
# and now some nasty looking error checking, to provide nice error
# messages to the kind, lovely, midi using people of whereever.
if r:
interf, name, input, output, opened = r
if input:
try:
self._input = _pypm.Input(device_id, buffer_size)
except TypeError:
raise TypeError("an integer is required")
self.device_id = device_id
elif output:
raise MidiException("Device id given is not a valid input id, it is an output id.")
else:
raise MidiException("Device id given is not a valid input id.")
else:
raise MidiException("Device id invalid, out of range.")
def _check_open(self):
if self._input is None:
raise MidiException("midi not open.")
def close(self):
""" closes a midi stream, flushing any pending buffers.
Input.close(): return None
PortMidi attempts to close open streams when the application
exits -- this is particularly difficult under Windows.
"""
_check_init()
if not (self._input is None):
self._input.Close()
self._input = None
def read(self, num_events):
"""reads num_events midi events from the buffer.
Input.read(num_events): return midi_event_list
Reads from the Input buffer and gives back midi events.
[[[status,data1,data2,data3],timestamp],
[[status,data1,data2,data3],timestamp],...]
"""
_check_init()
self._check_open()
return self._input.Read(num_events)
def poll(self):
"""returns true if there's data, or false if not.
Input.poll(): return Bool
raises a MidiException on error.
"""
_check_init()
self._check_open()
r = self._input.Poll()
if r == _pypm.TRUE:
return True
elif r == _pypm.FALSE:
return False
else:
err_text = GetErrorText(r)
raise MidiException( (r, err_text) )
class Output(object):
"""Output is used to send midi to an output device
Output(device_id)
Output(device_id, latency = 0)
Output(device_id, buffer_size = 4096)
Output(device_id, latency, buffer_size)
The buffer_size specifies the number of output events to be
buffered waiting for output. (In some cases -- see below --
PortMidi does not buffer output at all and merely passes data
to a lower-level API, in which case buffersize is ignored.)
latency is the delay in milliseconds applied to timestamps to determine
when the output should actually occur. (If latency is < 0, 0 is
assumed.)
If latency is zero, timestamps are ignored and all output is delivered
immediately. If latency is greater than zero, output is delayed until
the message timestamp plus the latency. (NOTE: time is measured
relative to the time source indicated by time_proc. Timestamps are
absolute, not relative delays or offsets.) In some cases, PortMidi
can obtain better timing than your application by passing timestamps
along to the device driver or hardware. Latency may also help you
to synchronize midi data to audio data by matching midi latency to
the audio buffer latency.
"""
def __init__(self, device_id, latency = 0, buffer_size = 4096):
"""Output(device_id)
Output(device_id, latency = 0)
Output(device_id, buffer_size = 4096)
Output(device_id, latency, buffer_size)
The buffer_size specifies the number of output events to be
buffered waiting for output. (In some cases -- see below --
PortMidi does not buffer output at all and merely passes data
to a lower-level API, in which case buffersize is ignored.)
latency is the delay in milliseconds applied to timestamps to determine
when the output should actually occur. (If latency is < 0, 0 is
assumed.)
If latency is zero, timestamps are ignored and all output is delivered
immediately. If latency is greater than zero, output is delayed until
the message timestamp plus the latency. (NOTE: time is measured
relative to the time source indicated by time_proc. Timestamps are
absolute, not relative delays or offsets.) In some cases, PortMidi
can obtain better timing than your application by passing timestamps
along to the device driver or hardware. Latency may also help you
to synchronize midi data to audio data by matching midi latency to
the audio buffer latency.
"""
_check_init()
self._aborted = 0
if device_id == -1:
raise MidiException("Device id is -1, not a valid output id. -1 usually means there were no default Output devices.")
try:
r = get_device_info(device_id)
except TypeError:
raise TypeError("an integer is required")
except OverflowError:
raise OverflowError("long int too large to convert to int")
# and now some nasty looking error checking, to provide nice error
# messages to the kind, lovely, midi using people of whereever.
if r:
interf, name, input, output, opened = r
if output:
try:
self._output = _pypm.Output(device_id, latency)
except TypeError:
raise TypeError("an integer is required")
self.device_id = device_id
elif input:
raise MidiException("Device id given is not a valid output id, it is an input id.")
else:
raise MidiException("Device id given is not a valid output id.")
else:
raise MidiException("Device id invalid, out of range.")
def _check_open(self):
if self._output is None:
raise MidiException("midi not open.")
if self._aborted:
raise MidiException("midi aborted.")
def close(self):
""" closes a midi stream, flushing any pending buffers.
Output.close(): return None
PortMidi attempts to close open streams when the application
exits -- this is particularly difficult under Windows.
"""
_check_init()
if not (self._output is None):
self._output.Close()
self._output = None
def abort(self):
"""terminates outgoing messages immediately
Output.abort(): return None
The caller should immediately close the output port;
this call may result in transmission of a partial midi message.
There is no abort for Midi input because the user can simply
ignore messages in the buffer and close an input device at
any time.
"""
_check_init()
if self._output:
self._output.Abort()
self._aborted = 1
def write(self, data):
"""writes a list of midi data to the Output
Output.write(data)
writes series of MIDI information in the form of a list:
write([[[status <,data1><,data2><,data3>],timestamp],
[[status <,data1><,data2><,data3>],timestamp],...])
<data> fields are optional
example: choose program change 1 at time 20000 and
send note 65 with velocity 100 500 ms later.
write([[[0xc0,0,0],20000],[[0x90,60,100],20500]])
notes:
1. timestamps will be ignored if latency = 0.
2. To get a note to play immediately, send MIDI info with
timestamp read from function Time.
3. understanding optional data fields:
write([[[0xc0,0,0],20000]]) is equivalent to
write([[[0xc0],20000]])
Can send up to 1024 elements in your data list, otherwise an
IndexError exception is raised.
"""
_check_init()
self._check_open()
self._output.Write(data)
def write_short(self, status, data1 = 0, data2 = 0):
"""write_short(status <, data1><, data2>)
Output.write_short(status)
Output.write_short(status, data1 = 0, data2 = 0)
output MIDI information of 3 bytes or less.
data fields are optional
status byte could be:
0xc0 = program change
0x90 = note on
etc.
data bytes are optional and assumed 0 if omitted
example: note 65 on with velocity 100
write_short(0x90,65,100)
"""
_check_init()
self._check_open()
self._output.WriteShort(status, data1, data2)
def write_sys_ex(self, when, msg):
"""writes a timestamped system-exclusive midi message.
Output.write_sys_ex(when, msg)
msg - can be a *list* or a *string*
when - a timestamp in miliseconds
example:
(assuming o is an onput MIDI stream)
o.write_sys_ex(0,'\\xF0\\x7D\\x10\\x11\\x12\\x13\\xF7')
is equivalent to
o.write_sys_ex(midi.time(),
[0xF0,0x7D,0x10,0x11,0x12,0x13,0xF7])
"""
_check_init()
self._check_open()
self._output.WriteSysEx(when, msg)
def note_on(self, note, velocity=None, channel = 0):
"""turns a midi note on. Note must be off.
Output.note_on(note, velocity=None, channel = 0)
Turn a note on in the output stream. The note must already
be off for this to work correctly.
"""
if velocity is None:
velocity = 0
if not (0 <= channel <= 15):
raise ValueError("Channel not between 0 and 15.")
self.write_short(0x90+channel, note, velocity)
def note_off(self, note, velocity=None, channel = 0):
"""turns a midi note off. Note must be on.
Output.note_off(note, velocity=None, channel = 0)
Turn a note off in the output stream. The note must already
be on for this to work correctly.
"""
if velocity is None:
velocity = 0
if not (0 <= channel <= 15):
raise ValueError("Channel not between 0 and 15.")
self.write_short(0x80 + channel, note, velocity)
def set_instrument(self, instrument_id, channel = 0):
"""select an instrument, with a value between 0 and 127
Output.set_instrument(instrument_id, channel = 0)
"""
if not (0 <= instrument_id <= 127):
raise ValueError("Undefined instrument id: %d" % instrument_id)
if not (0 <= channel <= 15):
raise ValueError("Channel not between 0 and 15.")
self.write_short(0xc0+channel, instrument_id)
def time():
"""returns the current time in ms of the PortMidi timer
midi.time(): return time
The time is reset to 0, when the module is inited.
"""
return _pypm.Time()
def midis2events(midis, device_id):
"""converts midi events to pygame events
midi.midis2events(midis, device_id): return [Event, ...]
Takes a sequence of midi events and returns list of pygame events.
"""
evs = []
for midi in midis:
((status,data1,data2,data3),timestamp) = midi
e = event.Event(MIDIIN,
status=status,
data1=data1,
data2=data2,
data3=data3,
timestamp=timestamp,
vice_id = device_id)
evs.append( e )
return evs
class MidiException(Exception):
"""exception that midi functions and classes can raise
MidiException(errno)
"""
def __init__(self, value):
self.parameter = value
def __str__(self):
return repr(self.parameter)
/* Generated by Cython 0.23.4 */
#define PY_SSIZE_T_CLEAN
#include "Python.h"
#ifndef Py_PYTHON_H
#error Python headers needed to compile C extensions, please install development version of Python.
#elif PY_VERSION_HEX < 0x02060000 || (0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03020000)
#error Cython requires Python 2.6+ or Python 3.2+.
#else
#define CYTHON_ABI "0_23_4"
#include <stddef.h>
#ifndef offsetof
#define offsetof(type, member) ( (size_t) & ((type*)0) -> member )
#endif
#if !defined(WIN32) && !defined(MS_WINDOWS)
#ifndef __stdcall
#define __stdcall
#endif
#ifndef __cdecl
#define __cdecl
#endif
#ifndef __fastcall
#define __fastcall
#endif
#endif
#ifndef DL_IMPORT
#define DL_IMPORT(t) t
#endif
#ifndef DL_EXPORT
#define DL_EXPORT(t) t
#endif
#ifndef PY_LONG_LONG
#define PY_LONG_LONG LONG_LONG
#endif
#ifndef Py_HUGE_VAL
#define Py_HUGE_VAL HUGE_VAL
#endif
#ifdef PYPY_VERSION
#define CYTHON_COMPILING_IN_PYPY 1
#define CYTHON_COMPILING_IN_CPYTHON 0
#else
#define CYTHON_COMPILING_IN_PYPY 0
#define CYTHON_COMPILING_IN_CPYTHON 1
#endif
#if !defined(CYTHON_USE_PYLONG_INTERNALS) && CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x02070000
#define CYTHON_USE_PYLONG_INTERNALS 1
#endif
#if CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX < 0x02070600 && !defined(Py_OptimizeFlag)
#define Py_OptimizeFlag 0
#endif
#define __PYX_BUILD_PY_SSIZE_T "n"
#define CYTHON_FORMAT_SSIZE_T "z"
#if PY_MAJOR_VERSION < 3
#define __Pyx_BUILTIN_MODULE_NAME "__builtin__"
#define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\
PyCode_New(a+k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)
#define __Pyx_DefaultClassType PyClass_Type
#else
#define __Pyx_BUILTIN_MODULE_NAME "builtins"
#define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\
PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)
#define __Pyx_DefaultClassType PyType_Type
#endif
#ifndef Py_TPFLAGS_CHECKTYPES
#define Py_TPFLAGS_CHECKTYPES 0
#endif
#ifndef Py_TPFLAGS_HAVE_INDEX
#define Py_TPFLAGS_HAVE_INDEX 0
#endif
#ifndef Py_TPFLAGS_HAVE_NEWBUFFER
#define Py_TPFLAGS_HAVE_NEWBUFFER 0
#endif
#ifndef Py_TPFLAGS_HAVE_FINALIZE
#define Py_TPFLAGS_HAVE_FINALIZE 0
#endif
#if PY_VERSION_HEX > 0x03030000 && defined(PyUnicode_KIND)
#define CYTHON_PEP393_ENABLED 1
#define __Pyx_PyUnicode_READY(op) (likely(PyUnicode_IS_READY(op)) ?\
0 : _PyUnicode_Ready((PyObject *)(op)))
#define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_LENGTH(u)
#define __Pyx_PyUnicode_READ_CHAR(u, i) PyUnicode_READ_CHAR(u, i)
#define __Pyx_PyUnicode_KIND(u) PyUnicode_KIND(u)
#define __Pyx_PyUnicode_DATA(u) PyUnicode_DATA(u)
#define __Pyx_PyUnicode_READ(k, d, i) PyUnicode_READ(k, d, i)
#else
#define CYTHON_PEP393_ENABLED 0
#define __Pyx_PyUnicode_READY(op) (0)
#define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_SIZE(u)
#define __Pyx_PyUnicode_READ_CHAR(u, i) ((Py_UCS4)(PyUnicode_AS_UNICODE(u)[i]))
#define __Pyx_PyUnicode_KIND(u) (sizeof(Py_UNICODE))
#define __Pyx_PyUnicode_DATA(u) ((void*)PyUnicode_AS_UNICODE(u))
#define __Pyx_PyUnicode_READ(k, d, i) ((void)(k), (Py_UCS4)(((Py_UNICODE*)d)[i]))
#endif
#if CYTHON_COMPILING_IN_PYPY
#define __Pyx_PyUnicode_Concat(a, b) PyNumber_Add(a, b)
#define __Pyx_PyUnicode_ConcatSafe(a, b) PyNumber_Add(a, b)
#else
#define __Pyx_PyUnicode_Concat(a, b) PyUnicode_Concat(a, b)
#define __Pyx_PyUnicode_ConcatSafe(a, b) ((unlikely((a) == Py_None) || unlikely((b) == Py_None)) ?\
PyNumber_Add(a, b) : __Pyx_PyUnicode_Concat(a, b))
#endif
#if CYTHON_COMPILING_IN_PYPY && !defined(PyUnicode_Contains)
#define PyUnicode_Contains(u, s) PySequence_Contains(u, s)
#endif
#define __Pyx_PyString_FormatSafe(a, b) ((unlikely((a) == Py_None)) ? PyNumber_Remainder(a, b) : __Pyx_PyString_Format(a, b))
#define __Pyx_PyUnicode_FormatSafe(a, b) ((unlikely((a) == Py_None)) ? PyNumber_Remainder(a, b) : PyUnicode_Format(a, b))
#if PY_MAJOR_VERSION >= 3
#define __Pyx_PyString_Format(a, b) PyUnicode_Format(a, b)
#else
#define __Pyx_PyString_Format(a, b) PyString_Format(a, b)
#endif
#if PY_MAJOR_VERSION >= 3
#define PyBaseString_Type PyUnicode_Type
#define PyStringObject PyUnicodeObject
#define PyString_Type PyUnicode_Type
#define PyString_Check PyUnicode_Check
#define PyString_CheckExact PyUnicode_CheckExact
#endif
#if PY_MAJOR_VERSION >= 3
#define __Pyx_PyBaseString_Check(obj) PyUnicode_Check(obj)
#define __Pyx_PyBaseString_CheckExact(obj) PyUnicode_CheckExact(obj)
#else
#define __Pyx_PyBaseString_Check(obj) (PyString_Check(obj) || PyUnicode_Check(obj))
#define __Pyx_PyBaseString_CheckExact(obj) (PyString_CheckExact(obj) || PyUnicode_CheckExact(obj))
#endif
#ifndef PySet_CheckExact
#define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type)
#endif
#define __Pyx_TypeCheck(obj, type) PyObject_TypeCheck(obj, (PyTypeObject *)type)
#if PY_MAJOR_VERSION >= 3
#define PyIntObject PyLongObject
#define PyInt_Type PyLong_Type
#define PyInt_Check(op) PyLong_Check(op)
#define PyInt_CheckExact(op) PyLong_CheckExact(op)
#define PyInt_FromString PyLong_FromString
#define PyInt_FromUnicode PyLong_FromUnicode
#define PyInt_FromLong PyLong_FromLong
#define PyInt_FromSize_t PyLong_FromSize_t
#define PyInt_FromSsize_t PyLong_FromSsize_t
#define PyInt_AsLong PyLong_AsLong
#define PyInt_AS_LONG PyLong_AS_LONG
#define PyInt_AsSsize_t PyLong_AsSsize_t
#define PyInt_AsUnsignedLongMask PyLong_AsUnsignedLongMask
#define PyInt_AsUnsignedLongLongMask PyLong_AsUnsignedLongLongMask
#define PyNumber_Int PyNumber_Long
#endif
#if PY_MAJOR_VERSION >= 3
#define PyBoolObject PyLongObject
#endif
#if PY_MAJOR_VERSION >= 3 && CYTHON_COMPILING_IN_PYPY
#ifndef PyUnicode_InternFromString
#define PyUnicode_InternFromString(s) PyUnicode_FromString(s)
#endif
#endif
#if PY_VERSION_HEX < 0x030200A4
typedef long Py_hash_t;
#define __Pyx_PyInt_FromHash_t PyInt_FromLong
#define __Pyx_PyInt_AsHash_t PyInt_AsLong
#else
#define __Pyx_PyInt_FromHash_t PyInt_FromSsize_t
#define __Pyx_PyInt_AsHash_t PyInt_AsSsize_t
#endif
#if PY_MAJOR_VERSION >= 3
#define __Pyx_PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : PyInstanceMethod_New(func))
#else
#define __Pyx_PyMethod_New(func, self, klass) PyMethod_New(func, self, klass)
#endif
#if PY_VERSION_HEX >= 0x030500B1
#define __Pyx_PyAsyncMethodsStruct PyAsyncMethods
#define __Pyx_PyType_AsAsync(obj) (Py_TYPE(obj)->tp_as_async)
#elif CYTHON_COMPILING_IN_CPYTHON && PY_MAJOR_VERSION >= 3
typedef struct {
unaryfunc am_await;
unaryfunc am_aiter;
unaryfunc am_anext;
} __Pyx_PyAsyncMethodsStruct;
#define __Pyx_PyType_AsAsync(obj) ((__Pyx_PyAsyncMethodsStruct*) (Py_TYPE(obj)->tp_reserved))
#else
#define __Pyx_PyType_AsAsync(obj) NULL
#endif
#ifndef CYTHON_RESTRICT
#if defined(__GNUC__)
#define CYTHON_RESTRICT __restrict__
#elif defined(_MSC_VER) && _MSC_VER >= 1400
#define CYTHON_RESTRICT __restrict
#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
#define CYTHON_RESTRICT restrict
#else
#define CYTHON_RESTRICT
#endif
#endif
#define __Pyx_void_to_None(void_result) ((void)(void_result), Py_INCREF(Py_None), Py_None)
#ifndef CYTHON_INLINE
#if defined(__GNUC__)
#define CYTHON_INLINE __inline__
#elif defined(_MSC_VER)
#define CYTHON_INLINE __inline
#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
#define CYTHON_INLINE inline
#else
#define CYTHON_INLINE
#endif
#endif
#if defined(WIN32) || defined(MS_WINDOWS)
#define _USE_MATH_DEFINES
#endif
#include <math.h>
#ifdef NAN
#define __PYX_NAN() ((float) NAN)
#else
static CYTHON_INLINE float __PYX_NAN() {
float value;
memset(&value, 0xFF, sizeof(value));
return value;
}
#endif
#if PY_MAJOR_VERSION >= 3
#define __Pyx_PyNumber_Divide(x,y) PyNumber_TrueDivide(x,y)
#define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(x,y)
#else
#define __Pyx_PyNumber_Divide(x,y) PyNumber_Divide(x,y)
#define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceDivide(x,y)
#endif
#ifndef __PYX_EXTERN_C
#ifdef __cplusplus
#define __PYX_EXTERN_C extern "C"
#else
#define __PYX_EXTERN_C extern
#endif
#endif
#define __PYX_HAVE__pypm
#define __PYX_HAVE_API__pypm
#include "portmidi.h"
#include "porttime.h"
#ifdef _OPENMP
#include <omp.h>
#endif /* _OPENMP */
#ifdef PYREX_WITHOUT_ASSERTIONS
#define CYTHON_WITHOUT_ASSERTIONS
#endif
#ifndef CYTHON_UNUSED
# if defined(__GNUC__)
# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
# define CYTHON_UNUSED __attribute__ ((__unused__))
# else
# define CYTHON_UNUSED
# endif
# elif defined(__ICC) || (defined(__INTEL_COMPILER) && !defined(_MSC_VER))
# define CYTHON_UNUSED __attribute__ ((__unused__))
# else
# define CYTHON_UNUSED
# endif
#endif
#ifndef CYTHON_NCP_UNUSED
# if CYTHON_COMPILING_IN_CPYTHON
# define CYTHON_NCP_UNUSED
# else
# define CYTHON_NCP_UNUSED CYTHON_UNUSED
# endif
#endif
typedef struct {PyObject **p; char *s; const Py_ssize_t n; const char* encoding;
const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry;
#define __PYX_DEFAULT_STRING_ENCODING_IS_ASCII 0
#define __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT 0
#define __PYX_DEFAULT_STRING_ENCODING ""
#define __Pyx_PyObject_FromString __Pyx_PyBytes_FromString
#define __Pyx_PyObject_FromStringAndSize __Pyx_PyBytes_FromStringAndSize
#define __Pyx_uchar_cast(c) ((unsigned char)c)
#define __Pyx_long_cast(x) ((long)x)
#define __Pyx_fits_Py_ssize_t(v, type, is_signed) (\
(sizeof(type) < sizeof(Py_ssize_t)) ||\
(sizeof(type) > sizeof(Py_ssize_t) &&\
likely(v < (type)PY_SSIZE_T_MAX ||\
v == (type)PY_SSIZE_T_MAX) &&\
(!is_signed || likely(v > (type)PY_SSIZE_T_MIN ||\
v == (type)PY_SSIZE_T_MIN))) ||\
(sizeof(type) == sizeof(Py_ssize_t) &&\
(is_signed || likely(v < (type)PY_SSIZE_T_MAX ||\
v == (type)PY_SSIZE_T_MAX))) )
#if defined (__cplusplus) && __cplusplus >= 201103L
#include <cstdlib>
#define __Pyx_sst_abs(value) std::abs(value)
#elif SIZEOF_INT >= SIZEOF_SIZE_T
#define __Pyx_sst_abs(value) abs(value)
#elif SIZEOF_LONG >= SIZEOF_SIZE_T
#define __Pyx_sst_abs(value) labs(value)
#elif defined (_MSC_VER) && defined (_M_X64)
#define __Pyx_sst_abs(value) _abs64(value)
#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
#define __Pyx_sst_abs(value) llabs(value)
#elif defined (__GNUC__)
#define __Pyx_sst_abs(value) __builtin_llabs(value)
#else
#define __Pyx_sst_abs(value) ((value<0) ? -value : value)
#endif
static CYTHON_INLINE char* __Pyx_PyObject_AsString(PyObject*);
static CYTHON_INLINE char* __Pyx_PyObject_AsStringAndSize(PyObject*, Py_ssize_t* length);
#define __Pyx_PyByteArray_FromString(s) PyByteArray_FromStringAndSize((const char*)s, strlen((const char*)s))
#define __Pyx_PyByteArray_FromStringAndSize(s, l) PyByteArray_FromStringAndSize((const char*)s, l)
#define __Pyx_PyBytes_FromString PyBytes_FromString
#define __Pyx_PyBytes_FromStringAndSize PyBytes_FromStringAndSize
static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
#if PY_MAJOR_VERSION < 3
#define __Pyx_PyStr_FromString __Pyx_PyBytes_FromString
#define __Pyx_PyStr_FromStringAndSize __Pyx_PyBytes_FromStringAndSize
#else
#define __Pyx_PyStr_FromString __Pyx_PyUnicode_FromString
#define __Pyx_PyStr_FromStringAndSize __Pyx_PyUnicode_FromStringAndSize
#endif
#define __Pyx_PyObject_AsSString(s) ((signed char*) __Pyx_PyObject_AsString(s))
#define __Pyx_PyObject_AsUString(s) ((unsigned char*) __Pyx_PyObject_AsString(s))
#define __Pyx_PyObject_FromCString(s) __Pyx_PyObject_FromString((const char*)s)
#define __Pyx_PyBytes_FromCString(s) __Pyx_PyBytes_FromString((const char*)s)
#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
#if PY_MAJOR_VERSION < 3
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
{
const Py_UNICODE *u_end = u;
while (*u_end++) ;
return (size_t)(u_end - u - 1);
}
#else
#define __Pyx_Py_UNICODE_strlen Py_UNICODE_strlen
#endif
#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
#define __Pyx_PyBool_FromLong(b) ((b) ? __Pyx_NewRef(Py_True) : __Pyx_NewRef(Py_False))
static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*);
static CYTHON_INLINE PyObject* __Pyx_PyNumber_Int(PyObject* x);
static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*);
static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t);
#if CYTHON_COMPILING_IN_CPYTHON
#define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x))
#else
#define __pyx_PyFloat_AsDouble(x) PyFloat_AsDouble(x)
#endif
#define __pyx_PyFloat_AsFloat(x) ((float) __pyx_PyFloat_AsDouble(x))
#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII
static int __Pyx_sys_getdefaultencoding_not_ascii;
static int __Pyx_init_sys_getdefaultencoding_params(void) {
PyObject* sys;
PyObject* default_encoding = NULL;
PyObject* ascii_chars_u = NULL;
PyObject* ascii_chars_b = NULL;
const char* default_encoding_c;
sys = PyImport_ImportModule("sys");
if (!sys) goto bad;
default_encoding = PyObject_CallMethod(sys, (char*) "getdefaultencoding", NULL);
Py_DECREF(sys);
if (!default_encoding) goto bad;
default_encoding_c = PyBytes_AsString(default_encoding);
if (!default_encoding_c) goto bad;
if (strcmp(default_encoding_c, "ascii") == 0) {
__Pyx_sys_getdefaultencoding_not_ascii = 0;
} else {
char ascii_chars[128];
int c;
for (c = 0; c < 128; c++) {
ascii_chars[c] = c;
}
__Pyx_sys_getdefaultencoding_not_ascii = 1;
ascii_chars_u = PyUnicode_DecodeASCII(ascii_chars, 128, NULL);
if (!ascii_chars_u) goto bad;
ascii_chars_b = PyUnicode_AsEncodedString(ascii_chars_u, default_encoding_c, NULL);
if (!ascii_chars_b || !PyBytes_Check(ascii_chars_b) || memcmp(ascii_chars, PyBytes_AS_STRING(ascii_chars_b), 128) != 0) {
PyErr_Format(
PyExc_ValueError,
"This module compiled with c_string_encoding=ascii, but default encoding '%.200s' is not a superset of ascii.",
default_encoding_c);
goto bad;
}
Py_DECREF(ascii_chars_u);
Py_DECREF(ascii_chars_b);
}
Py_DECREF(default_encoding);
return 0;
bad:
Py_XDECREF(default_encoding);
Py_XDECREF(ascii_chars_u);
Py_XDECREF(ascii_chars_b);
return -1;
}
#endif
#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT && PY_MAJOR_VERSION >= 3
#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_DecodeUTF8(c_str, size, NULL)
#else
#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_Decode(c_str, size, __PYX_DEFAULT_STRING_ENCODING, NULL)
#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT
static char* __PYX_DEFAULT_STRING_ENCODING;
static int __Pyx_init_sys_getdefaultencoding_params(void) {
PyObject* sys;
PyObject* default_encoding = NULL;
char* default_encoding_c;
sys = PyImport_ImportModule("sys");
if (!sys) goto bad;
default_encoding = PyObject_CallMethod(sys, (char*) (const char*) "getdefaultencoding", NULL);
Py_DECREF(sys);
if (!default_encoding) goto bad;
default_encoding_c = PyBytes_AsString(default_encoding);
if (!default_encoding_c) goto bad;
__PYX_DEFAULT_STRING_ENCODING = (char*) malloc(strlen(default_encoding_c));
if (!__PYX_DEFAULT_STRING_ENCODING) goto bad;
strcpy(__PYX_DEFAULT_STRING_ENCODING, default_encoding_c);
Py_DECREF(default_encoding);
return 0;
bad:
Py_XDECREF(default_encoding);
return -1;
}
#endif
#endif
/* Test for GCC > 2.95 */
#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ > 95)))
#define likely(x) __builtin_expect(!!(x), 1)
#define unlikely(x) __builtin_expect(!!(x), 0)
#else /* !__GNUC__ or GCC < 2.95 */
#define likely(x) (x)
#define unlikely(x) (x)
#endif /* __GNUC__ */
static PyObject *__pyx_m;
static PyObject *__pyx_d;
static PyObject *__pyx_b;
static PyObject *__pyx_empty_tuple;
static PyObject *__pyx_empty_bytes;
static int __pyx_lineno;
static int __pyx_clineno = 0;
static const char * __pyx_cfilenm= __FILE__;
static const char *__pyx_filename;
static const char *__pyx_f[] = {
"pypm.pyx",
};
/*--- Type declarations ---*/
struct __pyx_obj_4pypm_Output;
struct __pyx_obj_4pypm_Input;
/* "pypm.pyx":248
*
*
* cdef class Output: # <<<<<<<<<<<<<<
* """Represents an output MIDI stream device.
*
*/
struct __pyx_obj_4pypm_Output {
PyObject_HEAD
int device;
PmStream *midi;
int debug;
int _aborted;
};
/* "pypm.pyx":509
*
*
* cdef class Input: # <<<<<<<<<<<<<<
* """Represents an input MIDI stream device.
*
*/
struct __pyx_obj_4pypm_Input {
PyObject_HEAD
int device;
PmStream *midi;
int debug;
};
/* --- Runtime support code (head) --- */
#ifndef CYTHON_REFNANNY
#define CYTHON_REFNANNY 0
#endif
#if CYTHON_REFNANNY
typedef struct {
void (*INCREF)(void*, PyObject*, int);
void (*DECREF)(void*, PyObject*, int);
void (*GOTREF)(void*, PyObject*, int);
void (*GIVEREF)(void*, PyObject*, int);
void* (*SetupContext)(const char*, int, const char*);
void (*FinishContext)(void**);
} __Pyx_RefNannyAPIStruct;
static __Pyx_RefNannyAPIStruct *__Pyx_RefNanny = NULL;
static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname);
#define __Pyx_RefNannyDeclarations void *__pyx_refnanny = NULL;
#ifdef WITH_THREAD
#define __Pyx_RefNannySetupContext(name, acquire_gil)\
if (acquire_gil) {\
PyGILState_STATE __pyx_gilstate_save = PyGILState_Ensure();\
__pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\
PyGILState_Release(__pyx_gilstate_save);\
} else {\
__pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\
}
#else
#define __Pyx_RefNannySetupContext(name, acquire_gil)\
__pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__)
#endif
#define __Pyx_RefNannyFinishContext()\
__Pyx_RefNanny->FinishContext(&__pyx_refnanny)
#define __Pyx_INCREF(r) __Pyx_RefNanny->INCREF(__pyx_refnanny, (PyObject *)(r), __LINE__)
#define __Pyx_DECREF(r) __Pyx_RefNanny->DECREF(__pyx_refnanny, (PyObject *)(r), __LINE__)
#define __Pyx_GOTREF(r) __Pyx_RefNanny->GOTREF(__pyx_refnanny, (PyObject *)(r), __LINE__)
#define __Pyx_GIVEREF(r) __Pyx_RefNanny->GIVEREF(__pyx_refnanny, (PyObject *)(r), __LINE__)
#define __Pyx_XINCREF(r) do { if((r) != NULL) {__Pyx_INCREF(r); }} while(0)
#define __Pyx_XDECREF(r) do { if((r) != NULL) {__Pyx_DECREF(r); }} while(0)
#define __Pyx_XGOTREF(r) do { if((r) != NULL) {__Pyx_GOTREF(r); }} while(0)
#define __Pyx_XGIVEREF(r) do { if((r) != NULL) {__Pyx_GIVEREF(r);}} while(0)
#else
#define __Pyx_RefNannyDeclarations
#define __Pyx_RefNannySetupContext(name, acquire_gil)
#define __Pyx_RefNannyFinishContext()
#define __Pyx_INCREF(r) Py_INCREF(r)
#define __Pyx_DECREF(r) Py_DECREF(r)
#define __Pyx_GOTREF(r)
#define __Pyx_GIVEREF(r)
#define __Pyx_XINCREF(r) Py_XINCREF(r)
#define __Pyx_XDECREF(r) Py_XDECREF(r)
#define __Pyx_XGOTREF(r)
#define __Pyx_XGIVEREF(r)
#endif
#define __Pyx_XDECREF_SET(r, v) do {\
PyObject *tmp = (PyObject *) r;\
r = v; __Pyx_XDECREF(tmp);\
} while (0)
#define __Pyx_DECREF_SET(r, v) do {\
PyObject *tmp = (PyObject *) r;\
r = v; __Pyx_DECREF(tmp);\
} while (0)
#define __Pyx_CLEAR(r) do { PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);} while(0)
#define __Pyx_XCLEAR(r) do { if((r) != NULL) {PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);}} while(0)
#if CYTHON_COMPILING_IN_CPYTHON
static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name) {
PyTypeObject* tp = Py_TYPE(obj);
if (likely(tp->tp_getattro))
return tp->tp_getattro(obj, attr_name);
#if PY_MAJOR_VERSION < 3
if (likely(tp->tp_getattr))
return tp->tp_getattr(obj, PyString_AS_STRING(attr_name));
#endif
return PyObject_GetAttr(obj, attr_name);
}
#else
#define __Pyx_PyObject_GetAttrStr(o,n) PyObject_GetAttr(o,n)
#endif
static PyObject *__Pyx_GetBuiltinName(PyObject *name);
#if CYTHON_COMPILING_IN_CPYTHON
static PyObject* __Pyx_PyInt_SubtractObjC(PyObject *op1, PyObject *op2, long intval, int inplace);
#else
#define __Pyx_PyInt_SubtractObjC(op1, op2, intval, inplace)\
(inplace ? PyNumber_InPlaceSubtract(op1, op2) : PyNumber_Subtract(op1, op2))
#endif
static void __Pyx_RaiseDoubleKeywordsError(const char* func_name, PyObject* kw_name);
static int __Pyx_ParseOptionalKeywords(PyObject *kwds, PyObject **argnames[],\
PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args,\
const char* function_name);
static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact,
Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found);
#if CYTHON_COMPILING_IN_CPYTHON
static PyObject* __Pyx_PyInt_EqObjC(PyObject *op1, PyObject *op2, long intval, int inplace);
#else
#define __Pyx_PyInt_EqObjC(op1, op2, intval, inplace)\
PyObject_RichCompare(op1, op2, Py_EQ)
#endif
#if CYTHON_COMPILING_IN_CPYTHON
static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw);
#else
#define __Pyx_PyObject_Call(func, arg, kw) PyObject_Call(func, arg, kw)
#endif
static CYTHON_INLINE void __Pyx_ErrRestore(PyObject *type, PyObject *value, PyObject *tb);
static CYTHON_INLINE void __Pyx_ErrFetch(PyObject **type, PyObject **value, PyObject **tb);
static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause);
static void __Pyx_WriteUnraisable(const char *name, int clineno,
int lineno, const char *filename,
int full_traceback, int nogil);
#if CYTHON_COMPILING_IN_CPYTHON
static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg);
#endif
static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg);
#if CYTHON_COMPILING_IN_CPYTHON
static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func);
#else
#define __Pyx_PyObject_CallNoArg(func) __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL)
#endif
#define __Pyx_GetItemInt(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\
(__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\
__Pyx_GetItemInt_Fast(o, (Py_ssize_t)i, is_list, wraparound, boundscheck) :\
(is_list ? (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL) :\
__Pyx_GetItemInt_Generic(o, to_py_func(i))))
#define __Pyx_GetItemInt_List(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\
(__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\
__Pyx_GetItemInt_List_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\
(PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL))
static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i,
int wraparound, int boundscheck);
#define __Pyx_GetItemInt_Tuple(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\
(__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\
__Pyx_GetItemInt_Tuple_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\
(PyErr_SetString(PyExc_IndexError, "tuple index out of range"), (PyObject*)NULL))
static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i,
int wraparound, int boundscheck);
static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j);
static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i,
int is_list, int wraparound, int boundscheck);
#if CYTHON_COMPILING_IN_CPYTHON
static PyObject* __Pyx_PyInt_AndObjC(PyObject *op1, PyObject *op2, long intval, int inplace);
#else
#define __Pyx_PyInt_AndObjC(op1, op2, intval, inplace)\
(inplace ? PyNumber_InPlaceAnd(op1, op2) : PyNumber_And(op1, op2))
#endif
static CYTHON_INLINE PyObject *__Pyx_GetModuleGlobalName(PyObject *name);
#if CYTHON_COMPILING_IN_CPYTHON
static CYTHON_INLINE int __Pyx_PyList_Append(PyObject* list, PyObject* x) {
PyListObject* L = (PyListObject*) list;
Py_ssize_t len = Py_SIZE(list);
if (likely(L->allocated > len) & likely(len > (L->allocated >> 1))) {
Py_INCREF(x);
PyList_SET_ITEM(list, len, x);
Py_SIZE(list) = len+1;
return 0;
}
return PyList_Append(list, x);
}
#else
#define __Pyx_PyList_Append(L,x) PyList_Append(L,x)
#endif
static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level);
typedef struct {
int code_line;
PyCodeObject* code_object;
} __Pyx_CodeObjectCacheEntry;
struct __Pyx_CodeObjectCache {
int count;
int max_count;
__Pyx_CodeObjectCacheEntry* entries;
};
static struct __Pyx_CodeObjectCache __pyx_code_cache = {0,0,NULL};
static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line);
static PyCodeObject *__pyx_find_code_object(int code_line);
static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object);
static void __Pyx_AddTraceback(const char *funcname, int c_line,
int py_line, const char *filename);
static CYTHON_INLINE PyObject* __Pyx_PyInt_From_PmDeviceID(PmDeviceID value);
static CYTHON_INLINE PyObject* __Pyx_PyInt_From_int(int value);
static CYTHON_INLINE PmDeviceID __Pyx_PyInt_As_PmDeviceID(PyObject *);
static CYTHON_INLINE PyObject* __Pyx_PyInt_From_PtTimestamp(PtTimestamp value);
static CYTHON_INLINE PmError __Pyx_PyInt_As_PmError(PyObject *);
static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *);
static int __Pyx_Print(PyObject*, PyObject *, int);
#if CYTHON_COMPILING_IN_PYPY || PY_MAJOR_VERSION >= 3
static PyObject* __pyx_print = 0;
static PyObject* __pyx_print_kwargs = 0;
#endif
static int __Pyx_PrintOne(PyObject* stream, PyObject *o);
static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *);
static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value);
static CYTHON_INLINE PmTimestamp __Pyx_PyInt_As_PmTimestamp(PyObject *);
static CYTHON_INLINE PyObject* __Pyx_PyInt_From_PmMessage(PmMessage value);
static CYTHON_INLINE PyObject* __Pyx_PyInt_From_PmTimestamp(PmTimestamp value);
static CYTHON_INLINE PmMessage __Pyx_PyInt_As_PmMessage(PyObject *);
static CYTHON_INLINE PyObject* __Pyx_PyInt_From_PmError(PmError value);
static int __Pyx_check_binary_version(void);
static int __Pyx_InitStrings(__Pyx_StringTabEntry *t);
/* Module declarations from 'pypm' */
static PyTypeObject *__pyx_ptype_4pypm_Output = 0;
static PyTypeObject *__pyx_ptype_4pypm_Input = 0;
#define __Pyx_MODULE_NAME "pypm"
int __pyx_module_is_main_pypm = 0;
/* Implementation of 'pypm' */
static PyObject *__pyx_builtin_Exception;
static PyObject *__pyx_builtin_IndexError;
static PyObject *__pyx_builtin_enumerate;
static PyObject *__pyx_builtin_ValueError;
static PyObject *__pyx_builtin_range;
static char __pyx_k_B[] = "B";
static char __pyx_k_end[] = "end";
static char __pyx_k_err[] = "err";
static char __pyx_k_msg[] = "msg";
static char __pyx_k_TRUE[] = "TRUE";
static char __pyx_k_Time[] = "Time";
static char __pyx_k_chan[] = "chan";
static char __pyx_k_file[] = "file";
static char __pyx_k_info[] = "info";
static char __pyx_k_main[] = "__main__";
static char __pyx_k_pypm[] = "pypm";
static char __pyx_k_test[] = "__test__";
static char __pyx_k_when[] = "when";
static char __pyx_k_0_0_6[] = "0.0.6";
static char __pyx_k_FALSE[] = "FALSE";
static char __pyx_k_array[] = "array";
static char __pyx_k_data1[] = "data1";
static char __pyx_k_data2[] = "data2";
static char __pyx_k_i_r_s[] = "%i : %r : %s";
static char __pyx_k_print[] = "print";
static char __pyx_k_range[] = "range";
static char __pyx_k_import[] = "__import__";
static char __pyx_k_status[] = "status";
static char __pyx_k_Channel[] = "Channel";
static char __pyx_k_FILT_F9[] = "FILT_F9";
static char __pyx_k_FILT_FD[] = "FILT_FD";
static char __pyx_k_latency[] = "latency";
static char __pyx_k_version[] = "__version__";
static char __pyx_k_FILT_MTC[] = "FILT_MTC";
static char __pyx_k_tostring[] = "tostring";
static char __pyx_k_Exception[] = "Exception";
static char __pyx_k_FILT_NOTE[] = "FILT_NOTE";
static char __pyx_k_FILT_PLAY[] = "FILT_PLAY";
static char __pyx_k_FILT_TICK[] = "FILT_TICK";
static char __pyx_k_FILT_TUNE[] = "FILT_TUNE";
static char __pyx_k_Terminate[] = "Terminate";
static char __pyx_k_device_no[] = "device_no";
static char __pyx_k_enumerate[] = "enumerate";
static char __pyx_k_FILT_CLOCK[] = "FILT_CLOCK";
static char __pyx_k_FILT_RESET[] = "FILT_RESET";
static char __pyx_k_FILT_SYSEX[] = "FILT_SYSEX";
static char __pyx_k_IndexError[] = "IndexError";
static char __pyx_k_Initialize[] = "Initialize";
static char __pyx_k_ValueError[] = "ValueError";
static char __pyx_k_buffersize[] = "buffersize";
static char __pyx_k_check_open[] = "_check_open";
static char __pyx_k_FILT_ACTIVE[] = "FILT_ACTIVE";
static char __pyx_k_CountDevices[] = "CountDevices";
static char __pyx_k_FILT_CONTROL[] = "FILT_CONTROL";
static char __pyx_k_FILT_PROGRAM[] = "FILT_PROGRAM";
static char __pyx_k_GetErrorText[] = "GetErrorText";
static char __pyx_k_input_device[] = "input_device";
static char __pyx_k_FILT_REALTIME[] = "FILT_REALTIME";
static char __pyx_k_GetDeviceInfo[] = "GetDeviceInfo";
static char __pyx_k_output_device[] = "output_device";
static char __pyx_k_FILT_PITCHBEND[] = "FILT_PITCHBEND";
static char __pyx_k_FILT_UNDEFINED[] = "FILT_UNDEFINED";
static char __pyx_k_FILT_AFTERTOUCH[] = "FILT_AFTERTOUCH";
static char __pyx_k_FILT_SONG_SELECT[] = "FILT_SONG_SELECT";
static char __pyx_k_MIDI_input_opened[] = "MIDI input opened.";
static char __pyx_k_FILT_SONG_POSITION[] = "FILT_SONG_POSITION";
static char __pyx_k_Opening_Midi_Output[] = "Opening Midi Output";
static char __pyx_k_midi_Input_not_open[] = "midi Input not open.";
static char __pyx_k_FILT_POLY_AFTERTOUCH[] = "FILT_POLY_AFTERTOUCH";
static char __pyx_k_midi_Output_not_open[] = "midi Output not open.";
static char __pyx_k_No_data_in_event_no_i[] = "No data in event no. %i.";
static char __pyx_k_Writing_to_MIDI_buffer[] = "Writing to MIDI buffer.";
static char __pyx_k_Writing_to_midi_buffer[] = "Writing to midi buffer.";
static char __pyx_k_FILT_CHANNEL_AFTERTOUCH[] = "FILT_CHANNEL_AFTERTOUCH";
static char __pyx_k_GetDefaultInputDeviceID[] = "GetDefaultInputDeviceID";
static char __pyx_k_GetDefaultOutputDeviceID[] = "GetDefaultOutputDeviceID";
static char __pyx_k_Minimum_buffer_length_is_1[] = "Minimum buffer length is 1.";
static char __pyx_k_Maximum_buffer_length_is_1024[] = "Maximum buffer length is 1024.";
static char __pyx_k_tikhome_mkuron_Documents_espres[] = "/tikhome/mkuron/Documents/espresso/build/pypm.pyx";
static char __pyx_k_Closing_MIDI_input_stream_and_de[] = "Closing MIDI input stream and destroying instance";
static char __pyx_k_Closing_MIDI_output_stream_and_d[] = "Closing MIDI output stream and destroying instance.";
static char __pyx_k_Maximum_event_list_length_is_102[] = "Maximum event list length is 1024.";
static char __pyx_k_Too_many_data_bytes_i_in_event_n[] = "Too many data bytes (%i) in event no. %i.";
static char __pyx_k_Unable_to_open_Midi_OutputDevice[] = "Unable to open Midi OutputDevice=%i: %s";
static char __pyx_k_midi_Output_aborted_Need_to_call[] = "midi Output aborted. Need to call Close after Abort.";
static PyObject *__pyx_kp_s_0_0_6;
static PyObject *__pyx_n_s_B;
static PyObject *__pyx_n_s_Channel;
static PyObject *__pyx_kp_s_Closing_MIDI_input_stream_and_de;
static PyObject *__pyx_kp_s_Closing_MIDI_output_stream_and_d;
static PyObject *__pyx_n_s_CountDevices;
static PyObject *__pyx_n_s_Exception;
static PyObject *__pyx_n_s_FALSE;
static PyObject *__pyx_n_s_FILT_ACTIVE;
static PyObject *__pyx_n_s_FILT_AFTERTOUCH;
static PyObject *__pyx_n_s_FILT_CHANNEL_AFTERTOUCH;
static PyObject *__pyx_n_s_FILT_CLOCK;
static PyObject *__pyx_n_s_FILT_CONTROL;
static PyObject *__pyx_n_s_FILT_F9;
static PyObject *__pyx_n_s_FILT_FD;
static PyObject *__pyx_n_s_FILT_MTC;
static PyObject *__pyx_n_s_FILT_NOTE;
static PyObject *__pyx_n_s_FILT_PITCHBEND;
static PyObject *__pyx_n_s_FILT_PLAY;
static PyObject *__pyx_n_s_FILT_POLY_AFTERTOUCH;
static PyObject *__pyx_n_s_FILT_PROGRAM;
static PyObject *__pyx_n_s_FILT_REALTIME;
static PyObject *__pyx_n_s_FILT_RESET;
static PyObject *__pyx_n_s_FILT_SONG_POSITION;
static PyObject *__pyx_n_s_FILT_SONG_SELECT;
static PyObject *__pyx_n_s_FILT_SYSEX;
static PyObject *__pyx_n_s_FILT_TICK;
static PyObject *__pyx_n_s_FILT_TUNE;
static PyObject *__pyx_n_s_FILT_UNDEFINED;
static PyObject *__pyx_n_s_GetDefaultInputDeviceID;
static PyObject *__pyx_n_s_GetDefaultOutputDeviceID;
static PyObject *__pyx_n_s_GetDeviceInfo;
static PyObject *__pyx_n_s_GetErrorText;
static PyObject *__pyx_n_s_IndexError;
static PyObject *__pyx_n_s_Initialize;
static PyObject *__pyx_kp_s_MIDI_input_opened;
static PyObject *__pyx_kp_s_Maximum_buffer_length_is_1024;
static PyObject *__pyx_kp_s_Maximum_event_list_length_is_102;
static PyObject *__pyx_kp_s_Minimum_buffer_length_is_1;
static PyObject *__pyx_kp_s_No_data_in_event_no_i;
static PyObject *__pyx_kp_s_Opening_Midi_Output;
static PyObject *__pyx_n_s_TRUE;
static PyObject *__pyx_n_s_Terminate;
static PyObject *__pyx_n_s_Time;
static PyObject *__pyx_kp_s_Too_many_data_bytes_i_in_event_n;
static PyObject *__pyx_kp_s_Unable_to_open_Midi_OutputDevice;
static PyObject *__pyx_n_s_ValueError;
static PyObject *__pyx_kp_s_Writing_to_MIDI_buffer;
static PyObject *__pyx_kp_s_Writing_to_midi_buffer;
static PyObject *__pyx_n_s_array;
static PyObject *__pyx_n_s_buffersize;
static PyObject *__pyx_n_s_chan;
static PyObject *__pyx_n_s_check_open;
static PyObject *__pyx_n_s_data1;
static PyObject *__pyx_n_s_data2;
static PyObject *__pyx_n_s_device_no;
static PyObject *__pyx_n_s_end;
static PyObject *__pyx_n_s_enumerate;
static PyObject *__pyx_n_s_err;
static PyObject *__pyx_n_s_file;
static PyObject *__pyx_kp_s_i_r_s;
static PyObject *__pyx_n_s_import;
static PyObject *__pyx_n_s_info;
static PyObject *__pyx_n_s_input_device;
static PyObject *__pyx_n_s_latency;
static PyObject *__pyx_n_s_main;
static PyObject *__pyx_kp_s_midi_Input_not_open;
static PyObject *__pyx_kp_s_midi_Output_aborted_Need_to_call;
static PyObject *__pyx_kp_s_midi_Output_not_open;
static PyObject *__pyx_n_s_msg;
static PyObject *__pyx_n_s_output_device;
static PyObject *__pyx_n_s_print;
static PyObject *__pyx_n_s_pypm;
static PyObject *__pyx_n_s_range;
static PyObject *__pyx_n_s_status;
static PyObject *__pyx_n_s_test;
static PyObject *__pyx_kp_s_tikhome_mkuron_Documents_espres;
static PyObject *__pyx_n_s_tostring;
static PyObject *__pyx_n_s_version;
static PyObject *__pyx_n_s_when;
static PyObject *__pyx_pf_4pypm_Initialize(CYTHON_UNUSED PyObject *__pyx_self); /* proto */
static PyObject *__pyx_pf_4pypm_2Terminate(CYTHON_UNUSED PyObject *__pyx_self); /* proto */
static PyObject *__pyx_pf_4pypm_4GetDefaultInputDeviceID(CYTHON_UNUSED PyObject *__pyx_self); /* proto */
static PyObject *__pyx_pf_4pypm_6GetDefaultOutputDeviceID(CYTHON_UNUSED PyObject *__pyx_self); /* proto */
static PyObject *__pyx_pf_4pypm_8CountDevices(CYTHON_UNUSED PyObject *__pyx_self); /* proto */
static PyObject *__pyx_pf_4pypm_10GetDeviceInfo(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_device_no); /* proto */
static PyObject *__pyx_pf_4pypm_12Time(CYTHON_UNUSED PyObject *__pyx_self); /* proto */
static PyObject *__pyx_pf_4pypm_14GetErrorText(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_err); /* proto */
static PyObject *__pyx_pf_4pypm_16Channel(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_chan); /* proto */
static int __pyx_pf_4pypm_6Output___init__(struct __pyx_obj_4pypm_Output *__pyx_v_self, PyObject *__pyx_v_output_device, PyObject *__pyx_v_latency); /* proto */
static void __pyx_pf_4pypm_6Output_2__dealloc__(struct __pyx_obj_4pypm_Output *__pyx_v_self); /* proto */
static PyObject *__pyx_pf_4pypm_6Output_4_check_open(struct __pyx_obj_4pypm_Output *__pyx_v_self); /* proto */
static PyObject *__pyx_pf_4pypm_6Output_6Close(struct __pyx_obj_4pypm_Output *__pyx_v_self); /* proto */
static PyObject *__pyx_pf_4pypm_6Output_8Abort(struct __pyx_obj_4pypm_Output *__pyx_v_self); /* proto */
static PyObject *__pyx_pf_4pypm_6Output_10Write(struct __pyx_obj_4pypm_Output *__pyx_v_self, PyObject *__pyx_v_data); /* proto */
static PyObject *__pyx_pf_4pypm_6Output_12WriteShort(struct __pyx_obj_4pypm_Output *__pyx_v_self, PyObject *__pyx_v_status, PyObject *__pyx_v_data1, PyObject *__pyx_v_data2); /* proto */
static PyObject *__pyx_pf_4pypm_6Output_14WriteSysEx(struct __pyx_obj_4pypm_Output *__pyx_v_self, PyObject *__pyx_v_when, PyObject *__pyx_v_msg); /* proto */
static int __pyx_pf_4pypm_5Input___init__(struct __pyx_obj_4pypm_Input *__pyx_v_self, PyObject *__pyx_v_input_device, PyObject *__pyx_v_buffersize); /* proto */
static void __pyx_pf_4pypm_5Input_2__dealloc__(struct __pyx_obj_4pypm_Input *__pyx_v_self); /* proto */
static PyObject *__pyx_pf_4pypm_5Input_4_check_open(struct __pyx_obj_4pypm_Input *__pyx_v_self); /* proto */
static PyObject *__pyx_pf_4pypm_5Input_6Close(struct __pyx_obj_4pypm_Input *__pyx_v_self); /* proto */
static PyObject *__pyx_pf_4pypm_5Input_8SetFilter(struct __pyx_obj_4pypm_Input *__pyx_v_self, PyObject *__pyx_v_filters); /* proto */
static PyObject *__pyx_pf_4pypm_5Input_10SetChannelMask(struct __pyx_obj_4pypm_Input *__pyx_v_self, PyObject *__pyx_v_mask); /* proto */
static PyObject *__pyx_pf_4pypm_5Input_12Poll(struct __pyx_obj_4pypm_Input *__pyx_v_self); /* proto */
static PyObject *__pyx_pf_4pypm_5Input_14Read(struct __pyx_obj_4pypm_Input *__pyx_v_self, PyObject *__pyx_v_max_events); /* proto */
static PyObject *__pyx_tp_new_4pypm_Output(PyTypeObject *t, PyObject *a, PyObject *k); /*proto*/
static PyObject *__pyx_tp_new_4pypm_Input(PyTypeObject *t, PyObject *a, PyObject *k); /*proto*/
static PyObject *__pyx_int_0;
static PyObject *__pyx_int_1;
static PyObject *__pyx_int_2;
static PyObject *__pyx_int_4;
static PyObject *__pyx_int_8;
static PyObject *__pyx_int_16;
static PyObject *__pyx_int_32;
static PyObject *__pyx_int_48;
static PyObject *__pyx_int_64;
static PyObject *__pyx_int_127;
static PyObject *__pyx_int_128;
static PyObject *__pyx_int_255;
static PyObject *__pyx_int_256;
static PyObject *__pyx_int_512;
static PyObject *__pyx_int_768;
static PyObject *__pyx_int_1024;
static PyObject *__pyx_int_2048;
static PyObject *__pyx_int_4096;
static PyObject *__pyx_int_8192;
static PyObject *__pyx_int_16384;
static PyObject *__pyx_int_32768;
static PyObject *__pyx_int_65280;
static PyObject *__pyx_int_65536;
static PyObject *__pyx_int_16711680;
static PyObject *__pyx_tuple_;
static PyObject *__pyx_tuple__2;
static PyObject *__pyx_tuple__3;
static PyObject *__pyx_tuple__4;
static PyObject *__pyx_tuple__5;
static PyObject *__pyx_tuple__6;
static PyObject *__pyx_tuple__12;
static PyObject *__pyx_tuple__15;
static PyObject *__pyx_tuple__17;
static PyObject *__pyx_codeobj__7;
static PyObject *__pyx_codeobj__8;
static PyObject *__pyx_codeobj__9;
static PyObject *__pyx_codeobj__10;
static PyObject *__pyx_codeobj__11;
static PyObject *__pyx_codeobj__13;
static PyObject *__pyx_codeobj__14;
static PyObject *__pyx_codeobj__16;
static PyObject *__pyx_codeobj__18;
/* "pypm.pyx":149
*
*
* def Initialize(): # <<<<<<<<<<<<<<
* """Initialize PortMidi library.
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_1Initialize(PyObject *__pyx_self, CYTHON_UNUSED PyObject *unused); /*proto*/
static char __pyx_doc_4pypm_Initialize[] = "Initialize PortMidi library.\n\n This function must be called once before any other function or class from\n this module can be used.\n\n ";
static PyMethodDef __pyx_mdef_4pypm_1Initialize = {"Initialize", (PyCFunction)__pyx_pw_4pypm_1Initialize, METH_NOARGS, __pyx_doc_4pypm_Initialize};
static PyObject *__pyx_pw_4pypm_1Initialize(PyObject *__pyx_self, CYTHON_UNUSED PyObject *unused) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("Initialize (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_Initialize(__pyx_self);
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_Initialize(CYTHON_UNUSED PyObject *__pyx_self) {
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("Initialize", 0);
/* "pypm.pyx":156
*
* """
* Pm_Initialize() # <<<<<<<<<<<<<<
* # equiv to TIME_START: start timer w/ ms accuracy
* Pt_Start(1, NULL, NULL)
*/
Pm_Initialize();
/* "pypm.pyx":158
* Pm_Initialize()
* # equiv to TIME_START: start timer w/ ms accuracy
* Pt_Start(1, NULL, NULL) # <<<<<<<<<<<<<<
*
* def Terminate():
*/
Pt_Start(1, NULL, NULL);
/* "pypm.pyx":149
*
*
* def Initialize(): # <<<<<<<<<<<<<<
* """Initialize PortMidi library.
*
*/
/* function exit code */
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":160
* Pt_Start(1, NULL, NULL)
*
* def Terminate(): # <<<<<<<<<<<<<<
* """Terminate use of PortMidi library.
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_3Terminate(PyObject *__pyx_self, CYTHON_UNUSED PyObject *unused); /*proto*/
static char __pyx_doc_4pypm_2Terminate[] = "Terminate use of PortMidi library.\n\n Call this to clean up Midi streams when done.\n\n If you do not call this on Windows machines when you are done with MIDI,\n your system may crash.\n\n ";
static PyMethodDef __pyx_mdef_4pypm_3Terminate = {"Terminate", (PyCFunction)__pyx_pw_4pypm_3Terminate, METH_NOARGS, __pyx_doc_4pypm_2Terminate};
static PyObject *__pyx_pw_4pypm_3Terminate(PyObject *__pyx_self, CYTHON_UNUSED PyObject *unused) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("Terminate (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_2Terminate(__pyx_self);
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_2Terminate(CYTHON_UNUSED PyObject *__pyx_self) {
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("Terminate", 0);
/* "pypm.pyx":169
*
* """
* Pm_Terminate() # <<<<<<<<<<<<<<
*
* def GetDefaultInputDeviceID():
*/
Pm_Terminate();
/* "pypm.pyx":160
* Pt_Start(1, NULL, NULL)
*
* def Terminate(): # <<<<<<<<<<<<<<
* """Terminate use of PortMidi library.
*
*/
/* function exit code */
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":171
* Pm_Terminate()
*
* def GetDefaultInputDeviceID(): # <<<<<<<<<<<<<<
* """Return the number of the default MIDI input device.
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_5GetDefaultInputDeviceID(PyObject *__pyx_self, CYTHON_UNUSED PyObject *unused); /*proto*/
static char __pyx_doc_4pypm_4GetDefaultInputDeviceID[] = "Return the number of the default MIDI input device.\n\n See the PortMidi documentation on how the default device is set and\n determined.\n\n ";
static PyMethodDef __pyx_mdef_4pypm_5GetDefaultInputDeviceID = {"GetDefaultInputDeviceID", (PyCFunction)__pyx_pw_4pypm_5GetDefaultInputDeviceID, METH_NOARGS, __pyx_doc_4pypm_4GetDefaultInputDeviceID};
static PyObject *__pyx_pw_4pypm_5GetDefaultInputDeviceID(PyObject *__pyx_self, CYTHON_UNUSED PyObject *unused) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("GetDefaultInputDeviceID (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_4GetDefaultInputDeviceID(__pyx_self);
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_4GetDefaultInputDeviceID(CYTHON_UNUSED PyObject *__pyx_self) {
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
PyObject *__pyx_t_1 = NULL;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("GetDefaultInputDeviceID", 0);
/* "pypm.pyx":178
*
* """
* return Pm_GetDefaultInputDeviceID() # <<<<<<<<<<<<<<
*
* def GetDefaultOutputDeviceID():
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_1 = __Pyx_PyInt_From_PmDeviceID(Pm_GetDefaultInputDeviceID()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 178; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_r = __pyx_t_1;
__pyx_t_1 = 0;
goto __pyx_L0;
/* "pypm.pyx":171
* Pm_Terminate()
*
* def GetDefaultInputDeviceID(): # <<<<<<<<<<<<<<
* """Return the number of the default MIDI input device.
*
*/
/* function exit code */
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_AddTraceback("pypm.GetDefaultInputDeviceID", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":180
* return Pm_GetDefaultInputDeviceID()
*
* def GetDefaultOutputDeviceID(): # <<<<<<<<<<<<<<
* """Return the number of the default MIDI output device.
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_7GetDefaultOutputDeviceID(PyObject *__pyx_self, CYTHON_UNUSED PyObject *unused); /*proto*/
static char __pyx_doc_4pypm_6GetDefaultOutputDeviceID[] = "Return the number of the default MIDI output device.\n\n See the PortMidi documentation on how the default device is set and\n determined.\n\n ";
static PyMethodDef __pyx_mdef_4pypm_7GetDefaultOutputDeviceID = {"GetDefaultOutputDeviceID", (PyCFunction)__pyx_pw_4pypm_7GetDefaultOutputDeviceID, METH_NOARGS, __pyx_doc_4pypm_6GetDefaultOutputDeviceID};
static PyObject *__pyx_pw_4pypm_7GetDefaultOutputDeviceID(PyObject *__pyx_self, CYTHON_UNUSED PyObject *unused) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("GetDefaultOutputDeviceID (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_6GetDefaultOutputDeviceID(__pyx_self);
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_6GetDefaultOutputDeviceID(CYTHON_UNUSED PyObject *__pyx_self) {
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
PyObject *__pyx_t_1 = NULL;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("GetDefaultOutputDeviceID", 0);
/* "pypm.pyx":187
*
* """
* return Pm_GetDefaultOutputDeviceID() # <<<<<<<<<<<<<<
*
* def CountDevices():
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_1 = __Pyx_PyInt_From_PmDeviceID(Pm_GetDefaultOutputDeviceID()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 187; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_r = __pyx_t_1;
__pyx_t_1 = 0;
goto __pyx_L0;
/* "pypm.pyx":180
* return Pm_GetDefaultInputDeviceID()
*
* def GetDefaultOutputDeviceID(): # <<<<<<<<<<<<<<
* """Return the number of the default MIDI output device.
*
*/
/* function exit code */
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_AddTraceback("pypm.GetDefaultOutputDeviceID", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":189
* return Pm_GetDefaultOutputDeviceID()
*
* def CountDevices(): # <<<<<<<<<<<<<<
* """Return number of available MIDI (input and output) devices."""
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_9CountDevices(PyObject *__pyx_self, CYTHON_UNUSED PyObject *unused); /*proto*/
static char __pyx_doc_4pypm_8CountDevices[] = "Return number of available MIDI (input and output) devices.";
static PyMethodDef __pyx_mdef_4pypm_9CountDevices = {"CountDevices", (PyCFunction)__pyx_pw_4pypm_9CountDevices, METH_NOARGS, __pyx_doc_4pypm_8CountDevices};
static PyObject *__pyx_pw_4pypm_9CountDevices(PyObject *__pyx_self, CYTHON_UNUSED PyObject *unused) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("CountDevices (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_8CountDevices(__pyx_self);
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_8CountDevices(CYTHON_UNUSED PyObject *__pyx_self) {
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
PyObject *__pyx_t_1 = NULL;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("CountDevices", 0);
/* "pypm.pyx":192
* """Return number of available MIDI (input and output) devices."""
*
* return Pm_CountDevices() # <<<<<<<<<<<<<<
*
* def GetDeviceInfo(device_no):
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_1 = __Pyx_PyInt_From_int(Pm_CountDevices()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 192; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_r = __pyx_t_1;
__pyx_t_1 = 0;
goto __pyx_L0;
/* "pypm.pyx":189
* return Pm_GetDefaultOutputDeviceID()
*
* def CountDevices(): # <<<<<<<<<<<<<<
* """Return number of available MIDI (input and output) devices."""
*
*/
/* function exit code */
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_AddTraceback("pypm.CountDevices", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":194
* return Pm_CountDevices()
*
* def GetDeviceInfo(device_no): # <<<<<<<<<<<<<<
* """Return device info tuple for MIDI device given by device_no.
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_11GetDeviceInfo(PyObject *__pyx_self, PyObject *__pyx_v_device_no); /*proto*/
static char __pyx_doc_4pypm_10GetDeviceInfo[] = "Return device info tuple for MIDI device given by device_no.\n\n The returned tuple has the following five items:\n\n * underlying MIDI API (string)\n * device name (string)\n * whether device can be opened as input (1) or not (0)\n * whether device can be opened as output (1) or not (0)\n * whether device is currently opened (1) or not (0)\n\n ";
static PyMethodDef __pyx_mdef_4pypm_11GetDeviceInfo = {"GetDeviceInfo", (PyCFunction)__pyx_pw_4pypm_11GetDeviceInfo, METH_O, __pyx_doc_4pypm_10GetDeviceInfo};
static PyObject *__pyx_pw_4pypm_11GetDeviceInfo(PyObject *__pyx_self, PyObject *__pyx_v_device_no) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("GetDeviceInfo (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_10GetDeviceInfo(__pyx_self, ((PyObject *)__pyx_v_device_no));
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_10GetDeviceInfo(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_device_no) {
PmDeviceInfo *__pyx_v_info;
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
PmDeviceID __pyx_t_1;
int __pyx_t_2;
PyObject *__pyx_t_3 = NULL;
PyObject *__pyx_t_4 = NULL;
PyObject *__pyx_t_5 = NULL;
PyObject *__pyx_t_6 = NULL;
PyObject *__pyx_t_7 = NULL;
PyObject *__pyx_t_8 = NULL;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("GetDeviceInfo", 0);
/* "pypm.pyx":210
* # disregarding the constness from Pm_GetDeviceInfo,
* # since pyrex doesn't do const.
* info = <PmDeviceInfo *>Pm_GetDeviceInfo(device_no) # <<<<<<<<<<<<<<
*
* if info != NULL:
*/
__pyx_t_1 = __Pyx_PyInt_As_PmDeviceID(__pyx_v_device_no); if (unlikely((__pyx_t_1 == (PmDeviceID)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 210; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_v_info = ((PmDeviceInfo *)Pm_GetDeviceInfo(__pyx_t_1));
/* "pypm.pyx":212
* info = <PmDeviceInfo *>Pm_GetDeviceInfo(device_no)
*
* if info != NULL: # <<<<<<<<<<<<<<
* return info.interf, info.name, info.input, info.output, info.opened
* # return None
*/
__pyx_t_2 = ((__pyx_v_info != NULL) != 0);
if (__pyx_t_2) {
/* "pypm.pyx":213
*
* if info != NULL:
* return info.interf, info.name, info.input, info.output, info.opened # <<<<<<<<<<<<<<
* # return None
*
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_3 = __Pyx_PyBytes_FromString(__pyx_v_info->interf); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 213; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_4 = __Pyx_PyBytes_FromString(__pyx_v_info->name); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 213; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__pyx_t_5 = __Pyx_PyInt_From_int(__pyx_v_info->input); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 213; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_6 = __Pyx_PyInt_From_int(__pyx_v_info->output); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 213; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__pyx_t_7 = __Pyx_PyInt_From_int(__pyx_v_info->opened); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 213; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__pyx_t_8 = PyTuple_New(5); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 213; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_8);
__Pyx_GIVEREF(__pyx_t_3);
PyTuple_SET_ITEM(__pyx_t_8, 0, __pyx_t_3);
__Pyx_GIVEREF(__pyx_t_4);
PyTuple_SET_ITEM(__pyx_t_8, 1, __pyx_t_4);
__Pyx_GIVEREF(__pyx_t_5);
PyTuple_SET_ITEM(__pyx_t_8, 2, __pyx_t_5);
__Pyx_GIVEREF(__pyx_t_6);
PyTuple_SET_ITEM(__pyx_t_8, 3, __pyx_t_6);
__Pyx_GIVEREF(__pyx_t_7);
PyTuple_SET_ITEM(__pyx_t_8, 4, __pyx_t_7);
__pyx_t_3 = 0;
__pyx_t_4 = 0;
__pyx_t_5 = 0;
__pyx_t_6 = 0;
__pyx_t_7 = 0;
__pyx_r = __pyx_t_8;
__pyx_t_8 = 0;
goto __pyx_L0;
/* "pypm.pyx":212
* info = <PmDeviceInfo *>Pm_GetDeviceInfo(device_no)
*
* if info != NULL: # <<<<<<<<<<<<<<
* return info.interf, info.name, info.input, info.output, info.opened
* # return None
*/
}
/* "pypm.pyx":194
* return Pm_CountDevices()
*
* def GetDeviceInfo(device_no): # <<<<<<<<<<<<<<
* """Return device info tuple for MIDI device given by device_no.
*
*/
/* function exit code */
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_3);
__Pyx_XDECREF(__pyx_t_4);
__Pyx_XDECREF(__pyx_t_5);
__Pyx_XDECREF(__pyx_t_6);
__Pyx_XDECREF(__pyx_t_7);
__Pyx_XDECREF(__pyx_t_8);
__Pyx_AddTraceback("pypm.GetDeviceInfo", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":216
* # return None
*
* def Time(): # <<<<<<<<<<<<<<
* """Return the current time in ms of the PortMidi timer."""
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_13Time(PyObject *__pyx_self, CYTHON_UNUSED PyObject *unused); /*proto*/
static char __pyx_doc_4pypm_12Time[] = "Return the current time in ms of the PortMidi timer.";
static PyMethodDef __pyx_mdef_4pypm_13Time = {"Time", (PyCFunction)__pyx_pw_4pypm_13Time, METH_NOARGS, __pyx_doc_4pypm_12Time};
static PyObject *__pyx_pw_4pypm_13Time(PyObject *__pyx_self, CYTHON_UNUSED PyObject *unused) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("Time (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_12Time(__pyx_self);
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_12Time(CYTHON_UNUSED PyObject *__pyx_self) {
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
PyObject *__pyx_t_1 = NULL;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("Time", 0);
/* "pypm.pyx":219
* """Return the current time in ms of the PortMidi timer."""
*
* return Pt_Time() # <<<<<<<<<<<<<<
*
* def GetErrorText(err):
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_1 = __Pyx_PyInt_From_PtTimestamp(Pt_Time()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 219; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_r = __pyx_t_1;
__pyx_t_1 = 0;
goto __pyx_L0;
/* "pypm.pyx":216
* # return None
*
* def Time(): # <<<<<<<<<<<<<<
* """Return the current time in ms of the PortMidi timer."""
*
*/
/* function exit code */
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_AddTraceback("pypm.Time", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":221
* return Pt_Time()
*
* def GetErrorText(err): # <<<<<<<<<<<<<<
* """Return human-readable error message translated from error number."""
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_15GetErrorText(PyObject *__pyx_self, PyObject *__pyx_v_err); /*proto*/
static char __pyx_doc_4pypm_14GetErrorText[] = "Return human-readable error message translated from error number.";
static PyMethodDef __pyx_mdef_4pypm_15GetErrorText = {"GetErrorText", (PyCFunction)__pyx_pw_4pypm_15GetErrorText, METH_O, __pyx_doc_4pypm_14GetErrorText};
static PyObject *__pyx_pw_4pypm_15GetErrorText(PyObject *__pyx_self, PyObject *__pyx_v_err) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("GetErrorText (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_14GetErrorText(__pyx_self, ((PyObject *)__pyx_v_err));
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_14GetErrorText(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_err) {
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
PmError __pyx_t_1;
PyObject *__pyx_t_2 = NULL;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("GetErrorText", 0);
/* "pypm.pyx":224
* """Return human-readable error message translated from error number."""
*
* return Pm_GetErrorText(err) # <<<<<<<<<<<<<<
*
* def Channel(chan):
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_1 = ((PmError)__Pyx_PyInt_As_PmError(__pyx_v_err)); if (unlikely(PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 224; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_2 = __Pyx_PyBytes_FromString(Pm_GetErrorText(__pyx_t_1)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 224; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_r = __pyx_t_2;
__pyx_t_2 = 0;
goto __pyx_L0;
/* "pypm.pyx":221
* return Pt_Time()
*
* def GetErrorText(err): # <<<<<<<<<<<<<<
* """Return human-readable error message translated from error number."""
*
*/
/* function exit code */
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_2);
__Pyx_AddTraceback("pypm.GetErrorText", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":226
* return Pm_GetErrorText(err)
*
* def Channel(chan): # <<<<<<<<<<<<<<
* """Return Channel object for given MIDI channel number 1 - 16.
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_17Channel(PyObject *__pyx_self, PyObject *__pyx_v_chan); /*proto*/
static char __pyx_doc_4pypm_16Channel[] = "Return Channel object for given MIDI channel number 1 - 16.\n\n Channel(<chan>) is used with ChannelMask on input MIDI streams.\n\n Example:\n\n To receive input on channels 1 and 10 on a MIDI stream called\n MidiIn::\n\n MidiIn.SetChannelMask(pypm.Channel(1) | pypm.Channel(10))\n\n .. note::\n PyPortMidi Channel function has been altered from\n the original PortMidi c call to correct for what\n seems to be a bug --- i.e. channel filters were\n all numbered from 0 to 15 instead of 1 to 16.\n\n ";
static PyMethodDef __pyx_mdef_4pypm_17Channel = {"Channel", (PyCFunction)__pyx_pw_4pypm_17Channel, METH_O, __pyx_doc_4pypm_16Channel};
static PyObject *__pyx_pw_4pypm_17Channel(PyObject *__pyx_self, PyObject *__pyx_v_chan) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("Channel (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_16Channel(__pyx_self, ((PyObject *)__pyx_v_chan));
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_16Channel(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_chan) {
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
PyObject *__pyx_t_1 = NULL;
int __pyx_t_2;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("Channel", 0);
/* "pypm.pyx":245
*
* """
* return Pm_Channel(chan - 1) # <<<<<<<<<<<<<<
*
*
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_1 = __Pyx_PyInt_SubtractObjC(__pyx_v_chan, __pyx_int_1, 1, 0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 245; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = __Pyx_PyInt_As_int(__pyx_t_1); if (unlikely((__pyx_t_2 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 245; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = __Pyx_PyInt_From_int(Pm_Channel(__pyx_t_2)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 245; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_r = __pyx_t_1;
__pyx_t_1 = 0;
goto __pyx_L0;
/* "pypm.pyx":226
* return Pm_GetErrorText(err)
*
* def Channel(chan): # <<<<<<<<<<<<<<
* """Return Channel object for given MIDI channel number 1 - 16.
*
*/
/* function exit code */
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_AddTraceback("pypm.Channel", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":263
* cdef int _aborted
*
* def __init__(self, output_device, latency=0): # <<<<<<<<<<<<<<
* """Instantiate MIDI output stream object."""
*
*/
/* Python wrapper */
static int __pyx_pw_4pypm_6Output_1__init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
static char __pyx_doc_4pypm_6Output___init__[] = "Instantiate MIDI output stream object.";
#if CYTHON_COMPILING_IN_CPYTHON
struct wrapperbase __pyx_wrapperbase_4pypm_6Output___init__;
#endif
static int __pyx_pw_4pypm_6Output_1__init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
PyObject *__pyx_v_output_device = 0;
PyObject *__pyx_v_latency = 0;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
int __pyx_r;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("__init__ (wrapper)", 0);
{
static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_output_device,&__pyx_n_s_latency,0};
PyObject* values[2] = {0,0};
values[1] = ((PyObject *)__pyx_int_0);
if (unlikely(__pyx_kwds)) {
Py_ssize_t kw_args;
const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args);
switch (pos_args) {
case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
case 0: break;
default: goto __pyx_L5_argtuple_error;
}
kw_args = PyDict_Size(__pyx_kwds);
switch (pos_args) {
case 0:
if (likely((values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s_output_device)) != 0)) kw_args--;
else goto __pyx_L5_argtuple_error;
case 1:
if (kw_args > 0) {
PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s_latency);
if (value) { values[1] = value; kw_args--; }
}
}
if (unlikely(kw_args > 0)) {
if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "__init__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 263; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
}
} else {
switch (PyTuple_GET_SIZE(__pyx_args)) {
case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
break;
default: goto __pyx_L5_argtuple_error;
}
}
__pyx_v_output_device = values[0];
__pyx_v_latency = values[1];
}
goto __pyx_L4_argument_unpacking_done;
__pyx_L5_argtuple_error:;
__Pyx_RaiseArgtupleInvalid("__init__", 0, 1, 2, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 263; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
__pyx_L3_error:;
__Pyx_AddTraceback("pypm.Output.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename);
__Pyx_RefNannyFinishContext();
return -1;
__pyx_L4_argument_unpacking_done:;
__pyx_r = __pyx_pf_4pypm_6Output___init__(((struct __pyx_obj_4pypm_Output *)__pyx_v_self), __pyx_v_output_device, __pyx_v_latency);
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static int __pyx_pf_4pypm_6Output___init__(struct __pyx_obj_4pypm_Output *__pyx_v_self, PyObject *__pyx_v_output_device, PyObject *__pyx_v_latency) {
PmError __pyx_v_err;
PmTimeProcPtr __pyx_v_PmPtr;
char *__pyx_v_errmsg;
int __pyx_r;
__Pyx_RefNannyDeclarations
int __pyx_t_1;
PyObject *__pyx_t_2 = NULL;
int __pyx_t_3;
PmDeviceID __pyx_t_4;
long __pyx_t_5;
PyObject *__pyx_t_6 = NULL;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("__init__", 0);
/* "pypm.pyx":270
* cdef PmTimeProcPtr PmPtr
*
* self.device = output_device # <<<<<<<<<<<<<<
* self.debug = 0
* self._aborted = 0
*/
__pyx_t_1 = __Pyx_PyInt_As_int(__pyx_v_output_device); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 270; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_v_self->device = __pyx_t_1;
/* "pypm.pyx":271
*
* self.device = output_device
* self.debug = 0 # <<<<<<<<<<<<<<
* self._aborted = 0
*
*/
__pyx_v_self->debug = 0;
/* "pypm.pyx":272
* self.device = output_device
* self.debug = 0
* self._aborted = 0 # <<<<<<<<<<<<<<
*
* if latency == 0:
*/
__pyx_v_self->_aborted = 0;
/* "pypm.pyx":274
* self._aborted = 0
*
* if latency == 0: # <<<<<<<<<<<<<<
* PmPtr = NULL
* else:
*/
__pyx_t_2 = __Pyx_PyInt_EqObjC(__pyx_v_latency, __pyx_int_0, 0, 0); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 274; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 274; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
if (__pyx_t_3) {
/* "pypm.pyx":275
*
* if latency == 0:
* PmPtr = NULL # <<<<<<<<<<<<<<
* else:
* PmPtr = <PmTimeProcPtr>&Pt_Time
*/
__pyx_v_PmPtr = NULL;
/* "pypm.pyx":274
* self._aborted = 0
*
* if latency == 0: # <<<<<<<<<<<<<<
* PmPtr = NULL
* else:
*/
goto __pyx_L3;
}
/* "pypm.pyx":277
* PmPtr = NULL
* else:
* PmPtr = <PmTimeProcPtr>&Pt_Time # <<<<<<<<<<<<<<
*
* if self.debug:
*/
/*else*/ {
__pyx_v_PmPtr = ((PmTimeProcPtr)(&Pt_Time));
}
__pyx_L3:;
/* "pypm.pyx":279
* PmPtr = <PmTimeProcPtr>&Pt_Time
*
* if self.debug: # <<<<<<<<<<<<<<
* print "Opening Midi Output"
*
*/
__pyx_t_3 = (__pyx_v_self->debug != 0);
if (__pyx_t_3) {
/* "pypm.pyx":280
*
* if self.debug:
* print "Opening Midi Output" # <<<<<<<<<<<<<<
*
* # Why is buffer size 0 here?
*/
if (__Pyx_PrintOne(0, __pyx_kp_s_Opening_Midi_Output) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 280; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":279
* PmPtr = <PmTimeProcPtr>&Pt_Time
*
* if self.debug: # <<<<<<<<<<<<<<
* print "Opening Midi Output"
*
*/
}
/* "pypm.pyx":283
*
* # Why is buffer size 0 here?
* err = Pm_OpenOutput(&(self.midi), output_device, NULL, 0, PmPtr, NULL, # <<<<<<<<<<<<<<
* latency)
* if err < 0:
*/
__pyx_t_4 = __Pyx_PyInt_As_PmDeviceID(__pyx_v_output_device); if (unlikely((__pyx_t_4 == (PmDeviceID)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 283; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":284
* # Why is buffer size 0 here?
* err = Pm_OpenOutput(&(self.midi), output_device, NULL, 0, PmPtr, NULL,
* latency) # <<<<<<<<<<<<<<
* if err < 0:
* errmsg = Pm_GetErrorText(err)
*/
__pyx_t_5 = __Pyx_PyInt_As_long(__pyx_v_latency); if (unlikely((__pyx_t_5 == (long)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 284; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":283
*
* # Why is buffer size 0 here?
* err = Pm_OpenOutput(&(self.midi), output_device, NULL, 0, PmPtr, NULL, # <<<<<<<<<<<<<<
* latency)
* if err < 0:
*/
__pyx_v_err = Pm_OpenOutput((&__pyx_v_self->midi), __pyx_t_4, NULL, 0, __pyx_v_PmPtr, NULL, __pyx_t_5);
/* "pypm.pyx":285
* err = Pm_OpenOutput(&(self.midi), output_device, NULL, 0, PmPtr, NULL,
* latency)
* if err < 0: # <<<<<<<<<<<<<<
* errmsg = Pm_GetErrorText(err)
* # Something's amiss here - if we try to throw an Exception
*/
__pyx_t_3 = ((__pyx_v_err < 0) != 0);
if (__pyx_t_3) {
/* "pypm.pyx":286
* latency)
* if err < 0:
* errmsg = Pm_GetErrorText(err) # <<<<<<<<<<<<<<
* # Something's amiss here - if we try to throw an Exception
* # here, we crash.
*/
__pyx_v_errmsg = Pm_GetErrorText(__pyx_v_err);
/* "pypm.pyx":289
* # Something's amiss here - if we try to throw an Exception
* # here, we crash.
* if not err == -10000: # <<<<<<<<<<<<<<
* raise Exception(errmsg)
* else:
*/
__pyx_t_3 = ((!((__pyx_v_err == -10000L) != 0)) != 0);
if (__pyx_t_3) {
/* "pypm.pyx":290
* # here, we crash.
* if not err == -10000:
* raise Exception(errmsg) # <<<<<<<<<<<<<<
* else:
* print "Unable to open Midi OutputDevice=%i: %s" % (
*/
__pyx_t_2 = __Pyx_PyBytes_FromString(__pyx_v_errmsg); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_GIVEREF(__pyx_t_2);
PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_2);
__pyx_t_2 = 0;
__pyx_t_2 = __Pyx_PyObject_Call(__pyx_builtin_Exception, __pyx_t_6, NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__Pyx_Raise(__pyx_t_2, 0, 0, 0);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":289
* # Something's amiss here - if we try to throw an Exception
* # here, we crash.
* if not err == -10000: # <<<<<<<<<<<<<<
* raise Exception(errmsg)
* else:
*/
}
/* "pypm.pyx":292
* raise Exception(errmsg)
* else:
* print "Unable to open Midi OutputDevice=%i: %s" % ( # <<<<<<<<<<<<<<
* output_device, errmsg)
*
*/
/*else*/ {
/* "pypm.pyx":293
* else:
* print "Unable to open Midi OutputDevice=%i: %s" % (
* output_device, errmsg) # <<<<<<<<<<<<<<
*
* def __dealloc__(self):
*/
__pyx_t_2 = __Pyx_PyBytes_FromString(__pyx_v_errmsg); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 293; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_6 = PyTuple_New(2); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 293; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_INCREF(__pyx_v_output_device);
__Pyx_GIVEREF(__pyx_v_output_device);
PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_v_output_device);
__Pyx_GIVEREF(__pyx_t_2);
PyTuple_SET_ITEM(__pyx_t_6, 1, __pyx_t_2);
__pyx_t_2 = 0;
/* "pypm.pyx":292
* raise Exception(errmsg)
* else:
* print "Unable to open Midi OutputDevice=%i: %s" % ( # <<<<<<<<<<<<<<
* output_device, errmsg)
*
*/
__pyx_t_2 = __Pyx_PyString_Format(__pyx_kp_s_Unable_to_open_Midi_OutputDevice, __pyx_t_6); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 292; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
if (__Pyx_PrintOne(0, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 292; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
}
/* "pypm.pyx":285
* err = Pm_OpenOutput(&(self.midi), output_device, NULL, 0, PmPtr, NULL,
* latency)
* if err < 0: # <<<<<<<<<<<<<<
* errmsg = Pm_GetErrorText(err)
* # Something's amiss here - if we try to throw an Exception
*/
}
/* "pypm.pyx":263
* cdef int _aborted
*
* def __init__(self, output_device, latency=0): # <<<<<<<<<<<<<<
* """Instantiate MIDI output stream object."""
*
*/
/* function exit code */
__pyx_r = 0;
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_6);
__Pyx_AddTraceback("pypm.Output.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = -1;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":295
* output_device, errmsg)
*
* def __dealloc__(self): # <<<<<<<<<<<<<<
* """Close midi device if still open when the instance is destroyed."""
*
*/
/* Python wrapper */
static void __pyx_pw_4pypm_6Output_3__dealloc__(PyObject *__pyx_v_self); /*proto*/
static void __pyx_pw_4pypm_6Output_3__dealloc__(PyObject *__pyx_v_self) {
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("__dealloc__ (wrapper)", 0);
__pyx_pf_4pypm_6Output_2__dealloc__(((struct __pyx_obj_4pypm_Output *)__pyx_v_self));
/* function exit code */
__Pyx_RefNannyFinishContext();
}
static void __pyx_pf_4pypm_6Output_2__dealloc__(struct __pyx_obj_4pypm_Output *__pyx_v_self) {
PmError __pyx_v_err;
__Pyx_RefNannyDeclarations
int __pyx_t_1;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("__dealloc__", 0);
/* "pypm.pyx":300
* cdef PmError err
*
* if self.debug: # <<<<<<<<<<<<<<
* print "Closing MIDI output stream and destroying instance."
*
*/
__pyx_t_1 = (__pyx_v_self->debug != 0);
if (__pyx_t_1) {
/* "pypm.pyx":301
*
* if self.debug:
* print "Closing MIDI output stream and destroying instance." # <<<<<<<<<<<<<<
*
* if self.midi:
*/
if (__Pyx_PrintOne(0, __pyx_kp_s_Closing_MIDI_output_stream_and_d) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 301; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":300
* cdef PmError err
*
* if self.debug: # <<<<<<<<<<<<<<
* print "Closing MIDI output stream and destroying instance."
*
*/
}
/* "pypm.pyx":303
* print "Closing MIDI output stream and destroying instance."
*
* if self.midi: # <<<<<<<<<<<<<<
* err = Pm_Close(self.midi)
* if err < 0:
*/
__pyx_t_1 = (__pyx_v_self->midi != 0);
if (__pyx_t_1) {
/* "pypm.pyx":304
*
* if self.midi:
* err = Pm_Close(self.midi) # <<<<<<<<<<<<<<
* if err < 0:
* raise Exception(Pm_GetErrorText(err))
*/
__pyx_v_err = Pm_Close(__pyx_v_self->midi);
/* "pypm.pyx":305
* if self.midi:
* err = Pm_Close(self.midi)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
__pyx_t_1 = ((__pyx_v_err < 0) != 0);
if (__pyx_t_1) {
/* "pypm.pyx":306
* err = Pm_Close(self.midi)
* if err < 0:
* raise Exception(Pm_GetErrorText(err)) # <<<<<<<<<<<<<<
*
* def _check_open(self):
*/
__pyx_t_2 = __Pyx_PyBytes_FromString(Pm_GetErrorText(__pyx_v_err)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 306; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 306; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_GIVEREF(__pyx_t_2);
PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
__pyx_t_2 = 0;
__pyx_t_2 = __Pyx_PyObject_Call(__pyx_builtin_Exception, __pyx_t_3, NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 306; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_Raise(__pyx_t_2, 0, 0, 0);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 306; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":305
* if self.midi:
* err = Pm_Close(self.midi)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
}
/* "pypm.pyx":303
* print "Closing MIDI output stream and destroying instance."
*
* if self.midi: # <<<<<<<<<<<<<<
* err = Pm_Close(self.midi)
* if err < 0:
*/
}
/* "pypm.pyx":295
* output_device, errmsg)
*
* def __dealloc__(self): # <<<<<<<<<<<<<<
* """Close midi device if still open when the instance is destroyed."""
*
*/
/* function exit code */
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_WriteUnraisable("pypm.Output.__dealloc__", __pyx_clineno, __pyx_lineno, __pyx_filename, 0, 0);
__pyx_L0:;
__Pyx_RefNannyFinishContext();
}
/* "pypm.pyx":308
* raise Exception(Pm_GetErrorText(err))
*
* def _check_open(self): # <<<<<<<<<<<<<<
* """Check whether midi device is open, and if not, raises an error.
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_6Output_5_check_open(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
static char __pyx_doc_4pypm_6Output_4_check_open[] = "Check whether midi device is open, and if not, raises an error.\n\n Internal method, should be used only by other methods of this class.\n\n ";
static PyObject *__pyx_pw_4pypm_6Output_5_check_open(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("_check_open (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_6Output_4_check_open(((struct __pyx_obj_4pypm_Output *)__pyx_v_self));
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_6Output_4_check_open(struct __pyx_obj_4pypm_Output *__pyx_v_self) {
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
int __pyx_t_1;
PyObject *__pyx_t_2 = NULL;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("_check_open", 0);
/* "pypm.pyx":314
*
* """
* if self.midi == NULL: # <<<<<<<<<<<<<<
* raise Exception("midi Output not open.")
*
*/
__pyx_t_1 = ((__pyx_v_self->midi == NULL) != 0);
if (__pyx_t_1) {
/* "pypm.pyx":315
* """
* if self.midi == NULL:
* raise Exception("midi Output not open.") # <<<<<<<<<<<<<<
*
* if self._aborted:
*/
__pyx_t_2 = __Pyx_PyObject_Call(__pyx_builtin_Exception, __pyx_tuple_, NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 315; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_Raise(__pyx_t_2, 0, 0, 0);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 315; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":314
*
* """
* if self.midi == NULL: # <<<<<<<<<<<<<<
* raise Exception("midi Output not open.")
*
*/
}
/* "pypm.pyx":317
* raise Exception("midi Output not open.")
*
* if self._aborted: # <<<<<<<<<<<<<<
* raise Exception(
* "midi Output aborted. Need to call Close after Abort.")
*/
__pyx_t_1 = (__pyx_v_self->_aborted != 0);
if (__pyx_t_1) {
/* "pypm.pyx":318
*
* if self._aborted:
* raise Exception( # <<<<<<<<<<<<<<
* "midi Output aborted. Need to call Close after Abort.")
*
*/
__pyx_t_2 = __Pyx_PyObject_Call(__pyx_builtin_Exception, __pyx_tuple__2, NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 318; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_Raise(__pyx_t_2, 0, 0, 0);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 318; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":317
* raise Exception("midi Output not open.")
*
* if self._aborted: # <<<<<<<<<<<<<<
* raise Exception(
* "midi Output aborted. Need to call Close after Abort.")
*/
}
/* "pypm.pyx":308
* raise Exception(Pm_GetErrorText(err))
*
* def _check_open(self): # <<<<<<<<<<<<<<
* """Check whether midi device is open, and if not, raises an error.
*
*/
/* function exit code */
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_2);
__Pyx_AddTraceback("pypm.Output._check_open", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":321
* "midi Output aborted. Need to call Close after Abort.")
*
* def Close(self): # <<<<<<<<<<<<<<
* """Close the midi output device, flushing any pending buffers.
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_6Output_7Close(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
static char __pyx_doc_4pypm_6Output_6Close[] = "Close the midi output device, flushing any pending buffers.\n\n PortMidi attempts to close open streams when the application exits --\n this is particularly difficult under Windows, so it is best to take\n care to close all devices explicitly.\n\n ";
static PyObject *__pyx_pw_4pypm_6Output_7Close(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("Close (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_6Output_6Close(((struct __pyx_obj_4pypm_Output *)__pyx_v_self));
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_6Output_6Close(struct __pyx_obj_4pypm_Output *__pyx_v_self) {
PmError __pyx_v_err;
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
int __pyx_t_1;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("Close", 0);
/* "pypm.pyx":331
* cdef PmError err
*
* if not self.midi: # <<<<<<<<<<<<<<
* return
*
*/
__pyx_t_1 = ((!(__pyx_v_self->midi != 0)) != 0);
if (__pyx_t_1) {
/* "pypm.pyx":332
*
* if not self.midi:
* return # <<<<<<<<<<<<<<
*
* err = Pm_Close(self.midi)
*/
__Pyx_XDECREF(__pyx_r);
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
/* "pypm.pyx":331
* cdef PmError err
*
* if not self.midi: # <<<<<<<<<<<<<<
* return
*
*/
}
/* "pypm.pyx":334
* return
*
* err = Pm_Close(self.midi) # <<<<<<<<<<<<<<
* if err < 0:
* raise Exception(Pm_GetErrorText(err))
*/
__pyx_v_err = Pm_Close(__pyx_v_self->midi);
/* "pypm.pyx":335
*
* err = Pm_Close(self.midi)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
__pyx_t_1 = ((__pyx_v_err < 0) != 0);
if (__pyx_t_1) {
/* "pypm.pyx":336
* err = Pm_Close(self.midi)
* if err < 0:
* raise Exception(Pm_GetErrorText(err)) # <<<<<<<<<<<<<<
*
* self.midi = NULL
*/
__pyx_t_2 = __Pyx_PyBytes_FromString(Pm_GetErrorText(__pyx_v_err)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 336; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 336; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_GIVEREF(__pyx_t_2);
PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
__pyx_t_2 = 0;
__pyx_t_2 = __Pyx_PyObject_Call(__pyx_builtin_Exception, __pyx_t_3, NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 336; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_Raise(__pyx_t_2, 0, 0, 0);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 336; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":335
*
* err = Pm_Close(self.midi)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
}
/* "pypm.pyx":338
* raise Exception(Pm_GetErrorText(err))
*
* self.midi = NULL # <<<<<<<<<<<<<<
*
* def Abort(self):
*/
__pyx_v_self->midi = NULL;
/* "pypm.pyx":321
* "midi Output aborted. Need to call Close after Abort.")
*
* def Close(self): # <<<<<<<<<<<<<<
* """Close the midi output device, flushing any pending buffers.
*
*/
/* function exit code */
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_AddTraceback("pypm.Output.Close", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":340
* self.midi = NULL
*
* def Abort(self): # <<<<<<<<<<<<<<
* """Terminate outgoing messages immediately.
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_6Output_9Abort(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
static char __pyx_doc_4pypm_6Output_8Abort[] = "Terminate outgoing messages immediately.\n\n The caller should immediately close the output port after calling this\n method. This call may result in transmission of a partial midi message.\n There is no abort for Midi input because the user can simply ignore\n messages in the buffer and close an input device at any time.\n\n ";
static PyObject *__pyx_pw_4pypm_6Output_9Abort(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("Abort (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_6Output_8Abort(((struct __pyx_obj_4pypm_Output *)__pyx_v_self));
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_6Output_8Abort(struct __pyx_obj_4pypm_Output *__pyx_v_self) {
PmError __pyx_v_err;
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
int __pyx_t_1;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("Abort", 0);
/* "pypm.pyx":351
* cdef PmError err
*
* if not self.midi: # <<<<<<<<<<<<<<
* return
*
*/
__pyx_t_1 = ((!(__pyx_v_self->midi != 0)) != 0);
if (__pyx_t_1) {
/* "pypm.pyx":352
*
* if not self.midi:
* return # <<<<<<<<<<<<<<
*
* err = Pm_Abort(self.midi)
*/
__Pyx_XDECREF(__pyx_r);
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
/* "pypm.pyx":351
* cdef PmError err
*
* if not self.midi: # <<<<<<<<<<<<<<
* return
*
*/
}
/* "pypm.pyx":354
* return
*
* err = Pm_Abort(self.midi) # <<<<<<<<<<<<<<
* if err < 0:
* raise Exception(Pm_GetErrorText(err))
*/
__pyx_v_err = Pm_Abort(__pyx_v_self->midi);
/* "pypm.pyx":355
*
* err = Pm_Abort(self.midi)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
__pyx_t_1 = ((__pyx_v_err < 0) != 0);
if (__pyx_t_1) {
/* "pypm.pyx":356
* err = Pm_Abort(self.midi)
* if err < 0:
* raise Exception(Pm_GetErrorText(err)) # <<<<<<<<<<<<<<
*
* self._aborted = 1
*/
__pyx_t_2 = __Pyx_PyBytes_FromString(Pm_GetErrorText(__pyx_v_err)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 356; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 356; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_GIVEREF(__pyx_t_2);
PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
__pyx_t_2 = 0;
__pyx_t_2 = __Pyx_PyObject_Call(__pyx_builtin_Exception, __pyx_t_3, NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 356; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_Raise(__pyx_t_2, 0, 0, 0);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 356; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":355
*
* err = Pm_Abort(self.midi)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
}
/* "pypm.pyx":358
* raise Exception(Pm_GetErrorText(err))
*
* self._aborted = 1 # <<<<<<<<<<<<<<
*
* def Write(self, data):
*/
__pyx_v_self->_aborted = 1;
/* "pypm.pyx":340
* self.midi = NULL
*
* def Abort(self): # <<<<<<<<<<<<<<
* """Terminate outgoing messages immediately.
*
*/
/* function exit code */
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_AddTraceback("pypm.Output.Abort", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":360
* self._aborted = 1
*
* def Write(self, data): # <<<<<<<<<<<<<<
* """Output a series of MIDI events given by data list n this device.
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_6Output_11Write(PyObject *__pyx_v_self, PyObject *__pyx_v_data); /*proto*/
static char __pyx_doc_4pypm_6Output_10Write[] = "Output a series of MIDI events given by data list n this device.\n\n Usage::\n\n Write([\n [[status, data1, data2, data3], timestamp],\n [[status, data1, data2, data3], timestamp],\n ...\n ])\n\n The data1/2/3 items in each event are optional::\n\n Write([[[0xc0, 0, 0], 20000]])\n\n is equivalent to::\n\n Write([[[0xc0], 20000]])\n\n Example:\n\n Send program change 1 at time 20000 and send note 65 with velocity 100\n at 500 ms later::\n\n Write([[[0xc0, 0, 0], 20000], [[0x90, 60, 100], 20500]])\n\n .. notes::\n 1. Timestamps will be ignored if latency == 0.\n\n 2. To get a note to play immediately, send the note on event with\n the result from the Time() function as the timestamp.\n\n ";
static PyObject *__pyx_pw_4pypm_6Output_11Write(PyObject *__pyx_v_self, PyObject *__pyx_v_data) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("Write (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_6Output_10Write(((struct __pyx_obj_4pypm_Output *)__pyx_v_self), ((PyObject *)__pyx_v_data));
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_6Output_10Write(struct __pyx_obj_4pypm_Output *__pyx_v_self, PyObject *__pyx_v_data) {
PmEvent __pyx_v_buffer[0x400];
PmError __pyx_v_err;
int __pyx_v_item;
int __pyx_v_ev_no;
PyObject *__pyx_v_event = NULL;
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
PyObject *__pyx_t_1 = NULL;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
Py_ssize_t __pyx_t_4;
int __pyx_t_5;
int __pyx_t_6;
PyObject *(*__pyx_t_7)(PyObject *);
int __pyx_t_8;
Py_ssize_t __pyx_t_9;
PyObject *__pyx_t_10 = NULL;
int __pyx_t_11;
Py_ssize_t __pyx_t_12;
PyObject *__pyx_t_13 = NULL;
PmMessage __pyx_t_14;
PmTimestamp __pyx_t_15;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("Write", 0);
/* "pypm.pyx":398
* cdef int ev_no
*
* self._check_open() # <<<<<<<<<<<<<<
*
* if len(data) > 1024:
*/
__pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_check_open); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 398; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_3 = NULL;
if (CYTHON_COMPILING_IN_CPYTHON && likely(PyMethod_Check(__pyx_t_2))) {
__pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2);
if (likely(__pyx_t_3)) {
PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2);
__Pyx_INCREF(__pyx_t_3);
__Pyx_INCREF(function);
__Pyx_DECREF_SET(__pyx_t_2, function);
}
}
if (__pyx_t_3) {
__pyx_t_1 = __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_3); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 398; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
} else {
__pyx_t_1 = __Pyx_PyObject_CallNoArg(__pyx_t_2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 398; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":400
* self._check_open()
*
* if len(data) > 1024: # <<<<<<<<<<<<<<
* raise IndexError('Maximum event list length is 1024.')
* else:
*/
__pyx_t_4 = PyObject_Length(__pyx_v_data); if (unlikely(__pyx_t_4 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 400; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_5 = ((__pyx_t_4 > 0x400) != 0);
if (__pyx_t_5) {
/* "pypm.pyx":401
*
* if len(data) > 1024:
* raise IndexError('Maximum event list length is 1024.') # <<<<<<<<<<<<<<
* else:
* for ev_no, event in enumerate(data):
*/
__pyx_t_1 = __Pyx_PyObject_Call(__pyx_builtin_IndexError, __pyx_tuple__3, NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 401; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_Raise(__pyx_t_1, 0, 0, 0);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 401; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":400
* self._check_open()
*
* if len(data) > 1024: # <<<<<<<<<<<<<<
* raise IndexError('Maximum event list length is 1024.')
* else:
*/
}
/* "pypm.pyx":403
* raise IndexError('Maximum event list length is 1024.')
* else:
* for ev_no, event in enumerate(data): # <<<<<<<<<<<<<<
* if not event[0]:
* raise ValueError('No data in event no. %i.' % ev_no)
*/
/*else*/ {
__pyx_t_6 = 0;
if (likely(PyList_CheckExact(__pyx_v_data)) || PyTuple_CheckExact(__pyx_v_data)) {
__pyx_t_1 = __pyx_v_data; __Pyx_INCREF(__pyx_t_1); __pyx_t_4 = 0;
__pyx_t_7 = NULL;
} else {
__pyx_t_4 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_v_data); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 403; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_7 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 403; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
for (;;) {
if (likely(!__pyx_t_7)) {
if (likely(PyList_CheckExact(__pyx_t_1))) {
if (__pyx_t_4 >= PyList_GET_SIZE(__pyx_t_1)) break;
#if CYTHON_COMPILING_IN_CPYTHON
__pyx_t_2 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_4); __Pyx_INCREF(__pyx_t_2); __pyx_t_4++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 403; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
#else
__pyx_t_2 = PySequence_ITEM(__pyx_t_1, __pyx_t_4); __pyx_t_4++; if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 403; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
#endif
} else {
if (__pyx_t_4 >= PyTuple_GET_SIZE(__pyx_t_1)) break;
#if CYTHON_COMPILING_IN_CPYTHON
__pyx_t_2 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_4); __Pyx_INCREF(__pyx_t_2); __pyx_t_4++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 403; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
#else
__pyx_t_2 = PySequence_ITEM(__pyx_t_1, __pyx_t_4); __pyx_t_4++; if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 403; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
#endif
}
} else {
__pyx_t_2 = __pyx_t_7(__pyx_t_1);
if (unlikely(!__pyx_t_2)) {
PyObject* exc_type = PyErr_Occurred();
if (exc_type) {
if (likely(exc_type == PyExc_StopIteration || PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear();
else {__pyx_filename = __pyx_f[0]; __pyx_lineno = 403; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
break;
}
__Pyx_GOTREF(__pyx_t_2);
}
__Pyx_XDECREF_SET(__pyx_v_event, __pyx_t_2);
__pyx_t_2 = 0;
__pyx_v_ev_no = __pyx_t_6;
__pyx_t_6 = (__pyx_t_6 + 1);
/* "pypm.pyx":404
* else:
* for ev_no, event in enumerate(data):
* if not event[0]: # <<<<<<<<<<<<<<
* raise ValueError('No data in event no. %i.' % ev_no)
* if len(event[0]) > 4:
*/
__pyx_t_2 = __Pyx_GetItemInt(__pyx_v_event, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(__pyx_t_2 == NULL)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 404; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 404; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__pyx_t_8 = ((!__pyx_t_5) != 0);
if (__pyx_t_8) {
/* "pypm.pyx":405
* for ev_no, event in enumerate(data):
* if not event[0]:
* raise ValueError('No data in event no. %i.' % ev_no) # <<<<<<<<<<<<<<
* if len(event[0]) > 4:
* raise ValueError('Too many data bytes (%i) in event no. %i.'
*/
__pyx_t_2 = __Pyx_PyInt_From_int(__pyx_v_ev_no); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 405; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_3 = __Pyx_PyString_Format(__pyx_kp_s_No_data_in_event_no_i, __pyx_t_2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 405; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 405; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_GIVEREF(__pyx_t_3);
PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_3);
__pyx_t_3 = 0;
__pyx_t_3 = __Pyx_PyObject_Call(__pyx_builtin_ValueError, __pyx_t_2, NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 405; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_Raise(__pyx_t_3, 0, 0, 0);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 405; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":404
* else:
* for ev_no, event in enumerate(data):
* if not event[0]: # <<<<<<<<<<<<<<
* raise ValueError('No data in event no. %i.' % ev_no)
* if len(event[0]) > 4:
*/
}
/* "pypm.pyx":406
* if not event[0]:
* raise ValueError('No data in event no. %i.' % ev_no)
* if len(event[0]) > 4: # <<<<<<<<<<<<<<
* raise ValueError('Too many data bytes (%i) in event no. %i.'
* % (len(event[0]), ev_no))
*/
__pyx_t_3 = __Pyx_GetItemInt(__pyx_v_event, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(__pyx_t_3 == NULL)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 406; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_9 = PyObject_Length(__pyx_t_3); if (unlikely(__pyx_t_9 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 406; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_8 = ((__pyx_t_9 > 4) != 0);
if (__pyx_t_8) {
/* "pypm.pyx":408
* if len(event[0]) > 4:
* raise ValueError('Too many data bytes (%i) in event no. %i.'
* % (len(event[0]), ev_no)) # <<<<<<<<<<<<<<
*
* buffer[int(ev_no)].message = 0
*/
__pyx_t_3 = __Pyx_GetItemInt(__pyx_v_event, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(__pyx_t_3 == NULL)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 408; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_9 = PyObject_Length(__pyx_t_3); if (unlikely(__pyx_t_9 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 408; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_3 = PyInt_FromSsize_t(__pyx_t_9); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 408; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_2 = __Pyx_PyInt_From_int(__pyx_v_ev_no); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 408; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_10 = PyTuple_New(2); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 408; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_10);
__Pyx_GIVEREF(__pyx_t_3);
PyTuple_SET_ITEM(__pyx_t_10, 0, __pyx_t_3);
__Pyx_GIVEREF(__pyx_t_2);
PyTuple_SET_ITEM(__pyx_t_10, 1, __pyx_t_2);
__pyx_t_3 = 0;
__pyx_t_2 = 0;
__pyx_t_2 = __Pyx_PyString_Format(__pyx_kp_s_Too_many_data_bytes_i_in_event_n, __pyx_t_10); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 408; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0;
/* "pypm.pyx":407
* raise ValueError('No data in event no. %i.' % ev_no)
* if len(event[0]) > 4:
* raise ValueError('Too many data bytes (%i) in event no. %i.' # <<<<<<<<<<<<<<
* % (len(event[0]), ev_no))
*
*/
__pyx_t_10 = PyTuple_New(1); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 407; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_10);
__Pyx_GIVEREF(__pyx_t_2);
PyTuple_SET_ITEM(__pyx_t_10, 0, __pyx_t_2);
__pyx_t_2 = 0;
__pyx_t_2 = __Pyx_PyObject_Call(__pyx_builtin_ValueError, __pyx_t_10, NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 407; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0;
__Pyx_Raise(__pyx_t_2, 0, 0, 0);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 407; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":406
* if not event[0]:
* raise ValueError('No data in event no. %i.' % ev_no)
* if len(event[0]) > 4: # <<<<<<<<<<<<<<
* raise ValueError('Too many data bytes (%i) in event no. %i.'
* % (len(event[0]), ev_no))
*/
}
/* "pypm.pyx":410
* % (len(event[0]), ev_no))
*
* buffer[int(ev_no)].message = 0 # <<<<<<<<<<<<<<
*
* for item in range(len(event[0])):
*/
(__pyx_v_buffer[((Py_ssize_t)__pyx_v_ev_no)]).message = 0;
/* "pypm.pyx":412
* buffer[int(ev_no)].message = 0
*
* for item in range(len(event[0])): # <<<<<<<<<<<<<<
* buffer[int(ev_no)].message += (
* (event[0][item] & 0xFF) << (8 * item))
*/
__pyx_t_2 = __Pyx_GetItemInt(__pyx_v_event, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(__pyx_t_2 == NULL)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 412; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_9 = PyObject_Length(__pyx_t_2); if (unlikely(__pyx_t_9 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 412; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
for (__pyx_t_11 = 0; __pyx_t_11 < __pyx_t_9; __pyx_t_11+=1) {
__pyx_v_item = __pyx_t_11;
/* "pypm.pyx":413
*
* for item in range(len(event[0])):
* buffer[int(ev_no)].message += ( # <<<<<<<<<<<<<<
* (event[0][item] & 0xFF) << (8 * item))
*
*/
__pyx_t_12 = ((Py_ssize_t)__pyx_v_ev_no);
__pyx_t_2 = __Pyx_PyInt_From_PmMessage((__pyx_v_buffer[__pyx_t_12]).message); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 413; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
/* "pypm.pyx":414
* for item in range(len(event[0])):
* buffer[int(ev_no)].message += (
* (event[0][item] & 0xFF) << (8 * item)) # <<<<<<<<<<<<<<
*
* buffer[int(ev_no)].timestamp = event[1]
*/
__pyx_t_10 = __Pyx_GetItemInt(__pyx_v_event, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(__pyx_t_10 == NULL)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 414; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
__Pyx_GOTREF(__pyx_t_10);
__pyx_t_3 = __Pyx_GetItemInt(__pyx_t_10, __pyx_v_item, int, 1, __Pyx_PyInt_From_int, 0, 1, 1); if (unlikely(__pyx_t_3 == NULL)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 414; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0;
__pyx_t_10 = __Pyx_PyInt_AndObjC(__pyx_t_3, __pyx_int_255, 0xFF, 0); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 414; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_10);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_3 = __Pyx_PyInt_From_long((8 * __pyx_v_item)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 414; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_13 = PyNumber_Lshift(__pyx_t_10, __pyx_t_3); if (unlikely(!__pyx_t_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 414; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_13);
__Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0;
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
/* "pypm.pyx":413
*
* for item in range(len(event[0])):
* buffer[int(ev_no)].message += ( # <<<<<<<<<<<<<<
* (event[0][item] & 0xFF) << (8 * item))
*
*/
__pyx_t_3 = PyNumber_InPlaceAdd(__pyx_t_2, __pyx_t_13); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 413; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0;
__pyx_t_14 = __Pyx_PyInt_As_PmMessage(__pyx_t_3); if (unlikely((__pyx_t_14 == (PmMessage)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 413; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
(__pyx_v_buffer[__pyx_t_12]).message = __pyx_t_14;
}
/* "pypm.pyx":416
* (event[0][item] & 0xFF) << (8 * item))
*
* buffer[int(ev_no)].timestamp = event[1] # <<<<<<<<<<<<<<
*
* if self.debug:
*/
__pyx_t_3 = __Pyx_GetItemInt(__pyx_v_event, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(__pyx_t_3 == NULL)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 416; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_15 = __Pyx_PyInt_As_PmTimestamp(__pyx_t_3); if (unlikely((__pyx_t_15 == (PmTimestamp)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 416; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
(__pyx_v_buffer[((Py_ssize_t)__pyx_v_ev_no)]).timestamp = __pyx_t_15;
/* "pypm.pyx":418
* buffer[int(ev_no)].timestamp = event[1]
*
* if self.debug: # <<<<<<<<<<<<<<
* print "%i : %r : %s" % (
* ev_no, buffer[int(ev_no)].message, buffer[int(ev_no)].timestamp)
*/
__pyx_t_8 = (__pyx_v_self->debug != 0);
if (__pyx_t_8) {
/* "pypm.pyx":420
* if self.debug:
* print "%i : %r : %s" % (
* ev_no, buffer[int(ev_no)].message, buffer[int(ev_no)].timestamp) # <<<<<<<<<<<<<<
*
* if self.debug:
*/
__pyx_t_3 = __Pyx_PyInt_From_int(__pyx_v_ev_no); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 420; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_13 = __Pyx_PyInt_From_PmMessage((__pyx_v_buffer[((Py_ssize_t)__pyx_v_ev_no)]).message); if (unlikely(!__pyx_t_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 420; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_13);
__pyx_t_2 = __Pyx_PyInt_From_PmTimestamp((__pyx_v_buffer[((Py_ssize_t)__pyx_v_ev_no)]).timestamp); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 420; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_10 = PyTuple_New(3); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 420; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_10);
__Pyx_GIVEREF(__pyx_t_3);
PyTuple_SET_ITEM(__pyx_t_10, 0, __pyx_t_3);
__Pyx_GIVEREF(__pyx_t_13);
PyTuple_SET_ITEM(__pyx_t_10, 1, __pyx_t_13);
__Pyx_GIVEREF(__pyx_t_2);
PyTuple_SET_ITEM(__pyx_t_10, 2, __pyx_t_2);
__pyx_t_3 = 0;
__pyx_t_13 = 0;
__pyx_t_2 = 0;
/* "pypm.pyx":419
*
* if self.debug:
* print "%i : %r : %s" % ( # <<<<<<<<<<<<<<
* ev_no, buffer[int(ev_no)].message, buffer[int(ev_no)].timestamp)
*
*/
__pyx_t_2 = __Pyx_PyString_Format(__pyx_kp_s_i_r_s, __pyx_t_10); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 419; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0;
if (__Pyx_PrintOne(0, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 419; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
/* "pypm.pyx":418
* buffer[int(ev_no)].timestamp = event[1]
*
* if self.debug: # <<<<<<<<<<<<<<
* print "%i : %r : %s" % (
* ev_no, buffer[int(ev_no)].message, buffer[int(ev_no)].timestamp)
*/
}
/* "pypm.pyx":403
* raise IndexError('Maximum event list length is 1024.')
* else:
* for ev_no, event in enumerate(data): # <<<<<<<<<<<<<<
* if not event[0]:
* raise ValueError('No data in event no. %i.' % ev_no)
*/
}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
}
/* "pypm.pyx":422
* ev_no, buffer[int(ev_no)].message, buffer[int(ev_no)].timestamp)
*
* if self.debug: # <<<<<<<<<<<<<<
* print "Writing to midi buffer."
* err = Pm_Write(self.midi, buffer, len(data))
*/
__pyx_t_8 = (__pyx_v_self->debug != 0);
if (__pyx_t_8) {
/* "pypm.pyx":423
*
* if self.debug:
* print "Writing to midi buffer." # <<<<<<<<<<<<<<
* err = Pm_Write(self.midi, buffer, len(data))
* if err < 0:
*/
if (__Pyx_PrintOne(0, __pyx_kp_s_Writing_to_midi_buffer) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 423; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":422
* ev_no, buffer[int(ev_no)].message, buffer[int(ev_no)].timestamp)
*
* if self.debug: # <<<<<<<<<<<<<<
* print "Writing to midi buffer."
* err = Pm_Write(self.midi, buffer, len(data))
*/
}
/* "pypm.pyx":424
* if self.debug:
* print "Writing to midi buffer."
* err = Pm_Write(self.midi, buffer, len(data)) # <<<<<<<<<<<<<<
* if err < 0:
* raise Exception(Pm_GetErrorText(err))
*/
__pyx_t_4 = PyObject_Length(__pyx_v_data); if (unlikely(__pyx_t_4 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 424; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_v_err = Pm_Write(__pyx_v_self->midi, __pyx_v_buffer, __pyx_t_4);
/* "pypm.pyx":425
* print "Writing to midi buffer."
* err = Pm_Write(self.midi, buffer, len(data))
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
__pyx_t_8 = ((__pyx_v_err < 0) != 0);
if (__pyx_t_8) {
/* "pypm.pyx":426
* err = Pm_Write(self.midi, buffer, len(data))
* if err < 0:
* raise Exception(Pm_GetErrorText(err)) # <<<<<<<<<<<<<<
*
* def WriteShort(self, status, data1=0, data2=0):
*/
__pyx_t_1 = __Pyx_PyBytes_FromString(Pm_GetErrorText(__pyx_v_err)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 426; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 426; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_GIVEREF(__pyx_t_1);
PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_1);
__pyx_t_1 = 0;
__pyx_t_1 = __Pyx_PyObject_Call(__pyx_builtin_Exception, __pyx_t_2, NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 426; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_Raise(__pyx_t_1, 0, 0, 0);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 426; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":425
* print "Writing to midi buffer."
* err = Pm_Write(self.midi, buffer, len(data))
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
}
/* "pypm.pyx":360
* self._aborted = 1
*
* def Write(self, data): # <<<<<<<<<<<<<<
* """Output a series of MIDI events given by data list n this device.
*
*/
/* function exit code */
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_XDECREF(__pyx_t_10);
__Pyx_XDECREF(__pyx_t_13);
__Pyx_AddTraceback("pypm.Output.Write", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XDECREF(__pyx_v_event);
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":428
* raise Exception(Pm_GetErrorText(err))
*
* def WriteShort(self, status, data1=0, data2=0): # <<<<<<<<<<<<<<
* """Output MIDI event of three bytes or less immediately on this device.
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_6Output_13WriteShort(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
static char __pyx_doc_4pypm_6Output_12WriteShort[] = "Output MIDI event of three bytes or less immediately on this device.\n\n Usage::\n\n WriteShort(status, data1, data2)\n\n status must be a valid MIDI status byte, for example:\n\n 0xCx = Program Change\n 0xBx = Controller Change\n 0x9x = Note On\n\n where x is the MIDI channel number 0 - 0xF.\n\n The data1 and data2 arguments are optional and assumed to be 0 if\n omitted.\n\n Example:\n\n Send note 65 on with velocity 100::\n\n WriteShort(0x90, 65, 100)\n\n ";
static PyObject *__pyx_pw_4pypm_6Output_13WriteShort(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
PyObject *__pyx_v_status = 0;
PyObject *__pyx_v_data1 = 0;
PyObject *__pyx_v_data2 = 0;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("WriteShort (wrapper)", 0);
{
static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_status,&__pyx_n_s_data1,&__pyx_n_s_data2,0};
PyObject* values[3] = {0,0,0};
values[1] = ((PyObject *)__pyx_int_0);
values[2] = ((PyObject *)__pyx_int_0);
if (unlikely(__pyx_kwds)) {
Py_ssize_t kw_args;
const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args);
switch (pos_args) {
case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2);
case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
case 0: break;
default: goto __pyx_L5_argtuple_error;
}
kw_args = PyDict_Size(__pyx_kwds);
switch (pos_args) {
case 0:
if (likely((values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s_status)) != 0)) kw_args--;
else goto __pyx_L5_argtuple_error;
case 1:
if (kw_args > 0) {
PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s_data1);
if (value) { values[1] = value; kw_args--; }
}
case 2:
if (kw_args > 0) {
PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s_data2);
if (value) { values[2] = value; kw_args--; }
}
}
if (unlikely(kw_args > 0)) {
if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "WriteShort") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 428; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
}
} else {
switch (PyTuple_GET_SIZE(__pyx_args)) {
case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2);
case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
break;
default: goto __pyx_L5_argtuple_error;
}
}
__pyx_v_status = values[0];
__pyx_v_data1 = values[1];
__pyx_v_data2 = values[2];
}
goto __pyx_L4_argument_unpacking_done;
__pyx_L5_argtuple_error:;
__Pyx_RaiseArgtupleInvalid("WriteShort", 0, 1, 3, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 428; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
__pyx_L3_error:;
__Pyx_AddTraceback("pypm.Output.WriteShort", __pyx_clineno, __pyx_lineno, __pyx_filename);
__Pyx_RefNannyFinishContext();
return NULL;
__pyx_L4_argument_unpacking_done:;
__pyx_r = __pyx_pf_4pypm_6Output_12WriteShort(((struct __pyx_obj_4pypm_Output *)__pyx_v_self), __pyx_v_status, __pyx_v_data1, __pyx_v_data2);
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_6Output_12WriteShort(struct __pyx_obj_4pypm_Output *__pyx_v_self, PyObject *__pyx_v_status, PyObject *__pyx_v_data1, PyObject *__pyx_v_data2) {
PmEvent __pyx_v_buffer[1];
PmError __pyx_v_err;
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
PyObject *__pyx_t_1 = NULL;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
PmMessage __pyx_t_4;
int __pyx_t_5;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("WriteShort", 0);
/* "pypm.pyx":456
* cdef PmError err
*
* self._check_open() # <<<<<<<<<<<<<<
*
* buffer[0].timestamp = Pt_Time()
*/
__pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_check_open); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 456; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_3 = NULL;
if (CYTHON_COMPILING_IN_CPYTHON && likely(PyMethod_Check(__pyx_t_2))) {
__pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2);
if (likely(__pyx_t_3)) {
PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2);
__Pyx_INCREF(__pyx_t_3);
__Pyx_INCREF(function);
__Pyx_DECREF_SET(__pyx_t_2, function);
}
}
if (__pyx_t_3) {
__pyx_t_1 = __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_3); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 456; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
} else {
__pyx_t_1 = __Pyx_PyObject_CallNoArg(__pyx_t_2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 456; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":458
* self._check_open()
*
* buffer[0].timestamp = Pt_Time() # <<<<<<<<<<<<<<
* buffer[0].message = (((data2 << 16) & 0xFF0000) |
* ((data1 << 8) & 0xFF00) | (status & 0xFF))
*/
(__pyx_v_buffer[0]).timestamp = Pt_Time();
/* "pypm.pyx":459
*
* buffer[0].timestamp = Pt_Time()
* buffer[0].message = (((data2 << 16) & 0xFF0000) | # <<<<<<<<<<<<<<
* ((data1 << 8) & 0xFF00) | (status & 0xFF))
*
*/
__pyx_t_1 = PyNumber_Lshift(__pyx_v_data2, __pyx_int_16); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = __Pyx_PyInt_AndObjC(__pyx_t_1, __pyx_int_16711680, 0xFF0000, 0); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":460
* buffer[0].timestamp = Pt_Time()
* buffer[0].message = (((data2 << 16) & 0xFF0000) |
* ((data1 << 8) & 0xFF00) | (status & 0xFF)) # <<<<<<<<<<<<<<
*
* if self.debug:
*/
__pyx_t_1 = PyNumber_Lshift(__pyx_v_data1, __pyx_int_8); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 460; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_3 = __Pyx_PyInt_AndObjC(__pyx_t_1, __pyx_int_65280, 0xFF00, 0); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 460; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":459
*
* buffer[0].timestamp = Pt_Time()
* buffer[0].message = (((data2 << 16) & 0xFF0000) | # <<<<<<<<<<<<<<
* ((data1 << 8) & 0xFF00) | (status & 0xFF))
*
*/
__pyx_t_1 = PyNumber_Or(__pyx_t_2, __pyx_t_3); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
/* "pypm.pyx":460
* buffer[0].timestamp = Pt_Time()
* buffer[0].message = (((data2 << 16) & 0xFF0000) |
* ((data1 << 8) & 0xFF00) | (status & 0xFF)) # <<<<<<<<<<<<<<
*
* if self.debug:
*/
__pyx_t_3 = __Pyx_PyInt_AndObjC(__pyx_v_status, __pyx_int_255, 0xFF, 0); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 460; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_2 = PyNumber_Or(__pyx_t_1, __pyx_t_3); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 460; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_4 = __Pyx_PyInt_As_PmMessage(__pyx_t_2); if (unlikely((__pyx_t_4 == (PmMessage)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 460; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
/* "pypm.pyx":459
*
* buffer[0].timestamp = Pt_Time()
* buffer[0].message = (((data2 << 16) & 0xFF0000) | # <<<<<<<<<<<<<<
* ((data1 << 8) & 0xFF00) | (status & 0xFF))
*
*/
(__pyx_v_buffer[0]).message = __pyx_t_4;
/* "pypm.pyx":462
* ((data1 << 8) & 0xFF00) | (status & 0xFF))
*
* if self.debug: # <<<<<<<<<<<<<<
* print "Writing to MIDI buffer."
* err = Pm_Write(self.midi, buffer, 1) # stream, buffer, length
*/
__pyx_t_5 = (__pyx_v_self->debug != 0);
if (__pyx_t_5) {
/* "pypm.pyx":463
*
* if self.debug:
* print "Writing to MIDI buffer." # <<<<<<<<<<<<<<
* err = Pm_Write(self.midi, buffer, 1) # stream, buffer, length
* if err < 0:
*/
if (__Pyx_PrintOne(0, __pyx_kp_s_Writing_to_MIDI_buffer) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 463; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":462
* ((data1 << 8) & 0xFF00) | (status & 0xFF))
*
* if self.debug: # <<<<<<<<<<<<<<
* print "Writing to MIDI buffer."
* err = Pm_Write(self.midi, buffer, 1) # stream, buffer, length
*/
}
/* "pypm.pyx":464
* if self.debug:
* print "Writing to MIDI buffer."
* err = Pm_Write(self.midi, buffer, 1) # stream, buffer, length # <<<<<<<<<<<<<<
* if err < 0:
* raise Exception(Pm_GetErrorText(err))
*/
__pyx_v_err = Pm_Write(__pyx_v_self->midi, __pyx_v_buffer, 1);
/* "pypm.pyx":465
* print "Writing to MIDI buffer."
* err = Pm_Write(self.midi, buffer, 1) # stream, buffer, length
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
__pyx_t_5 = ((__pyx_v_err < 0) != 0);
if (__pyx_t_5) {
/* "pypm.pyx":466
* err = Pm_Write(self.midi, buffer, 1) # stream, buffer, length
* if err < 0:
* raise Exception(Pm_GetErrorText(err)) # <<<<<<<<<<<<<<
*
* def WriteSysEx(self, when, msg):
*/
__pyx_t_2 = __Pyx_PyBytes_FromString(Pm_GetErrorText(__pyx_v_err)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 466; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 466; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_GIVEREF(__pyx_t_2);
PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
__pyx_t_2 = 0;
__pyx_t_2 = __Pyx_PyObject_Call(__pyx_builtin_Exception, __pyx_t_3, NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 466; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_Raise(__pyx_t_2, 0, 0, 0);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 466; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":465
* print "Writing to MIDI buffer."
* err = Pm_Write(self.midi, buffer, 1) # stream, buffer, length
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
}
/* "pypm.pyx":428
* raise Exception(Pm_GetErrorText(err))
*
* def WriteShort(self, status, data1=0, data2=0): # <<<<<<<<<<<<<<
* """Output MIDI event of three bytes or less immediately on this device.
*
*/
/* function exit code */
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_AddTraceback("pypm.Output.WriteShort", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":468
* raise Exception(Pm_GetErrorText(err))
*
* def WriteSysEx(self, when, msg): # <<<<<<<<<<<<<<
* """Output a timestamped system-exclusive MIDI message on this device.
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_6Output_15WriteSysEx(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
static char __pyx_doc_4pypm_6Output_14WriteSysEx[] = "Output a timestamped system-exclusive MIDI message on this device.\n\n Usage::\n\n WriteSysEx(<timestamp>, <msg>)\n\n <msg> can be a *list* or a *string*\n\n Example (assuming 'out' is an output MIDI stream):\n\n out.WriteSysEx(0, '\\xF0\\x7D\\x10\\x11\\x12\\x13\\xF7')\n\n This is equivalent to::\n\n out.WriteSysEx(pypm.Time(),\n [0xF0, 0x7D, 0x10, 0x11, 0x12, 0x13, 0xF7])\n\n ";
static PyObject *__pyx_pw_4pypm_6Output_15WriteSysEx(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
PyObject *__pyx_v_when = 0;
PyObject *__pyx_v_msg = 0;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("WriteSysEx (wrapper)", 0);
{
static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_when,&__pyx_n_s_msg,0};
PyObject* values[2] = {0,0};
if (unlikely(__pyx_kwds)) {
Py_ssize_t kw_args;
const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args);
switch (pos_args) {
case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
case 0: break;
default: goto __pyx_L5_argtuple_error;
}
kw_args = PyDict_Size(__pyx_kwds);
switch (pos_args) {
case 0:
if (likely((values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s_when)) != 0)) kw_args--;
else goto __pyx_L5_argtuple_error;
case 1:
if (likely((values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s_msg)) != 0)) kw_args--;
else {
__Pyx_RaiseArgtupleInvalid("WriteSysEx", 1, 2, 2, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 468; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
}
}
if (unlikely(kw_args > 0)) {
if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "WriteSysEx") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 468; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
}
} else if (PyTuple_GET_SIZE(__pyx_args) != 2) {
goto __pyx_L5_argtuple_error;
} else {
values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
}
__pyx_v_when = values[0];
__pyx_v_msg = values[1];
}
goto __pyx_L4_argument_unpacking_done;
__pyx_L5_argtuple_error:;
__Pyx_RaiseArgtupleInvalid("WriteSysEx", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 468; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
__pyx_L3_error:;
__Pyx_AddTraceback("pypm.Output.WriteSysEx", __pyx_clineno, __pyx_lineno, __pyx_filename);
__Pyx_RefNannyFinishContext();
return NULL;
__pyx_L4_argument_unpacking_done:;
__pyx_r = __pyx_pf_4pypm_6Output_14WriteSysEx(((struct __pyx_obj_4pypm_Output *)__pyx_v_self), __pyx_v_when, __pyx_v_msg);
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_6Output_14WriteSysEx(struct __pyx_obj_4pypm_Output *__pyx_v_self, PyObject *__pyx_v_when, PyObject *__pyx_v_msg) {
PmError __pyx_v_err;
char *__pyx_v_cmsg;
PtTimestamp __pyx_v_cur_time;
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
PyObject *__pyx_t_1 = NULL;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
int __pyx_t_4;
int __pyx_t_5;
PyObject *__pyx_t_6 = NULL;
Py_ssize_t __pyx_t_7;
PyObject *__pyx_t_8 = NULL;
char *__pyx_t_9;
PmTimestamp __pyx_t_10;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("WriteSysEx", 0);
__Pyx_INCREF(__pyx_v_msg);
/* "pypm.pyx":491
* cdef PtTimestamp cur_time
*
* self._check_open() # <<<<<<<<<<<<<<
*
* if type(msg) is list:
*/
__pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_check_open); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 491; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_3 = NULL;
if (CYTHON_COMPILING_IN_CPYTHON && likely(PyMethod_Check(__pyx_t_2))) {
__pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2);
if (likely(__pyx_t_3)) {
PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2);
__Pyx_INCREF(__pyx_t_3);
__Pyx_INCREF(function);
__Pyx_DECREF_SET(__pyx_t_2, function);
}
}
if (__pyx_t_3) {
__pyx_t_1 = __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_3); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 491; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
} else {
__pyx_t_1 = __Pyx_PyObject_CallNoArg(__pyx_t_2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 491; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":493
* self._check_open()
*
* if type(msg) is list: # <<<<<<<<<<<<<<
* # Markus Pfaff contribution
* msg = array.array('B', msg).tostring()
*/
__pyx_t_4 = (((PyObject *)Py_TYPE(__pyx_v_msg)) == ((PyObject *)(&PyList_Type)));
__pyx_t_5 = (__pyx_t_4 != 0);
if (__pyx_t_5) {
/* "pypm.pyx":495
* if type(msg) is list:
* # Markus Pfaff contribution
* msg = array.array('B', msg).tostring() # <<<<<<<<<<<<<<
* cmsg = msg
*
*/
__pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s_array); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 495; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_6 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_array); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 495; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_3 = NULL;
__pyx_t_7 = 0;
if (CYTHON_COMPILING_IN_CPYTHON && unlikely(PyMethod_Check(__pyx_t_6))) {
__pyx_t_3 = PyMethod_GET_SELF(__pyx_t_6);
if (likely(__pyx_t_3)) {
PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_6);
__Pyx_INCREF(__pyx_t_3);
__Pyx_INCREF(function);
__Pyx_DECREF_SET(__pyx_t_6, function);
__pyx_t_7 = 1;
}
}
__pyx_t_8 = PyTuple_New(2+__pyx_t_7); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 495; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_8);
if (__pyx_t_3) {
__Pyx_GIVEREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_8, 0, __pyx_t_3); __pyx_t_3 = NULL;
}
__Pyx_INCREF(__pyx_n_s_B);
__Pyx_GIVEREF(__pyx_n_s_B);
PyTuple_SET_ITEM(__pyx_t_8, 0+__pyx_t_7, __pyx_n_s_B);
__Pyx_INCREF(__pyx_v_msg);
__Pyx_GIVEREF(__pyx_v_msg);
PyTuple_SET_ITEM(__pyx_t_8, 1+__pyx_t_7, __pyx_v_msg);
__pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_6, __pyx_t_8, NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 495; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__pyx_t_6 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_tostring); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 495; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__pyx_t_2 = NULL;
if (CYTHON_COMPILING_IN_CPYTHON && likely(PyMethod_Check(__pyx_t_6))) {
__pyx_t_2 = PyMethod_GET_SELF(__pyx_t_6);
if (likely(__pyx_t_2)) {
PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_6);
__Pyx_INCREF(__pyx_t_2);
__Pyx_INCREF(function);
__Pyx_DECREF_SET(__pyx_t_6, function);
}
}
if (__pyx_t_2) {
__pyx_t_1 = __Pyx_PyObject_CallOneArg(__pyx_t_6, __pyx_t_2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 495; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
} else {
__pyx_t_1 = __Pyx_PyObject_CallNoArg(__pyx_t_6); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 495; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__Pyx_DECREF_SET(__pyx_v_msg, __pyx_t_1);
__pyx_t_1 = 0;
/* "pypm.pyx":493
* self._check_open()
*
* if type(msg) is list: # <<<<<<<<<<<<<<
* # Markus Pfaff contribution
* msg = array.array('B', msg).tostring()
*/
}
/* "pypm.pyx":496
* # Markus Pfaff contribution
* msg = array.array('B', msg).tostring()
* cmsg = msg # <<<<<<<<<<<<<<
*
* cur_time = Pt_Time()
*/
__pyx_t_9 = __Pyx_PyObject_AsString(__pyx_v_msg); if (unlikely((!__pyx_t_9) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 496; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_v_cmsg = __pyx_t_9;
/* "pypm.pyx":498
* cmsg = msg
*
* cur_time = Pt_Time() # <<<<<<<<<<<<<<
* err = Pm_WriteSysEx(self.midi, when, <unsigned char *> cmsg)
* if err < 0:
*/
__pyx_v_cur_time = Pt_Time();
/* "pypm.pyx":499
*
* cur_time = Pt_Time()
* err = Pm_WriteSysEx(self.midi, when, <unsigned char *> cmsg) # <<<<<<<<<<<<<<
* if err < 0:
* raise Exception(Pm_GetErrorText(err))
*/
__pyx_t_10 = __Pyx_PyInt_As_PmTimestamp(__pyx_v_when); if (unlikely((__pyx_t_10 == (PmTimestamp)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 499; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_v_err = Pm_WriteSysEx(__pyx_v_self->midi, __pyx_t_10, ((unsigned char *)__pyx_v_cmsg));
/* "pypm.pyx":500
* cur_time = Pt_Time()
* err = Pm_WriteSysEx(self.midi, when, <unsigned char *> cmsg)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
__pyx_t_5 = ((__pyx_v_err < 0) != 0);
if (__pyx_t_5) {
/* "pypm.pyx":501
* err = Pm_WriteSysEx(self.midi, when, <unsigned char *> cmsg)
* if err < 0:
* raise Exception(Pm_GetErrorText(err)) # <<<<<<<<<<<<<<
*
* # wait for SysEx to go thru or...
*/
__pyx_t_1 = __Pyx_PyBytes_FromString(Pm_GetErrorText(__pyx_v_err)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 501; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 501; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_GIVEREF(__pyx_t_1);
PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_1);
__pyx_t_1 = 0;
__pyx_t_1 = __Pyx_PyObject_Call(__pyx_builtin_Exception, __pyx_t_6, NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 501; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__Pyx_Raise(__pyx_t_1, 0, 0, 0);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 501; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":500
* cur_time = Pt_Time()
* err = Pm_WriteSysEx(self.midi, when, <unsigned char *> cmsg)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
}
/* "pypm.pyx":505
* # wait for SysEx to go thru or...
* # my win32 machine crashes w/ multiple SysEx
* while Pt_Time() == cur_time: # <<<<<<<<<<<<<<
* pass
*
*/
while (1) {
__pyx_t_5 = ((Pt_Time() == __pyx_v_cur_time) != 0);
if (!__pyx_t_5) break;
}
/* "pypm.pyx":468
* raise Exception(Pm_GetErrorText(err))
*
* def WriteSysEx(self, when, msg): # <<<<<<<<<<<<<<
* """Output a timestamped system-exclusive MIDI message on this device.
*
*/
/* function exit code */
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_XDECREF(__pyx_t_6);
__Pyx_XDECREF(__pyx_t_8);
__Pyx_AddTraceback("pypm.Output.WriteSysEx", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XDECREF(__pyx_v_msg);
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":521
* cdef int debug
*
* def __init__(self, input_device, buffersize=4096): # <<<<<<<<<<<<<<
* """Instantiate MIDI input stream object."""
*
*/
/* Python wrapper */
static int __pyx_pw_4pypm_5Input_1__init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
static char __pyx_doc_4pypm_5Input___init__[] = "Instantiate MIDI input stream object.";
#if CYTHON_COMPILING_IN_CPYTHON
struct wrapperbase __pyx_wrapperbase_4pypm_5Input___init__;
#endif
static int __pyx_pw_4pypm_5Input_1__init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
PyObject *__pyx_v_input_device = 0;
PyObject *__pyx_v_buffersize = 0;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
int __pyx_r;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("__init__ (wrapper)", 0);
{
static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_input_device,&__pyx_n_s_buffersize,0};
PyObject* values[2] = {0,0};
values[1] = ((PyObject *)__pyx_int_4096);
if (unlikely(__pyx_kwds)) {
Py_ssize_t kw_args;
const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args);
switch (pos_args) {
case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
case 0: break;
default: goto __pyx_L5_argtuple_error;
}
kw_args = PyDict_Size(__pyx_kwds);
switch (pos_args) {
case 0:
if (likely((values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s_input_device)) != 0)) kw_args--;
else goto __pyx_L5_argtuple_error;
case 1:
if (kw_args > 0) {
PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s_buffersize);
if (value) { values[1] = value; kw_args--; }
}
}
if (unlikely(kw_args > 0)) {
if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "__init__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 521; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
}
} else {
switch (PyTuple_GET_SIZE(__pyx_args)) {
case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
break;
default: goto __pyx_L5_argtuple_error;
}
}
__pyx_v_input_device = values[0];
__pyx_v_buffersize = values[1];
}
goto __pyx_L4_argument_unpacking_done;
__pyx_L5_argtuple_error:;
__Pyx_RaiseArgtupleInvalid("__init__", 0, 1, 2, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 521; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
__pyx_L3_error:;
__Pyx_AddTraceback("pypm.Input.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename);
__Pyx_RefNannyFinishContext();
return -1;
__pyx_L4_argument_unpacking_done:;
__pyx_r = __pyx_pf_4pypm_5Input___init__(((struct __pyx_obj_4pypm_Input *)__pyx_v_self), __pyx_v_input_device, __pyx_v_buffersize);
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static int __pyx_pf_4pypm_5Input___init__(struct __pyx_obj_4pypm_Input *__pyx_v_self, PyObject *__pyx_v_input_device, PyObject *__pyx_v_buffersize) {
PmError __pyx_v_err;
int __pyx_r;
__Pyx_RefNannyDeclarations
int __pyx_t_1;
PmDeviceID __pyx_t_2;
long __pyx_t_3;
int __pyx_t_4;
PyObject *__pyx_t_5 = NULL;
PyObject *__pyx_t_6 = NULL;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("__init__", 0);
/* "pypm.pyx":525
*
* cdef PmError err
* self.device = input_device # <<<<<<<<<<<<<<
* self.debug = 0
*
*/
__pyx_t_1 = __Pyx_PyInt_As_int(__pyx_v_input_device); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 525; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_v_self->device = __pyx_t_1;
/* "pypm.pyx":526
* cdef PmError err
* self.device = input_device
* self.debug = 0 # <<<<<<<<<<<<<<
*
* err = Pm_OpenInput(&(self.midi), input_device, NULL, buffersize,
*/
__pyx_v_self->debug = 0;
/* "pypm.pyx":528
* self.debug = 0
*
* err = Pm_OpenInput(&(self.midi), input_device, NULL, buffersize, # <<<<<<<<<<<<<<
* &Pt_Time, NULL)
* if err < 0:
*/
__pyx_t_2 = __Pyx_PyInt_As_PmDeviceID(__pyx_v_input_device); if (unlikely((__pyx_t_2 == (PmDeviceID)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 528; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_3 = __Pyx_PyInt_As_long(__pyx_v_buffersize); if (unlikely((__pyx_t_3 == (long)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 528; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":529
*
* err = Pm_OpenInput(&(self.midi), input_device, NULL, buffersize,
* &Pt_Time, NULL) # <<<<<<<<<<<<<<
* if err < 0:
* raise Exception(Pm_GetErrorText(err))
*/
__pyx_v_err = Pm_OpenInput((&__pyx_v_self->midi), __pyx_t_2, NULL, __pyx_t_3, (&Pt_Time), NULL);
/* "pypm.pyx":530
* err = Pm_OpenInput(&(self.midi), input_device, NULL, buffersize,
* &Pt_Time, NULL)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
__pyx_t_4 = ((__pyx_v_err < 0) != 0);
if (__pyx_t_4) {
/* "pypm.pyx":531
* &Pt_Time, NULL)
* if err < 0:
* raise Exception(Pm_GetErrorText(err)) # <<<<<<<<<<<<<<
*
* if self.debug:
*/
__pyx_t_5 = __Pyx_PyBytes_FromString(Pm_GetErrorText(__pyx_v_err)); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 531; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 531; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_GIVEREF(__pyx_t_5);
PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_5);
__pyx_t_5 = 0;
__pyx_t_5 = __Pyx_PyObject_Call(__pyx_builtin_Exception, __pyx_t_6, NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 531; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__Pyx_Raise(__pyx_t_5, 0, 0, 0);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 531; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":530
* err = Pm_OpenInput(&(self.midi), input_device, NULL, buffersize,
* &Pt_Time, NULL)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
}
/* "pypm.pyx":533
* raise Exception(Pm_GetErrorText(err))
*
* if self.debug: # <<<<<<<<<<<<<<
* print "MIDI input opened."
*
*/
__pyx_t_4 = (__pyx_v_self->debug != 0);
if (__pyx_t_4) {
/* "pypm.pyx":534
*
* if self.debug:
* print "MIDI input opened." # <<<<<<<<<<<<<<
*
* def __dealloc__(self):
*/
if (__Pyx_PrintOne(0, __pyx_kp_s_MIDI_input_opened) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 534; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":533
* raise Exception(Pm_GetErrorText(err))
*
* if self.debug: # <<<<<<<<<<<<<<
* print "MIDI input opened."
*
*/
}
/* "pypm.pyx":521
* cdef int debug
*
* def __init__(self, input_device, buffersize=4096): # <<<<<<<<<<<<<<
* """Instantiate MIDI input stream object."""
*
*/
/* function exit code */
__pyx_r = 0;
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_5);
__Pyx_XDECREF(__pyx_t_6);
__Pyx_AddTraceback("pypm.Input.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = -1;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":536
* print "MIDI input opened."
*
* def __dealloc__(self): # <<<<<<<<<<<<<<
* """Close midi device if still open when the instance is destroyed."""
*
*/
/* Python wrapper */
static void __pyx_pw_4pypm_5Input_3__dealloc__(PyObject *__pyx_v_self); /*proto*/
static void __pyx_pw_4pypm_5Input_3__dealloc__(PyObject *__pyx_v_self) {
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("__dealloc__ (wrapper)", 0);
__pyx_pf_4pypm_5Input_2__dealloc__(((struct __pyx_obj_4pypm_Input *)__pyx_v_self));
/* function exit code */
__Pyx_RefNannyFinishContext();
}
static void __pyx_pf_4pypm_5Input_2__dealloc__(struct __pyx_obj_4pypm_Input *__pyx_v_self) {
PmError __pyx_v_err;
__Pyx_RefNannyDeclarations
int __pyx_t_1;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("__dealloc__", 0);
/* "pypm.pyx":541
* cdef PmError err
*
* if self.debug: # <<<<<<<<<<<<<<
* print "Closing MIDI input stream and destroying instance"
*
*/
__pyx_t_1 = (__pyx_v_self->debug != 0);
if (__pyx_t_1) {
/* "pypm.pyx":542
*
* if self.debug:
* print "Closing MIDI input stream and destroying instance" # <<<<<<<<<<<<<<
*
* if self.midi:
*/
if (__Pyx_PrintOne(0, __pyx_kp_s_Closing_MIDI_input_stream_and_de) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 542; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":541
* cdef PmError err
*
* if self.debug: # <<<<<<<<<<<<<<
* print "Closing MIDI input stream and destroying instance"
*
*/
}
/* "pypm.pyx":544
* print "Closing MIDI input stream and destroying instance"
*
* if self.midi: # <<<<<<<<<<<<<<
* err = Pm_Close(self.midi)
* if err < 0:
*/
__pyx_t_1 = (__pyx_v_self->midi != 0);
if (__pyx_t_1) {
/* "pypm.pyx":545
*
* if self.midi:
* err = Pm_Close(self.midi) # <<<<<<<<<<<<<<
* if err < 0:
* raise Exception(Pm_GetErrorText(err))
*/
__pyx_v_err = Pm_Close(__pyx_v_self->midi);
/* "pypm.pyx":546
* if self.midi:
* err = Pm_Close(self.midi)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
__pyx_t_1 = ((__pyx_v_err < 0) != 0);
if (__pyx_t_1) {
/* "pypm.pyx":547
* err = Pm_Close(self.midi)
* if err < 0:
* raise Exception(Pm_GetErrorText(err)) # <<<<<<<<<<<<<<
*
* def _check_open(self):
*/
__pyx_t_2 = __Pyx_PyBytes_FromString(Pm_GetErrorText(__pyx_v_err)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 547; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 547; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_GIVEREF(__pyx_t_2);
PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
__pyx_t_2 = 0;
__pyx_t_2 = __Pyx_PyObject_Call(__pyx_builtin_Exception, __pyx_t_3, NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 547; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_Raise(__pyx_t_2, 0, 0, 0);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 547; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":546
* if self.midi:
* err = Pm_Close(self.midi)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
}
/* "pypm.pyx":544
* print "Closing MIDI input stream and destroying instance"
*
* if self.midi: # <<<<<<<<<<<<<<
* err = Pm_Close(self.midi)
* if err < 0:
*/
}
/* "pypm.pyx":536
* print "MIDI input opened."
*
* def __dealloc__(self): # <<<<<<<<<<<<<<
* """Close midi device if still open when the instance is destroyed."""
*
*/
/* function exit code */
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_WriteUnraisable("pypm.Input.__dealloc__", __pyx_clineno, __pyx_lineno, __pyx_filename, 0, 0);
__pyx_L0:;
__Pyx_RefNannyFinishContext();
}
/* "pypm.pyx":549
* raise Exception(Pm_GetErrorText(err))
*
* def _check_open(self): # <<<<<<<<<<<<<<
* """Check whether midi device is open, and if not, raises an error.
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_5Input_5_check_open(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
static char __pyx_doc_4pypm_5Input_4_check_open[] = "Check whether midi device is open, and if not, raises an error.\n\n Internal method, should be used only by other methods of this class.\n\n ";
static PyObject *__pyx_pw_4pypm_5Input_5_check_open(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("_check_open (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_5Input_4_check_open(((struct __pyx_obj_4pypm_Input *)__pyx_v_self));
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_5Input_4_check_open(struct __pyx_obj_4pypm_Input *__pyx_v_self) {
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
int __pyx_t_1;
PyObject *__pyx_t_2 = NULL;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("_check_open", 0);
/* "pypm.pyx":555
*
* """
* if self.midi == NULL: # <<<<<<<<<<<<<<
* raise Exception("midi Input not open.")
*
*/
__pyx_t_1 = ((__pyx_v_self->midi == NULL) != 0);
if (__pyx_t_1) {
/* "pypm.pyx":556
* """
* if self.midi == NULL:
* raise Exception("midi Input not open.") # <<<<<<<<<<<<<<
*
* def Close(self):
*/
__pyx_t_2 = __Pyx_PyObject_Call(__pyx_builtin_Exception, __pyx_tuple__4, NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 556; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_Raise(__pyx_t_2, 0, 0, 0);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 556; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":555
*
* """
* if self.midi == NULL: # <<<<<<<<<<<<<<
* raise Exception("midi Input not open.")
*
*/
}
/* "pypm.pyx":549
* raise Exception(Pm_GetErrorText(err))
*
* def _check_open(self): # <<<<<<<<<<<<<<
* """Check whether midi device is open, and if not, raises an error.
*
*/
/* function exit code */
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_2);
__Pyx_AddTraceback("pypm.Input._check_open", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":558
* raise Exception("midi Input not open.")
*
* def Close(self): # <<<<<<<<<<<<<<
* """Close the midi input device.
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_5Input_7Close(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
static char __pyx_doc_4pypm_5Input_6Close[] = "Close the midi input device.\n\n PortMidi attempts to close open streams when the application exits --\n this is particularly difficult under Windows, so it is best to take\n care to close all devices explicitly.\n\n ";
static PyObject *__pyx_pw_4pypm_5Input_7Close(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("Close (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_5Input_6Close(((struct __pyx_obj_4pypm_Input *)__pyx_v_self));
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_5Input_6Close(struct __pyx_obj_4pypm_Input *__pyx_v_self) {
PmError __pyx_v_err;
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
int __pyx_t_1;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("Close", 0);
/* "pypm.pyx":568
* cdef PmError err
*
* if not self.midi: # <<<<<<<<<<<<<<
* return
*
*/
__pyx_t_1 = ((!(__pyx_v_self->midi != 0)) != 0);
if (__pyx_t_1) {
/* "pypm.pyx":569
*
* if not self.midi:
* return # <<<<<<<<<<<<<<
*
* if self.midi:
*/
__Pyx_XDECREF(__pyx_r);
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
/* "pypm.pyx":568
* cdef PmError err
*
* if not self.midi: # <<<<<<<<<<<<<<
* return
*
*/
}
/* "pypm.pyx":571
* return
*
* if self.midi: # <<<<<<<<<<<<<<
* err = Pm_Close(self.midi)
* if err < 0:
*/
__pyx_t_1 = (__pyx_v_self->midi != 0);
if (__pyx_t_1) {
/* "pypm.pyx":572
*
* if self.midi:
* err = Pm_Close(self.midi) # <<<<<<<<<<<<<<
* if err < 0:
* raise Exception(Pm_GetErrorText(err))
*/
__pyx_v_err = Pm_Close(__pyx_v_self->midi);
/* "pypm.pyx":573
* if self.midi:
* err = Pm_Close(self.midi)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
__pyx_t_1 = ((__pyx_v_err < 0) != 0);
if (__pyx_t_1) {
/* "pypm.pyx":574
* err = Pm_Close(self.midi)
* if err < 0:
* raise Exception(Pm_GetErrorText(err)) # <<<<<<<<<<<<<<
*
* self.midi = NULL
*/
__pyx_t_2 = __Pyx_PyBytes_FromString(Pm_GetErrorText(__pyx_v_err)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 574; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 574; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_GIVEREF(__pyx_t_2);
PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
__pyx_t_2 = 0;
__pyx_t_2 = __Pyx_PyObject_Call(__pyx_builtin_Exception, __pyx_t_3, NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 574; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_Raise(__pyx_t_2, 0, 0, 0);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 574; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":573
* if self.midi:
* err = Pm_Close(self.midi)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
}
/* "pypm.pyx":571
* return
*
* if self.midi: # <<<<<<<<<<<<<<
* err = Pm_Close(self.midi)
* if err < 0:
*/
}
/* "pypm.pyx":576
* raise Exception(Pm_GetErrorText(err))
*
* self.midi = NULL # <<<<<<<<<<<<<<
*
*
*/
__pyx_v_self->midi = NULL;
/* "pypm.pyx":558
* raise Exception("midi Input not open.")
*
* def Close(self): # <<<<<<<<<<<<<<
* """Close the midi input device.
*
*/
/* function exit code */
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_AddTraceback("pypm.Input.Close", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":579
*
*
* def SetFilter(self, filters): # <<<<<<<<<<<<<<
* """Set filters on an open input stream.
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_5Input_9SetFilter(PyObject *__pyx_v_self, PyObject *__pyx_v_filters); /*proto*/
static char __pyx_doc_4pypm_5Input_8SetFilter[] = "Set filters on an open input stream.\n\n Usage::\n\n input.SetFilter(filters)\n\n Filters are used to drop selected input event types. By default, only\n active sensing messages are filtered. To prohibit, say, active sensing\n and sysex messages, call\n\n ::\n\n input.SetFilter(FILT_ACTIVE | FILT_SYSEX);\n\n Filtering is useful when midi routing or midi thru functionality is\n being provided by the user application. For example, you may want to\n exclude timing messages (clock, MTC, start/stop/continue), while\n allowing note-related messages to pass. Or you may be using a sequencer\n or drum-machine for MIDI clock information but want to exclude any\n notes it may play.\n\n .. note::\n SetFilter empties the buffer after setting the filter,\n just in case anything got through.\n\n ";
static PyObject *__pyx_pw_4pypm_5Input_9SetFilter(PyObject *__pyx_v_self, PyObject *__pyx_v_filters) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("SetFilter (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_5Input_8SetFilter(((struct __pyx_obj_4pypm_Input *)__pyx_v_self), ((PyObject *)__pyx_v_filters));
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_5Input_8SetFilter(struct __pyx_obj_4pypm_Input *__pyx_v_self, PyObject *__pyx_v_filters) {
PmEvent __pyx_v_buffer[1];
PmError __pyx_v_err;
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
PyObject *__pyx_t_1 = NULL;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
long __pyx_t_4;
int __pyx_t_5;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("SetFilter", 0);
/* "pypm.pyx":609
* cdef PmError err
*
* self._check_open() # <<<<<<<<<<<<<<
*
* err = Pm_SetFilter(self.midi, filters)
*/
__pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_check_open); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 609; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_3 = NULL;
if (CYTHON_COMPILING_IN_CPYTHON && likely(PyMethod_Check(__pyx_t_2))) {
__pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2);
if (likely(__pyx_t_3)) {
PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2);
__Pyx_INCREF(__pyx_t_3);
__Pyx_INCREF(function);
__Pyx_DECREF_SET(__pyx_t_2, function);
}
}
if (__pyx_t_3) {
__pyx_t_1 = __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_3); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 609; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
} else {
__pyx_t_1 = __Pyx_PyObject_CallNoArg(__pyx_t_2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 609; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":611
* self._check_open()
*
* err = Pm_SetFilter(self.midi, filters) # <<<<<<<<<<<<<<
*
* if err < 0:
*/
__pyx_t_4 = __Pyx_PyInt_As_long(__pyx_v_filters); if (unlikely((__pyx_t_4 == (long)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 611; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_v_err = Pm_SetFilter(__pyx_v_self->midi, __pyx_t_4);
/* "pypm.pyx":613
* err = Pm_SetFilter(self.midi, filters)
*
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
__pyx_t_5 = ((__pyx_v_err < 0) != 0);
if (__pyx_t_5) {
/* "pypm.pyx":614
*
* if err < 0:
* raise Exception(Pm_GetErrorText(err)) # <<<<<<<<<<<<<<
*
* while(Pm_Poll(self.midi) != pmNoError):
*/
__pyx_t_1 = __Pyx_PyBytes_FromString(Pm_GetErrorText(__pyx_v_err)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 614; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 614; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_GIVEREF(__pyx_t_1);
PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_1);
__pyx_t_1 = 0;
__pyx_t_1 = __Pyx_PyObject_Call(__pyx_builtin_Exception, __pyx_t_2, NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 614; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_Raise(__pyx_t_1, 0, 0, 0);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 614; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":613
* err = Pm_SetFilter(self.midi, filters)
*
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
}
/* "pypm.pyx":616
* raise Exception(Pm_GetErrorText(err))
*
* while(Pm_Poll(self.midi) != pmNoError): # <<<<<<<<<<<<<<
* err = Pm_Read(self.midi, buffer, 1)
* if err < 0:
*/
while (1) {
__pyx_t_5 = ((Pm_Poll(__pyx_v_self->midi) != pmNoError) != 0);
if (!__pyx_t_5) break;
/* "pypm.pyx":617
*
* while(Pm_Poll(self.midi) != pmNoError):
* err = Pm_Read(self.midi, buffer, 1) # <<<<<<<<<<<<<<
* if err < 0:
* raise Exception(Pm_GetErrorText(err))
*/
__pyx_v_err = Pm_Read(__pyx_v_self->midi, __pyx_v_buffer, 1);
/* "pypm.pyx":618
* while(Pm_Poll(self.midi) != pmNoError):
* err = Pm_Read(self.midi, buffer, 1)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
__pyx_t_5 = ((__pyx_v_err < 0) != 0);
if (__pyx_t_5) {
/* "pypm.pyx":619
* err = Pm_Read(self.midi, buffer, 1)
* if err < 0:
* raise Exception(Pm_GetErrorText(err)) # <<<<<<<<<<<<<<
*
* def SetChannelMask(self, mask):
*/
__pyx_t_1 = __Pyx_PyBytes_FromString(Pm_GetErrorText(__pyx_v_err)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 619; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 619; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_GIVEREF(__pyx_t_1);
PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_1);
__pyx_t_1 = 0;
__pyx_t_1 = __Pyx_PyObject_Call(__pyx_builtin_Exception, __pyx_t_2, NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 619; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_Raise(__pyx_t_1, 0, 0, 0);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 619; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":618
* while(Pm_Poll(self.midi) != pmNoError):
* err = Pm_Read(self.midi, buffer, 1)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
}
}
/* "pypm.pyx":579
*
*
* def SetFilter(self, filters): # <<<<<<<<<<<<<<
* """Set filters on an open input stream.
*
*/
/* function exit code */
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_AddTraceback("pypm.Input.SetFilter", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":621
* raise Exception(Pm_GetErrorText(err))
*
* def SetChannelMask(self, mask): # <<<<<<<<<<<<<<
* """Set channel mask to filter incoming messages based on channel.
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_5Input_11SetChannelMask(PyObject *__pyx_v_self, PyObject *__pyx_v_mask); /*proto*/
static char __pyx_doc_4pypm_5Input_10SetChannelMask[] = "Set channel mask to filter incoming messages based on channel.\n\n The mask is a 16-bit bitfield corresponding to appropriate channels\n Channel(<channel>) can assist in calling this function, i.e. to\n receive only input on channel 1, call this method like this::\n\n SetChannelMask(Channel(1))\n\n Multiple channels should be OR'd together::\n\n SetChannelMask(Channel(10) | Channel(11))\n\n .. note::\n The PyPortMidi Channel function has been altered from the original\n PortMidi C call to correct for what seems to be a bug --- i.e.\n channel filters were all numbered from 0 to 15 instead of 1 to 16.\n\n ";
static PyObject *__pyx_pw_4pypm_5Input_11SetChannelMask(PyObject *__pyx_v_self, PyObject *__pyx_v_mask) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("SetChannelMask (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_5Input_10SetChannelMask(((struct __pyx_obj_4pypm_Input *)__pyx_v_self), ((PyObject *)__pyx_v_mask));
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_5Input_10SetChannelMask(struct __pyx_obj_4pypm_Input *__pyx_v_self, PyObject *__pyx_v_mask) {
PmError __pyx_v_err;
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
PyObject *__pyx_t_1 = NULL;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
int __pyx_t_4;
int __pyx_t_5;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("SetChannelMask", 0);
/* "pypm.pyx":642
* cdef PmError err
*
* self._check_open() # <<<<<<<<<<<<<<
*
* err = Pm_SetChannelMask(self.midi, mask)
*/
__pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_check_open); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 642; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_3 = NULL;
if (CYTHON_COMPILING_IN_CPYTHON && likely(PyMethod_Check(__pyx_t_2))) {
__pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2);
if (likely(__pyx_t_3)) {
PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2);
__Pyx_INCREF(__pyx_t_3);
__Pyx_INCREF(function);
__Pyx_DECREF_SET(__pyx_t_2, function);
}
}
if (__pyx_t_3) {
__pyx_t_1 = __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_3); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 642; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
} else {
__pyx_t_1 = __Pyx_PyObject_CallNoArg(__pyx_t_2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 642; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":644
* self._check_open()
*
* err = Pm_SetChannelMask(self.midi, mask) # <<<<<<<<<<<<<<
* if err < 0:
* raise Exception(Pm_GetErrorText(err))
*/
__pyx_t_4 = __Pyx_PyInt_As_int(__pyx_v_mask); if (unlikely((__pyx_t_4 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 644; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_v_err = Pm_SetChannelMask(__pyx_v_self->midi, __pyx_t_4);
/* "pypm.pyx":645
*
* err = Pm_SetChannelMask(self.midi, mask)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
__pyx_t_5 = ((__pyx_v_err < 0) != 0);
if (__pyx_t_5) {
/* "pypm.pyx":646
* err = Pm_SetChannelMask(self.midi, mask)
* if err < 0:
* raise Exception(Pm_GetErrorText(err)) # <<<<<<<<<<<<<<
*
* def Poll(self):
*/
__pyx_t_1 = __Pyx_PyBytes_FromString(Pm_GetErrorText(__pyx_v_err)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 646; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 646; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_GIVEREF(__pyx_t_1);
PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_1);
__pyx_t_1 = 0;
__pyx_t_1 = __Pyx_PyObject_Call(__pyx_builtin_Exception, __pyx_t_2, NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 646; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_Raise(__pyx_t_1, 0, 0, 0);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 646; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":645
*
* err = Pm_SetChannelMask(self.midi, mask)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
}
/* "pypm.pyx":621
* raise Exception(Pm_GetErrorText(err))
*
* def SetChannelMask(self, mask): # <<<<<<<<<<<<<<
* """Set channel mask to filter incoming messages based on channel.
*
*/
/* function exit code */
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_AddTraceback("pypm.Input.SetChannelMask", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":648
* raise Exception(Pm_GetErrorText(err))
*
* def Poll(self): # <<<<<<<<<<<<<<
* """Test whether input is available.
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_5Input_13Poll(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
static char __pyx_doc_4pypm_5Input_12Poll[] = "Test whether input is available.\n\n Returns TRUE if input can be read, FALSE otherwise, or an error value.\n\n ";
static PyObject *__pyx_pw_4pypm_5Input_13Poll(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("Poll (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_5Input_12Poll(((struct __pyx_obj_4pypm_Input *)__pyx_v_self));
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_5Input_12Poll(struct __pyx_obj_4pypm_Input *__pyx_v_self) {
PmError __pyx_v_err;
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
PyObject *__pyx_t_1 = NULL;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
int __pyx_t_4;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("Poll", 0);
/* "pypm.pyx":656
* cdef PmError err
*
* self._check_open() # <<<<<<<<<<<<<<
*
* err = Pm_Poll(self.midi)
*/
__pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_check_open); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 656; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_3 = NULL;
if (CYTHON_COMPILING_IN_CPYTHON && likely(PyMethod_Check(__pyx_t_2))) {
__pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2);
if (likely(__pyx_t_3)) {
PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2);
__Pyx_INCREF(__pyx_t_3);
__Pyx_INCREF(function);
__Pyx_DECREF_SET(__pyx_t_2, function);
}
}
if (__pyx_t_3) {
__pyx_t_1 = __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_3); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 656; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
} else {
__pyx_t_1 = __Pyx_PyObject_CallNoArg(__pyx_t_2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 656; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":658
* self._check_open()
*
* err = Pm_Poll(self.midi) # <<<<<<<<<<<<<<
* if err < 0:
* raise Exception(Pm_GetErrorText(err))
*/
__pyx_v_err = Pm_Poll(__pyx_v_self->midi);
/* "pypm.pyx":659
*
* err = Pm_Poll(self.midi)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
__pyx_t_4 = ((__pyx_v_err < 0) != 0);
if (__pyx_t_4) {
/* "pypm.pyx":660
* err = Pm_Poll(self.midi)
* if err < 0:
* raise Exception(Pm_GetErrorText(err)) # <<<<<<<<<<<<<<
*
* return err
*/
__pyx_t_1 = __Pyx_PyBytes_FromString(Pm_GetErrorText(__pyx_v_err)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 660; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 660; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_GIVEREF(__pyx_t_1);
PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_1);
__pyx_t_1 = 0;
__pyx_t_1 = __Pyx_PyObject_Call(__pyx_builtin_Exception, __pyx_t_2, NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 660; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_Raise(__pyx_t_1, 0, 0, 0);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 660; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":659
*
* err = Pm_Poll(self.midi)
* if err < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(err))
*
*/
}
/* "pypm.pyx":662
* raise Exception(Pm_GetErrorText(err))
*
* return err # <<<<<<<<<<<<<<
*
* def Read(self, max_events):
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_1 = __Pyx_PyInt_From_PmError(__pyx_v_err); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 662; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_r = __pyx_t_1;
__pyx_t_1 = 0;
goto __pyx_L0;
/* "pypm.pyx":648
* raise Exception(Pm_GetErrorText(err))
*
* def Poll(self): # <<<<<<<<<<<<<<
* """Test whether input is available.
*
*/
/* function exit code */
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_AddTraceback("pypm.Input.Poll", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "pypm.pyx":664
* return err
*
* def Read(self, max_events): # <<<<<<<<<<<<<<
* """Read and return up to max_events events from input.
*
*/
/* Python wrapper */
static PyObject *__pyx_pw_4pypm_5Input_15Read(PyObject *__pyx_v_self, PyObject *__pyx_v_max_events); /*proto*/
static char __pyx_doc_4pypm_5Input_14Read[] = "Read and return up to max_events events from input.\n\n Reads up to max_events midi events stored in the input buffer and\n returns them as a list in the following form::\n\n [\n [[status, data1, data2, data3], timestamp],\n [[status, data1, data2, data3], timestamp],\n ...\n ]\n\n ";
static PyObject *__pyx_pw_4pypm_5Input_15Read(PyObject *__pyx_v_self, PyObject *__pyx_v_max_events) {
PyObject *__pyx_r = 0;
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("Read (wrapper)", 0);
__pyx_r = __pyx_pf_4pypm_5Input_14Read(((struct __pyx_obj_4pypm_Input *)__pyx_v_self), ((PyObject *)__pyx_v_max_events));
/* function exit code */
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_pf_4pypm_5Input_14Read(struct __pyx_obj_4pypm_Input *__pyx_v_self, PyObject *__pyx_v_max_events) {
PmEvent __pyx_v_buffer[0x400];
PmError __pyx_v_num_events;
PyObject *__pyx_v_events = NULL;
PmError __pyx_v_ev_no;
PyObject *__pyx_r = NULL;
__Pyx_RefNannyDeclarations
PyObject *__pyx_t_1 = NULL;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
int __pyx_t_4;
int __pyx_t_5;
long __pyx_t_6;
Py_ssize_t __pyx_t_7;
PyObject *(*__pyx_t_8)(PyObject *);
PmError __pyx_t_9;
PyObject *__pyx_t_10 = NULL;
PyObject *__pyx_t_11 = NULL;
PyObject *__pyx_t_12 = NULL;
int __pyx_t_13;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannySetupContext("Read", 0);
/* "pypm.pyx":680
* cdef PmError num_events
*
* self._check_open() # <<<<<<<<<<<<<<
*
* if max_events > 1024:
*/
__pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_check_open); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 680; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_3 = NULL;
if (CYTHON_COMPILING_IN_CPYTHON && likely(PyMethod_Check(__pyx_t_2))) {
__pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2);
if (likely(__pyx_t_3)) {
PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2);
__Pyx_INCREF(__pyx_t_3);
__Pyx_INCREF(function);
__Pyx_DECREF_SET(__pyx_t_2, function);
}
}
if (__pyx_t_3) {
__pyx_t_1 = __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_3); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 680; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
} else {
__pyx_t_1 = __Pyx_PyObject_CallNoArg(__pyx_t_2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 680; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":682
* self._check_open()
*
* if max_events > 1024: # <<<<<<<<<<<<<<
* raise ValueError('Maximum buffer length is 1024.')
* if not max_events:
*/
__pyx_t_1 = PyObject_RichCompare(__pyx_v_max_events, __pyx_int_1024, Py_GT); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 682; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 682; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
if (__pyx_t_4) {
/* "pypm.pyx":683
*
* if max_events > 1024:
* raise ValueError('Maximum buffer length is 1024.') # <<<<<<<<<<<<<<
* if not max_events:
* raise ValueError('Minimum buffer length is 1.')
*/
__pyx_t_1 = __Pyx_PyObject_Call(__pyx_builtin_ValueError, __pyx_tuple__5, NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 683; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_Raise(__pyx_t_1, 0, 0, 0);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 683; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":682
* self._check_open()
*
* if max_events > 1024: # <<<<<<<<<<<<<<
* raise ValueError('Maximum buffer length is 1024.')
* if not max_events:
*/
}
/* "pypm.pyx":684
* if max_events > 1024:
* raise ValueError('Maximum buffer length is 1024.')
* if not max_events: # <<<<<<<<<<<<<<
* raise ValueError('Minimum buffer length is 1.')
*
*/
__pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_v_max_events); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 684; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_5 = ((!__pyx_t_4) != 0);
if (__pyx_t_5) {
/* "pypm.pyx":685
* raise ValueError('Maximum buffer length is 1024.')
* if not max_events:
* raise ValueError('Minimum buffer length is 1.') # <<<<<<<<<<<<<<
*
* num_events = Pm_Read(self.midi, buffer, max_events)
*/
__pyx_t_1 = __Pyx_PyObject_Call(__pyx_builtin_ValueError, __pyx_tuple__6, NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 685; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_Raise(__pyx_t_1, 0, 0, 0);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 685; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":684
* if max_events > 1024:
* raise ValueError('Maximum buffer length is 1024.')
* if not max_events: # <<<<<<<<<<<<<<
* raise ValueError('Minimum buffer length is 1.')
*
*/
}
/* "pypm.pyx":687
* raise ValueError('Minimum buffer length is 1.')
*
* num_events = Pm_Read(self.midi, buffer, max_events) # <<<<<<<<<<<<<<
* if num_events < 0:
* raise Exception(Pm_GetErrorText(num_events))
*/
__pyx_t_6 = __Pyx_PyInt_As_long(__pyx_v_max_events); if (unlikely((__pyx_t_6 == (long)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 687; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_v_num_events = Pm_Read(__pyx_v_self->midi, __pyx_v_buffer, __pyx_t_6);
/* "pypm.pyx":688
*
* num_events = Pm_Read(self.midi, buffer, max_events)
* if num_events < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(num_events))
*
*/
__pyx_t_5 = ((__pyx_v_num_events < 0) != 0);
if (__pyx_t_5) {
/* "pypm.pyx":689
* num_events = Pm_Read(self.midi, buffer, max_events)
* if num_events < 0:
* raise Exception(Pm_GetErrorText(num_events)) # <<<<<<<<<<<<<<
*
* events = []
*/
__pyx_t_1 = __Pyx_PyBytes_FromString(Pm_GetErrorText(__pyx_v_num_events)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 689; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 689; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_GIVEREF(__pyx_t_1);
PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_1);
__pyx_t_1 = 0;
__pyx_t_1 = __Pyx_PyObject_Call(__pyx_builtin_Exception, __pyx_t_2, NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 689; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_Raise(__pyx_t_1, 0, 0, 0);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 689; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":688
*
* num_events = Pm_Read(self.midi, buffer, max_events)
* if num_events < 0: # <<<<<<<<<<<<<<
* raise Exception(Pm_GetErrorText(num_events))
*
*/
}
/* "pypm.pyx":691
* raise Exception(Pm_GetErrorText(num_events))
*
* events = [] # <<<<<<<<<<<<<<
* if num_events >= 1:
* for ev_no in range(num_events):
*/
__pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 691; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_v_events = ((PyObject*)__pyx_t_1);
__pyx_t_1 = 0;
/* "pypm.pyx":692
*
* events = []
* if num_events >= 1: # <<<<<<<<<<<<<<
* for ev_no in range(num_events):
* events.append(
*/
__pyx_t_5 = ((__pyx_v_num_events >= 1) != 0);
if (__pyx_t_5) {
/* "pypm.pyx":693
* events = []
* if num_events >= 1:
* for ev_no in range(num_events): # <<<<<<<<<<<<<<
* events.append(
* [
*/
__pyx_t_1 = __Pyx_PyInt_From_PmError(__pyx_v_num_events); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 693; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 693; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_GIVEREF(__pyx_t_1);
PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_1);
__pyx_t_1 = 0;
__pyx_t_1 = __Pyx_PyObject_Call(__pyx_builtin_range, __pyx_t_2, NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 693; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
if (likely(PyList_CheckExact(__pyx_t_1)) || PyTuple_CheckExact(__pyx_t_1)) {
__pyx_t_2 = __pyx_t_1; __Pyx_INCREF(__pyx_t_2); __pyx_t_7 = 0;
__pyx_t_8 = NULL;
} else {
__pyx_t_7 = -1; __pyx_t_2 = PyObject_GetIter(__pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 693; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_8 = Py_TYPE(__pyx_t_2)->tp_iternext; if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 693; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
for (;;) {
if (likely(!__pyx_t_8)) {
if (likely(PyList_CheckExact(__pyx_t_2))) {
if (__pyx_t_7 >= PyList_GET_SIZE(__pyx_t_2)) break;
#if CYTHON_COMPILING_IN_CPYTHON
__pyx_t_1 = PyList_GET_ITEM(__pyx_t_2, __pyx_t_7); __Pyx_INCREF(__pyx_t_1); __pyx_t_7++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 693; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
#else
__pyx_t_1 = PySequence_ITEM(__pyx_t_2, __pyx_t_7); __pyx_t_7++; if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 693; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
#endif
} else {
if (__pyx_t_7 >= PyTuple_GET_SIZE(__pyx_t_2)) break;
#if CYTHON_COMPILING_IN_CPYTHON
__pyx_t_1 = PyTuple_GET_ITEM(__pyx_t_2, __pyx_t_7); __Pyx_INCREF(__pyx_t_1); __pyx_t_7++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 693; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
#else
__pyx_t_1 = PySequence_ITEM(__pyx_t_2, __pyx_t_7); __pyx_t_7++; if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 693; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
#endif
}
} else {
__pyx_t_1 = __pyx_t_8(__pyx_t_2);
if (unlikely(!__pyx_t_1)) {
PyObject* exc_type = PyErr_Occurred();
if (exc_type) {
if (likely(exc_type == PyExc_StopIteration || PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear();
else {__pyx_filename = __pyx_f[0]; __pyx_lineno = 693; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
break;
}
__Pyx_GOTREF(__pyx_t_1);
}
__pyx_t_9 = ((PmError)__Pyx_PyInt_As_PmError(__pyx_t_1)); if (unlikely(PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 693; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_v_ev_no = __pyx_t_9;
/* "pypm.pyx":697
* [
* [
* buffer[int(ev_no)].message & 0xFF, # <<<<<<<<<<<<<<
* (buffer[int(ev_no)].message >> 8) & 0xFF,
* (buffer[int(ev_no)].message >> 16) & 0xFF,
*/
__pyx_t_1 = __Pyx_PyInt_From_PmMessage(((__pyx_v_buffer[((Py_ssize_t)__pyx_v_ev_no)]).message & 0xFF)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 697; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
/* "pypm.pyx":698
* [
* buffer[int(ev_no)].message & 0xFF,
* (buffer[int(ev_no)].message >> 8) & 0xFF, # <<<<<<<<<<<<<<
* (buffer[int(ev_no)].message >> 16) & 0xFF,
* (buffer[int(ev_no)].message >> 24) & 0xFF
*/
__pyx_t_3 = __Pyx_PyInt_From_PmMessage((((__pyx_v_buffer[((Py_ssize_t)__pyx_v_ev_no)]).message >> 8) & 0xFF)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
/* "pypm.pyx":699
* buffer[int(ev_no)].message & 0xFF,
* (buffer[int(ev_no)].message >> 8) & 0xFF,
* (buffer[int(ev_no)].message >> 16) & 0xFF, # <<<<<<<<<<<<<<
* (buffer[int(ev_no)].message >> 24) & 0xFF
* ],
*/
__pyx_t_10 = __Pyx_PyInt_From_PmMessage((((__pyx_v_buffer[((Py_ssize_t)__pyx_v_ev_no)]).message >> 16) & 0xFF)); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 699; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_10);
/* "pypm.pyx":700
* (buffer[int(ev_no)].message >> 8) & 0xFF,
* (buffer[int(ev_no)].message >> 16) & 0xFF,
* (buffer[int(ev_no)].message >> 24) & 0xFF # <<<<<<<<<<<<<<
* ],
* buffer[int(ev_no)].timestamp
*/
__pyx_t_11 = __Pyx_PyInt_From_PmMessage((((__pyx_v_buffer[((Py_ssize_t)__pyx_v_ev_no)]).message >> 24) & 0xFF)); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 700; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_11);
/* "pypm.pyx":696
* events.append(
* [
* [ # <<<<<<<<<<<<<<
* buffer[int(ev_no)].message & 0xFF,
* (buffer[int(ev_no)].message >> 8) & 0xFF,
*/
__pyx_t_12 = PyList_New(4); if (unlikely(!__pyx_t_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 696; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_12);
__Pyx_GIVEREF(__pyx_t_1);
PyList_SET_ITEM(__pyx_t_12, 0, __pyx_t_1);
__Pyx_GIVEREF(__pyx_t_3);
PyList_SET_ITEM(__pyx_t_12, 1, __pyx_t_3);
__Pyx_GIVEREF(__pyx_t_10);
PyList_SET_ITEM(__pyx_t_12, 2, __pyx_t_10);
__Pyx_GIVEREF(__pyx_t_11);
PyList_SET_ITEM(__pyx_t_12, 3, __pyx_t_11);
__pyx_t_1 = 0;
__pyx_t_3 = 0;
__pyx_t_10 = 0;
__pyx_t_11 = 0;
/* "pypm.pyx":702
* (buffer[int(ev_no)].message >> 24) & 0xFF
* ],
* buffer[int(ev_no)].timestamp # <<<<<<<<<<<<<<
* ]
* )
*/
__pyx_t_11 = __Pyx_PyInt_From_PmTimestamp((__pyx_v_buffer[((Py_ssize_t)__pyx_v_ev_no)]).timestamp); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 702; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_11);
/* "pypm.pyx":695
* for ev_no in range(num_events):
* events.append(
* [ # <<<<<<<<<<<<<<
* [
* buffer[int(ev_no)].message & 0xFF,
*/
__pyx_t_10 = PyList_New(2); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 695; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_10);
__Pyx_GIVEREF(__pyx_t_12);
PyList_SET_ITEM(__pyx_t_10, 0, __pyx_t_12);
__Pyx_GIVEREF(__pyx_t_11);
PyList_SET_ITEM(__pyx_t_10, 1, __pyx_t_11);
__pyx_t_12 = 0;
__pyx_t_11 = 0;
/* "pypm.pyx":694
* if num_events >= 1:
* for ev_no in range(num_events):
* events.append( # <<<<<<<<<<<<<<
* [
* [
*/
__pyx_t_13 = __Pyx_PyList_Append(__pyx_v_events, __pyx_t_10); if (unlikely(__pyx_t_13 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 694; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0;
/* "pypm.pyx":693
* events = []
* if num_events >= 1:
* for ev_no in range(num_events): # <<<<<<<<<<<<<<
* events.append(
* [
*/
}
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
/* "pypm.pyx":692
*
* events = []
* if num_events >= 1: # <<<<<<<<<<<<<<
* for ev_no in range(num_events):
* events.append(
*/
}
/* "pypm.pyx":706
* )
*
* return events # <<<<<<<<<<<<<<
*/
__Pyx_XDECREF(__pyx_r);
__Pyx_INCREF(__pyx_v_events);
__pyx_r = __pyx_v_events;
goto __pyx_L0;
/* "pypm.pyx":664
* return err
*
* def Read(self, max_events): # <<<<<<<<<<<<<<
* """Read and return up to max_events events from input.
*
*/
/* function exit code */
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_XDECREF(__pyx_t_10);
__Pyx_XDECREF(__pyx_t_11);
__Pyx_XDECREF(__pyx_t_12);
__Pyx_AddTraceback("pypm.Input.Read", __pyx_clineno, __pyx_lineno, __pyx_filename);
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XDECREF(__pyx_v_events);
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static PyObject *__pyx_tp_new_4pypm_Output(PyTypeObject *t, CYTHON_UNUSED PyObject *a, CYTHON_UNUSED PyObject *k) {
PyObject *o;
if (likely((t->tp_flags & Py_TPFLAGS_IS_ABSTRACT) == 0)) {
o = (*t->tp_alloc)(t, 0);
} else {
o = (PyObject *) PyBaseObject_Type.tp_new(t, __pyx_empty_tuple, 0);
}
if (unlikely(!o)) return 0;
return o;
}
static void __pyx_tp_dealloc_4pypm_Output(PyObject *o) {
#if PY_VERSION_HEX >= 0x030400a1
if (unlikely(Py_TYPE(o)->tp_finalize) && (!PyType_IS_GC(Py_TYPE(o)) || !_PyGC_FINALIZED(o))) {
if (PyObject_CallFinalizerFromDealloc(o)) return;
}
#endif
{
PyObject *etype, *eval, *etb;
PyErr_Fetch(&etype, &eval, &etb);
++Py_REFCNT(o);
__pyx_pw_4pypm_6Output_3__dealloc__(o);
--Py_REFCNT(o);
PyErr_Restore(etype, eval, etb);
}
(*Py_TYPE(o)->tp_free)(o);
}
static PyMethodDef __pyx_methods_4pypm_Output[] = {
{"_check_open", (PyCFunction)__pyx_pw_4pypm_6Output_5_check_open, METH_NOARGS, __pyx_doc_4pypm_6Output_4_check_open},
{"Close", (PyCFunction)__pyx_pw_4pypm_6Output_7Close, METH_NOARGS, __pyx_doc_4pypm_6Output_6Close},
{"Abort", (PyCFunction)__pyx_pw_4pypm_6Output_9Abort, METH_NOARGS, __pyx_doc_4pypm_6Output_8Abort},
{"Write", (PyCFunction)__pyx_pw_4pypm_6Output_11Write, METH_O, __pyx_doc_4pypm_6Output_10Write},
{"WriteShort", (PyCFunction)__pyx_pw_4pypm_6Output_13WriteShort, METH_VARARGS|METH_KEYWORDS, __pyx_doc_4pypm_6Output_12WriteShort},
{"WriteSysEx", (PyCFunction)__pyx_pw_4pypm_6Output_15WriteSysEx, METH_VARARGS|METH_KEYWORDS, __pyx_doc_4pypm_6Output_14WriteSysEx},
{0, 0, 0, 0}
};
static PyTypeObject __pyx_type_4pypm_Output = {
PyVarObject_HEAD_INIT(0, 0)
"pypm.Output", /*tp_name*/
sizeof(struct __pyx_obj_4pypm_Output), /*tp_basicsize*/
0, /*tp_itemsize*/
__pyx_tp_dealloc_4pypm_Output, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
#if PY_MAJOR_VERSION < 3
0, /*tp_compare*/
#endif
#if PY_MAJOR_VERSION >= 3
0, /*tp_as_async*/
#endif
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_VERSION_TAG|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE, /*tp_flags*/
"Represents an output MIDI stream device.\n\n Takes the form::\n\n output = pypm.Output(output_device, latency)\n\n latency is in ms. If latency == 0 then timestamps for output are ignored.\n\n ", /*tp_doc*/
0, /*tp_traverse*/
0, /*tp_clear*/
0, /*tp_richcompare*/
0, /*tp_weaklistoffset*/
0, /*tp_iter*/
0, /*tp_iternext*/
__pyx_methods_4pypm_Output, /*tp_methods*/
0, /*tp_members*/
0, /*tp_getset*/
0, /*tp_base*/
0, /*tp_dict*/
0, /*tp_descr_get*/
0, /*tp_descr_set*/
0, /*tp_dictoffset*/
__pyx_pw_4pypm_6Output_1__init__, /*tp_init*/
0, /*tp_alloc*/
__pyx_tp_new_4pypm_Output, /*tp_new*/
0, /*tp_free*/
0, /*tp_is_gc*/
0, /*tp_bases*/
0, /*tp_mro*/
0, /*tp_cache*/
0, /*tp_subclasses*/
0, /*tp_weaklist*/
0, /*tp_del*/
0, /*tp_version_tag*/
#if PY_VERSION_HEX >= 0x030400a1
0, /*tp_finalize*/
#endif
};
static PyObject *__pyx_tp_new_4pypm_Input(PyTypeObject *t, CYTHON_UNUSED PyObject *a, CYTHON_UNUSED PyObject *k) {
PyObject *o;
if (likely((t->tp_flags & Py_TPFLAGS_IS_ABSTRACT) == 0)) {
o = (*t->tp_alloc)(t, 0);
} else {
o = (PyObject *) PyBaseObject_Type.tp_new(t, __pyx_empty_tuple, 0);
}
if (unlikely(!o)) return 0;
return o;
}
static void __pyx_tp_dealloc_4pypm_Input(PyObject *o) {
#if PY_VERSION_HEX >= 0x030400a1
if (unlikely(Py_TYPE(o)->tp_finalize) && (!PyType_IS_GC(Py_TYPE(o)) || !_PyGC_FINALIZED(o))) {
if (PyObject_CallFinalizerFromDealloc(o)) return;
}
#endif
{
PyObject *etype, *eval, *etb;
PyErr_Fetch(&etype, &eval, &etb);
++Py_REFCNT(o);
__pyx_pw_4pypm_5Input_3__dealloc__(o);
--Py_REFCNT(o);
PyErr_Restore(etype, eval, etb);
}
(*Py_TYPE(o)->tp_free)(o);
}
static PyMethodDef __pyx_methods_4pypm_Input[] = {
{"_check_open", (PyCFunction)__pyx_pw_4pypm_5Input_5_check_open, METH_NOARGS, __pyx_doc_4pypm_5Input_4_check_open},
{"Close", (PyCFunction)__pyx_pw_4pypm_5Input_7Close, METH_NOARGS, __pyx_doc_4pypm_5Input_6Close},
{"SetFilter", (PyCFunction)__pyx_pw_4pypm_5Input_9SetFilter, METH_O, __pyx_doc_4pypm_5Input_8SetFilter},
{"SetChannelMask", (PyCFunction)__pyx_pw_4pypm_5Input_11SetChannelMask, METH_O, __pyx_doc_4pypm_5Input_10SetChannelMask},
{"Poll", (PyCFunction)__pyx_pw_4pypm_5Input_13Poll, METH_NOARGS, __pyx_doc_4pypm_5Input_12Poll},
{"Read", (PyCFunction)__pyx_pw_4pypm_5Input_15Read, METH_O, __pyx_doc_4pypm_5Input_14Read},
{0, 0, 0, 0}
};
static PyTypeObject __pyx_type_4pypm_Input = {
PyVarObject_HEAD_INIT(0, 0)
"pypm.Input", /*tp_name*/
sizeof(struct __pyx_obj_4pypm_Input), /*tp_basicsize*/
0, /*tp_itemsize*/
__pyx_tp_dealloc_4pypm_Input, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
#if PY_MAJOR_VERSION < 3
0, /*tp_compare*/
#endif
#if PY_MAJOR_VERSION >= 3
0, /*tp_as_async*/
#endif
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_VERSION_TAG|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE, /*tp_flags*/
"Represents an input MIDI stream device.\n\n Takes the form::\n\n input = pypm.Input(input_device)\n\n ", /*tp_doc*/
0, /*tp_traverse*/
0, /*tp_clear*/
0, /*tp_richcompare*/
0, /*tp_weaklistoffset*/
0, /*tp_iter*/
0, /*tp_iternext*/
__pyx_methods_4pypm_Input, /*tp_methods*/
0, /*tp_members*/
0, /*tp_getset*/
0, /*tp_base*/
0, /*tp_dict*/
0, /*tp_descr_get*/
0, /*tp_descr_set*/
0, /*tp_dictoffset*/
__pyx_pw_4pypm_5Input_1__init__, /*tp_init*/
0, /*tp_alloc*/
__pyx_tp_new_4pypm_Input, /*tp_new*/
0, /*tp_free*/
0, /*tp_is_gc*/
0, /*tp_bases*/
0, /*tp_mro*/
0, /*tp_cache*/
0, /*tp_subclasses*/
0, /*tp_weaklist*/
0, /*tp_del*/
0, /*tp_version_tag*/
#if PY_VERSION_HEX >= 0x030400a1
0, /*tp_finalize*/
#endif
};
static PyMethodDef __pyx_methods[] = {
{0, 0, 0, 0}
};
#if PY_MAJOR_VERSION >= 3
static struct PyModuleDef __pyx_moduledef = {
#if PY_VERSION_HEX < 0x03020000
{ PyObject_HEAD_INIT(NULL) NULL, 0, NULL },
#else
PyModuleDef_HEAD_INIT,
#endif
"pypm",
0, /* m_doc */
-1, /* m_size */
__pyx_methods /* m_methods */,
NULL, /* m_reload */
NULL, /* m_traverse */
NULL, /* m_clear */
NULL /* m_free */
};
#endif
static __Pyx_StringTabEntry __pyx_string_tab[] = {
{&__pyx_kp_s_0_0_6, __pyx_k_0_0_6, sizeof(__pyx_k_0_0_6), 0, 0, 1, 0},
{&__pyx_n_s_B, __pyx_k_B, sizeof(__pyx_k_B), 0, 0, 1, 1},
{&__pyx_n_s_Channel, __pyx_k_Channel, sizeof(__pyx_k_Channel), 0, 0, 1, 1},
{&__pyx_kp_s_Closing_MIDI_input_stream_and_de, __pyx_k_Closing_MIDI_input_stream_and_de, sizeof(__pyx_k_Closing_MIDI_input_stream_and_de), 0, 0, 1, 0},
{&__pyx_kp_s_Closing_MIDI_output_stream_and_d, __pyx_k_Closing_MIDI_output_stream_and_d, sizeof(__pyx_k_Closing_MIDI_output_stream_and_d), 0, 0, 1, 0},
{&__pyx_n_s_CountDevices, __pyx_k_CountDevices, sizeof(__pyx_k_CountDevices), 0, 0, 1, 1},
{&__pyx_n_s_Exception, __pyx_k_Exception, sizeof(__pyx_k_Exception), 0, 0, 1, 1},
{&__pyx_n_s_FALSE, __pyx_k_FALSE, sizeof(__pyx_k_FALSE), 0, 0, 1, 1},
{&__pyx_n_s_FILT_ACTIVE, __pyx_k_FILT_ACTIVE, sizeof(__pyx_k_FILT_ACTIVE), 0, 0, 1, 1},
{&__pyx_n_s_FILT_AFTERTOUCH, __pyx_k_FILT_AFTERTOUCH, sizeof(__pyx_k_FILT_AFTERTOUCH), 0, 0, 1, 1},
{&__pyx_n_s_FILT_CHANNEL_AFTERTOUCH, __pyx_k_FILT_CHANNEL_AFTERTOUCH, sizeof(__pyx_k_FILT_CHANNEL_AFTERTOUCH), 0, 0, 1, 1},
{&__pyx_n_s_FILT_CLOCK, __pyx_k_FILT_CLOCK, sizeof(__pyx_k_FILT_CLOCK), 0, 0, 1, 1},
{&__pyx_n_s_FILT_CONTROL, __pyx_k_FILT_CONTROL, sizeof(__pyx_k_FILT_CONTROL), 0, 0, 1, 1},
{&__pyx_n_s_FILT_F9, __pyx_k_FILT_F9, sizeof(__pyx_k_FILT_F9), 0, 0, 1, 1},
{&__pyx_n_s_FILT_FD, __pyx_k_FILT_FD, sizeof(__pyx_k_FILT_FD), 0, 0, 1, 1},
{&__pyx_n_s_FILT_MTC, __pyx_k_FILT_MTC, sizeof(__pyx_k_FILT_MTC), 0, 0, 1, 1},
{&__pyx_n_s_FILT_NOTE, __pyx_k_FILT_NOTE, sizeof(__pyx_k_FILT_NOTE), 0, 0, 1, 1},
{&__pyx_n_s_FILT_PITCHBEND, __pyx_k_FILT_PITCHBEND, sizeof(__pyx_k_FILT_PITCHBEND), 0, 0, 1, 1},
{&__pyx_n_s_FILT_PLAY, __pyx_k_FILT_PLAY, sizeof(__pyx_k_FILT_PLAY), 0, 0, 1, 1},
{&__pyx_n_s_FILT_POLY_AFTERTOUCH, __pyx_k_FILT_POLY_AFTERTOUCH, sizeof(__pyx_k_FILT_POLY_AFTERTOUCH), 0, 0, 1, 1},
{&__pyx_n_s_FILT_PROGRAM, __pyx_k_FILT_PROGRAM, sizeof(__pyx_k_FILT_PROGRAM), 0, 0, 1, 1},
{&__pyx_n_s_FILT_REALTIME, __pyx_k_FILT_REALTIME, sizeof(__pyx_k_FILT_REALTIME), 0, 0, 1, 1},
{&__pyx_n_s_FILT_RESET, __pyx_k_FILT_RESET, sizeof(__pyx_k_FILT_RESET), 0, 0, 1, 1},
{&__pyx_n_s_FILT_SONG_POSITION, __pyx_k_FILT_SONG_POSITION, sizeof(__pyx_k_FILT_SONG_POSITION), 0, 0, 1, 1},
{&__pyx_n_s_FILT_SONG_SELECT, __pyx_k_FILT_SONG_SELECT, sizeof(__pyx_k_FILT_SONG_SELECT), 0, 0, 1, 1},
{&__pyx_n_s_FILT_SYSEX, __pyx_k_FILT_SYSEX, sizeof(__pyx_k_FILT_SYSEX), 0, 0, 1, 1},
{&__pyx_n_s_FILT_TICK, __pyx_k_FILT_TICK, sizeof(__pyx_k_FILT_TICK), 0, 0, 1, 1},
{&__pyx_n_s_FILT_TUNE, __pyx_k_FILT_TUNE, sizeof(__pyx_k_FILT_TUNE), 0, 0, 1, 1},
{&__pyx_n_s_FILT_UNDEFINED, __pyx_k_FILT_UNDEFINED, sizeof(__pyx_k_FILT_UNDEFINED), 0, 0, 1, 1},
{&__pyx_n_s_GetDefaultInputDeviceID, __pyx_k_GetDefaultInputDeviceID, sizeof(__pyx_k_GetDefaultInputDeviceID), 0, 0, 1, 1},
{&__pyx_n_s_GetDefaultOutputDeviceID, __pyx_k_GetDefaultOutputDeviceID, sizeof(__pyx_k_GetDefaultOutputDeviceID), 0, 0, 1, 1},
{&__pyx_n_s_GetDeviceInfo, __pyx_k_GetDeviceInfo, sizeof(__pyx_k_GetDeviceInfo), 0, 0, 1, 1},
{&__pyx_n_s_GetErrorText, __pyx_k_GetErrorText, sizeof(__pyx_k_GetErrorText), 0, 0, 1, 1},
{&__pyx_n_s_IndexError, __pyx_k_IndexError, sizeof(__pyx_k_IndexError), 0, 0, 1, 1},
{&__pyx_n_s_Initialize, __pyx_k_Initialize, sizeof(__pyx_k_Initialize), 0, 0, 1, 1},
{&__pyx_kp_s_MIDI_input_opened, __pyx_k_MIDI_input_opened, sizeof(__pyx_k_MIDI_input_opened), 0, 0, 1, 0},
{&__pyx_kp_s_Maximum_buffer_length_is_1024, __pyx_k_Maximum_buffer_length_is_1024, sizeof(__pyx_k_Maximum_buffer_length_is_1024), 0, 0, 1, 0},
{&__pyx_kp_s_Maximum_event_list_length_is_102, __pyx_k_Maximum_event_list_length_is_102, sizeof(__pyx_k_Maximum_event_list_length_is_102), 0, 0, 1, 0},
{&__pyx_kp_s_Minimum_buffer_length_is_1, __pyx_k_Minimum_buffer_length_is_1, sizeof(__pyx_k_Minimum_buffer_length_is_1), 0, 0, 1, 0},
{&__pyx_kp_s_No_data_in_event_no_i, __pyx_k_No_data_in_event_no_i, sizeof(__pyx_k_No_data_in_event_no_i), 0, 0, 1, 0},
{&__pyx_kp_s_Opening_Midi_Output, __pyx_k_Opening_Midi_Output, sizeof(__pyx_k_Opening_Midi_Output), 0, 0, 1, 0},
{&__pyx_n_s_TRUE, __pyx_k_TRUE, sizeof(__pyx_k_TRUE), 0, 0, 1, 1},
{&__pyx_n_s_Terminate, __pyx_k_Terminate, sizeof(__pyx_k_Terminate), 0, 0, 1, 1},
{&__pyx_n_s_Time, __pyx_k_Time, sizeof(__pyx_k_Time), 0, 0, 1, 1},
{&__pyx_kp_s_Too_many_data_bytes_i_in_event_n, __pyx_k_Too_many_data_bytes_i_in_event_n, sizeof(__pyx_k_Too_many_data_bytes_i_in_event_n), 0, 0, 1, 0},
{&__pyx_kp_s_Unable_to_open_Midi_OutputDevice, __pyx_k_Unable_to_open_Midi_OutputDevice, sizeof(__pyx_k_Unable_to_open_Midi_OutputDevice), 0, 0, 1, 0},
{&__pyx_n_s_ValueError, __pyx_k_ValueError, sizeof(__pyx_k_ValueError), 0, 0, 1, 1},
{&__pyx_kp_s_Writing_to_MIDI_buffer, __pyx_k_Writing_to_MIDI_buffer, sizeof(__pyx_k_Writing_to_MIDI_buffer), 0, 0, 1, 0},
{&__pyx_kp_s_Writing_to_midi_buffer, __pyx_k_Writing_to_midi_buffer, sizeof(__pyx_k_Writing_to_midi_buffer), 0, 0, 1, 0},
{&__pyx_n_s_array, __pyx_k_array, sizeof(__pyx_k_array), 0, 0, 1, 1},
{&__pyx_n_s_buffersize, __pyx_k_buffersize, sizeof(__pyx_k_buffersize), 0, 0, 1, 1},
{&__pyx_n_s_chan, __pyx_k_chan, sizeof(__pyx_k_chan), 0, 0, 1, 1},
{&__pyx_n_s_check_open, __pyx_k_check_open, sizeof(__pyx_k_check_open), 0, 0, 1, 1},
{&__pyx_n_s_data1, __pyx_k_data1, sizeof(__pyx_k_data1), 0, 0, 1, 1},
{&__pyx_n_s_data2, __pyx_k_data2, sizeof(__pyx_k_data2), 0, 0, 1, 1},
{&__pyx_n_s_device_no, __pyx_k_device_no, sizeof(__pyx_k_device_no), 0, 0, 1, 1},
{&__pyx_n_s_end, __pyx_k_end, sizeof(__pyx_k_end), 0, 0, 1, 1},
{&__pyx_n_s_enumerate, __pyx_k_enumerate, sizeof(__pyx_k_enumerate), 0, 0, 1, 1},
{&__pyx_n_s_err, __pyx_k_err, sizeof(__pyx_k_err), 0, 0, 1, 1},
{&__pyx_n_s_file, __pyx_k_file, sizeof(__pyx_k_file), 0, 0, 1, 1},
{&__pyx_kp_s_i_r_s, __pyx_k_i_r_s, sizeof(__pyx_k_i_r_s), 0, 0, 1, 0},
{&__pyx_n_s_import, __pyx_k_import, sizeof(__pyx_k_import), 0, 0, 1, 1},
{&__pyx_n_s_info, __pyx_k_info, sizeof(__pyx_k_info), 0, 0, 1, 1},
{&__pyx_n_s_input_device, __pyx_k_input_device, sizeof(__pyx_k_input_device), 0, 0, 1, 1},
{&__pyx_n_s_latency, __pyx_k_latency, sizeof(__pyx_k_latency), 0, 0, 1, 1},
{&__pyx_n_s_main, __pyx_k_main, sizeof(__pyx_k_main), 0, 0, 1, 1},
{&__pyx_kp_s_midi_Input_not_open, __pyx_k_midi_Input_not_open, sizeof(__pyx_k_midi_Input_not_open), 0, 0, 1, 0},
{&__pyx_kp_s_midi_Output_aborted_Need_to_call, __pyx_k_midi_Output_aborted_Need_to_call, sizeof(__pyx_k_midi_Output_aborted_Need_to_call), 0, 0, 1, 0},
{&__pyx_kp_s_midi_Output_not_open, __pyx_k_midi_Output_not_open, sizeof(__pyx_k_midi_Output_not_open), 0, 0, 1, 0},
{&__pyx_n_s_msg, __pyx_k_msg, sizeof(__pyx_k_msg), 0, 0, 1, 1},
{&__pyx_n_s_output_device, __pyx_k_output_device, sizeof(__pyx_k_output_device), 0, 0, 1, 1},
{&__pyx_n_s_print, __pyx_k_print, sizeof(__pyx_k_print), 0, 0, 1, 1},
{&__pyx_n_s_pypm, __pyx_k_pypm, sizeof(__pyx_k_pypm), 0, 0, 1, 1},
{&__pyx_n_s_range, __pyx_k_range, sizeof(__pyx_k_range), 0, 0, 1, 1},
{&__pyx_n_s_status, __pyx_k_status, sizeof(__pyx_k_status), 0, 0, 1, 1},
{&__pyx_n_s_test, __pyx_k_test, sizeof(__pyx_k_test), 0, 0, 1, 1},
{&__pyx_kp_s_tikhome_mkuron_Documents_espres, __pyx_k_tikhome_mkuron_Documents_espres, sizeof(__pyx_k_tikhome_mkuron_Documents_espres), 0, 0, 1, 0},
{&__pyx_n_s_tostring, __pyx_k_tostring, sizeof(__pyx_k_tostring), 0, 0, 1, 1},
{&__pyx_n_s_version, __pyx_k_version, sizeof(__pyx_k_version), 0, 0, 1, 1},
{&__pyx_n_s_when, __pyx_k_when, sizeof(__pyx_k_when), 0, 0, 1, 1},
{0, 0, 0, 0, 0, 0, 0}
};
static int __Pyx_InitCachedBuiltins(void) {
__pyx_builtin_Exception = __Pyx_GetBuiltinName(__pyx_n_s_Exception); if (!__pyx_builtin_Exception) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_builtin_IndexError = __Pyx_GetBuiltinName(__pyx_n_s_IndexError); if (!__pyx_builtin_IndexError) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 401; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_builtin_enumerate = __Pyx_GetBuiltinName(__pyx_n_s_enumerate); if (!__pyx_builtin_enumerate) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 403; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_builtin_ValueError = __Pyx_GetBuiltinName(__pyx_n_s_ValueError); if (!__pyx_builtin_ValueError) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 405; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_builtin_range = __Pyx_GetBuiltinName(__pyx_n_s_range); if (!__pyx_builtin_range) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 412; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
return 0;
__pyx_L1_error:;
return -1;
}
static int __Pyx_InitCachedConstants(void) {
__Pyx_RefNannyDeclarations
__Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0);
/* "pypm.pyx":315
* """
* if self.midi == NULL:
* raise Exception("midi Output not open.") # <<<<<<<<<<<<<<
*
* if self._aborted:
*/
__pyx_tuple_ = PyTuple_Pack(1, __pyx_kp_s_midi_Output_not_open); if (unlikely(!__pyx_tuple_)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 315; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_tuple_);
__Pyx_GIVEREF(__pyx_tuple_);
/* "pypm.pyx":318
*
* if self._aborted:
* raise Exception( # <<<<<<<<<<<<<<
* "midi Output aborted. Need to call Close after Abort.")
*
*/
__pyx_tuple__2 = PyTuple_Pack(1, __pyx_kp_s_midi_Output_aborted_Need_to_call); if (unlikely(!__pyx_tuple__2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 318; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_tuple__2);
__Pyx_GIVEREF(__pyx_tuple__2);
/* "pypm.pyx":401
*
* if len(data) > 1024:
* raise IndexError('Maximum event list length is 1024.') # <<<<<<<<<<<<<<
* else:
* for ev_no, event in enumerate(data):
*/
__pyx_tuple__3 = PyTuple_Pack(1, __pyx_kp_s_Maximum_event_list_length_is_102); if (unlikely(!__pyx_tuple__3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 401; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_tuple__3);
__Pyx_GIVEREF(__pyx_tuple__3);
/* "pypm.pyx":556
* """
* if self.midi == NULL:
* raise Exception("midi Input not open.") # <<<<<<<<<<<<<<
*
* def Close(self):
*/
__pyx_tuple__4 = PyTuple_Pack(1, __pyx_kp_s_midi_Input_not_open); if (unlikely(!__pyx_tuple__4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 556; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_tuple__4);
__Pyx_GIVEREF(__pyx_tuple__4);
/* "pypm.pyx":683
*
* if max_events > 1024:
* raise ValueError('Maximum buffer length is 1024.') # <<<<<<<<<<<<<<
* if not max_events:
* raise ValueError('Minimum buffer length is 1.')
*/
__pyx_tuple__5 = PyTuple_Pack(1, __pyx_kp_s_Maximum_buffer_length_is_1024); if (unlikely(!__pyx_tuple__5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 683; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_tuple__5);
__Pyx_GIVEREF(__pyx_tuple__5);
/* "pypm.pyx":685
* raise ValueError('Maximum buffer length is 1024.')
* if not max_events:
* raise ValueError('Minimum buffer length is 1.') # <<<<<<<<<<<<<<
*
* num_events = Pm_Read(self.midi, buffer, max_events)
*/
__pyx_tuple__6 = PyTuple_Pack(1, __pyx_kp_s_Minimum_buffer_length_is_1); if (unlikely(!__pyx_tuple__6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 685; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_tuple__6);
__Pyx_GIVEREF(__pyx_tuple__6);
/* "pypm.pyx":149
*
*
* def Initialize(): # <<<<<<<<<<<<<<
* """Initialize PortMidi library.
*
*/
__pyx_codeobj__7 = (PyObject*)__Pyx_PyCode_New(0, 0, 0, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_tikhome_mkuron_Documents_espres, __pyx_n_s_Initialize, 149, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 149; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":160
* Pt_Start(1, NULL, NULL)
*
* def Terminate(): # <<<<<<<<<<<<<<
* """Terminate use of PortMidi library.
*
*/
__pyx_codeobj__8 = (PyObject*)__Pyx_PyCode_New(0, 0, 0, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_tikhome_mkuron_Documents_espres, __pyx_n_s_Terminate, 160, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 160; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":171
* Pm_Terminate()
*
* def GetDefaultInputDeviceID(): # <<<<<<<<<<<<<<
* """Return the number of the default MIDI input device.
*
*/
__pyx_codeobj__9 = (PyObject*)__Pyx_PyCode_New(0, 0, 0, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_tikhome_mkuron_Documents_espres, __pyx_n_s_GetDefaultInputDeviceID, 171, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 171; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":180
* return Pm_GetDefaultInputDeviceID()
*
* def GetDefaultOutputDeviceID(): # <<<<<<<<<<<<<<
* """Return the number of the default MIDI output device.
*
*/
__pyx_codeobj__10 = (PyObject*)__Pyx_PyCode_New(0, 0, 0, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_tikhome_mkuron_Documents_espres, __pyx_n_s_GetDefaultOutputDeviceID, 180, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":189
* return Pm_GetDefaultOutputDeviceID()
*
* def CountDevices(): # <<<<<<<<<<<<<<
* """Return number of available MIDI (input and output) devices."""
*
*/
__pyx_codeobj__11 = (PyObject*)__Pyx_PyCode_New(0, 0, 0, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_tikhome_mkuron_Documents_espres, __pyx_n_s_CountDevices, 189, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 189; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":194
* return Pm_CountDevices()
*
* def GetDeviceInfo(device_no): # <<<<<<<<<<<<<<
* """Return device info tuple for MIDI device given by device_no.
*
*/
__pyx_tuple__12 = PyTuple_Pack(2, __pyx_n_s_device_no, __pyx_n_s_info); if (unlikely(!__pyx_tuple__12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 194; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_tuple__12);
__Pyx_GIVEREF(__pyx_tuple__12);
__pyx_codeobj__13 = (PyObject*)__Pyx_PyCode_New(1, 0, 2, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__12, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_tikhome_mkuron_Documents_espres, __pyx_n_s_GetDeviceInfo, 194, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 194; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":216
* # return None
*
* def Time(): # <<<<<<<<<<<<<<
* """Return the current time in ms of the PortMidi timer."""
*
*/
__pyx_codeobj__14 = (PyObject*)__Pyx_PyCode_New(0, 0, 0, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_tikhome_mkuron_Documents_espres, __pyx_n_s_Time, 216, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__14)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 216; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":221
* return Pt_Time()
*
* def GetErrorText(err): # <<<<<<<<<<<<<<
* """Return human-readable error message translated from error number."""
*
*/
__pyx_tuple__15 = PyTuple_Pack(1, __pyx_n_s_err); if (unlikely(!__pyx_tuple__15)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 221; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_tuple__15);
__Pyx_GIVEREF(__pyx_tuple__15);
__pyx_codeobj__16 = (PyObject*)__Pyx_PyCode_New(1, 0, 1, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__15, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_tikhome_mkuron_Documents_espres, __pyx_n_s_GetErrorText, 221, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__16)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 221; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":226
* return Pm_GetErrorText(err)
*
* def Channel(chan): # <<<<<<<<<<<<<<
* """Return Channel object for given MIDI channel number 1 - 16.
*
*/
__pyx_tuple__17 = PyTuple_Pack(1, __pyx_n_s_chan); if (unlikely(!__pyx_tuple__17)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 226; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_tuple__17);
__Pyx_GIVEREF(__pyx_tuple__17);
__pyx_codeobj__18 = (PyObject*)__Pyx_PyCode_New(1, 0, 1, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__17, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_tikhome_mkuron_Documents_espres, __pyx_n_s_Channel, 226, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__18)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 226; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_RefNannyFinishContext();
return 0;
__pyx_L1_error:;
__Pyx_RefNannyFinishContext();
return -1;
}
static int __Pyx_InitGlobals(void) {
if (__Pyx_InitStrings(__pyx_string_tab) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
__pyx_int_0 = PyInt_FromLong(0); if (unlikely(!__pyx_int_0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_1 = PyInt_FromLong(1); if (unlikely(!__pyx_int_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_2 = PyInt_FromLong(2); if (unlikely(!__pyx_int_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_4 = PyInt_FromLong(4); if (unlikely(!__pyx_int_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_8 = PyInt_FromLong(8); if (unlikely(!__pyx_int_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_16 = PyInt_FromLong(16); if (unlikely(!__pyx_int_16)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_32 = PyInt_FromLong(32); if (unlikely(!__pyx_int_32)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_48 = PyInt_FromLong(48); if (unlikely(!__pyx_int_48)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_64 = PyInt_FromLong(64); if (unlikely(!__pyx_int_64)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_127 = PyInt_FromLong(127); if (unlikely(!__pyx_int_127)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_128 = PyInt_FromLong(128); if (unlikely(!__pyx_int_128)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_255 = PyInt_FromLong(255); if (unlikely(!__pyx_int_255)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_256 = PyInt_FromLong(256); if (unlikely(!__pyx_int_256)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_512 = PyInt_FromLong(512); if (unlikely(!__pyx_int_512)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_768 = PyInt_FromLong(768); if (unlikely(!__pyx_int_768)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_1024 = PyInt_FromLong(1024); if (unlikely(!__pyx_int_1024)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_2048 = PyInt_FromLong(2048); if (unlikely(!__pyx_int_2048)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_4096 = PyInt_FromLong(4096); if (unlikely(!__pyx_int_4096)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_8192 = PyInt_FromLong(8192); if (unlikely(!__pyx_int_8192)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_16384 = PyInt_FromLong(16384L); if (unlikely(!__pyx_int_16384)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_32768 = PyInt_FromLong(32768L); if (unlikely(!__pyx_int_32768)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_65280 = PyInt_FromLong(65280L); if (unlikely(!__pyx_int_65280)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_65536 = PyInt_FromLong(65536L); if (unlikely(!__pyx_int_65536)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_int_16711680 = PyInt_FromLong(16711680L); if (unlikely(!__pyx_int_16711680)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
return 0;
__pyx_L1_error:;
return -1;
}
#if PY_MAJOR_VERSION < 3
PyMODINIT_FUNC initpypm(void); /*proto*/
PyMODINIT_FUNC initpypm(void)
#else
PyMODINIT_FUNC PyInit_pypm(void); /*proto*/
PyMODINIT_FUNC PyInit_pypm(void)
#endif
{
PyObject *__pyx_t_1 = NULL;
int __pyx_lineno = 0;
const char *__pyx_filename = NULL;
int __pyx_clineno = 0;
__Pyx_RefNannyDeclarations
#if CYTHON_REFNANNY
__Pyx_RefNanny = __Pyx_RefNannyImportAPI("refnanny");
if (!__Pyx_RefNanny) {
PyErr_Clear();
__Pyx_RefNanny = __Pyx_RefNannyImportAPI("Cython.Runtime.refnanny");
if (!__Pyx_RefNanny)
Py_FatalError("failed to import 'refnanny' module");
}
#endif
__Pyx_RefNannySetupContext("PyMODINIT_FUNC PyInit_pypm(void)", 0);
if (__Pyx_check_binary_version() < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_empty_tuple = PyTuple_New(0); if (unlikely(!__pyx_empty_tuple)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_bytes)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
#ifdef __Pyx_CyFunction_USED
if (__pyx_CyFunction_init() < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
#endif
#ifdef __Pyx_FusedFunction_USED
if (__pyx_FusedFunction_init() < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
#endif
#ifdef __Pyx_Coroutine_USED
if (__pyx_Coroutine_init() < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
#endif
#ifdef __Pyx_Generator_USED
if (__pyx_Generator_init() < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
#endif
#ifdef __Pyx_StopAsyncIteration_USED
if (__pyx_StopAsyncIteration_init() < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
#endif
/*--- Library function declarations ---*/
/*--- Threads initialization code ---*/
#if defined(__PYX_FORCE_INIT_THREADS) && __PYX_FORCE_INIT_THREADS
#ifdef WITH_THREAD /* Python build with threading support? */
PyEval_InitThreads();
#endif
#endif
/*--- Module creation code ---*/
#if PY_MAJOR_VERSION < 3
__pyx_m = Py_InitModule4("pypm", __pyx_methods, 0, 0, PYTHON_API_VERSION); Py_XINCREF(__pyx_m);
#else
__pyx_m = PyModule_Create(&__pyx_moduledef);
#endif
if (unlikely(!__pyx_m)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_d = PyModule_GetDict(__pyx_m); if (unlikely(!__pyx_d)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
Py_INCREF(__pyx_d);
__pyx_b = PyImport_AddModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_b)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
#if CYTHON_COMPILING_IN_PYPY
Py_INCREF(__pyx_b);
#endif
if (PyObject_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
/*--- Initialize various global constants etc. ---*/
if (__Pyx_InitGlobals() < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
#if PY_MAJOR_VERSION < 3 && (__PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT)
if (__Pyx_init_sys_getdefaultencoding_params() < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
#endif
if (__pyx_module_is_main_pypm) {
if (PyObject_SetAttrString(__pyx_m, "__name__", __pyx_n_s_main) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
#if PY_MAJOR_VERSION >= 3
{
PyObject *modules = PyImport_GetModuleDict(); if (unlikely(!modules)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
if (!PyDict_GetItemString(modules, "pypm")) {
if (unlikely(PyDict_SetItemString(modules, "pypm", __pyx_m) < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
}
#endif
/*--- Builtin init code ---*/
if (__Pyx_InitCachedBuiltins() < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/*--- Constants init code ---*/
if (__Pyx_InitCachedConstants() < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/*--- Global init code ---*/
/*--- Variable export code ---*/
/*--- Function export code ---*/
/*--- Type init code ---*/
if (PyType_Ready(&__pyx_type_4pypm_Output) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 248; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_type_4pypm_Output.tp_print = 0;
#if CYTHON_COMPILING_IN_CPYTHON
{
PyObject *wrapper = PyObject_GetAttrString((PyObject *)&__pyx_type_4pypm_Output, "__init__"); if (unlikely(!wrapper)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 248; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
if (Py_TYPE(wrapper) == &PyWrapperDescr_Type) {
__pyx_wrapperbase_4pypm_6Output___init__ = *((PyWrapperDescrObject *)wrapper)->d_base;
__pyx_wrapperbase_4pypm_6Output___init__.doc = __pyx_doc_4pypm_6Output___init__;
((PyWrapperDescrObject *)wrapper)->d_base = &__pyx_wrapperbase_4pypm_6Output___init__;
}
}
#endif
if (PyObject_SetAttrString(__pyx_m, "Output", (PyObject *)&__pyx_type_4pypm_Output) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 248; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_ptype_4pypm_Output = &__pyx_type_4pypm_Output;
if (PyType_Ready(&__pyx_type_4pypm_Input) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 509; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_type_4pypm_Input.tp_print = 0;
#if CYTHON_COMPILING_IN_CPYTHON
{
PyObject *wrapper = PyObject_GetAttrString((PyObject *)&__pyx_type_4pypm_Input, "__init__"); if (unlikely(!wrapper)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 509; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
if (Py_TYPE(wrapper) == &PyWrapperDescr_Type) {
__pyx_wrapperbase_4pypm_5Input___init__ = *((PyWrapperDescrObject *)wrapper)->d_base;
__pyx_wrapperbase_4pypm_5Input___init__.doc = __pyx_doc_4pypm_5Input___init__;
((PyWrapperDescrObject *)wrapper)->d_base = &__pyx_wrapperbase_4pypm_5Input___init__;
}
}
#endif
if (PyObject_SetAttrString(__pyx_m, "Input", (PyObject *)&__pyx_type_4pypm_Input) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 509; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_ptype_4pypm_Input = &__pyx_type_4pypm_Input;
/*--- Type import code ---*/
/*--- Variable import code ---*/
/*--- Function import code ---*/
/*--- Execution code ---*/
#if defined(__Pyx_Generator_USED) || defined(__Pyx_Coroutine_USED)
if (__Pyx_patch_abc() < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
#endif
/* "pypm.pyx":8
* # written in Pyrex
*
* __version__ = "0.0.6" # <<<<<<<<<<<<<<
*
* import array
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_version, __pyx_kp_s_0_0_6) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 8; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":10
* __version__ = "0.0.6"
*
* import array # <<<<<<<<<<<<<<
*
* # CHANGES:
*/
__pyx_t_1 = __Pyx_Import(__pyx_n_s_array, 0, -1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 10; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
if (PyDict_SetItem(__pyx_d, __pyx_n_s_array, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 10; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":40
*
*
* FILT_ACTIVE = 0x1 # <<<<<<<<<<<<<<
* FILT_SYSEX = 0x2
* FILT_CLOCK = 0x4
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_ACTIVE, __pyx_int_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 40; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":41
*
* FILT_ACTIVE = 0x1
* FILT_SYSEX = 0x2 # <<<<<<<<<<<<<<
* FILT_CLOCK = 0x4
* FILT_PLAY = 0x8
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_SYSEX, __pyx_int_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 41; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":42
* FILT_ACTIVE = 0x1
* FILT_SYSEX = 0x2
* FILT_CLOCK = 0x4 # <<<<<<<<<<<<<<
* FILT_PLAY = 0x8
* FILT_F9 = 0x10
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_CLOCK, __pyx_int_4) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 42; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":43
* FILT_SYSEX = 0x2
* FILT_CLOCK = 0x4
* FILT_PLAY = 0x8 # <<<<<<<<<<<<<<
* FILT_F9 = 0x10
* FILT_TICK = 0x10
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_PLAY, __pyx_int_8) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 43; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":44
* FILT_CLOCK = 0x4
* FILT_PLAY = 0x8
* FILT_F9 = 0x10 # <<<<<<<<<<<<<<
* FILT_TICK = 0x10
* FILT_FD = 0x20
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_F9, __pyx_int_16) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 44; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":45
* FILT_PLAY = 0x8
* FILT_F9 = 0x10
* FILT_TICK = 0x10 # <<<<<<<<<<<<<<
* FILT_FD = 0x20
* FILT_UNDEFINED = 0x30
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_TICK, __pyx_int_16) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 45; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":46
* FILT_F9 = 0x10
* FILT_TICK = 0x10
* FILT_FD = 0x20 # <<<<<<<<<<<<<<
* FILT_UNDEFINED = 0x30
* FILT_RESET = 0x40
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_FD, __pyx_int_32) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 46; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":47
* FILT_TICK = 0x10
* FILT_FD = 0x20
* FILT_UNDEFINED = 0x30 # <<<<<<<<<<<<<<
* FILT_RESET = 0x40
* FILT_REALTIME = 0x7F
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_UNDEFINED, __pyx_int_48) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 47; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":48
* FILT_FD = 0x20
* FILT_UNDEFINED = 0x30
* FILT_RESET = 0x40 # <<<<<<<<<<<<<<
* FILT_REALTIME = 0x7F
* FILT_NOTE = 0x80
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_RESET, __pyx_int_64) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 48; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":49
* FILT_UNDEFINED = 0x30
* FILT_RESET = 0x40
* FILT_REALTIME = 0x7F # <<<<<<<<<<<<<<
* FILT_NOTE = 0x80
* FILT_CHANNEL_AFTERTOUCH = 0x100
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_REALTIME, __pyx_int_127) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 49; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":50
* FILT_RESET = 0x40
* FILT_REALTIME = 0x7F
* FILT_NOTE = 0x80 # <<<<<<<<<<<<<<
* FILT_CHANNEL_AFTERTOUCH = 0x100
* FILT_POLY_AFTERTOUCH = 0x200
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_NOTE, __pyx_int_128) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 50; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":51
* FILT_REALTIME = 0x7F
* FILT_NOTE = 0x80
* FILT_CHANNEL_AFTERTOUCH = 0x100 # <<<<<<<<<<<<<<
* FILT_POLY_AFTERTOUCH = 0x200
* FILT_AFTERTOUCH = 0x300
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_CHANNEL_AFTERTOUCH, __pyx_int_256) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 51; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":52
* FILT_NOTE = 0x80
* FILT_CHANNEL_AFTERTOUCH = 0x100
* FILT_POLY_AFTERTOUCH = 0x200 # <<<<<<<<<<<<<<
* FILT_AFTERTOUCH = 0x300
* FILT_PROGRAM = 0x400
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_POLY_AFTERTOUCH, __pyx_int_512) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 52; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":53
* FILT_CHANNEL_AFTERTOUCH = 0x100
* FILT_POLY_AFTERTOUCH = 0x200
* FILT_AFTERTOUCH = 0x300 # <<<<<<<<<<<<<<
* FILT_PROGRAM = 0x400
* FILT_CONTROL = 0x800
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_AFTERTOUCH, __pyx_int_768) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 53; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":54
* FILT_POLY_AFTERTOUCH = 0x200
* FILT_AFTERTOUCH = 0x300
* FILT_PROGRAM = 0x400 # <<<<<<<<<<<<<<
* FILT_CONTROL = 0x800
* FILT_PITCHBEND = 0x1000
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_PROGRAM, __pyx_int_1024) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 54; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":55
* FILT_AFTERTOUCH = 0x300
* FILT_PROGRAM = 0x400
* FILT_CONTROL = 0x800 # <<<<<<<<<<<<<<
* FILT_PITCHBEND = 0x1000
* FILT_MTC = 0x2000
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_CONTROL, __pyx_int_2048) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 55; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":56
* FILT_PROGRAM = 0x400
* FILT_CONTROL = 0x800
* FILT_PITCHBEND = 0x1000 # <<<<<<<<<<<<<<
* FILT_MTC = 0x2000
* FILT_SONG_POSITION = 0x4000
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_PITCHBEND, __pyx_int_4096) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 56; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":57
* FILT_CONTROL = 0x800
* FILT_PITCHBEND = 0x1000
* FILT_MTC = 0x2000 # <<<<<<<<<<<<<<
* FILT_SONG_POSITION = 0x4000
* FILT_SONG_SELECT = 0x8000
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_MTC, __pyx_int_8192) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 57; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":58
* FILT_PITCHBEND = 0x1000
* FILT_MTC = 0x2000
* FILT_SONG_POSITION = 0x4000 # <<<<<<<<<<<<<<
* FILT_SONG_SELECT = 0x8000
* FILT_TUNE = 0x10000
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_SONG_POSITION, __pyx_int_16384) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 58; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":59
* FILT_MTC = 0x2000
* FILT_SONG_POSITION = 0x4000
* FILT_SONG_SELECT = 0x8000 # <<<<<<<<<<<<<<
* FILT_TUNE = 0x10000
* FALSE = 0
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_SONG_SELECT, __pyx_int_32768) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 59; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":60
* FILT_SONG_POSITION = 0x4000
* FILT_SONG_SELECT = 0x8000
* FILT_TUNE = 0x10000 # <<<<<<<<<<<<<<
* FALSE = 0
* TRUE = 1
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FILT_TUNE, __pyx_int_65536) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 60; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":61
* FILT_SONG_SELECT = 0x8000
* FILT_TUNE = 0x10000
* FALSE = 0 # <<<<<<<<<<<<<<
* TRUE = 1
*
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_FALSE, __pyx_int_0) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 61; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":62
* FILT_TUNE = 0x10000
* FALSE = 0
* TRUE = 1 # <<<<<<<<<<<<<<
*
* cdef extern from "portmidi.h":
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_TRUE, __pyx_int_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 62; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "pypm.pyx":149
*
*
* def Initialize(): # <<<<<<<<<<<<<<
* """Initialize PortMidi library.
*
*/
__pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_4pypm_1Initialize, NULL, __pyx_n_s_pypm); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 149; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Initialize, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 149; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":160
* Pt_Start(1, NULL, NULL)
*
* def Terminate(): # <<<<<<<<<<<<<<
* """Terminate use of PortMidi library.
*
*/
__pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_4pypm_3Terminate, NULL, __pyx_n_s_pypm); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 160; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Terminate, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 160; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":171
* Pm_Terminate()
*
* def GetDefaultInputDeviceID(): # <<<<<<<<<<<<<<
* """Return the number of the default MIDI input device.
*
*/
__pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_4pypm_5GetDefaultInputDeviceID, NULL, __pyx_n_s_pypm); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 171; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
if (PyDict_SetItem(__pyx_d, __pyx_n_s_GetDefaultInputDeviceID, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 171; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":180
* return Pm_GetDefaultInputDeviceID()
*
* def GetDefaultOutputDeviceID(): # <<<<<<<<<<<<<<
* """Return the number of the default MIDI output device.
*
*/
__pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_4pypm_7GetDefaultOutputDeviceID, NULL, __pyx_n_s_pypm); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
if (PyDict_SetItem(__pyx_d, __pyx_n_s_GetDefaultOutputDeviceID, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":189
* return Pm_GetDefaultOutputDeviceID()
*
* def CountDevices(): # <<<<<<<<<<<<<<
* """Return number of available MIDI (input and output) devices."""
*
*/
__pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_4pypm_9CountDevices, NULL, __pyx_n_s_pypm); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 189; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
if (PyDict_SetItem(__pyx_d, __pyx_n_s_CountDevices, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 189; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":194
* return Pm_CountDevices()
*
* def GetDeviceInfo(device_no): # <<<<<<<<<<<<<<
* """Return device info tuple for MIDI device given by device_no.
*
*/
__pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_4pypm_11GetDeviceInfo, NULL, __pyx_n_s_pypm); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 194; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
if (PyDict_SetItem(__pyx_d, __pyx_n_s_GetDeviceInfo, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 194; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":216
* # return None
*
* def Time(): # <<<<<<<<<<<<<<
* """Return the current time in ms of the PortMidi timer."""
*
*/
__pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_4pypm_13Time, NULL, __pyx_n_s_pypm); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 216; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Time, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 216; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":221
* return Pt_Time()
*
* def GetErrorText(err): # <<<<<<<<<<<<<<
* """Return human-readable error message translated from error number."""
*
*/
__pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_4pypm_15GetErrorText, NULL, __pyx_n_s_pypm); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 221; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
if (PyDict_SetItem(__pyx_d, __pyx_n_s_GetErrorText, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 221; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":226
* return Pm_GetErrorText(err)
*
* def Channel(chan): # <<<<<<<<<<<<<<
* """Return Channel object for given MIDI channel number 1 - 16.
*
*/
__pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_4pypm_17Channel, NULL, __pyx_n_s_pypm); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 226; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Channel, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 226; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "pypm.pyx":1
* # pyPortMidi # <<<<<<<<<<<<<<
* # Python bindings for PortMidi
* # John Harrison
*/
__pyx_t_1 = PyDict_New(); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
if (PyDict_SetItem(__pyx_d, __pyx_n_s_test, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/*--- Wrapped vars code ---*/
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
if (__pyx_m) {
if (__pyx_d) {
__Pyx_AddTraceback("init pypm", __pyx_clineno, __pyx_lineno, __pyx_filename);
}
Py_DECREF(__pyx_m); __pyx_m = 0;
} else if (!PyErr_Occurred()) {
PyErr_SetString(PyExc_ImportError, "init pypm");
}
__pyx_L0:;
__Pyx_RefNannyFinishContext();
#if PY_MAJOR_VERSION < 3
return;
#else
return __pyx_m;
#endif
}
/* --- Runtime support code --- */
#if CYTHON_REFNANNY
static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname) {
PyObject *m = NULL, *p = NULL;
void *r = NULL;
m = PyImport_ImportModule((char *)modname);
if (!m) goto end;
p = PyObject_GetAttrString(m, (char *)"RefNannyAPI");
if (!p) goto end;
r = PyLong_AsVoidPtr(p);
end:
Py_XDECREF(p);
Py_XDECREF(m);
return (__Pyx_RefNannyAPIStruct *)r;
}
#endif
static PyObject *__Pyx_GetBuiltinName(PyObject *name) {
PyObject* result = __Pyx_PyObject_GetAttrStr(__pyx_b, name);
if (unlikely(!result)) {
PyErr_Format(PyExc_NameError,
#if PY_MAJOR_VERSION >= 3
"name '%U' is not defined", name);
#else
"name '%.200s' is not defined", PyString_AS_STRING(name));
#endif
}
return result;
}
#if CYTHON_USE_PYLONG_INTERNALS
#include "longintrepr.h"
#endif
#if CYTHON_COMPILING_IN_CPYTHON
static PyObject* __Pyx_PyInt_SubtractObjC(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, CYTHON_UNUSED int inplace) {
#if PY_MAJOR_VERSION < 3
if (likely(PyInt_CheckExact(op1))) {
const long b = intval;
long x;
long a = PyInt_AS_LONG(op1);
x = (long)((unsigned long)a - b);
if (likely((x^a) >= 0 || (x^~b) >= 0))
return PyInt_FromLong(x);
return PyLong_Type.tp_as_number->nb_subtract(op1, op2);
}
#endif
#if CYTHON_USE_PYLONG_INTERNALS && PY_MAJOR_VERSION >= 3
if (likely(PyLong_CheckExact(op1))) {
const long b = intval;
long a, x;
const PY_LONG_LONG llb = intval;
PY_LONG_LONG lla, llx;
const digit* digits = ((PyLongObject*)op1)->ob_digit;
const Py_ssize_t size = Py_SIZE(op1);
if (likely(__Pyx_sst_abs(size) <= 1)) {
a = likely(size) ? digits[0] : 0;
if (size == -1) a = -a;
} else {
switch (size) {
case -2:
if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) {
a = -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]));
break;
} else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) {
lla = -(PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0]));
goto long_long;
}
case 2:
if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) {
a = (long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]));
break;
} else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) {
lla = (PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0]));
goto long_long;
}
case -3:
if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) {
a = -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]));
break;
} else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) {
lla = -(PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0]));
goto long_long;
}
case 3:
if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) {
a = (long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]));
break;
} else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) {
lla = (PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0]));
goto long_long;
}
case -4:
if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) {
a = -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]));
break;
} else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) {
lla = -(PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0]));
goto long_long;
}
case 4:
if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) {
a = (long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]));
break;
} else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) {
lla = (PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0]));
goto long_long;
}
default: return PyLong_Type.tp_as_number->nb_subtract(op1, op2);
}
}
x = a - b;
return PyLong_FromLong(x);
long_long:
llx = lla - llb;
return PyLong_FromLongLong(llx);
}
#endif
if (PyFloat_CheckExact(op1)) {
const long b = intval;
double a = PyFloat_AS_DOUBLE(op1);
double result;
PyFPE_START_PROTECT("subtract", return NULL)
result = ((double)a) - (double)b;
PyFPE_END_PROTECT(result)
return PyFloat_FromDouble(result);
}
return (inplace ? PyNumber_InPlaceSubtract : PyNumber_Subtract)(op1, op2);
}
#endif
static void __Pyx_RaiseDoubleKeywordsError(
const char* func_name,
PyObject* kw_name)
{
PyErr_Format(PyExc_TypeError,
#if PY_MAJOR_VERSION >= 3
"%s() got multiple values for keyword argument '%U'", func_name, kw_name);
#else
"%s() got multiple values for keyword argument '%s'", func_name,
PyString_AsString(kw_name));
#endif
}
static int __Pyx_ParseOptionalKeywords(
PyObject *kwds,
PyObject **argnames[],
PyObject *kwds2,
PyObject *values[],
Py_ssize_t num_pos_args,
const char* function_name)
{
PyObject *key = 0, *value = 0;
Py_ssize_t pos = 0;
PyObject*** name;
PyObject*** first_kw_arg = argnames + num_pos_args;
while (PyDict_Next(kwds, &pos, &key, &value)) {
name = first_kw_arg;
while (*name && (**name != key)) name++;
if (*name) {
values[name-argnames] = value;
continue;
}
name = first_kw_arg;
#if PY_MAJOR_VERSION < 3
if (likely(PyString_CheckExact(key)) || likely(PyString_Check(key))) {
while (*name) {
if ((CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**name) == PyString_GET_SIZE(key))
&& _PyString_Eq(**name, key)) {
values[name-argnames] = value;
break;
}
name++;
}
if (*name) continue;
else {
PyObject*** argname = argnames;
while (argname != first_kw_arg) {
if ((**argname == key) || (
(CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**argname) == PyString_GET_SIZE(key))
&& _PyString_Eq(**argname, key))) {
goto arg_passed_twice;
}
argname++;
}
}
} else
#endif
if (likely(PyUnicode_Check(key))) {
while (*name) {
int cmp = (**name == key) ? 0 :
#if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3
(PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 :
#endif
PyUnicode_Compare(**name, key);
if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad;
if (cmp == 0) {
values[name-argnames] = value;
break;
}
name++;
}
if (*name) continue;
else {
PyObject*** argname = argnames;
while (argname != first_kw_arg) {
int cmp = (**argname == key) ? 0 :
#if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3
(PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 :
#endif
PyUnicode_Compare(**argname, key);
if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad;
if (cmp == 0) goto arg_passed_twice;
argname++;
}
}
} else
goto invalid_keyword_type;
if (kwds2) {
if (unlikely(PyDict_SetItem(kwds2, key, value))) goto bad;
} else {
goto invalid_keyword;
}
}
return 0;
arg_passed_twice:
__Pyx_RaiseDoubleKeywordsError(function_name, key);
goto bad;
invalid_keyword_type:
PyErr_Format(PyExc_TypeError,
"%.200s() keywords must be strings", function_name);
goto bad;
invalid_keyword:
PyErr_Format(PyExc_TypeError,
#if PY_MAJOR_VERSION < 3
"%.200s() got an unexpected keyword argument '%.200s'",
function_name, PyString_AsString(key));
#else
"%s() got an unexpected keyword argument '%U'",
function_name, key);
#endif
bad:
return -1;
}
static void __Pyx_RaiseArgtupleInvalid(
const char* func_name,
int exact,
Py_ssize_t num_min,
Py_ssize_t num_max,
Py_ssize_t num_found)
{
Py_ssize_t num_expected;
const char *more_or_less;
if (num_found < num_min) {
num_expected = num_min;
more_or_less = "at least";
} else {
num_expected = num_max;
more_or_less = "at most";
}
if (exact) {
more_or_less = "exactly";
}
PyErr_Format(PyExc_TypeError,
"%.200s() takes %.8s %" CYTHON_FORMAT_SSIZE_T "d positional argument%.1s (%" CYTHON_FORMAT_SSIZE_T "d given)",
func_name, more_or_less, num_expected,
(num_expected == 1) ? "" : "s", num_found);
}
#if CYTHON_COMPILING_IN_CPYTHON
static PyObject* __Pyx_PyInt_EqObjC(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, CYTHON_UNUSED int inplace) {
if (op1 == op2) {
Py_RETURN_TRUE;
}
#if PY_MAJOR_VERSION < 3
if (likely(PyInt_CheckExact(op1))) {
const long b = intval;
long a = PyInt_AS_LONG(op1);
if (a == b) {
Py_RETURN_TRUE;
} else {
Py_RETURN_FALSE;
}
}
#endif
#if CYTHON_USE_PYLONG_INTERNALS && PY_MAJOR_VERSION >= 3
if (likely(PyLong_CheckExact(op1))) {
const long b = intval;
long a;
const digit* digits = ((PyLongObject*)op1)->ob_digit;
const Py_ssize_t size = Py_SIZE(op1);
if (likely(__Pyx_sst_abs(size) <= 1)) {
a = likely(size) ? digits[0] : 0;
if (size == -1) a = -a;
} else {
switch (size) {
case -2:
if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) {
a = -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]));
break;
}
case 2:
if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) {
a = (long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]));
break;
}
case -3:
if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) {
a = -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]));
break;
}
case 3:
if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) {
a = (long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]));
break;
}
case -4:
if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) {
a = -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]));
break;
}
case 4:
if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) {
a = (long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]));
break;
}
#if PyLong_SHIFT < 30 && PyLong_SHIFT != 15
default: return PyLong_Type.tp_richcompare(op1, op2, Py_EQ);
#else
default: Py_RETURN_FALSE;
#endif
}
}
if (a == b) {
Py_RETURN_TRUE;
} else {
Py_RETURN_FALSE;
}
}
#endif
if (PyFloat_CheckExact(op1)) {
const long b = intval;
double a = PyFloat_AS_DOUBLE(op1);
if ((double)a == (double)b) {
Py_RETURN_TRUE;
} else {
Py_RETURN_FALSE;
}
}
return PyObject_RichCompare(op1, op2, Py_EQ);
}
#endif
#if CYTHON_COMPILING_IN_CPYTHON
static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw) {
PyObject *result;
ternaryfunc call = func->ob_type->tp_call;
if (unlikely(!call))
return PyObject_Call(func, arg, kw);
if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object")))
return NULL;
result = (*call)(func, arg, kw);
Py_LeaveRecursiveCall();
if (unlikely(!result) && unlikely(!PyErr_Occurred())) {
PyErr_SetString(
PyExc_SystemError,
"NULL result without error in PyObject_Call");
}
return result;
}
#endif
static CYTHON_INLINE void __Pyx_ErrRestore(PyObject *type, PyObject *value, PyObject *tb) {
#if CYTHON_COMPILING_IN_CPYTHON
PyObject *tmp_type, *tmp_value, *tmp_tb;
PyThreadState *tstate = PyThreadState_GET();
tmp_type = tstate->curexc_type;
tmp_value = tstate->curexc_value;
tmp_tb = tstate->curexc_traceback;
tstate->curexc_type = type;
tstate->curexc_value = value;
tstate->curexc_traceback = tb;
Py_XDECREF(tmp_type);
Py_XDECREF(tmp_value);
Py_XDECREF(tmp_tb);
#else
PyErr_Restore(type, value, tb);
#endif
}
static CYTHON_INLINE void __Pyx_ErrFetch(PyObject **type, PyObject **value, PyObject **tb) {
#if CYTHON_COMPILING_IN_CPYTHON
PyThreadState *tstate = PyThreadState_GET();
*type = tstate->curexc_type;
*value = tstate->curexc_value;
*tb = tstate->curexc_traceback;
tstate->curexc_type = 0;
tstate->curexc_value = 0;
tstate->curexc_traceback = 0;
#else
PyErr_Fetch(type, value, tb);
#endif
}
#if PY_MAJOR_VERSION < 3
static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb,
CYTHON_UNUSED PyObject *cause) {
Py_XINCREF(type);
if (!value || value == Py_None)
value = NULL;
else
Py_INCREF(value);
if (!tb || tb == Py_None)
tb = NULL;
else {
Py_INCREF(tb);
if (!PyTraceBack_Check(tb)) {
PyErr_SetString(PyExc_TypeError,
"raise: arg 3 must be a traceback or None");
goto raise_error;
}
}
if (PyType_Check(type)) {
#if CYTHON_COMPILING_IN_PYPY
if (!value) {
Py_INCREF(Py_None);
value = Py_None;
}
#endif
PyErr_NormalizeException(&type, &value, &tb);
} else {
if (value) {
PyErr_SetString(PyExc_TypeError,
"instance exception may not have a separate value");
goto raise_error;
}
value = type;
type = (PyObject*) Py_TYPE(type);
Py_INCREF(type);
if (!PyType_IsSubtype((PyTypeObject *)type, (PyTypeObject *)PyExc_BaseException)) {
PyErr_SetString(PyExc_TypeError,
"raise: exception class must be a subclass of BaseException");
goto raise_error;
}
}
__Pyx_ErrRestore(type, value, tb);
return;
raise_error:
Py_XDECREF(value);
Py_XDECREF(type);
Py_XDECREF(tb);
return;
}
#else
static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause) {
PyObject* owned_instance = NULL;
if (tb == Py_None) {
tb = 0;
} else if (tb && !PyTraceBack_Check(tb)) {
PyErr_SetString(PyExc_TypeError,
"raise: arg 3 must be a traceback or None");
goto bad;
}
if (value == Py_None)
value = 0;
if (PyExceptionInstance_Check(type)) {
if (value) {
PyErr_SetString(PyExc_TypeError,
"instance exception may not have a separate value");
goto bad;
}
value = type;
type = (PyObject*) Py_TYPE(value);
} else if (PyExceptionClass_Check(type)) {
PyObject *instance_class = NULL;
if (value && PyExceptionInstance_Check(value)) {
instance_class = (PyObject*) Py_TYPE(value);
if (instance_class != type) {
int is_subclass = PyObject_IsSubclass(instance_class, type);
if (!is_subclass) {
instance_class = NULL;
} else if (unlikely(is_subclass == -1)) {
goto bad;
} else {
type = instance_class;
}
}
}
if (!instance_class) {
PyObject *args;
if (!value)
args = PyTuple_New(0);
else if (PyTuple_Check(value)) {
Py_INCREF(value);
args = value;
} else
args = PyTuple_Pack(1, value);
if (!args)
goto bad;
owned_instance = PyObject_Call(type, args, NULL);
Py_DECREF(args);
if (!owned_instance)
goto bad;
value = owned_instance;
if (!PyExceptionInstance_Check(value)) {
PyErr_Format(PyExc_TypeError,
"calling %R should have returned an instance of "
"BaseException, not %R",
type, Py_TYPE(value));
goto bad;
}
}
} else {
PyErr_SetString(PyExc_TypeError,
"raise: exception class must be a subclass of BaseException");
goto bad;
}
#if PY_VERSION_HEX >= 0x03030000
if (cause) {
#else
if (cause && cause != Py_None) {
#endif
PyObject *fixed_cause;
if (cause == Py_None) {
fixed_cause = NULL;
} else if (PyExceptionClass_Check(cause)) {
fixed_cause = PyObject_CallObject(cause, NULL);
if (fixed_cause == NULL)
goto bad;
} else if (PyExceptionInstance_Check(cause)) {
fixed_cause = cause;
Py_INCREF(fixed_cause);
} else {
PyErr_SetString(PyExc_TypeError,
"exception causes must derive from "
"BaseException");
goto bad;
}
PyException_SetCause(value, fixed_cause);
}
PyErr_SetObject(type, value);
if (tb) {
#if CYTHON_COMPILING_IN_PYPY
PyObject *tmp_type, *tmp_value, *tmp_tb;
PyErr_Fetch(&tmp_type, &tmp_value, &tmp_tb);
Py_INCREF(tb);
PyErr_Restore(tmp_type, tmp_value, tb);
Py_XDECREF(tmp_tb);
#else
PyThreadState *tstate = PyThreadState_GET();
PyObject* tmp_tb = tstate->curexc_traceback;
if (tb != tmp_tb) {
Py_INCREF(tb);
tstate->curexc_traceback = tb;
Py_XDECREF(tmp_tb);
}
#endif
}
bad:
Py_XDECREF(owned_instance);
return;
}
#endif
static void __Pyx_WriteUnraisable(const char *name, CYTHON_UNUSED int clineno,
CYTHON_UNUSED int lineno, CYTHON_UNUSED const char *filename,
int full_traceback, CYTHON_UNUSED int nogil) {
PyObject *old_exc, *old_val, *old_tb;
PyObject *ctx;
#ifdef WITH_THREAD
PyGILState_STATE state;
if (nogil)
state = PyGILState_Ensure();
#endif
__Pyx_ErrFetch(&old_exc, &old_val, &old_tb);
if (full_traceback) {
Py_XINCREF(old_exc);
Py_XINCREF(old_val);
Py_XINCREF(old_tb);
__Pyx_ErrRestore(old_exc, old_val, old_tb);
PyErr_PrintEx(1);
}
#if PY_MAJOR_VERSION < 3
ctx = PyString_FromString(name);
#else
ctx = PyUnicode_FromString(name);
#endif
__Pyx_ErrRestore(old_exc, old_val, old_tb);
if (!ctx) {
PyErr_WriteUnraisable(Py_None);
} else {
PyErr_WriteUnraisable(ctx);
Py_DECREF(ctx);
}
#ifdef WITH_THREAD
if (nogil)
PyGILState_Release(state);
#endif
}
#if CYTHON_COMPILING_IN_CPYTHON
static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg) {
PyObject *self, *result;
PyCFunction cfunc;
cfunc = PyCFunction_GET_FUNCTION(func);
self = PyCFunction_GET_SELF(func);
if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object")))
return NULL;
result = cfunc(self, arg);
Py_LeaveRecursiveCall();
if (unlikely(!result) && unlikely(!PyErr_Occurred())) {
PyErr_SetString(
PyExc_SystemError,
"NULL result without error in PyObject_Call");
}
return result;
}
#endif
#if CYTHON_COMPILING_IN_CPYTHON
static PyObject* __Pyx__PyObject_CallOneArg(PyObject *func, PyObject *arg) {
PyObject *result;
PyObject *args = PyTuple_New(1);
if (unlikely(!args)) return NULL;
Py_INCREF(arg);
PyTuple_SET_ITEM(args, 0, arg);
result = __Pyx_PyObject_Call(func, args, NULL);
Py_DECREF(args);
return result;
}
static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) {
#ifdef __Pyx_CyFunction_USED
if (likely(PyCFunction_Check(func) || PyObject_TypeCheck(func, __pyx_CyFunctionType))) {
#else
if (likely(PyCFunction_Check(func))) {
#endif
if (likely(PyCFunction_GET_FLAGS(func) & METH_O)) {
return __Pyx_PyObject_CallMethO(func, arg);
}
}
return __Pyx__PyObject_CallOneArg(func, arg);
}
#else
static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) {
PyObject *result;
PyObject *args = PyTuple_Pack(1, arg);
if (unlikely(!args)) return NULL;
result = __Pyx_PyObject_Call(func, args, NULL);
Py_DECREF(args);
return result;
}
#endif
#if CYTHON_COMPILING_IN_CPYTHON
static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func) {
#ifdef __Pyx_CyFunction_USED
if (likely(PyCFunction_Check(func) || PyObject_TypeCheck(func, __pyx_CyFunctionType))) {
#else
if (likely(PyCFunction_Check(func))) {
#endif
if (likely(PyCFunction_GET_FLAGS(func) & METH_NOARGS)) {
return __Pyx_PyObject_CallMethO(func, NULL);
}
}
return __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL);
}
#endif
static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j) {
PyObject *r;
if (!j) return NULL;
r = PyObject_GetItem(o, j);
Py_DECREF(j);
return r;
}
static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i,
CYTHON_NCP_UNUSED int wraparound,
CYTHON_NCP_UNUSED int boundscheck) {
#if CYTHON_COMPILING_IN_CPYTHON
if (wraparound & unlikely(i < 0)) i += PyList_GET_SIZE(o);
if ((!boundscheck) || likely((0 <= i) & (i < PyList_GET_SIZE(o)))) {
PyObject *r = PyList_GET_ITEM(o, i);
Py_INCREF(r);
return r;
}
return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i));
#else
return PySequence_GetItem(o, i);
#endif
}
static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i,
CYTHON_NCP_UNUSED int wraparound,
CYTHON_NCP_UNUSED int boundscheck) {
#if CYTHON_COMPILING_IN_CPYTHON
if (wraparound & unlikely(i < 0)) i += PyTuple_GET_SIZE(o);
if ((!boundscheck) || likely((0 <= i) & (i < PyTuple_GET_SIZE(o)))) {
PyObject *r = PyTuple_GET_ITEM(o, i);
Py_INCREF(r);
return r;
}
return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i));
#else
return PySequence_GetItem(o, i);
#endif
}
static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, int is_list,
CYTHON_NCP_UNUSED int wraparound,
CYTHON_NCP_UNUSED int boundscheck) {
#if CYTHON_COMPILING_IN_CPYTHON
if (is_list || PyList_CheckExact(o)) {
Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyList_GET_SIZE(o);
if ((!boundscheck) || (likely((n >= 0) & (n < PyList_GET_SIZE(o))))) {
PyObject *r = PyList_GET_ITEM(o, n);
Py_INCREF(r);
return r;
}
}
else if (PyTuple_CheckExact(o)) {
Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyTuple_GET_SIZE(o);
if ((!boundscheck) || likely((n >= 0) & (n < PyTuple_GET_SIZE(o)))) {
PyObject *r = PyTuple_GET_ITEM(o, n);
Py_INCREF(r);
return r;
}
} else {
PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence;
if (likely(m && m->sq_item)) {
if (wraparound && unlikely(i < 0) && likely(m->sq_length)) {
Py_ssize_t l = m->sq_length(o);
if (likely(l >= 0)) {
i += l;
} else {
if (PyErr_ExceptionMatches(PyExc_OverflowError))
PyErr_Clear();
else
return NULL;
}
}
return m->sq_item(o, i);
}
}
#else
if (is_list || PySequence_Check(o)) {
return PySequence_GetItem(o, i);
}
#endif
return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i));
}
#if CYTHON_COMPILING_IN_CPYTHON
static PyObject* __Pyx_PyInt_AndObjC(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, CYTHON_UNUSED int inplace) {
#if PY_MAJOR_VERSION < 3
if (likely(PyInt_CheckExact(op1))) {
const long b = intval;
long a = PyInt_AS_LONG(op1);
return PyInt_FromLong(a & b);
}
#endif
#if CYTHON_USE_PYLONG_INTERNALS && PY_MAJOR_VERSION >= 3
if (likely(PyLong_CheckExact(op1))) {
const long b = intval;
long a, x;
const PY_LONG_LONG llb = intval;
PY_LONG_LONG lla, llx;
const digit* digits = ((PyLongObject*)op1)->ob_digit;
const Py_ssize_t size = Py_SIZE(op1);
if (likely(__Pyx_sst_abs(size) <= 1)) {
a = likely(size) ? digits[0] : 0;
if (size == -1) a = -a;
} else {
switch (size) {
case -2:
if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) {
a = -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]));
break;
} else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) {
lla = -(PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0]));
goto long_long;
}
case 2:
if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) {
a = (long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]));
break;
} else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) {
lla = (PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0]));
goto long_long;
}
case -3:
if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) {
a = -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]));
break;
} else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) {
lla = -(PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0]));
goto long_long;
}
case 3:
if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) {
a = (long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]));
break;
} else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) {
lla = (PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0]));
goto long_long;
}
case -4:
if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) {
a = -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]));
break;
} else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) {
lla = -(PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0]));
goto long_long;
}
case 4:
if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) {
a = (long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]));
break;
} else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) {
lla = (PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0]));
goto long_long;
}
default: return PyLong_Type.tp_as_number->nb_and(op1, op2);
}
}
x = a & b;
return PyLong_FromLong(x);
long_long:
llx = lla & llb;
return PyLong_FromLongLong(llx);
}
#endif
return (inplace ? PyNumber_InPlaceAnd : PyNumber_And)(op1, op2);
}
#endif
static CYTHON_INLINE PyObject *__Pyx_GetModuleGlobalName(PyObject *name) {
PyObject *result;
#if CYTHON_COMPILING_IN_CPYTHON
result = PyDict_GetItem(__pyx_d, name);
if (likely(result)) {
Py_INCREF(result);
} else {
#else
result = PyObject_GetItem(__pyx_d, name);
if (!result) {
PyErr_Clear();
#endif
result = __Pyx_GetBuiltinName(name);
}
return result;
}
static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) {
PyObject *empty_list = 0;
PyObject *module = 0;
PyObject *global_dict = 0;
PyObject *empty_dict = 0;
PyObject *list;
#if PY_VERSION_HEX < 0x03030000
PyObject *py_import;
py_import = __Pyx_PyObject_GetAttrStr(__pyx_b, __pyx_n_s_import);
if (!py_import)
goto bad;
#endif
if (from_list)
list = from_list;
else {
empty_list = PyList_New(0);
if (!empty_list)
goto bad;
list = empty_list;
}
global_dict = PyModule_GetDict(__pyx_m);
if (!global_dict)
goto bad;
empty_dict = PyDict_New();
if (!empty_dict)
goto bad;
{
#if PY_MAJOR_VERSION >= 3
if (level == -1) {
if (strchr(__Pyx_MODULE_NAME, '.')) {
#if PY_VERSION_HEX < 0x03030000
PyObject *py_level = PyInt_FromLong(1);
if (!py_level)
goto bad;
module = PyObject_CallFunctionObjArgs(py_import,
name, global_dict, empty_dict, list, py_level, NULL);
Py_DECREF(py_level);
#else
module = PyImport_ImportModuleLevelObject(
name, global_dict, empty_dict, list, 1);
#endif
if (!module) {
if (!PyErr_ExceptionMatches(PyExc_ImportError))
goto bad;
PyErr_Clear();
}
}
level = 0;
}
#endif
if (!module) {
#if PY_VERSION_HEX < 0x03030000
PyObject *py_level = PyInt_FromLong(level);
if (!py_level)
goto bad;
module = PyObject_CallFunctionObjArgs(py_import,
name, global_dict, empty_dict, list, py_level, NULL);
Py_DECREF(py_level);
#else
module = PyImport_ImportModuleLevelObject(
name, global_dict, empty_dict, list, level);
#endif
}
}
bad:
#if PY_VERSION_HEX < 0x03030000
Py_XDECREF(py_import);
#endif
Py_XDECREF(empty_list);
Py_XDECREF(empty_dict);
return module;
}
static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line) {
int start = 0, mid = 0, end = count - 1;
if (end >= 0 && code_line > entries[end].code_line) {
return count;
}
while (start < end) {
mid = start + (end - start) / 2;
if (code_line < entries[mid].code_line) {
end = mid;
} else if (code_line > entries[mid].code_line) {
start = mid + 1;
} else {
return mid;
}
}
if (code_line <= entries[mid].code_line) {
return mid;
} else {
return mid + 1;
}
}
static PyCodeObject *__pyx_find_code_object(int code_line) {
PyCodeObject* code_object;
int pos;
if (unlikely(!code_line) || unlikely(!__pyx_code_cache.entries)) {
return NULL;
}
pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line);
if (unlikely(pos >= __pyx_code_cache.count) || unlikely(__pyx_code_cache.entries[pos].code_line != code_line)) {
return NULL;
}
code_object = __pyx_code_cache.entries[pos].code_object;
Py_INCREF(code_object);
return code_object;
}
static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object) {
int pos, i;
__Pyx_CodeObjectCacheEntry* entries = __pyx_code_cache.entries;
if (unlikely(!code_line)) {
return;
}
if (unlikely(!entries)) {
entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Malloc(64*sizeof(__Pyx_CodeObjectCacheEntry));
if (likely(entries)) {
__pyx_code_cache.entries = entries;
__pyx_code_cache.max_count = 64;
__pyx_code_cache.count = 1;
entries[0].code_line = code_line;
entries[0].code_object = code_object;
Py_INCREF(code_object);
}
return;
}
pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line);
if ((pos < __pyx_code_cache.count) && unlikely(__pyx_code_cache.entries[pos].code_line == code_line)) {
PyCodeObject* tmp = entries[pos].code_object;
entries[pos].code_object = code_object;
Py_DECREF(tmp);
return;
}
if (__pyx_code_cache.count == __pyx_code_cache.max_count) {
int new_max = __pyx_code_cache.max_count + 64;
entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Realloc(
__pyx_code_cache.entries, (size_t)new_max*sizeof(__Pyx_CodeObjectCacheEntry));
if (unlikely(!entries)) {
return;
}
__pyx_code_cache.entries = entries;
__pyx_code_cache.max_count = new_max;
}
for (i=__pyx_code_cache.count; i>pos; i--) {
entries[i] = entries[i-1];
}
entries[pos].code_line = code_line;
entries[pos].code_object = code_object;
__pyx_code_cache.count++;
Py_INCREF(code_object);
}
#include "compile.h"
#include "frameobject.h"
#include "traceback.h"
static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
const char *funcname, int c_line,
int py_line, const char *filename) {
PyCodeObject *py_code = 0;
PyObject *py_srcfile = 0;
PyObject *py_funcname = 0;
#if PY_MAJOR_VERSION < 3
py_srcfile = PyString_FromString(filename);
#else
py_srcfile = PyUnicode_FromString(filename);
#endif
if (!py_srcfile) goto bad;
if (c_line) {
#if PY_MAJOR_VERSION < 3
py_funcname = PyString_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line);
#else
py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line);
#endif
}
else {
#if PY_MAJOR_VERSION < 3
py_funcname = PyString_FromString(funcname);
#else
py_funcname = PyUnicode_FromString(funcname);
#endif
}
if (!py_funcname) goto bad;
py_code = __Pyx_PyCode_New(
0,
0,
0,
0,
0,
__pyx_empty_bytes, /*PyObject *code,*/
__pyx_empty_tuple, /*PyObject *consts,*/
__pyx_empty_tuple, /*PyObject *names,*/
__pyx_empty_tuple, /*PyObject *varnames,*/
__pyx_empty_tuple, /*PyObject *freevars,*/
__pyx_empty_tuple, /*PyObject *cellvars,*/
py_srcfile, /*PyObject *filename,*/
py_funcname, /*PyObject *name,*/
py_line,
__pyx_empty_bytes /*PyObject *lnotab*/
);
Py_DECREF(py_srcfile);
Py_DECREF(py_funcname);
return py_code;
bad:
Py_XDECREF(py_srcfile);
Py_XDECREF(py_funcname);
return NULL;
}
static void __Pyx_AddTraceback(const char *funcname, int c_line,
int py_line, const char *filename) {
PyCodeObject *py_code = 0;
PyFrameObject *py_frame = 0;
py_code = __pyx_find_code_object(c_line ? c_line : py_line);
if (!py_code) {
py_code = __Pyx_CreateCodeObjectForTraceback(
funcname, c_line, py_line, filename);
if (!py_code) goto bad;
__pyx_insert_code_object(c_line ? c_line : py_line, py_code);
}
py_frame = PyFrame_New(
PyThreadState_GET(), /*PyThreadState *tstate,*/
py_code, /*PyCodeObject *code,*/
__pyx_d, /*PyObject *globals,*/
0 /*PyObject *locals*/
);
if (!py_frame) goto bad;
py_frame->f_lineno = py_line;
PyTraceBack_Here(py_frame);
bad:
Py_XDECREF(py_code);
Py_XDECREF(py_frame);
}
static CYTHON_INLINE PyObject* __Pyx_PyInt_From_PmDeviceID(PmDeviceID value) {
const PmDeviceID neg_one = (PmDeviceID) -1, const_zero = (PmDeviceID) 0;
const int is_unsigned = neg_one > const_zero;
if (is_unsigned) {
if (sizeof(PmDeviceID) < sizeof(long)) {
return PyInt_FromLong((long) value);
} else if (sizeof(PmDeviceID) <= sizeof(unsigned long)) {
return PyLong_FromUnsignedLong((unsigned long) value);
} else if (sizeof(PmDeviceID) <= sizeof(unsigned PY_LONG_LONG)) {
return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value);
}
} else {
if (sizeof(PmDeviceID) <= sizeof(long)) {
return PyInt_FromLong((long) value);
} else if (sizeof(PmDeviceID) <= sizeof(PY_LONG_LONG)) {
return PyLong_FromLongLong((PY_LONG_LONG) value);
}
}
{
int one = 1; int little = (int)*(unsigned char *)&one;
unsigned char *bytes = (unsigned char *)&value;
return _PyLong_FromByteArray(bytes, sizeof(PmDeviceID),
little, !is_unsigned);
}
}
static CYTHON_INLINE PyObject* __Pyx_PyInt_From_int(int value) {
const int neg_one = (int) -1, const_zero = (int) 0;
const int is_unsigned = neg_one > const_zero;
if (is_unsigned) {
if (sizeof(int) < sizeof(long)) {
return PyInt_FromLong((long) value);
} else if (sizeof(int) <= sizeof(unsigned long)) {
return PyLong_FromUnsignedLong((unsigned long) value);
} else if (sizeof(int) <= sizeof(unsigned PY_LONG_LONG)) {
return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value);
}
} else {
if (sizeof(int) <= sizeof(long)) {
return PyInt_FromLong((long) value);
} else if (sizeof(int) <= sizeof(PY_LONG_LONG)) {
return PyLong_FromLongLong((PY_LONG_LONG) value);
}
}
{
int one = 1; int little = (int)*(unsigned char *)&one;
unsigned char *bytes = (unsigned char *)&value;
return _PyLong_FromByteArray(bytes, sizeof(int),
little, !is_unsigned);
}
}
#define __PYX_VERIFY_RETURN_INT(target_type, func_type, func_value)\
__PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 0)
#define __PYX_VERIFY_RETURN_INT_EXC(target_type, func_type, func_value)\
__PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 1)
#define __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, exc)\
{\
func_type value = func_value;\
if (sizeof(target_type) < sizeof(func_type)) {\
if (unlikely(value != (func_type) (target_type) value)) {\
func_type zero = 0;\
if (exc && unlikely(value == (func_type)-1 && PyErr_Occurred()))\
return (target_type) -1;\
if (is_unsigned && unlikely(value < zero))\
goto raise_neg_overflow;\
else\
goto raise_overflow;\
}\
}\
return (target_type) value;\
}
static CYTHON_INLINE PmDeviceID __Pyx_PyInt_As_PmDeviceID(PyObject *x) {
const PmDeviceID neg_one = (PmDeviceID) -1, const_zero = (PmDeviceID) 0;
const int is_unsigned = neg_one > const_zero;
#if PY_MAJOR_VERSION < 3
if (likely(PyInt_Check(x))) {
if (sizeof(PmDeviceID) < sizeof(long)) {
__PYX_VERIFY_RETURN_INT(PmDeviceID, long, PyInt_AS_LONG(x))
} else {
long val = PyInt_AS_LONG(x);
if (is_unsigned && unlikely(val < 0)) {
goto raise_neg_overflow;
}
return (PmDeviceID) val;
}
} else
#endif
if (likely(PyLong_Check(x))) {
if (is_unsigned) {
#if CYTHON_USE_PYLONG_INTERNALS
const digit* digits = ((PyLongObject*)x)->ob_digit;
switch (Py_SIZE(x)) {
case 0: return (PmDeviceID) 0;
case 1: __PYX_VERIFY_RETURN_INT(PmDeviceID, digit, digits[0])
case 2:
if (8 * sizeof(PmDeviceID) > 1 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmDeviceID, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmDeviceID) >= 2 * PyLong_SHIFT) {
return (PmDeviceID) (((((PmDeviceID)digits[1]) << PyLong_SHIFT) | (PmDeviceID)digits[0]));
}
}
break;
case 3:
if (8 * sizeof(PmDeviceID) > 2 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmDeviceID, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmDeviceID) >= 3 * PyLong_SHIFT) {
return (PmDeviceID) (((((((PmDeviceID)digits[2]) << PyLong_SHIFT) | (PmDeviceID)digits[1]) << PyLong_SHIFT) | (PmDeviceID)digits[0]));
}
}
break;
case 4:
if (8 * sizeof(PmDeviceID) > 3 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmDeviceID, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmDeviceID) >= 4 * PyLong_SHIFT) {
return (PmDeviceID) (((((((((PmDeviceID)digits[3]) << PyLong_SHIFT) | (PmDeviceID)digits[2]) << PyLong_SHIFT) | (PmDeviceID)digits[1]) << PyLong_SHIFT) | (PmDeviceID)digits[0]));
}
}
break;
}
#endif
#if CYTHON_COMPILING_IN_CPYTHON
if (unlikely(Py_SIZE(x) < 0)) {
goto raise_neg_overflow;
}
#else
{
int result = PyObject_RichCompareBool(x, Py_False, Py_LT);
if (unlikely(result < 0))
return (PmDeviceID) -1;
if (unlikely(result == 1))
goto raise_neg_overflow;
}
#endif
if (sizeof(PmDeviceID) <= sizeof(unsigned long)) {
__PYX_VERIFY_RETURN_INT_EXC(PmDeviceID, unsigned long, PyLong_AsUnsignedLong(x))
} else if (sizeof(PmDeviceID) <= sizeof(unsigned PY_LONG_LONG)) {
__PYX_VERIFY_RETURN_INT_EXC(PmDeviceID, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x))
}
} else {
#if CYTHON_USE_PYLONG_INTERNALS
const digit* digits = ((PyLongObject*)x)->ob_digit;
switch (Py_SIZE(x)) {
case 0: return (PmDeviceID) 0;
case -1: __PYX_VERIFY_RETURN_INT(PmDeviceID, sdigit, -(sdigit) digits[0])
case 1: __PYX_VERIFY_RETURN_INT(PmDeviceID, digit, +digits[0])
case -2:
if (8 * sizeof(PmDeviceID) - 1 > 1 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmDeviceID, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmDeviceID) - 1 > 2 * PyLong_SHIFT) {
return (PmDeviceID) (((PmDeviceID)-1)*(((((PmDeviceID)digits[1]) << PyLong_SHIFT) | (PmDeviceID)digits[0])));
}
}
break;
case 2:
if (8 * sizeof(PmDeviceID) > 1 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmDeviceID, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmDeviceID) - 1 > 2 * PyLong_SHIFT) {
return (PmDeviceID) ((((((PmDeviceID)digits[1]) << PyLong_SHIFT) | (PmDeviceID)digits[0])));
}
}
break;
case -3:
if (8 * sizeof(PmDeviceID) - 1 > 2 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmDeviceID, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmDeviceID) - 1 > 3 * PyLong_SHIFT) {
return (PmDeviceID) (((PmDeviceID)-1)*(((((((PmDeviceID)digits[2]) << PyLong_SHIFT) | (PmDeviceID)digits[1]) << PyLong_SHIFT) | (PmDeviceID)digits[0])));
}
}
break;
case 3:
if (8 * sizeof(PmDeviceID) > 2 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmDeviceID, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmDeviceID) - 1 > 3 * PyLong_SHIFT) {
return (PmDeviceID) ((((((((PmDeviceID)digits[2]) << PyLong_SHIFT) | (PmDeviceID)digits[1]) << PyLong_SHIFT) | (PmDeviceID)digits[0])));
}
}
break;
case -4:
if (8 * sizeof(PmDeviceID) - 1 > 3 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmDeviceID, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmDeviceID) - 1 > 4 * PyLong_SHIFT) {
return (PmDeviceID) (((PmDeviceID)-1)*(((((((((PmDeviceID)digits[3]) << PyLong_SHIFT) | (PmDeviceID)digits[2]) << PyLong_SHIFT) | (PmDeviceID)digits[1]) << PyLong_SHIFT) | (PmDeviceID)digits[0])));
}
}
break;
case 4:
if (8 * sizeof(PmDeviceID) > 3 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmDeviceID, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmDeviceID) - 1 > 4 * PyLong_SHIFT) {
return (PmDeviceID) ((((((((((PmDeviceID)digits[3]) << PyLong_SHIFT) | (PmDeviceID)digits[2]) << PyLong_SHIFT) | (PmDeviceID)digits[1]) << PyLong_SHIFT) | (PmDeviceID)digits[0])));
}
}
break;
}
#endif
if (sizeof(PmDeviceID) <= sizeof(long)) {
__PYX_VERIFY_RETURN_INT_EXC(PmDeviceID, long, PyLong_AsLong(x))
} else if (sizeof(PmDeviceID) <= sizeof(PY_LONG_LONG)) {
__PYX_VERIFY_RETURN_INT_EXC(PmDeviceID, PY_LONG_LONG, PyLong_AsLongLong(x))
}
}
{
#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray)
PyErr_SetString(PyExc_RuntimeError,
"_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers");
#else
PmDeviceID val;
PyObject *v = __Pyx_PyNumber_Int(x);
#if PY_MAJOR_VERSION < 3
if (likely(v) && !PyLong_Check(v)) {
PyObject *tmp = v;
v = PyNumber_Long(tmp);
Py_DECREF(tmp);
}
#endif
if (likely(v)) {
int one = 1; int is_little = (int)*(unsigned char *)&one;
unsigned char *bytes = (unsigned char *)&val;
int ret = _PyLong_AsByteArray((PyLongObject *)v,
bytes, sizeof(val),
is_little, !is_unsigned);
Py_DECREF(v);
if (likely(!ret))
return val;
}
#endif
return (PmDeviceID) -1;
}
} else {
PmDeviceID val;
PyObject *tmp = __Pyx_PyNumber_Int(x);
if (!tmp) return (PmDeviceID) -1;
val = __Pyx_PyInt_As_PmDeviceID(tmp);
Py_DECREF(tmp);
return val;
}
raise_overflow:
PyErr_SetString(PyExc_OverflowError,
"value too large to convert to PmDeviceID");
return (PmDeviceID) -1;
raise_neg_overflow:
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to PmDeviceID");
return (PmDeviceID) -1;
}
static CYTHON_INLINE PyObject* __Pyx_PyInt_From_PtTimestamp(PtTimestamp value) {
const PtTimestamp neg_one = (PtTimestamp) -1, const_zero = (PtTimestamp) 0;
const int is_unsigned = neg_one > const_zero;
if (is_unsigned) {
if (sizeof(PtTimestamp) < sizeof(long)) {
return PyInt_FromLong((long) value);
} else if (sizeof(PtTimestamp) <= sizeof(unsigned long)) {
return PyLong_FromUnsignedLong((unsigned long) value);
} else if (sizeof(PtTimestamp) <= sizeof(unsigned PY_LONG_LONG)) {
return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value);
}
} else {
if (sizeof(PtTimestamp) <= sizeof(long)) {
return PyInt_FromLong((long) value);
} else if (sizeof(PtTimestamp) <= sizeof(PY_LONG_LONG)) {
return PyLong_FromLongLong((PY_LONG_LONG) value);
}
}
{
int one = 1; int little = (int)*(unsigned char *)&one;
unsigned char *bytes = (unsigned char *)&value;
return _PyLong_FromByteArray(bytes, sizeof(PtTimestamp),
little, !is_unsigned);
}
}
static CYTHON_INLINE PmError __Pyx_PyInt_As_PmError(PyObject *x) {
const PmError neg_one = (PmError) -1, const_zero = (PmError) 0;
const int is_unsigned = neg_one > const_zero;
#if PY_MAJOR_VERSION < 3
if (likely(PyInt_Check(x))) {
if (sizeof(PmError) < sizeof(long)) {
__PYX_VERIFY_RETURN_INT(PmError, long, PyInt_AS_LONG(x))
} else {
long val = PyInt_AS_LONG(x);
if (is_unsigned && unlikely(val < 0)) {
goto raise_neg_overflow;
}
return (PmError) val;
}
} else
#endif
if (likely(PyLong_Check(x))) {
if (is_unsigned) {
#if CYTHON_USE_PYLONG_INTERNALS
const digit* digits = ((PyLongObject*)x)->ob_digit;
switch (Py_SIZE(x)) {
case 0: return (PmError) 0;
case 1: __PYX_VERIFY_RETURN_INT(PmError, digit, digits[0])
case 2:
if (8 * sizeof(PmError) > 1 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmError, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmError) >= 2 * PyLong_SHIFT) {
return (PmError) (((((PmError)digits[1]) << PyLong_SHIFT) | (PmError)digits[0]));
}
}
break;
case 3:
if (8 * sizeof(PmError) > 2 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmError, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmError) >= 3 * PyLong_SHIFT) {
return (PmError) (((((((PmError)digits[2]) << PyLong_SHIFT) | (PmError)digits[1]) << PyLong_SHIFT) | (PmError)digits[0]));
}
}
break;
case 4:
if (8 * sizeof(PmError) > 3 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmError, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmError) >= 4 * PyLong_SHIFT) {
return (PmError) (((((((((PmError)digits[3]) << PyLong_SHIFT) | (PmError)digits[2]) << PyLong_SHIFT) | (PmError)digits[1]) << PyLong_SHIFT) | (PmError)digits[0]));
}
}
break;
}
#endif
#if CYTHON_COMPILING_IN_CPYTHON
if (unlikely(Py_SIZE(x) < 0)) {
goto raise_neg_overflow;
}
#else
{
int result = PyObject_RichCompareBool(x, Py_False, Py_LT);
if (unlikely(result < 0))
return (PmError) -1;
if (unlikely(result == 1))
goto raise_neg_overflow;
}
#endif
if (sizeof(PmError) <= sizeof(unsigned long)) {
__PYX_VERIFY_RETURN_INT_EXC(PmError, unsigned long, PyLong_AsUnsignedLong(x))
} else if (sizeof(PmError) <= sizeof(unsigned PY_LONG_LONG)) {
__PYX_VERIFY_RETURN_INT_EXC(PmError, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x))
}
} else {
#if CYTHON_USE_PYLONG_INTERNALS
const digit* digits = ((PyLongObject*)x)->ob_digit;
switch (Py_SIZE(x)) {
case 0: return (PmError) 0;
case -1: __PYX_VERIFY_RETURN_INT(PmError, sdigit, -(sdigit) digits[0])
case 1: __PYX_VERIFY_RETURN_INT(PmError, digit, +digits[0])
case -2:
if (8 * sizeof(PmError) - 1 > 1 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmError, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmError) - 1 > 2 * PyLong_SHIFT) {
return (PmError) (((PmError)-1)*(((((PmError)digits[1]) << PyLong_SHIFT) | (PmError)digits[0])));
}
}
break;
case 2:
if (8 * sizeof(PmError) > 1 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmError, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmError) - 1 > 2 * PyLong_SHIFT) {
return (PmError) ((((((PmError)digits[1]) << PyLong_SHIFT) | (PmError)digits[0])));
}
}
break;
case -3:
if (8 * sizeof(PmError) - 1 > 2 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmError, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmError) - 1 > 3 * PyLong_SHIFT) {
return (PmError) (((PmError)-1)*(((((((PmError)digits[2]) << PyLong_SHIFT) | (PmError)digits[1]) << PyLong_SHIFT) | (PmError)digits[0])));
}
}
break;
case 3:
if (8 * sizeof(PmError) > 2 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmError, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmError) - 1 > 3 * PyLong_SHIFT) {
return (PmError) ((((((((PmError)digits[2]) << PyLong_SHIFT) | (PmError)digits[1]) << PyLong_SHIFT) | (PmError)digits[0])));
}
}
break;
case -4:
if (8 * sizeof(PmError) - 1 > 3 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmError, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmError) - 1 > 4 * PyLong_SHIFT) {
return (PmError) (((PmError)-1)*(((((((((PmError)digits[3]) << PyLong_SHIFT) | (PmError)digits[2]) << PyLong_SHIFT) | (PmError)digits[1]) << PyLong_SHIFT) | (PmError)digits[0])));
}
}
break;
case 4:
if (8 * sizeof(PmError) > 3 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmError, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmError) - 1 > 4 * PyLong_SHIFT) {
return (PmError) ((((((((((PmError)digits[3]) << PyLong_SHIFT) | (PmError)digits[2]) << PyLong_SHIFT) | (PmError)digits[1]) << PyLong_SHIFT) | (PmError)digits[0])));
}
}
break;
}
#endif
if (sizeof(PmError) <= sizeof(long)) {
__PYX_VERIFY_RETURN_INT_EXC(PmError, long, PyLong_AsLong(x))
} else if (sizeof(PmError) <= sizeof(PY_LONG_LONG)) {
__PYX_VERIFY_RETURN_INT_EXC(PmError, PY_LONG_LONG, PyLong_AsLongLong(x))
}
}
{
#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray)
PyErr_SetString(PyExc_RuntimeError,
"_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers");
#else
PmError val;
PyObject *v = __Pyx_PyNumber_Int(x);
#if PY_MAJOR_VERSION < 3
if (likely(v) && !PyLong_Check(v)) {
PyObject *tmp = v;
v = PyNumber_Long(tmp);
Py_DECREF(tmp);
}
#endif
if (likely(v)) {
int one = 1; int is_little = (int)*(unsigned char *)&one;
unsigned char *bytes = (unsigned char *)&val;
int ret = _PyLong_AsByteArray((PyLongObject *)v,
bytes, sizeof(val),
is_little, !is_unsigned);
Py_DECREF(v);
if (likely(!ret))
return val;
}
#endif
return (PmError) -1;
}
} else {
PmError val;
PyObject *tmp = __Pyx_PyNumber_Int(x);
if (!tmp) return (PmError) -1;
val = __Pyx_PyInt_As_PmError(tmp);
Py_DECREF(tmp);
return val;
}
raise_overflow:
PyErr_SetString(PyExc_OverflowError,
"value too large to convert to PmError");
return (PmError) -1;
raise_neg_overflow:
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to PmError");
return (PmError) -1;
}
static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *x) {
const int neg_one = (int) -1, const_zero = (int) 0;
const int is_unsigned = neg_one > const_zero;
#if PY_MAJOR_VERSION < 3
if (likely(PyInt_Check(x))) {
if (sizeof(int) < sizeof(long)) {
__PYX_VERIFY_RETURN_INT(int, long, PyInt_AS_LONG(x))
} else {
long val = PyInt_AS_LONG(x);
if (is_unsigned && unlikely(val < 0)) {
goto raise_neg_overflow;
}
return (int) val;
}
} else
#endif
if (likely(PyLong_Check(x))) {
if (is_unsigned) {
#if CYTHON_USE_PYLONG_INTERNALS
const digit* digits = ((PyLongObject*)x)->ob_digit;
switch (Py_SIZE(x)) {
case 0: return (int) 0;
case 1: __PYX_VERIFY_RETURN_INT(int, digit, digits[0])
case 2:
if (8 * sizeof(int) > 1 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(int) >= 2 * PyLong_SHIFT) {
return (int) (((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]));
}
}
break;
case 3:
if (8 * sizeof(int) > 2 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(int) >= 3 * PyLong_SHIFT) {
return (int) (((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]));
}
}
break;
case 4:
if (8 * sizeof(int) > 3 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(int) >= 4 * PyLong_SHIFT) {
return (int) (((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]));
}
}
break;
}
#endif
#if CYTHON_COMPILING_IN_CPYTHON
if (unlikely(Py_SIZE(x) < 0)) {
goto raise_neg_overflow;
}
#else
{
int result = PyObject_RichCompareBool(x, Py_False, Py_LT);
if (unlikely(result < 0))
return (int) -1;
if (unlikely(result == 1))
goto raise_neg_overflow;
}
#endif
if (sizeof(int) <= sizeof(unsigned long)) {
__PYX_VERIFY_RETURN_INT_EXC(int, unsigned long, PyLong_AsUnsignedLong(x))
} else if (sizeof(int) <= sizeof(unsigned PY_LONG_LONG)) {
__PYX_VERIFY_RETURN_INT_EXC(int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x))
}
} else {
#if CYTHON_USE_PYLONG_INTERNALS
const digit* digits = ((PyLongObject*)x)->ob_digit;
switch (Py_SIZE(x)) {
case 0: return (int) 0;
case -1: __PYX_VERIFY_RETURN_INT(int, sdigit, -(sdigit) digits[0])
case 1: __PYX_VERIFY_RETURN_INT(int, digit, +digits[0])
case -2:
if (8 * sizeof(int) - 1 > 1 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) {
return (int) (((int)-1)*(((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0])));
}
}
break;
case 2:
if (8 * sizeof(int) > 1 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) {
return (int) ((((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0])));
}
}
break;
case -3:
if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) {
return (int) (((int)-1)*(((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])));
}
}
break;
case 3:
if (8 * sizeof(int) > 2 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) {
return (int) ((((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])));
}
}
break;
case -4:
if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) {
return (int) (((int)-1)*(((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])));
}
}
break;
case 4:
if (8 * sizeof(int) > 3 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) {
return (int) ((((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])));
}
}
break;
}
#endif
if (sizeof(int) <= sizeof(long)) {
__PYX_VERIFY_RETURN_INT_EXC(int, long, PyLong_AsLong(x))
} else if (sizeof(int) <= sizeof(PY_LONG_LONG)) {
__PYX_VERIFY_RETURN_INT_EXC(int, PY_LONG_LONG, PyLong_AsLongLong(x))
}
}
{
#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray)
PyErr_SetString(PyExc_RuntimeError,
"_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers");
#else
int val;
PyObject *v = __Pyx_PyNumber_Int(x);
#if PY_MAJOR_VERSION < 3
if (likely(v) && !PyLong_Check(v)) {
PyObject *tmp = v;
v = PyNumber_Long(tmp);
Py_DECREF(tmp);
}
#endif
if (likely(v)) {
int one = 1; int is_little = (int)*(unsigned char *)&one;
unsigned char *bytes = (unsigned char *)&val;
int ret = _PyLong_AsByteArray((PyLongObject *)v,
bytes, sizeof(val),
is_little, !is_unsigned);
Py_DECREF(v);
if (likely(!ret))
return val;
}
#endif
return (int) -1;
}
} else {
int val;
PyObject *tmp = __Pyx_PyNumber_Int(x);
if (!tmp) return (int) -1;
val = __Pyx_PyInt_As_int(tmp);
Py_DECREF(tmp);
return val;
}
raise_overflow:
PyErr_SetString(PyExc_OverflowError,
"value too large to convert to int");
return (int) -1;
raise_neg_overflow:
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to int");
return (int) -1;
}
#if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION < 3
static PyObject *__Pyx_GetStdout(void) {
PyObject *f = PySys_GetObject((char *)"stdout");
if (!f) {
PyErr_SetString(PyExc_RuntimeError, "lost sys.stdout");
}
return f;
}
static int __Pyx_Print(PyObject* f, PyObject *arg_tuple, int newline) {
int i;
if (!f) {
if (!(f = __Pyx_GetStdout()))
return -1;
}
Py_INCREF(f);
for (i=0; i < PyTuple_GET_SIZE(arg_tuple); i++) {
PyObject* v;
if (PyFile_SoftSpace(f, 1)) {
if (PyFile_WriteString(" ", f) < 0)
goto error;
}
v = PyTuple_GET_ITEM(arg_tuple, i);
if (PyFile_WriteObject(v, f, Py_PRINT_RAW) < 0)
goto error;
if (PyString_Check(v)) {
char *s = PyString_AsString(v);
Py_ssize_t len = PyString_Size(v);
if (len > 0) {
switch (s[len-1]) {
case ' ': break;
case '\f': case '\r': case '\n': case '\t': case '\v':
PyFile_SoftSpace(f, 0);
break;
default: break;
}
}
}
}
if (newline) {
if (PyFile_WriteString("\n", f) < 0)
goto error;
PyFile_SoftSpace(f, 0);
}
Py_DECREF(f);
return 0;
error:
Py_DECREF(f);
return -1;
}
#else
static int __Pyx_Print(PyObject* stream, PyObject *arg_tuple, int newline) {
PyObject* kwargs = 0;
PyObject* result = 0;
PyObject* end_string;
if (unlikely(!__pyx_print)) {
__pyx_print = PyObject_GetAttr(__pyx_b, __pyx_n_s_print);
if (!__pyx_print)
return -1;
}
if (stream) {
kwargs = PyDict_New();
if (unlikely(!kwargs))
return -1;
if (unlikely(PyDict_SetItem(kwargs, __pyx_n_s_file, stream) < 0))
goto bad;
if (!newline) {
end_string = PyUnicode_FromStringAndSize(" ", 1);
if (unlikely(!end_string))
goto bad;
if (PyDict_SetItem(kwargs, __pyx_n_s_end, end_string) < 0) {
Py_DECREF(end_string);
goto bad;
}
Py_DECREF(end_string);
}
} else if (!newline) {
if (unlikely(!__pyx_print_kwargs)) {
__pyx_print_kwargs = PyDict_New();
if (unlikely(!__pyx_print_kwargs))
return -1;
end_string = PyUnicode_FromStringAndSize(" ", 1);
if (unlikely(!end_string))
return -1;
if (PyDict_SetItem(__pyx_print_kwargs, __pyx_n_s_end, end_string) < 0) {
Py_DECREF(end_string);
return -1;
}
Py_DECREF(end_string);
}
kwargs = __pyx_print_kwargs;
}
result = PyObject_Call(__pyx_print, arg_tuple, kwargs);
if (unlikely(kwargs) && (kwargs != __pyx_print_kwargs))
Py_DECREF(kwargs);
if (!result)
return -1;
Py_DECREF(result);
return 0;
bad:
if (kwargs != __pyx_print_kwargs)
Py_XDECREF(kwargs);
return -1;
}
#endif
#if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION < 3
static int __Pyx_PrintOne(PyObject* f, PyObject *o) {
if (!f) {
if (!(f = __Pyx_GetStdout()))
return -1;
}
Py_INCREF(f);
if (PyFile_SoftSpace(f, 0)) {
if (PyFile_WriteString(" ", f) < 0)
goto error;
}
if (PyFile_WriteObject(o, f, Py_PRINT_RAW) < 0)
goto error;
if (PyFile_WriteString("\n", f) < 0)
goto error;
Py_DECREF(f);
return 0;
error:
Py_DECREF(f);
return -1;
/* the line below is just to avoid C compiler
* warnings about unused functions */
return __Pyx_Print(f, NULL, 0);
}
#else
static int __Pyx_PrintOne(PyObject* stream, PyObject *o) {
int res;
PyObject* arg_tuple = PyTuple_Pack(1, o);
if (unlikely(!arg_tuple))
return -1;
res = __Pyx_Print(stream, arg_tuple, 1);
Py_DECREF(arg_tuple);
return res;
}
#endif
static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *x) {
const long neg_one = (long) -1, const_zero = (long) 0;
const int is_unsigned = neg_one > const_zero;
#if PY_MAJOR_VERSION < 3
if (likely(PyInt_Check(x))) {
if (sizeof(long) < sizeof(long)) {
__PYX_VERIFY_RETURN_INT(long, long, PyInt_AS_LONG(x))
} else {
long val = PyInt_AS_LONG(x);
if (is_unsigned && unlikely(val < 0)) {
goto raise_neg_overflow;
}
return (long) val;
}
} else
#endif
if (likely(PyLong_Check(x))) {
if (is_unsigned) {
#if CYTHON_USE_PYLONG_INTERNALS
const digit* digits = ((PyLongObject*)x)->ob_digit;
switch (Py_SIZE(x)) {
case 0: return (long) 0;
case 1: __PYX_VERIFY_RETURN_INT(long, digit, digits[0])
case 2:
if (8 * sizeof(long) > 1 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(long) >= 2 * PyLong_SHIFT) {
return (long) (((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]));
}
}
break;
case 3:
if (8 * sizeof(long) > 2 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(long) >= 3 * PyLong_SHIFT) {
return (long) (((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]));
}
}
break;
case 4:
if (8 * sizeof(long) > 3 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(long) >= 4 * PyLong_SHIFT) {
return (long) (((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]));
}
}
break;
}
#endif
#if CYTHON_COMPILING_IN_CPYTHON
if (unlikely(Py_SIZE(x) < 0)) {
goto raise_neg_overflow;
}
#else
{
int result = PyObject_RichCompareBool(x, Py_False, Py_LT);
if (unlikely(result < 0))
return (long) -1;
if (unlikely(result == 1))
goto raise_neg_overflow;
}
#endif
if (sizeof(long) <= sizeof(unsigned long)) {
__PYX_VERIFY_RETURN_INT_EXC(long, unsigned long, PyLong_AsUnsignedLong(x))
} else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) {
__PYX_VERIFY_RETURN_INT_EXC(long, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x))
}
} else {
#if CYTHON_USE_PYLONG_INTERNALS
const digit* digits = ((PyLongObject*)x)->ob_digit;
switch (Py_SIZE(x)) {
case 0: return (long) 0;
case -1: __PYX_VERIFY_RETURN_INT(long, sdigit, -(sdigit) digits[0])
case 1: __PYX_VERIFY_RETURN_INT(long, digit, +digits[0])
case -2:
if (8 * sizeof(long) - 1 > 1 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(long, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) {
return (long) (((long)-1)*(((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0])));
}
}
break;
case 2:
if (8 * sizeof(long) > 1 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) {
return (long) ((((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0])));
}
}
break;
case -3:
if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) {
return (long) (((long)-1)*(((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])));
}
}
break;
case 3:
if (8 * sizeof(long) > 2 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) {
return (long) ((((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])));
}
}
break;
case -4:
if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) {
return (long) (((long)-1)*(((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])));
}
}
break;
case 4:
if (8 * sizeof(long) > 3 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) {
return (long) ((((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])));
}
}
break;
}
#endif
if (sizeof(long) <= sizeof(long)) {
__PYX_VERIFY_RETURN_INT_EXC(long, long, PyLong_AsLong(x))
} else if (sizeof(long) <= sizeof(PY_LONG_LONG)) {
__PYX_VERIFY_RETURN_INT_EXC(long, PY_LONG_LONG, PyLong_AsLongLong(x))
}
}
{
#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray)
PyErr_SetString(PyExc_RuntimeError,
"_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers");
#else
long val;
PyObject *v = __Pyx_PyNumber_Int(x);
#if PY_MAJOR_VERSION < 3
if (likely(v) && !PyLong_Check(v)) {
PyObject *tmp = v;
v = PyNumber_Long(tmp);
Py_DECREF(tmp);
}
#endif
if (likely(v)) {
int one = 1; int is_little = (int)*(unsigned char *)&one;
unsigned char *bytes = (unsigned char *)&val;
int ret = _PyLong_AsByteArray((PyLongObject *)v,
bytes, sizeof(val),
is_little, !is_unsigned);
Py_DECREF(v);
if (likely(!ret))
return val;
}
#endif
return (long) -1;
}
} else {
long val;
PyObject *tmp = __Pyx_PyNumber_Int(x);
if (!tmp) return (long) -1;
val = __Pyx_PyInt_As_long(tmp);
Py_DECREF(tmp);
return val;
}
raise_overflow:
PyErr_SetString(PyExc_OverflowError,
"value too large to convert to long");
return (long) -1;
raise_neg_overflow:
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to long");
return (long) -1;
}
static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value) {
const long neg_one = (long) -1, const_zero = (long) 0;
const int is_unsigned = neg_one > const_zero;
if (is_unsigned) {
if (sizeof(long) < sizeof(long)) {
return PyInt_FromLong((long) value);
} else if (sizeof(long) <= sizeof(unsigned long)) {
return PyLong_FromUnsignedLong((unsigned long) value);
} else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) {
return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value);
}
} else {
if (sizeof(long) <= sizeof(long)) {
return PyInt_FromLong((long) value);
} else if (sizeof(long) <= sizeof(PY_LONG_LONG)) {
return PyLong_FromLongLong((PY_LONG_LONG) value);
}
}
{
int one = 1; int little = (int)*(unsigned char *)&one;
unsigned char *bytes = (unsigned char *)&value;
return _PyLong_FromByteArray(bytes, sizeof(long),
little, !is_unsigned);
}
}
static CYTHON_INLINE PmTimestamp __Pyx_PyInt_As_PmTimestamp(PyObject *x) {
const PmTimestamp neg_one = (PmTimestamp) -1, const_zero = (PmTimestamp) 0;
const int is_unsigned = neg_one > const_zero;
#if PY_MAJOR_VERSION < 3
if (likely(PyInt_Check(x))) {
if (sizeof(PmTimestamp) < sizeof(long)) {
__PYX_VERIFY_RETURN_INT(PmTimestamp, long, PyInt_AS_LONG(x))
} else {
long val = PyInt_AS_LONG(x);
if (is_unsigned && unlikely(val < 0)) {
goto raise_neg_overflow;
}
return (PmTimestamp) val;
}
} else
#endif
if (likely(PyLong_Check(x))) {
if (is_unsigned) {
#if CYTHON_USE_PYLONG_INTERNALS
const digit* digits = ((PyLongObject*)x)->ob_digit;
switch (Py_SIZE(x)) {
case 0: return (PmTimestamp) 0;
case 1: __PYX_VERIFY_RETURN_INT(PmTimestamp, digit, digits[0])
case 2:
if (8 * sizeof(PmTimestamp) > 1 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmTimestamp, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmTimestamp) >= 2 * PyLong_SHIFT) {
return (PmTimestamp) (((((PmTimestamp)digits[1]) << PyLong_SHIFT) | (PmTimestamp)digits[0]));
}
}
break;
case 3:
if (8 * sizeof(PmTimestamp) > 2 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmTimestamp, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmTimestamp) >= 3 * PyLong_SHIFT) {
return (PmTimestamp) (((((((PmTimestamp)digits[2]) << PyLong_SHIFT) | (PmTimestamp)digits[1]) << PyLong_SHIFT) | (PmTimestamp)digits[0]));
}
}
break;
case 4:
if (8 * sizeof(PmTimestamp) > 3 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmTimestamp, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmTimestamp) >= 4 * PyLong_SHIFT) {
return (PmTimestamp) (((((((((PmTimestamp)digits[3]) << PyLong_SHIFT) | (PmTimestamp)digits[2]) << PyLong_SHIFT) | (PmTimestamp)digits[1]) << PyLong_SHIFT) | (PmTimestamp)digits[0]));
}
}
break;
}
#endif
#if CYTHON_COMPILING_IN_CPYTHON
if (unlikely(Py_SIZE(x) < 0)) {
goto raise_neg_overflow;
}
#else
{
int result = PyObject_RichCompareBool(x, Py_False, Py_LT);
if (unlikely(result < 0))
return (PmTimestamp) -1;
if (unlikely(result == 1))
goto raise_neg_overflow;
}
#endif
if (sizeof(PmTimestamp) <= sizeof(unsigned long)) {
__PYX_VERIFY_RETURN_INT_EXC(PmTimestamp, unsigned long, PyLong_AsUnsignedLong(x))
} else if (sizeof(PmTimestamp) <= sizeof(unsigned PY_LONG_LONG)) {
__PYX_VERIFY_RETURN_INT_EXC(PmTimestamp, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x))
}
} else {
#if CYTHON_USE_PYLONG_INTERNALS
const digit* digits = ((PyLongObject*)x)->ob_digit;
switch (Py_SIZE(x)) {
case 0: return (PmTimestamp) 0;
case -1: __PYX_VERIFY_RETURN_INT(PmTimestamp, sdigit, -(sdigit) digits[0])
case 1: __PYX_VERIFY_RETURN_INT(PmTimestamp, digit, +digits[0])
case -2:
if (8 * sizeof(PmTimestamp) - 1 > 1 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmTimestamp, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmTimestamp) - 1 > 2 * PyLong_SHIFT) {
return (PmTimestamp) (((PmTimestamp)-1)*(((((PmTimestamp)digits[1]) << PyLong_SHIFT) | (PmTimestamp)digits[0])));
}
}
break;
case 2:
if (8 * sizeof(PmTimestamp) > 1 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmTimestamp, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmTimestamp) - 1 > 2 * PyLong_SHIFT) {
return (PmTimestamp) ((((((PmTimestamp)digits[1]) << PyLong_SHIFT) | (PmTimestamp)digits[0])));
}
}
break;
case -3:
if (8 * sizeof(PmTimestamp) - 1 > 2 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmTimestamp, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmTimestamp) - 1 > 3 * PyLong_SHIFT) {
return (PmTimestamp) (((PmTimestamp)-1)*(((((((PmTimestamp)digits[2]) << PyLong_SHIFT) | (PmTimestamp)digits[1]) << PyLong_SHIFT) | (PmTimestamp)digits[0])));
}
}
break;
case 3:
if (8 * sizeof(PmTimestamp) > 2 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmTimestamp, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmTimestamp) - 1 > 3 * PyLong_SHIFT) {
return (PmTimestamp) ((((((((PmTimestamp)digits[2]) << PyLong_SHIFT) | (PmTimestamp)digits[1]) << PyLong_SHIFT) | (PmTimestamp)digits[0])));
}
}
break;
case -4:
if (8 * sizeof(PmTimestamp) - 1 > 3 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmTimestamp, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmTimestamp) - 1 > 4 * PyLong_SHIFT) {
return (PmTimestamp) (((PmTimestamp)-1)*(((((((((PmTimestamp)digits[3]) << PyLong_SHIFT) | (PmTimestamp)digits[2]) << PyLong_SHIFT) | (PmTimestamp)digits[1]) << PyLong_SHIFT) | (PmTimestamp)digits[0])));
}
}
break;
case 4:
if (8 * sizeof(PmTimestamp) > 3 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmTimestamp, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmTimestamp) - 1 > 4 * PyLong_SHIFT) {
return (PmTimestamp) ((((((((((PmTimestamp)digits[3]) << PyLong_SHIFT) | (PmTimestamp)digits[2]) << PyLong_SHIFT) | (PmTimestamp)digits[1]) << PyLong_SHIFT) | (PmTimestamp)digits[0])));
}
}
break;
}
#endif
if (sizeof(PmTimestamp) <= sizeof(long)) {
__PYX_VERIFY_RETURN_INT_EXC(PmTimestamp, long, PyLong_AsLong(x))
} else if (sizeof(PmTimestamp) <= sizeof(PY_LONG_LONG)) {
__PYX_VERIFY_RETURN_INT_EXC(PmTimestamp, PY_LONG_LONG, PyLong_AsLongLong(x))
}
}
{
#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray)
PyErr_SetString(PyExc_RuntimeError,
"_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers");
#else
PmTimestamp val;
PyObject *v = __Pyx_PyNumber_Int(x);
#if PY_MAJOR_VERSION < 3
if (likely(v) && !PyLong_Check(v)) {
PyObject *tmp = v;
v = PyNumber_Long(tmp);
Py_DECREF(tmp);
}
#endif
if (likely(v)) {
int one = 1; int is_little = (int)*(unsigned char *)&one;
unsigned char *bytes = (unsigned char *)&val;
int ret = _PyLong_AsByteArray((PyLongObject *)v,
bytes, sizeof(val),
is_little, !is_unsigned);
Py_DECREF(v);
if (likely(!ret))
return val;
}
#endif
return (PmTimestamp) -1;
}
} else {
PmTimestamp val;
PyObject *tmp = __Pyx_PyNumber_Int(x);
if (!tmp) return (PmTimestamp) -1;
val = __Pyx_PyInt_As_PmTimestamp(tmp);
Py_DECREF(tmp);
return val;
}
raise_overflow:
PyErr_SetString(PyExc_OverflowError,
"value too large to convert to PmTimestamp");
return (PmTimestamp) -1;
raise_neg_overflow:
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to PmTimestamp");
return (PmTimestamp) -1;
}
static CYTHON_INLINE PyObject* __Pyx_PyInt_From_PmMessage(PmMessage value) {
const PmMessage neg_one = (PmMessage) -1, const_zero = (PmMessage) 0;
const int is_unsigned = neg_one > const_zero;
if (is_unsigned) {
if (sizeof(PmMessage) < sizeof(long)) {
return PyInt_FromLong((long) value);
} else if (sizeof(PmMessage) <= sizeof(unsigned long)) {
return PyLong_FromUnsignedLong((unsigned long) value);
} else if (sizeof(PmMessage) <= sizeof(unsigned PY_LONG_LONG)) {
return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value);
}
} else {
if (sizeof(PmMessage) <= sizeof(long)) {
return PyInt_FromLong((long) value);
} else if (sizeof(PmMessage) <= sizeof(PY_LONG_LONG)) {
return PyLong_FromLongLong((PY_LONG_LONG) value);
}
}
{
int one = 1; int little = (int)*(unsigned char *)&one;
unsigned char *bytes = (unsigned char *)&value;
return _PyLong_FromByteArray(bytes, sizeof(PmMessage),
little, !is_unsigned);
}
}
static CYTHON_INLINE PyObject* __Pyx_PyInt_From_PmTimestamp(PmTimestamp value) {
const PmTimestamp neg_one = (PmTimestamp) -1, const_zero = (PmTimestamp) 0;
const int is_unsigned = neg_one > const_zero;
if (is_unsigned) {
if (sizeof(PmTimestamp) < sizeof(long)) {
return PyInt_FromLong((long) value);
} else if (sizeof(PmTimestamp) <= sizeof(unsigned long)) {
return PyLong_FromUnsignedLong((unsigned long) value);
} else if (sizeof(PmTimestamp) <= sizeof(unsigned PY_LONG_LONG)) {
return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value);
}
} else {
if (sizeof(PmTimestamp) <= sizeof(long)) {
return PyInt_FromLong((long) value);
} else if (sizeof(PmTimestamp) <= sizeof(PY_LONG_LONG)) {
return PyLong_FromLongLong((PY_LONG_LONG) value);
}
}
{
int one = 1; int little = (int)*(unsigned char *)&one;
unsigned char *bytes = (unsigned char *)&value;
return _PyLong_FromByteArray(bytes, sizeof(PmTimestamp),
little, !is_unsigned);
}
}
static CYTHON_INLINE PmMessage __Pyx_PyInt_As_PmMessage(PyObject *x) {
const PmMessage neg_one = (PmMessage) -1, const_zero = (PmMessage) 0;
const int is_unsigned = neg_one > const_zero;
#if PY_MAJOR_VERSION < 3
if (likely(PyInt_Check(x))) {
if (sizeof(PmMessage) < sizeof(long)) {
__PYX_VERIFY_RETURN_INT(PmMessage, long, PyInt_AS_LONG(x))
} else {
long val = PyInt_AS_LONG(x);
if (is_unsigned && unlikely(val < 0)) {
goto raise_neg_overflow;
}
return (PmMessage) val;
}
} else
#endif
if (likely(PyLong_Check(x))) {
if (is_unsigned) {
#if CYTHON_USE_PYLONG_INTERNALS
const digit* digits = ((PyLongObject*)x)->ob_digit;
switch (Py_SIZE(x)) {
case 0: return (PmMessage) 0;
case 1: __PYX_VERIFY_RETURN_INT(PmMessage, digit, digits[0])
case 2:
if (8 * sizeof(PmMessage) > 1 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmMessage, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmMessage) >= 2 * PyLong_SHIFT) {
return (PmMessage) (((((PmMessage)digits[1]) << PyLong_SHIFT) | (PmMessage)digits[0]));
}
}
break;
case 3:
if (8 * sizeof(PmMessage) > 2 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmMessage, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmMessage) >= 3 * PyLong_SHIFT) {
return (PmMessage) (((((((PmMessage)digits[2]) << PyLong_SHIFT) | (PmMessage)digits[1]) << PyLong_SHIFT) | (PmMessage)digits[0]));
}
}
break;
case 4:
if (8 * sizeof(PmMessage) > 3 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmMessage, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmMessage) >= 4 * PyLong_SHIFT) {
return (PmMessage) (((((((((PmMessage)digits[3]) << PyLong_SHIFT) | (PmMessage)digits[2]) << PyLong_SHIFT) | (PmMessage)digits[1]) << PyLong_SHIFT) | (PmMessage)digits[0]));
}
}
break;
}
#endif
#if CYTHON_COMPILING_IN_CPYTHON
if (unlikely(Py_SIZE(x) < 0)) {
goto raise_neg_overflow;
}
#else
{
int result = PyObject_RichCompareBool(x, Py_False, Py_LT);
if (unlikely(result < 0))
return (PmMessage) -1;
if (unlikely(result == 1))
goto raise_neg_overflow;
}
#endif
if (sizeof(PmMessage) <= sizeof(unsigned long)) {
__PYX_VERIFY_RETURN_INT_EXC(PmMessage, unsigned long, PyLong_AsUnsignedLong(x))
} else if (sizeof(PmMessage) <= sizeof(unsigned PY_LONG_LONG)) {
__PYX_VERIFY_RETURN_INT_EXC(PmMessage, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x))
}
} else {
#if CYTHON_USE_PYLONG_INTERNALS
const digit* digits = ((PyLongObject*)x)->ob_digit;
switch (Py_SIZE(x)) {
case 0: return (PmMessage) 0;
case -1: __PYX_VERIFY_RETURN_INT(PmMessage, sdigit, -(sdigit) digits[0])
case 1: __PYX_VERIFY_RETURN_INT(PmMessage, digit, +digits[0])
case -2:
if (8 * sizeof(PmMessage) - 1 > 1 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmMessage, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmMessage) - 1 > 2 * PyLong_SHIFT) {
return (PmMessage) (((PmMessage)-1)*(((((PmMessage)digits[1]) << PyLong_SHIFT) | (PmMessage)digits[0])));
}
}
break;
case 2:
if (8 * sizeof(PmMessage) > 1 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmMessage, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmMessage) - 1 > 2 * PyLong_SHIFT) {
return (PmMessage) ((((((PmMessage)digits[1]) << PyLong_SHIFT) | (PmMessage)digits[0])));
}
}
break;
case -3:
if (8 * sizeof(PmMessage) - 1 > 2 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmMessage, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmMessage) - 1 > 3 * PyLong_SHIFT) {
return (PmMessage) (((PmMessage)-1)*(((((((PmMessage)digits[2]) << PyLong_SHIFT) | (PmMessage)digits[1]) << PyLong_SHIFT) | (PmMessage)digits[0])));
}
}
break;
case 3:
if (8 * sizeof(PmMessage) > 2 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmMessage, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmMessage) - 1 > 3 * PyLong_SHIFT) {
return (PmMessage) ((((((((PmMessage)digits[2]) << PyLong_SHIFT) | (PmMessage)digits[1]) << PyLong_SHIFT) | (PmMessage)digits[0])));
}
}
break;
case -4:
if (8 * sizeof(PmMessage) - 1 > 3 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmMessage, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmMessage) - 1 > 4 * PyLong_SHIFT) {
return (PmMessage) (((PmMessage)-1)*(((((((((PmMessage)digits[3]) << PyLong_SHIFT) | (PmMessage)digits[2]) << PyLong_SHIFT) | (PmMessage)digits[1]) << PyLong_SHIFT) | (PmMessage)digits[0])));
}
}
break;
case 4:
if (8 * sizeof(PmMessage) > 3 * PyLong_SHIFT) {
if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
__PYX_VERIFY_RETURN_INT(PmMessage, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
} else if (8 * sizeof(PmMessage) - 1 > 4 * PyLong_SHIFT) {
return (PmMessage) ((((((((((PmMessage)digits[3]) << PyLong_SHIFT) | (PmMessage)digits[2]) << PyLong_SHIFT) | (PmMessage)digits[1]) << PyLong_SHIFT) | (PmMessage)digits[0])));
}
}
break;
}
#endif
if (sizeof(PmMessage) <= sizeof(long)) {
__PYX_VERIFY_RETURN_INT_EXC(PmMessage, long, PyLong_AsLong(x))
} else if (sizeof(PmMessage) <= sizeof(PY_LONG_LONG)) {
__PYX_VERIFY_RETURN_INT_EXC(PmMessage, PY_LONG_LONG, PyLong_AsLongLong(x))
}
}
{
#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray)
PyErr_SetString(PyExc_RuntimeError,
"_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers");
#else
PmMessage val;
PyObject *v = __Pyx_PyNumber_Int(x);
#if PY_MAJOR_VERSION < 3
if (likely(v) && !PyLong_Check(v)) {
PyObject *tmp = v;
v = PyNumber_Long(tmp);
Py_DECREF(tmp);
}
#endif
if (likely(v)) {
int one = 1; int is_little = (int)*(unsigned char *)&one;
unsigned char *bytes = (unsigned char *)&val;
int ret = _PyLong_AsByteArray((PyLongObject *)v,
bytes, sizeof(val),
is_little, !is_unsigned);
Py_DECREF(v);
if (likely(!ret))
return val;
}
#endif
return (PmMessage) -1;
}
} else {
PmMessage val;
PyObject *tmp = __Pyx_PyNumber_Int(x);
if (!tmp) return (PmMessage) -1;
val = __Pyx_PyInt_As_PmMessage(tmp);
Py_DECREF(tmp);
return val;
}
raise_overflow:
PyErr_SetString(PyExc_OverflowError,
"value too large to convert to PmMessage");
return (PmMessage) -1;
raise_neg_overflow:
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to PmMessage");
return (PmMessage) -1;
}
static CYTHON_INLINE PyObject* __Pyx_PyInt_From_PmError(PmError value) {
const PmError neg_one = (PmError) -1, const_zero = (PmError) 0;
const int is_unsigned = neg_one > const_zero;
if (is_unsigned) {
if (sizeof(PmError) < sizeof(long)) {
return PyInt_FromLong((long) value);
} else if (sizeof(PmError) <= sizeof(unsigned long)) {
return PyLong_FromUnsignedLong((unsigned long) value);
} else if (sizeof(PmError) <= sizeof(unsigned PY_LONG_LONG)) {
return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value);
}
} else {
if (sizeof(PmError) <= sizeof(long)) {
return PyInt_FromLong((long) value);
} else if (sizeof(PmError) <= sizeof(PY_LONG_LONG)) {
return PyLong_FromLongLong((PY_LONG_LONG) value);
}
}
{
int one = 1; int little = (int)*(unsigned char *)&one;
unsigned char *bytes = (unsigned char *)&value;
return _PyLong_FromByteArray(bytes, sizeof(PmError),
little, !is_unsigned);
}
}
static int __Pyx_check_binary_version(void) {
char ctversion[4], rtversion[4];
PyOS_snprintf(ctversion, 4, "%d.%d", PY_MAJOR_VERSION, PY_MINOR_VERSION);
PyOS_snprintf(rtversion, 4, "%s", Py_GetVersion());
if (ctversion[0] != rtversion[0] || ctversion[2] != rtversion[2]) {
char message[200];
PyOS_snprintf(message, sizeof(message),
"compiletime version %s of module '%.100s' "
"does not match runtime version %s",
ctversion, __Pyx_MODULE_NAME, rtversion);
return PyErr_WarnEx(NULL, message, 1);
}
return 0;
}
static int __Pyx_InitStrings(__Pyx_StringTabEntry *t) {
while (t->p) {
#if PY_MAJOR_VERSION < 3
if (t->is_unicode) {
*t->p = PyUnicode_DecodeUTF8(t->s, t->n - 1, NULL);
} else if (t->intern) {
*t->p = PyString_InternFromString(t->s);
} else {
*t->p = PyString_FromStringAndSize(t->s, t->n - 1);
}
#else
if (t->is_unicode | t->is_str) {
if (t->intern) {
*t->p = PyUnicode_InternFromString(t->s);
} else if (t->encoding) {
*t->p = PyUnicode_Decode(t->s, t->n - 1, t->encoding, NULL);
} else {
*t->p = PyUnicode_FromStringAndSize(t->s, t->n - 1);
}
} else {
*t->p = PyBytes_FromStringAndSize(t->s, t->n - 1);
}
#endif
if (!*t->p)
return -1;
++t;
}
return 0;
}
static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char* c_str) {
return __Pyx_PyUnicode_FromStringAndSize(c_str, (Py_ssize_t)strlen(c_str));
}
static CYTHON_INLINE char* __Pyx_PyObject_AsString(PyObject* o) {
Py_ssize_t ignore;
return __Pyx_PyObject_AsStringAndSize(o, &ignore);
}
static CYTHON_INLINE char* __Pyx_PyObject_AsStringAndSize(PyObject* o, Py_ssize_t *length) {
#if CYTHON_COMPILING_IN_CPYTHON && (__PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT)
if (
#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII
__Pyx_sys_getdefaultencoding_not_ascii &&
#endif
PyUnicode_Check(o)) {
#if PY_VERSION_HEX < 0x03030000
char* defenc_c;
PyObject* defenc = _PyUnicode_AsDefaultEncodedString(o, NULL);
if (!defenc) return NULL;
defenc_c = PyBytes_AS_STRING(defenc);
#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII
{
char* end = defenc_c + PyBytes_GET_SIZE(defenc);
char* c;
for (c = defenc_c; c < end; c++) {
if ((unsigned char) (*c) >= 128) {
PyUnicode_AsASCIIString(o);
return NULL;
}
}
}
#endif
*length = PyBytes_GET_SIZE(defenc);
return defenc_c;
#else
if (__Pyx_PyUnicode_READY(o) == -1) return NULL;
#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII
if (PyUnicode_IS_ASCII(o)) {
*length = PyUnicode_GET_LENGTH(o);
return PyUnicode_AsUTF8(o);
} else {
PyUnicode_AsASCIIString(o);
return NULL;
}
#else
return PyUnicode_AsUTF8AndSize(o, length);
#endif
#endif
} else
#endif
#if (!CYTHON_COMPILING_IN_PYPY) || (defined(PyByteArray_AS_STRING) && defined(PyByteArray_GET_SIZE))
if (PyByteArray_Check(o)) {
*length = PyByteArray_GET_SIZE(o);
return PyByteArray_AS_STRING(o);
} else
#endif
{
char* result;
int r = PyBytes_AsStringAndSize(o, &result, length);
if (unlikely(r < 0)) {
return NULL;
} else {
return result;
}
}
}
static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) {
int is_true = x == Py_True;
if (is_true | (x == Py_False) | (x == Py_None)) return is_true;
else return PyObject_IsTrue(x);
}
static CYTHON_INLINE PyObject* __Pyx_PyNumber_Int(PyObject* x) {
PyNumberMethods *m;
const char *name = NULL;
PyObject *res = NULL;
#if PY_MAJOR_VERSION < 3
if (PyInt_Check(x) || PyLong_Check(x))
#else
if (PyLong_Check(x))
#endif
return __Pyx_NewRef(x);
m = Py_TYPE(x)->tp_as_number;
#if PY_MAJOR_VERSION < 3
if (m && m->nb_int) {
name = "int";
res = PyNumber_Int(x);
}
else if (m && m->nb_long) {
name = "long";
res = PyNumber_Long(x);
}
#else
if (m && m->nb_int) {
name = "int";
res = PyNumber_Long(x);
}
#endif
if (res) {
#if PY_MAJOR_VERSION < 3
if (!PyInt_Check(res) && !PyLong_Check(res)) {
#else
if (!PyLong_Check(res)) {
#endif
PyErr_Format(PyExc_TypeError,
"__%.4s__ returned non-%.4s (type %.200s)",
name, name, Py_TYPE(res)->tp_name);
Py_DECREF(res);
return NULL;
}
}
else if (!PyErr_Occurred()) {
PyErr_SetString(PyExc_TypeError,
"an integer is required");
}
return res;
}
static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) {
Py_ssize_t ival;
PyObject *x;
#if PY_MAJOR_VERSION < 3
if (likely(PyInt_CheckExact(b))) {
if (sizeof(Py_ssize_t) >= sizeof(long))
return PyInt_AS_LONG(b);
else
return PyInt_AsSsize_t(x);
}
#endif
if (likely(PyLong_CheckExact(b))) {
#if CYTHON_USE_PYLONG_INTERNALS
const digit* digits = ((PyLongObject*)b)->ob_digit;
const Py_ssize_t size = Py_SIZE(b);
if (likely(__Pyx_sst_abs(size) <= 1)) {
ival = likely(size) ? digits[0] : 0;
if (size == -1) ival = -ival;
return ival;
} else {
switch (size) {
case 2:
if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) {
return (Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0]));
}
break;
case -2:
if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) {
return -(Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0]));
}
break;
case 3:
if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) {
return (Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0]));
}
break;
case -3:
if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) {
return -(Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0]));
}
break;
case 4:
if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) {
return (Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0]));
}
break;
case -4:
if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) {
return -(Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0]));
}
break;
}
}
#endif
return PyLong_AsSsize_t(b);
}
x = PyNumber_Index(b);
if (!x) return -1;
ival = PyInt_AsSsize_t(x);
Py_DECREF(x);
return ival;
}
static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) {
return PyInt_FromSize_t(ival);
}
#endif /* Py_PYTHON_H */
# pyPortMidi
# Python bindings for PortMidi
# John Harrison
# http://sound.media.mit.edu/~harrison
# harrison@media.mit.edu
# written in Pyrex
__version__ = "0.0.6"
import array
# CHANGES:
# 0.0.6: (Feb 25, 2011) christopher arndt <chris@chrisarndt.de>
# Do not try to close device in Input/Output.__dealloc__ if not open
# Major code layout clean up
# 0.0.5: (June 1st, 2009)
# Output no longer calls abort when it deallocates.
# Added abort and close methods.
# Need to call Abort() explicityly if you want that to happen.
#
# 0.0.3: (March 15, 2005)
# changed everything from tuples to lists
# return 4 values for PmRead instead of 3 (for SysEx)
# minor fixes for flexibility and error checking
# flushed out DistUtils package and added Mac and Linux compile support
# Markus Pfaff: added ability for WriteSysEx to accept lists as well
# as strings
# 0.0.2:
# fixed pointer to function calls to avoid necessity of pyport library
# 0.0.1:
# initial release
FILT_ACTIVE = 0x1
FILT_SYSEX = 0x2
FILT_CLOCK = 0x4
FILT_PLAY = 0x8
FILT_F9 = 0x10
FILT_TICK = 0x10
FILT_FD = 0x20
FILT_UNDEFINED = 0x30
FILT_RESET = 0x40
FILT_REALTIME = 0x7F
FILT_NOTE = 0x80
FILT_CHANNEL_AFTERTOUCH = 0x100
FILT_POLY_AFTERTOUCH = 0x200
FILT_AFTERTOUCH = 0x300
FILT_PROGRAM = 0x400
FILT_CONTROL = 0x800
FILT_PITCHBEND = 0x1000
FILT_MTC = 0x2000
FILT_SONG_POSITION = 0x4000
FILT_SONG_SELECT = 0x8000
FILT_TUNE = 0x10000
FALSE = 0
TRUE = 1
cdef extern from "portmidi.h":
ctypedef enum PmError:
pmNoError = 0,
pmHostError = -10000,
pmInvalidDeviceId, # out of range or output device when input is requested or vice versa
pmInsufficientMemory,
pmBufferTooSmall,
pmBufferOverflow,
pmBadPtr,
pmBadData, # illegal midi data, e.g. missing EOX
pmInternalError,
pmBufferMaxSize, # buffer is already as large as it can be
PmError Pm_Initialize()
PmError Pm_Terminate()
ctypedef void PortMidiStream
ctypedef PortMidiStream PmStream # CHECK THIS!
ctypedef int PmDeviceID
int Pm_HasHostError(PortMidiStream * stream)
char *Pm_GetErrorText(PmError errnum)
Pm_GetHostErrorText(char * msg, unsigned int len)
ctypedef struct PmDeviceInfo:
int structVersion
char *interf # underlying MIDI API, e.g. MMSystem or DirectX
char *name # device name, e.g. USB MidiSport 1x1
int input # true iff input is available
int output # true iff output is available
int opened # used by generic PortMidi code to do error checking on arguments
int Pm_CountDevices()
PmDeviceID Pm_GetDefaultInputDeviceID()
PmDeviceID Pm_GetDefaultOutputDeviceID()
ctypedef long PmTimestamp
ctypedef PmTimestamp(*PmTimeProcPtr)(void *time_info)
# PmBefore is not defined...
PmDeviceInfo* Pm_GetDeviceInfo(PmDeviceID id)
PmError Pm_OpenInput(PortMidiStream** stream,
PmDeviceID inputDevice,
void *inputDriverInfo,
long bufferSize,
long (*PmPtr) (), # long = PtTimestamp
void *time_info)
PmError Pm_OpenOutput(PortMidiStream** stream,
PmDeviceID outputDevice,
void *outputDriverInfo,
long bufferSize,
#long (*PmPtr) (), # long = PtTimestamp
PmTimeProcPtr time_proc, # long = PtTimestamp
void *time_info,
long latency)
PmError Pm_SetFilter(PortMidiStream* stream, long filters)
PmError Pm_Abort(PortMidiStream* stream)
PmError Pm_Close(PortMidiStream* stream)
ctypedef long PmMessage
ctypedef struct PmEvent:
PmMessage message
PmTimestamp timestamp
PmError Pm_Read(PortMidiStream *stream, PmEvent *buffer, long length)
PmError Pm_Poll(PortMidiStream *stream)
int Pm_Channel(int channel)
PmError Pm_SetChannelMask(PortMidiStream *stream, int mask)
PmError Pm_Write(PortMidiStream *stream, PmEvent *buffer, long length)
PmError Pm_WriteSysEx(PortMidiStream *stream, PmTimestamp when,
unsigned char *msg)
cdef extern from "porttime.h":
ctypedef enum PtError:
ptNoError = 0,
ptHostError = -10000,
ptAlreadyStarted,
ptAlreadyStopped,
ptInsufficientMemory
ctypedef long PtTimestamp
ctypedef void (* PtCallback)(PtTimestamp timestamp, void *userData)
PtError Pt_Start(int resolution, PtCallback *callback, void *userData)
PtTimestamp Pt_Time()
def Initialize():
"""Initialize PortMidi library.
This function must be called once before any other function or class from
this module can be used.
"""
Pm_Initialize()
# equiv to TIME_START: start timer w/ ms accuracy
Pt_Start(1, NULL, NULL)
def Terminate():
"""Terminate use of PortMidi library.
Call this to clean up Midi streams when done.
If you do not call this on Windows machines when you are done with MIDI,
your system may crash.
"""
Pm_Terminate()
def GetDefaultInputDeviceID():
"""Return the number of the default MIDI input device.
See the PortMidi documentation on how the default device is set and
determined.
"""
return Pm_GetDefaultInputDeviceID()
def GetDefaultOutputDeviceID():
"""Return the number of the default MIDI output device.
See the PortMidi documentation on how the default device is set and
determined.
"""
return Pm_GetDefaultOutputDeviceID()
def CountDevices():
"""Return number of available MIDI (input and output) devices."""
return Pm_CountDevices()
def GetDeviceInfo(device_no):
"""Return device info tuple for MIDI device given by device_no.
The returned tuple has the following five items:
* underlying MIDI API (string)
* device name (string)
* whether device can be opened as input (1) or not (0)
* whether device can be opened as output (1) or not (0)
* whether device is currently opened (1) or not (0)
"""
cdef PmDeviceInfo *info
# disregarding the constness from Pm_GetDeviceInfo,
# since pyrex doesn't do const.
info = <PmDeviceInfo *>Pm_GetDeviceInfo(device_no)
if info != NULL:
return info.interf, info.name, info.input, info.output, info.opened
# return None
def Time():
"""Return the current time in ms of the PortMidi timer."""
return Pt_Time()
def GetErrorText(err):
"""Return human-readable error message translated from error number."""
return Pm_GetErrorText(err)
def Channel(chan):
"""Return Channel object for given MIDI channel number 1 - 16.
Channel(<chan>) is used with ChannelMask on input MIDI streams.
Example:
To receive input on channels 1 and 10 on a MIDI stream called
MidiIn::
MidiIn.SetChannelMask(pypm.Channel(1) | pypm.Channel(10))
.. note::
PyPortMidi Channel function has been altered from
the original PortMidi c call to correct for what
seems to be a bug --- i.e. channel filters were
all numbered from 0 to 15 instead of 1 to 16.
"""
return Pm_Channel(chan - 1)
cdef class Output:
"""Represents an output MIDI stream device.
Takes the form::
output = pypm.Output(output_device, latency)
latency is in ms. If latency == 0 then timestamps for output are ignored.
"""
cdef int device
cdef PmStream *midi
cdef int debug
cdef int _aborted
def __init__(self, output_device, latency=0):
"""Instantiate MIDI output stream object."""
cdef PmError err
#cdef PtTimestamp (*PmPtr) ()
cdef PmTimeProcPtr PmPtr
self.device = output_device
self.debug = 0
self._aborted = 0
if latency == 0:
PmPtr = NULL
else:
PmPtr = <PmTimeProcPtr>&Pt_Time
if self.debug:
print "Opening Midi Output"
# Why is buffer size 0 here?
err = Pm_OpenOutput(&(self.midi), output_device, NULL, 0, PmPtr, NULL,
latency)
if err < 0:
errmsg = Pm_GetErrorText(err)
# Something's amiss here - if we try to throw an Exception
# here, we crash.
if not err == -10000:
raise Exception(errmsg)
else:
print "Unable to open Midi OutputDevice=%i: %s" % (
output_device, errmsg)
def __dealloc__(self):
"""Close midi device if still open when the instance is destroyed."""
cdef PmError err
if self.debug:
print "Closing MIDI output stream and destroying instance."
if self.midi:
err = Pm_Close(self.midi)
if err < 0:
raise Exception(Pm_GetErrorText(err))
def _check_open(self):
"""Check whether midi device is open, and if not, raises an error.
Internal method, should be used only by other methods of this class.
"""
if self.midi == NULL:
raise Exception("midi Output not open.")
if self._aborted:
raise Exception(
"midi Output aborted. Need to call Close after Abort.")
def Close(self):
"""Close the midi output device, flushing any pending buffers.
PortMidi attempts to close open streams when the application exits --
this is particularly difficult under Windows, so it is best to take
care to close all devices explicitly.
"""
cdef PmError err
if not self.midi:
return
err = Pm_Close(self.midi)
if err < 0:
raise Exception(Pm_GetErrorText(err))
self.midi = NULL
def Abort(self):
"""Terminate outgoing messages immediately.
The caller should immediately close the output port after calling this
method. This call may result in transmission of a partial midi message.
There is no abort for Midi input because the user can simply ignore
messages in the buffer and close an input device at any time.
"""
cdef PmError err
if not self.midi:
return
err = Pm_Abort(self.midi)
if err < 0:
raise Exception(Pm_GetErrorText(err))
self._aborted = 1
def Write(self, data):
"""Output a series of MIDI events given by data list n this device.
Usage::
Write([
[[status, data1, data2, data3], timestamp],
[[status, data1, data2, data3], timestamp],
...
])
The data1/2/3 items in each event are optional::
Write([[[0xc0, 0, 0], 20000]])
is equivalent to::
Write([[[0xc0], 20000]])
Example:
Send program change 1 at time 20000 and send note 65 with velocity 100
at 500 ms later::
Write([[[0xc0, 0, 0], 20000], [[0x90, 60, 100], 20500]])
.. notes::
1. Timestamps will be ignored if latency == 0.
2. To get a note to play immediately, send the note on event with
the result from the Time() function as the timestamp.
"""
cdef PmEvent buffer[1024]
cdef PmError err
cdef int item
cdef int ev_no
self._check_open()
if len(data) > 1024:
raise IndexError('Maximum event list length is 1024.')
else:
for ev_no, event in enumerate(data):
if not event[0]:
raise ValueError('No data in event no. %i.' % ev_no)
if len(event[0]) > 4:
raise ValueError('Too many data bytes (%i) in event no. %i.'
% (len(event[0]), ev_no))
buffer[int(ev_no)].message = 0
for item in range(len(event[0])):
buffer[int(ev_no)].message += (
(event[0][item] & 0xFF) << (8 * item))
buffer[int(ev_no)].timestamp = event[1]
if self.debug:
print "%i : %r : %s" % (
ev_no, buffer[int(ev_no)].message, buffer[int(ev_no)].timestamp)
if self.debug:
print "Writing to midi buffer."
err = Pm_Write(self.midi, buffer, len(data))
if err < 0:
raise Exception(Pm_GetErrorText(err))
def WriteShort(self, status, data1=0, data2=0):
"""Output MIDI event of three bytes or less immediately on this device.
Usage::
WriteShort(status, data1, data2)
status must be a valid MIDI status byte, for example:
0xCx = Program Change
0xBx = Controller Change
0x9x = Note On
where x is the MIDI channel number 0 - 0xF.
The data1 and data2 arguments are optional and assumed to be 0 if
omitted.
Example:
Send note 65 on with velocity 100::
WriteShort(0x90, 65, 100)
"""
cdef PmEvent buffer[1]
cdef PmError err
self._check_open()
buffer[0].timestamp = Pt_Time()
buffer[0].message = (((data2 << 16) & 0xFF0000) |
((data1 << 8) & 0xFF00) | (status & 0xFF))
if self.debug:
print "Writing to MIDI buffer."
err = Pm_Write(self.midi, buffer, 1) # stream, buffer, length
if err < 0:
raise Exception(Pm_GetErrorText(err))
def WriteSysEx(self, when, msg):
"""Output a timestamped system-exclusive MIDI message on this device.
Usage::
WriteSysEx(<timestamp>, <msg>)
<msg> can be a *list* or a *string*
Example (assuming 'out' is an output MIDI stream):
out.WriteSysEx(0, '\\xF0\\x7D\\x10\\x11\\x12\\x13\\xF7')
This is equivalent to::
out.WriteSysEx(pypm.Time(),
[0xF0, 0x7D, 0x10, 0x11, 0x12, 0x13, 0xF7])
"""
cdef PmError err
cdef char *cmsg
cdef PtTimestamp cur_time
self._check_open()
if type(msg) is list:
# Markus Pfaff contribution
msg = array.array('B', msg).tostring()
cmsg = msg
cur_time = Pt_Time()
err = Pm_WriteSysEx(self.midi, when, <unsigned char *> cmsg)
if err < 0:
raise Exception(Pm_GetErrorText(err))
# wait for SysEx to go thru or...
# my win32 machine crashes w/ multiple SysEx
while Pt_Time() == cur_time:
pass
cdef class Input:
"""Represents an input MIDI stream device.
Takes the form::
input = pypm.Input(input_device)
"""
cdef int device
cdef PmStream *midi
cdef int debug
def __init__(self, input_device, buffersize=4096):
"""Instantiate MIDI input stream object."""
cdef PmError err
self.device = input_device
self.debug = 0
err = Pm_OpenInput(&(self.midi), input_device, NULL, buffersize,
&Pt_Time, NULL)
if err < 0:
raise Exception(Pm_GetErrorText(err))
if self.debug:
print "MIDI input opened."
def __dealloc__(self):
"""Close midi device if still open when the instance is destroyed."""
cdef PmError err
if self.debug:
print "Closing MIDI input stream and destroying instance"
if self.midi:
err = Pm_Close(self.midi)
if err < 0:
raise Exception(Pm_GetErrorText(err))
def _check_open(self):
"""Check whether midi device is open, and if not, raises an error.
Internal method, should be used only by other methods of this class.
"""
if self.midi == NULL:
raise Exception("midi Input not open.")
def Close(self):
"""Close the midi input device.
PortMidi attempts to close open streams when the application exits --
this is particularly difficult under Windows, so it is best to take
care to close all devices explicitly.
"""
cdef PmError err
if not self.midi:
return
if self.midi:
err = Pm_Close(self.midi)
if err < 0:
raise Exception(Pm_GetErrorText(err))
self.midi = NULL
def SetFilter(self, filters):
"""Set filters on an open input stream.
Usage::
input.SetFilter(filters)
Filters are used to drop selected input event types. By default, only
active sensing messages are filtered. To prohibit, say, active sensing
and sysex messages, call
::
input.SetFilter(FILT_ACTIVE | FILT_SYSEX);
Filtering is useful when midi routing or midi thru functionality is
being provided by the user application. For example, you may want to
exclude timing messages (clock, MTC, start/stop/continue), while
allowing note-related messages to pass. Or you may be using a sequencer
or drum-machine for MIDI clock information but want to exclude any
notes it may play.
.. note::
SetFilter empties the buffer after setting the filter,
just in case anything got through.
"""
cdef PmEvent buffer[1]
cdef PmError err
self._check_open()
err = Pm_SetFilter(self.midi, filters)
if err < 0:
raise Exception(Pm_GetErrorText(err))
while(Pm_Poll(self.midi) != pmNoError):
err = Pm_Read(self.midi, buffer, 1)
if err < 0:
raise Exception(Pm_GetErrorText(err))
def SetChannelMask(self, mask):
"""Set channel mask to filter incoming messages based on channel.
The mask is a 16-bit bitfield corresponding to appropriate channels
Channel(<channel>) can assist in calling this function, i.e. to
receive only input on channel 1, call this method like this::
SetChannelMask(Channel(1))
Multiple channels should be OR'd together::
SetChannelMask(Channel(10) | Channel(11))
.. note::
The PyPortMidi Channel function has been altered from the original
PortMidi C call to correct for what seems to be a bug --- i.e.
channel filters were all numbered from 0 to 15 instead of 1 to 16.
"""
cdef PmError err
self._check_open()
err = Pm_SetChannelMask(self.midi, mask)
if err < 0:
raise Exception(Pm_GetErrorText(err))
def Poll(self):
"""Test whether input is available.
Returns TRUE if input can be read, FALSE otherwise, or an error value.
"""
cdef PmError err
self._check_open()
err = Pm_Poll(self.midi)
if err < 0:
raise Exception(Pm_GetErrorText(err))
return err
def Read(self, max_events):
"""Read and return up to max_events events from input.
Reads up to max_events midi events stored in the input buffer and
returns them as a list in the following form::
[
[[status, data1, data2, data3], timestamp],
[[status, data1, data2, data3], timestamp],
...
]
"""
cdef PmEvent buffer[1024]
cdef PmError num_events
self._check_open()
if max_events > 1024:
raise ValueError('Maximum buffer length is 1024.')
if not max_events:
raise ValueError('Minimum buffer length is 1.')
num_events = Pm_Read(self.midi, buffer, max_events)
if num_events < 0:
raise Exception(Pm_GetErrorText(num_events))
events = []
if num_events >= 1:
for ev_no in range(num_events):
events.append(
[
[
buffer[int(ev_no)].message & 0xFF,
(buffer[int(ev_no)].message >> 8) & 0xFF,
(buffer[int(ev_no)].message >> 16) & 0xFF,
(buffer[int(ev_no)].message >> 24) & 0xFF
],
buffer[int(ev_no)].timestamp
]
)
return events
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
setup (
cmdclass = {'build_ext': build_ext},
ext_modules = [Extension (
"pypm", ["pypm.c"],
libraries = ["portmidi"]
)]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment