File: alsaevent.cpp

package info (click to toggle)
libdrumstick 2.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,876 kB
  • sloc: cpp: 25,685; xml: 122; sh: 14; makefile: 5
file content (1293 lines) | stat: -rw-r--r-- 30,668 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
/*
    MIDI Sequencer C++ library
    Copyright (C) 2006-2024, Pedro Lopez-Cabanillas <plcl@users.sf.net>

    This library is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include <cxxabi.h>

#include "errorcheck.h"
#include <drumstick/alsaevent.h>

/**
 * @file alsaevent.cpp
 * Implementation of classes managing ALSA Sequencer events.
 */

/**
 * @class QEvent
 * The QEvent class is the base class of all event classes.
 * @see https://doc.qt.io/qt-5/qevent.html
 */

namespace drumstick { namespace ALSA {

/**
 * @addtogroup ALSAEvent
 * @{
 *
 * MIDI Events are messages transmitted between MIDI devices or applications.
 *
 * Classes:
 *
 * SequencerEvent: Base class for the event's hierarchy.
 *
 * ChannelEvent: Base class for the events having a Channel property.
 *
 * KeyEvent: Base class for the events having Key and Velocity properties.
 *
 * NoteEvent: Class representing a note event with duration.
 *
 * NoteOnEvent: Event representing a note-on MIDI event.
 *
 * NoteOffEvent: Event representing a note-off MIDI event.
 *
 * KeyPressEvent: Event representing a MIDI key pressure, or polyphonic after-touch event.
 *
 * ControllerEvent: Event representing a MIDI control change event.
 *
 * ProgramChangeEvent: Event representing a MIDI program change event.
 *
 * PitchBendEvent: Event representing a MIDI bender, or pitch wheel event.
 *
 * ChanPressEvent: Event representing a MIDI channel pressure or after-touch event.
 *
 * VariableEvent: Base class for variable length events.
 *
 * SysExEvent: Event representing a MIDI system exclusive event.
 *
 * TextEvent: Event representing a SMF text event.
 *
 * SystemEvent: Generic event.
 *
 * QueueControlEvent: ALSA Event representing a queue control command.
 *
 * ValueEvent: Generic event having a value property.
 *
 * TempoEvent: ALSA Event representing a tempo change for an ALSA queue.
 *
 * SubscriptionEvent: ALSA Event representing a subscription between two ALSA clients and ports.
 *
 * ClientEvent: ALSA Event representing a change on some ALSA sequencer client.
 *
 * PortEvent: ALSA Event representing a change on some ALSA sequencer port.
 *
 * RemoveEvents: Auxiliary class to remove events from an ALSA queue.
 *
 * MidiCodec: Auxiliary class to translate between raw MIDI streams and ALSA events.
 *
 * @see https://www.alsa-project.org/alsa-doc/alsa-lib/group___seq_event.html
 * @see https://www.alsa-project.org/alsa-doc/alsa-lib/group___seq_events.html
 * @see https://www.alsa-project.org/alsa-doc/alsa-lib/group___seq_ev_type.html
 * @see https://www.alsa-project.org/alsa-doc/alsa-lib/group___m_i_d_i___event.html
 * @}
 */

/**
 * Default constructor.
 */
SequencerEvent::SequencerEvent() : QEvent(SequencerEventType)
{
    snd_seq_ev_clear( &m_event );
}

/**
 * Constructor from an ALSA event record
 * @param event ALSA event record
 */
SequencerEvent::SequencerEvent(const snd_seq_event_t* event) : QEvent(SequencerEventType)
{
    snd_seq_ev_clear( &m_event );
    m_event = *event;
}

/**
 * Copy constructor
 * @param other A SequencerEvent object reference
 */
SequencerEvent::SequencerEvent(const SequencerEvent& other) : QEvent(SequencerEventType)
{
    snd_seq_ev_clear( &m_event );
    m_event = other.m_event;
}

/**
 * Assignment operator
 * @param other A SequencerEvent object reference
 * @return This object
 */
SequencerEvent&
SequencerEvent::operator=(const SequencerEvent& other)
{
    m_event = other.m_event;
    return *this;
}

/**
 * Checks if the event's type is a subscription.
 * @param event A SequencerEvent object pointer
 * @return True if the event has a subscribe/unsubscribe type.
 */
bool
SequencerEvent::isSubscription(const SequencerEvent* event)
{
    snd_seq_event_type_t te = event->getSequencerType();
    return ( te == SND_SEQ_EVENT_PORT_SUBSCRIBED ||
             te == SND_SEQ_EVENT_PORT_UNSUBSCRIBED );
}

/**
 * Checks if the event's type is of type port.
 * @param event A SequencerEvent object pointer
 * @return True if the event has a port start/exit/change type.
 */
bool
SequencerEvent::isPort(const SequencerEvent* event)
{
    snd_seq_event_type_t te = event->getSequencerType();
    return ( te == SND_SEQ_EVENT_PORT_START ||
             te == SND_SEQ_EVENT_PORT_EXIT ||
             te == SND_SEQ_EVENT_PORT_CHANGE );
}

/**
 * Checks if the event's type is of type client.
 * @param event A SequencerEvent object pointer
 * @return True if the event has a client start/exit/change type.
 */
bool
SequencerEvent::isClient(const SequencerEvent* event)
{
    snd_seq_event_type_t te = event->getSequencerType();
    return ( te == SND_SEQ_EVENT_CLIENT_START ||
             te == SND_SEQ_EVENT_CLIENT_EXIT ||
             te == SND_SEQ_EVENT_CLIENT_CHANGE );
}

/**
 * Checks if the event's type is of type connection change.
 * @param event A SequencerEvent object pointer
 * @return True if the event has a client/port/subscription type.
 */
bool
SequencerEvent::isConnectionChange(const SequencerEvent* event)
{
    snd_seq_event_type_t te = event->getSequencerType();
    return ( te == SND_SEQ_EVENT_PORT_START ||
             te == SND_SEQ_EVENT_PORT_EXIT ||
             te == SND_SEQ_EVENT_PORT_CHANGE ||
             te == SND_SEQ_EVENT_CLIENT_START ||
             te == SND_SEQ_EVENT_CLIENT_EXIT ||
             te == SND_SEQ_EVENT_CLIENT_CHANGE ||
             te == SND_SEQ_EVENT_PORT_SUBSCRIBED ||
             te == SND_SEQ_EVENT_PORT_UNSUBSCRIBED );
}

/**
 * Checks if the event's type is a Channel Voice message.
 * @param event A SequencerEvent object pointer
 * @return True if the event is a channel voice message.
 * @since 0.2.0
 */
bool
SequencerEvent::isChannel(const SequencerEvent* event)
{
    snd_seq_event_type_t te = event->getSequencerType();
    return ( te == SND_SEQ_EVENT_NOTEOFF ||
             te == SND_SEQ_EVENT_NOTEON ||
             te == SND_SEQ_EVENT_NOTE ||
             te == SND_SEQ_EVENT_KEYPRESS ||
             te == SND_SEQ_EVENT_CONTROLLER ||
             te == SND_SEQ_EVENT_CONTROL14 ||
             te == SND_SEQ_EVENT_PGMCHANGE ||
             te == SND_SEQ_EVENT_CHANPRESS ||
             te == SND_SEQ_EVENT_PITCHBEND );
}

/**
 * Sets the event's ALSA sequencer type
 * @param eventType The ALSA sequencer type
 */
void SequencerEvent::setSequencerType(const snd_seq_event_type_t eventType)
{
    m_event.type = eventType;
}

/**
 * Sets the client:port destination of the event.
 * @param client The destination's client ID
 * @param port The destination port ID
 * @see setSubscribers()
 */
void SequencerEvent::setDestination(const unsigned char client, const unsigned char port)
{
    snd_seq_ev_set_dest(&m_event, client, port);
}

/**
 * Sets the event's source port ID
 * @param port The source port ID
 * @see getSourceClient(), getSourcePort()
 */
void SequencerEvent::setSource(const unsigned char port)
{
    snd_seq_ev_set_source(&m_event, port);
}

/**
 * Sets the event's destination to be all the subscribers of the source port.
 */
void SequencerEvent::setSubscribers()
{
    snd_seq_ev_set_subs(&m_event);
}

/**
 * Sets the event's destination to be all queues/clients/ports/channels.
 */
void SequencerEvent::setBroadcast()
{
    snd_seq_ev_set_broadcast(&m_event);
}

/**
 * Sets the event to be immediately delivered, not queued/scheduled.
 * @see scheduleTick(), scheduleReal()
 */
void SequencerEvent::setDirect()
{
    snd_seq_ev_set_direct(&m_event);
}

/**
 * Sets the event to be scheduled in musical time (ticks) units.
 * @param queue The queue number to be used.
 * @param tick The time in ticks.
 * @param relative Use relative (to the current) time instead of absolute time.
 */
void SequencerEvent::scheduleTick(int queue, int tick, bool relative)
{
    snd_seq_ev_schedule_tick(&m_event, queue, relative, tick);
}

/**
 * Sets the event to be scheduled in real (clock) time units.
 * @param queue The queue number to be used.
 * @param secs The time in whole seconds.
 * @param nanos The nanoseconds to be added.
 * @param relative Use relative (to the current) time instead of absolute time.
 */
void SequencerEvent::scheduleReal(int queue, ulong secs, ulong nanos, bool relative)
{
    snd_seq_real_time_t rtime;
    rtime.tv_sec = secs;
    rtime.tv_nsec = nanos;
    snd_seq_ev_schedule_real(&m_event, queue, relative, &rtime);
}

/**
 * Sets the priority of the event. This is used in case of several events share
 * the same scheduling time.
 *
 * @param high Mark the event as a high priority one.
 */
void SequencerEvent::setPriority(const bool high)
{
    snd_seq_ev_set_priority(&m_event, high);
}

/**
 * Sets the event's tag. This attribute is any arbitrary number, not used by
 * the ALSA library. Range limited to 0 thru 255.
 * @param aTag A tag number.
 */
void SequencerEvent::setTag(const unsigned char aTag)
{
#if SND_LIB_VERSION > 0x010008
    snd_seq_ev_set_tag(&m_event, aTag);
#else
    m_event.tag = aTag;
#endif
}

/**
 * Gets an event's raw 32 bits parameter.
 * @param n The parameter index, between 0 and 2.
 * @return The parameter's value.
 * @see setRaw32()
 */
unsigned int SequencerEvent::getRaw32(const unsigned int n) const
{
    if (n < 3) return m_event.data.raw32.d[n];
    return 0;
}

/**
 * Sets an event's raw 32 bits parameter.
 * @param n The parameter index, between 0 and 2.
 * @param value The parameter's value.
 */
void SequencerEvent::setRaw32(const unsigned int n, const unsigned int value)
{
    if (n < 3) m_event.data.raw32.d[n] = value;
}

/**
 * Gets an event's raw 8 bits parameter.
 * @param n The parameter index, between 0 and 11.
 * @return The parameter's value.
 * @see setRaw8()
 */
unsigned char SequencerEvent::getRaw8(const unsigned int n) const
{
    if (n < 12) return m_event.data.raw8.d[n];
    return 0;
}

/**
 * Sets an event's raw 8 bits parameter.
 * @param n The parameter index, between 0 and 11.
 * @param value The parameter's value.
 */
void SequencerEvent::setRaw8(const unsigned int n, const unsigned char value)
{
    if (n < 12) m_event.data.raw8.d[n] = value;
}

/**
 * Releases the event record.
 * @deprecated the event record is not allocated, so you don't have to call this function
 */
void SequencerEvent::free()
{
    snd_seq_free_event(&m_event);
}

/**
 * Gets the encoded length of the event record.
 * @return The encoded length.
 */
int SequencerEvent::getEncodedLength()
{
    return snd_seq_event_length(&m_event);
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
SequencerEvent* SequencerEvent::clone() const
{
    return new SequencerEvent(&m_event);
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
ChannelEvent* ChannelEvent::clone() const
{
    return new ChannelEvent(&m_event);
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
KeyEvent* KeyEvent::clone() const
{
    return new KeyEvent(&m_event);
}

/**
 * Constructor using proper attribute values.
 * @param ch MIDI Channel.
 * @param key MIDI note.
 * @param vel Note velocity.
 * @param dur Note duration.
 */
NoteEvent::NoteEvent(const int ch, const int key, const int vel, const int dur) : KeyEvent()
{
    snd_seq_ev_set_note(&m_event, ch, key, vel, dur);
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
NoteEvent* NoteEvent::clone() const
{
    return new NoteEvent(&m_event);
}

/**
 * Constructor using proper attribute values.
 * @param ch MIDI Channel.
 * @param key MIDI note.
 * @param vel Note velocity.
 */
NoteOnEvent::NoteOnEvent(int ch, int key, int vel) : KeyEvent()
{
    snd_seq_ev_set_noteon(&m_event, ch, key, vel);
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
NoteOnEvent* NoteOnEvent::clone() const
{
    return new NoteOnEvent(&m_event);
}

/**
 * Constructor using proper attribute values.
 * @param ch MIDI Channel.
 * @param key MIDI note.
 * @param vel Note velocity.
 */
NoteOffEvent::NoteOffEvent(int ch, int key, int vel) : KeyEvent()
{
    snd_seq_ev_set_noteoff(&m_event, ch, key, vel);
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
NoteOffEvent* NoteOffEvent::clone() const
{
    return new NoteOffEvent(&m_event);
}

/**
 * Constructor using proper attribute values.
 * @param ch MIDI Channel.
 * @param key MIDI note.
 * @param vel Note velocity.
 */
KeyPressEvent::KeyPressEvent(int ch, int key, int vel) : KeyEvent()
{
    snd_seq_ev_set_keypress(&m_event, ch, key, vel);
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
KeyPressEvent* KeyPressEvent::clone() const
{
    return new KeyPressEvent(&m_event);
}

/**
 * Constructor using proper attribute values.
 * @param ch MIDI Channel.
 * @param cc MIDI Controller number.
 * @param val Controller value.
 */
ControllerEvent::ControllerEvent(int ch, int cc, int val) : ChannelEvent()
{
    snd_seq_ev_set_controller(&m_event, ch, cc, val);
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
ControllerEvent* ControllerEvent::clone() const
{
    return new ControllerEvent(&m_event);
}

/**
 * Constructor using proper attribute values.
 * @param ch MIDI Channel.
 * @param val MIDI Program number.
 */
ProgramChangeEvent::ProgramChangeEvent(int ch, int val) : ChannelEvent()
{
    snd_seq_ev_set_pgmchange(&m_event, ch, val);
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
ProgramChangeEvent* ProgramChangeEvent::clone() const
{
    return new ProgramChangeEvent(&m_event);
}

/**
 * Constructor using proper attribute values.
 * @param ch MIDI Channel.
 * @param val Pitch Bend value. Zero centered from -8192 to 8191.
 */
PitchBendEvent::PitchBendEvent(int ch, int val) : ChannelEvent()
{
    snd_seq_ev_set_pitchbend(&m_event, ch, val);
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
PitchBendEvent* PitchBendEvent::clone() const
{
    return new PitchBendEvent(&m_event);
}

/**
 * Constructor using proper attribute values.
 * @param ch MIDI Channel.
 * @param val Aftertouch value.
 */
ChanPressEvent::ChanPressEvent(int ch, int val) : ChannelEvent()
{
    snd_seq_ev_set_chanpress(&m_event, ch, val);
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
ChanPressEvent* ChanPressEvent::clone() const
{
    return new ChanPressEvent(&m_event);
}

/**
 * Default constructor.
 */
VariableEvent::VariableEvent()
    : SequencerEvent()
{
    m_data.clear();
    snd_seq_ev_set_variable ( &m_event, m_data.size(), m_data.data() );
}

/**
 * Constructor from an ALSA event record.
 * @param event ALSA event record.
 */
VariableEvent::VariableEvent(const snd_seq_event_t* event)
    : SequencerEvent(event)
{
    m_data = QByteArray((char *) event->data.ext.ptr,
                        event->data.ext.len);
    snd_seq_ev_set_variable ( &m_event, m_data.size(), m_data.data() );
}

/**
 * Constructor from an arbitrary data array.
 * @param data A data byte array.
 */
VariableEvent::VariableEvent(const QByteArray& data)
    : SequencerEvent()
{
    m_data = data;
    snd_seq_ev_set_variable ( &m_event, m_data.size(), m_data.data() );
}

/**
 * Copy constructor.
 * @param other Another VariableEvent instance.
s */
VariableEvent::VariableEvent(const VariableEvent& other)
    : SequencerEvent(other)
{
    m_data = other.m_data;
    snd_seq_ev_set_variable ( &m_event, m_data.size(), m_data.data() );
}

/**
 * Constructor from a data pointer.
 * @param datalen Length of the data.
 * @param dataptr Pointer the data.
 */
VariableEvent::VariableEvent(const unsigned int datalen, char* dataptr)
    : SequencerEvent()
{
    m_data = QByteArray(dataptr, datalen);
    snd_seq_ev_set_variable( &m_event, m_data.size(), m_data.data() );
}

/**
 * Assignment operator.
 * @param other Another VariableEvent object reference
 * @return Pointer to this object
 */
VariableEvent& VariableEvent::operator=(const VariableEvent& other)
{
    m_event = other.m_event;
    m_data = other.m_data;
    snd_seq_ev_set_variable ( &m_event, m_data.size(), m_data.data() );
    return *this;
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
VariableEvent* VariableEvent::clone() const
{
    return new VariableEvent(&m_event);
}

/**
 * Default constructor.
 */
SysExEvent::SysExEvent()
    : VariableEvent()
{
    snd_seq_ev_set_sysex( &m_event, m_data.size(), m_data.data() );
}

/**
 * Constructor from an ALSA event record.
 * @param event ALSA event record.
 */
SysExEvent::SysExEvent(const snd_seq_event_t* event)
    : VariableEvent(event)
{
    snd_seq_ev_set_sysex( &m_event, m_data.size(), m_data.data() );
}

/**
 * Constructor from a data array.
 * @param data A data byte array.
 */
SysExEvent::SysExEvent(const QByteArray& data)
    : VariableEvent(data)
{
    snd_seq_ev_set_sysex( &m_event, m_data.size(), m_data.data() );
}

/**
 * Copy constructor.
 * @param other Another SysExEvent object reference.
 */
SysExEvent::SysExEvent(const SysExEvent& other)
    : VariableEvent(other)
{
    snd_seq_ev_set_sysex( &m_event, m_data.size(), m_data.data() );
}

/**
 * Constructor taking a data pointer and length
 * @param datalen Data length
 * @param dataptr Data pointer
 */
SysExEvent::SysExEvent(const unsigned int datalen, char* dataptr)
    : VariableEvent( datalen, dataptr )
{
    snd_seq_ev_set_sysex( &m_event, m_data.size(), m_data.data() );
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
SysExEvent* SysExEvent::clone() const
{
    return new SysExEvent(&m_event);
}

/**
 * Assignment operator.
 * @param other Another SysExEvent object reference
 * @return pointer to this object
 */
SysExEvent &SysExEvent::operator=(const SysExEvent &other)
{
    m_event = other.m_event;
    m_data = other.m_data;
    snd_seq_ev_set_sysex(&m_event, m_data.size(), m_data.data());
    return *this;
}

/**
 * Default constructor
 */
TextEvent::TextEvent()
    : VariableEvent(), m_textType(1)
{
    setSequencerType(SND_SEQ_EVENT_USR_VAR0);
}

/**
 * Constructor from an ALSA sequencer record.
 * @param event ALSA sequencer record.
 */
TextEvent::TextEvent(const snd_seq_event_t* event)
    : VariableEvent(event), m_textType(1)
{
    setSequencerType(SND_SEQ_EVENT_USR_VAR0);
}

/**
 * Constructor from a given string
 * @param text The event's text
 * @param textType The SMF text type
 */
TextEvent::TextEvent(const QString& text, const int textType)
    : VariableEvent(text.toUtf8()), m_textType(textType)
{
    setSequencerType(SND_SEQ_EVENT_USR_VAR0);
}

/**
 * Copy constructor
 * @param other An existing TextEvent object reference
 */
TextEvent::TextEvent(const TextEvent& other)
    : VariableEvent(other)
{
    setSequencerType(SND_SEQ_EVENT_USR_VAR0);
    m_textType = other.getTextType();
}

/**
 * Constructor from a data pointer and length
 * @param datalen Data length
 * @param dataptr Data pointer
 */
TextEvent::TextEvent(const unsigned int datalen, char* dataptr)
    : VariableEvent(datalen, dataptr), m_textType(1)
{
    setSequencerType(SND_SEQ_EVENT_USR_VAR0);
}

/**
 * Gets the event's text content.
 * @return The text content.
 */
QString TextEvent::getText() const
{
    return QString::fromUtf8(m_data.data(), m_data.size());
}

/**
 * Gets the event's SMF text type.
 * @return The SMF text type.
 */
int TextEvent::getTextType() const
{
    return m_textType;
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
TextEvent* TextEvent::clone() const
{
    return new TextEvent(&m_event);
}

/**
 * Assignment operator.
 * @param other Another TextEvent object reference
 * @return pointer to this object
 */
TextEvent &TextEvent::operator=(const TextEvent &other)
{
    m_event = other.m_event;
    m_data = other.m_data;
    m_textType = other.getTextType();
    snd_seq_ev_set_variable(&m_event, m_data.size(), m_data.data());
    setSequencerType(SND_SEQ_EVENT_USR_VAR0);
    return *this;
}

/**
 * Constructor
 * @param type The event's type
 */
SystemEvent::SystemEvent(const snd_seq_event_type_t type) : SequencerEvent()
{
    snd_seq_ev_set_fixed(&m_event);
    setSequencerType(type);
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
SystemEvent* SystemEvent::clone() const
{
    return new SystemEvent(&m_event);
}

/**
 * Constructor
 * @param type Event type
 * @param queue Queue number
 * @param value Value
 */
QueueControlEvent::QueueControlEvent(snd_seq_event_type_t type, int queue, int value)
    : SequencerEvent()
{
    snd_seq_ev_set_queue_control(&m_event, type, queue, value);
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
QueueControlEvent* QueueControlEvent::clone() const
{
    return new QueueControlEvent(&m_event);
}

/**
 * Constructor
 * @param type The event's type
 * @param val Value
 */
ValueEvent::ValueEvent(const snd_seq_event_type_t type, int val) : SequencerEvent()
{
    snd_seq_ev_set_fixed(&m_event);
    setSequencerType(type);
    setValue(val);
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
ValueEvent* ValueEvent::clone() const
{
    return new ValueEvent(&m_event);
}

/**
 * Constructor
 * @param queue Queue number.
 * @param tempo Tempo value in microseconds per quarter note.
 */
TempoEvent::TempoEvent(int queue, int tempo) : QueueControlEvent()
{
    snd_seq_ev_set_queue_tempo(&m_event, queue, tempo);
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
TempoEvent* TempoEvent::clone() const
{
    return new TempoEvent(&m_event);
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
ClientEvent* ClientEvent::clone() const
{
    return new ClientEvent(&m_event);
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
PortEvent* PortEvent::clone() const
{
    return new PortEvent(&m_event);
}

/**
 * Clone this object returning a pointer to the new object
 * @return pointer to the new object
 */
SubscriptionEvent* SubscriptionEvent::clone() const
{
    return new SubscriptionEvent(&m_event);
}

/**
 * Default constructor.
 */
RemoveEvents::RemoveEvents()
{
    snd_seq_remove_events_malloc(&m_Info);
}

/**
 * Copy constructor.
 * @param other An existing RemoveEvents object reference.
 */
RemoveEvents::RemoveEvents(const RemoveEvents& other)
{
    snd_seq_remove_events_malloc(&m_Info);
    snd_seq_remove_events_copy(m_Info, other.m_Info);
}

/**
 * Constructor from an ALSA remove events object pointer.
 * @param other An ALSA remove events object pointer.
 */
RemoveEvents::RemoveEvents(snd_seq_remove_events_t* other)
{
    snd_seq_remove_events_malloc(&m_Info);
    snd_seq_remove_events_copy(m_Info, other);
}

/**
 * Destructor.
 */
RemoveEvents::~RemoveEvents()
{
    snd_seq_remove_events_free(m_Info);
}

/**
 * Create a new object copied from this object and return a pointer to the copy.
 * @return A pointer to the new object.
 */
RemoveEvents*
RemoveEvents::clone()
{
    return new RemoveEvents(m_Info);
}

/**
 * Assignment operator.
 * @param other An existing RemoveEvents object reference.
 * @return This object.
 */
RemoveEvents&
RemoveEvents::operator=(const RemoveEvents& other)
{
    if (this == &other)
        return *this;
    snd_seq_remove_events_copy(m_Info, other.m_Info);
    return *this;
}

/**
 * Gets the allocated size of the ALSA remove events object.
 * @return The size of the ALSA remove events object.
 */
int
RemoveEvents::getSizeOfInfo() const
{
    return snd_seq_remove_events_sizeof();
}

/**
 * Gets the MIDI channel.
 * @return The MIDI channel.
 * @see setChannel()
 */
int
RemoveEvents::getChannel()
{
    return snd_seq_remove_events_get_channel(m_Info);
}

/**
 * Gets the condition.
 * @return The condition.
 * @see setCondition()
 */
unsigned int
RemoveEvents::getCondition()
{
    return snd_seq_remove_events_get_condition(m_Info);
}

/**
 * Gets the destination.
 * @return The destination record pointer.
 * @see setDest()
 */
const snd_seq_addr_t*
RemoveEvents::getDest()
{
    return snd_seq_remove_events_get_dest(m_Info);
}

/**
 * Gets the event type.
 * @return The event type.
 * @see setEventType()
 */
int
RemoveEvents::getEventType()
{
    return snd_seq_remove_events_get_event_type(m_Info);
}

/**
 * Gets the queue number.
 * @return The queue number.
 * @see setQueue()
 */
int
RemoveEvents::getQueue()
{
    return snd_seq_remove_events_get_queue(m_Info);
}

/**
 * Gets the numeric tag.
 * @return The numeric tag.
 * @see setTag()
 */
int
RemoveEvents::getTag()
{
    return snd_seq_remove_events_get_tag(m_Info);
}

/**
 * Gets the timestamp.
 * @return The timestamp.
 * @see setTime()
 */
const snd_seq_timestamp_t*
RemoveEvents::getTime()
{
    return snd_seq_remove_events_get_time(m_Info);
}

/**
 * Gets the MIDI channel.
 * @param chan The MIDI channel.
 * @see getChannel()
 */
void
RemoveEvents::setChannel(int chan)
{
    snd_seq_remove_events_set_channel(m_Info, chan);
}

/**
 * Sets the flags of the conditional event's removal. This condition is a
 * bitmap of the combination (OR) the following auto-described flags:
 * <ul>
 * <li>SND_SEQ_REMOVE_INPUT</li>
 * <li>SND_SEQ_REMOVE_OUTPUT</li>
 * <li>SND_SEQ_REMOVE_DEST</li>
 * <li>SND_SEQ_REMOVE_DEST_CHANNEL</li>
 * <li>SND_SEQ_REMOVE_TIME_BEFORE</li>
 * <li>SND_SEQ_REMOVE_TIME_AFTER</li>
 * <li>SND_SEQ_REMOVE_TIME_TICK</li>
 * <li>SND_SEQ_REMOVE_EVENT_TYPE</li>
 * <li>SND_SEQ_REMOVE_IGNORE_OFF</li>
 * <li>SND_SEQ_REMOVE_TAG_MATCH</li>
 * </ul>
 * @param cond The condition bitmap.
 * @see getCondition()
 */
void
RemoveEvents::setCondition(unsigned int cond)
{
    snd_seq_remove_events_set_condition(m_Info, cond);
}

/**
 * Set the destination address.
 * @param dest A pointer to the destination address record.
 * @see getDest()
 */
void
RemoveEvents::setDest(const snd_seq_addr_t* dest)
{
    snd_seq_remove_events_set_dest(m_Info, dest);
}

/**
 * Sets the event type.
 * @param type The event type.
 * @see getEventType()
 */
void
RemoveEvents::setEventType(int type)
{
    snd_seq_remove_events_set_event_type(m_Info, type);
}

/**
 * Sets the queue number.
 * @param queue The queue number.
 * @see getQueue()
 */
void
RemoveEvents::setQueue(int queue)
{
    snd_seq_remove_events_set_queue(m_Info, queue);
}

/**
 * Sets the numeric tag.
 * @param tag The numeric tag.
 * @see getTag()
 */
void
RemoveEvents::setTag(int tag)
{
    snd_seq_remove_events_set_tag(m_Info, tag);
}

/**
 * Sets the timestamp.
 * @param time A pointer to the timestamp record.
 * @see getTime()
 */
void
RemoveEvents::setTime(const snd_seq_timestamp_t* time)
{
    snd_seq_remove_events_set_time(m_Info, time);
}

/**
 * MidiCodec constructor
 * @param bufsize The buffer size of the CODEC
 * @param parent The optional parent object
 */
MidiCodec::MidiCodec( int bufsize, QObject* parent ) : QObject(parent)
{
    DRUMSTICK_ALSA_CHECK_ERROR(snd_midi_event_new(bufsize, &m_Info));
}

/**
 * Destructor
 */
MidiCodec::~MidiCodec()
{
    snd_midi_event_free(m_Info);
}

/**
 * CODEC initialization.
 */
void
MidiCodec::init()
{
    snd_midi_event_init(m_Info);
}

/**
 * Decode from event to bytes.
 * @param buf A buffer to get the results
 * @param count Available bytes in MIDI byte stream
 * @param ev The input event
 * @return The number of written bytes if success.
 */
long
MidiCodec::decode(unsigned char *buf,
                  long count,
                  const snd_seq_event_t *ev)
{
    return DRUMSTICK_ALSA_CHECK_WARNING(snd_midi_event_decode(m_Info, buf, count, ev));
}

/**
 * Encode from byte stream.
 * @param buf MIDI byte stream
 * @param count Bytes of MIDI byte stream to encode
 * @param ev Result - sequencer event
 * @return Number of written bytes if success.
 */
long
MidiCodec::encode(const unsigned char *buf,
                  long count,
                  snd_seq_event_t *ev)
{
    return DRUMSTICK_ALSA_CHECK_WARNING(snd_midi_event_encode(m_Info, buf, count, ev));
}

/**
 * Read one byte and encode to sequencer event if finished.
 * @param c A byte of MIDI stream
 * @param ev Result - sequencer event
 * @return 1 - sequencer event is completed, 0 - next byte is required for completion, otherwise a negative error code
 */
long
MidiCodec::encode(int c,
                  snd_seq_event_t *ev)
{
    return DRUMSTICK_ALSA_CHECK_WARNING(snd_midi_event_encode_byte(m_Info, c, ev));
}

/**
 * Enable MIDI running status (command merge)
 * @param enable True to enable, false to disable.
 */
void
MidiCodec::enableRunningStatus(bool enable)
{
    snd_midi_event_no_status(m_Info, enable ? 0 : 1);
}

/**
 * Reset MIDI decode parser.
 */
void
MidiCodec::resetDecoder()
{
    snd_midi_event_reset_decode(m_Info);
}

/**
 * Reset MIDI encode parser.
 */
void
MidiCodec::resetEncoder()
{
    snd_midi_event_reset_encode(m_Info);
}

/**
 * Resize the CODEC buffer
 * @param bufsize New buffer size.
 */
void
MidiCodec::resizeBuffer(int bufsize)
{
    DRUMSTICK_ALSA_CHECK_WARNING(snd_midi_event_resize_buffer(m_Info, bufsize));
}

QString typeOfEvent(const SequencerEvent &v)
{
    int status;
    char *realname = abi::__cxa_demangle(typeid(v).name(), 0, 0, &status);
    QString name(realname && realname[0] ? realname : "drumstick::ALSA::SequencerEvent");
    free(realname);
    return name;
}

QDebug operator<<(QDebug d, const SequencerEvent &event)
{
    QDebugStateSaver saver(d);
    d.noquote() << typeOfEvent(event);
    return d;
}

QDebug operator<<(QDebug d, const SequencerEvent *event)
{
    QDebugStateSaver saver(d);
    d.noquote().nospace() << typeOfEvent(*event) << "*";
    return d;
}

} // namespace ALSA
} // namespace drumstick