DJMFix.cpp
author František Kučera <franta-hg@frantovo.cz>
Sun, 20 Dec 2020 01:56:47 +0100
branchv_0
changeset 8 87dfa7c89294
parent 7 889b4b8737bd
child 12 15d87fdd6e6c
permissions -rw-r--r--
first working version (still dirty, but working)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
4ee5349be21d project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     1
/**
4ee5349be21d project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     2
 * DJM-Fix
4ee5349be21d project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     3
 * Copyright © 2020 František Kučera (Frantovo.cz, GlobalCode.info)
4ee5349be21d project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     4
 *
4ee5349be21d project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     5
 * This program is free software: you can redistribute it and/or modify
4ee5349be21d project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
4ee5349be21d project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     7
 * the Free Software Foundation, version 3 of the License.
4ee5349be21d project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     8
 *
4ee5349be21d project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
4ee5349be21d project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
4ee5349be21d project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4ee5349be21d project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    12
 * GNU General Public License for more details.
4ee5349be21d project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    13
 *
4ee5349be21d project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
4ee5349be21d project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    15
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
4ee5349be21d project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    16
 */
1
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    17
#include <iostream>
5
ef8f4023e32e sending and receiving MIDI messages through ALSA (the dirty way)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    18
#include <iomanip>
2
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    19
#include <thread>
6
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    20
#include <mutex>
5
ef8f4023e32e sending and receiving MIDI messages through ALSA (the dirty way)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    21
#include <atomic>
2
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    22
#include <chrono>
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    23
#include <stdexcept>
6
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    24
#include <vector>
1
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    25
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    26
#include "DJMFix.h"
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    27
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    28
namespace djmfix {
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    29
6
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    30
using Bytes = std::vector<uint8_t>;
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    31
1
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    32
class DJMFixImpl : public DJMFix {
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    33
private:
2
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    34
	MidiSender* midiSender;
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    35
	std::thread keepAliveThread;
6
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    36
	std::recursive_mutex midiMutex;
5
ef8f4023e32e sending and receiving MIDI messages through ALSA (the dirty way)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    37
	std::atomic<bool> running{false};
ef8f4023e32e sending and receiving MIDI messages through ALSA (the dirty way)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    38
	std::atomic<bool> stopped{false};
8
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    39
	std::atomic<bool> sendKeepAlive{false};
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    40
	Bytes seed2;
1
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    41
2
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    42
	void run() {
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    43
		while (!stopped) {
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    44
			std::cerr << "DJMFixImpl::run()" << std::endl; // TODO: do not mess STDIO
8
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    45
			if (sendKeepAlive) send({0xf0, 0x00, 0x40, 0x05, 0x00, 0x00, 0x00, 0x17, 0x00, 0x50, 0x01, 0xf7});
2
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    46
			std::this_thread::sleep_for(std::chrono::milliseconds(200));
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    47
		}
1
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    48
	}
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    49
6
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    50
	void send(const MidiMessage& midiMessage) {
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    51
		std::lock_guard<std::recursive_mutex> lock(midiMutex);
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    52
		midiSender->send(midiMessage);
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    53
	}
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    54
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    55
	std::string toString(const Bytes& midiMessage) {
5
ef8f4023e32e sending and receiving MIDI messages through ALSA (the dirty way)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    56
		std::stringstream result;
ef8f4023e32e sending and receiving MIDI messages through ALSA (the dirty way)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    57
		for (uint8_t b : midiMessage) result << std::hex << std::setw(2) << std::setfill('0') << (int) b;
ef8f4023e32e sending and receiving MIDI messages through ALSA (the dirty way)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    58
		return result.str();
ef8f4023e32e sending and receiving MIDI messages through ALSA (the dirty way)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    59
	}
ef8f4023e32e sending and receiving MIDI messages through ALSA (the dirty way)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    60
6
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    61
	Bytes normalize(const Bytes& data) {
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    62
		if (data.size() % 2) throw std::invalid_argument("data before normalization must have even number of bytes");
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    63
		Bytes result;
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    64
		result.reserve(data.size() / 2);
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    65
		for (size_t i = 0; i < data.size() / 2; i++) result.push_back((data[i * 2] & 0x0F) << 4 | (data[i * 2 + 1] & 0x0F));
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    66
		return result;
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    67
	}
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    68
8
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    69
	Bytes denormalize(const Bytes& data) {
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    70
		Bytes result;
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    71
		result.reserve(data.size()*2);
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    72
		for (size_t i = 0; i < data.size(); i++) {
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    73
			result.push_back(data[i] >> 4);
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    74
			result.push_back(data[i] & 0x0F);
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    75
		}
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    76
		return result;
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    77
	}
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    78
6
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    79
	uint32_t fnv32hash(const Bytes& buff) {
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    80
		uint32_t hash = 0x811c9dc5;
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    81
		for (uint8_t b : buff) hash = ((b^hash) * 0x1000193);
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    82
		return hash;
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    83
	}
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    84
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    85
	Bytes toBytes(const uint32_t value) {
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    86
		Bytes result;
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    87
		result.reserve(4);
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    88
		result.push_back(value >> 24);
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    89
		result.push_back(value >> 16);
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    90
		result.push_back(value >> 8);
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    91
		result.push_back(value >> 0);
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    92
		return result;
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    93
	}
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    94
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    95
	bool equals(Bytes a, Bytes b) {
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    96
		if (a.size() != b.size()) return false;
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    97
		for (size_t i = 0; i < a.size(); i++) if (a[i] != b[i]) return false;
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    98
		return true;
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    99
	}
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   100
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   101
	template<typename T> std::vector<T> concat(const std::vector<T>& a, const std::vector<T>& b, const std::vector<T>& c = {}) {
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   102
		std::vector<T> result;
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   103
		result.reserve(a.size() + b.size() + c.size());
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   104
		for (size_t i = 0; i < a.size(); i++) result.push_back(a[i]);
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   105
		for (size_t i = 0; i < b.size(); i++) result.push_back(b[i]);
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   106
		for (size_t i = 0; i < c.size(); i++) result.push_back(c[i]);
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   107
		return result;
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   108
	}
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   109
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   110
	template<typename T> std::vector<T> xOR(const std::vector<T>& a, const std::vector<T>& b) {
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   111
		if (a.size() != b.size()) throw std::invalid_argument("xor: both must be the same length");
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   112
		std::vector<T> result;
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   113
		result.reserve(a.size());
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   114
		for (size_t i = 0; i < a.size(); i++) result.push_back(a[i] ^ b[i]);
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   115
		return result;
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   116
	}
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   117
2
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   118
public:
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   119
1
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   120
	virtual ~DJMFixImpl() override {
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   121
		std::cerr << "~DJMFixImpl()" << std::endl; // TODO: do not mess STDIO
2
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   122
		if (running) stop();
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   123
	}
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   124
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   125
	void setMidiSender(MidiSender* midiSender) {
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   126
		std::cerr << "DJMFixImpl::setMidiSender()" << std::endl; // TODO: do not mess STDIO
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   127
		this->midiSender = midiSender;
1
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   128
	}
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   129
6
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   130
	virtual void receive(const MidiMessage& midiMessage) override {
5
ef8f4023e32e sending and receiving MIDI messages through ALSA (the dirty way)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   131
		std::cerr << "DJMFixImpl::receive(): size = " << midiMessage.size() << " data = " << toString(midiMessage) << std::endl; // TODO: do not mess STDIO
6
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   132
		std::lock_guard<std::recursive_mutex> lock(midiMutex);
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   133
7
889b4b8737bd send the second message as a response (instead of after a fixed delay)
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
   134
889b4b8737bd send the second message as a response (instead of after a fixed delay)
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
   135
		if (midiMessage.size() == 12 && midiMessage[9] == 0x11) {
889b4b8737bd send the second message as a response (instead of after a fixed delay)
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
   136
			send({0xf0, 0x00, 0x40, 0x05, 0x00, 0x00, 0x00, 0x17, 0x00, 0x12, 0x2a, 0x01, 0x0b, 0x50, 0x69, 0x6f, 0x6e, 0x65, 0x65, 0x72, 0x44, 0x4a, 0x02, 0x0b, 0x72, 0x65, 0x6b, 0x6f, 0x72, 0x64, 0x62, 0x6f, 0x78, 0x03, 0x12, 0x02, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x03, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00, 0xf7});
889b4b8737bd send the second message as a response (instead of after a fixed delay)
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
   137
		} else if (midiMessage.size() == 54 && midiMessage[9] == 0x13 && midiMessage[33] == 0x04 && midiMessage[43] == 0x03) {
6
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   138
			Bytes hash1(midiMessage.begin() + 35, midiMessage.begin() + 35 + 8);
8
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   139
			seed2 = Bytes(midiMessage.begin() + 45, midiMessage.begin() + 45 + 8);
6
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   140
			hash1 = normalize(hash1);
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   141
			seed2 = normalize(seed2);
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   142
			std::cerr << "DJMFixImpl::receive(): got message with hash1 = " << toString(hash1) << " and seed2 = " << toString(seed2) << std::endl; // TODO: do not mess STDIO
5
ef8f4023e32e sending and receiving MIDI messages through ALSA (the dirty way)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   143
6
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   144
			Bytes seed0 = {0x68, 0x01, 0x31, 0xFB};
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   145
			Bytes seed1 = {0x29, 0x00, 0x00, 0x00, 0x23, 0x48, 0x00, 0x00};
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   146
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   147
			Bytes hash1check = toBytes(fnv32hash(concat(seed1, xOR(seed0, seed2))));
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   148
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   149
			if (equals(hash1, hash1check)) {
8
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   150
				std::cerr << "DJMFixImpl::receive(): hash1 verification: OK" << std::endl; // TODO: do not mess STDIO
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   151
				Bytes hash2 = toBytes(fnv32hash(concat(seed2, xOR(seed0, seed2))));
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   152
				send(concat({0xf0, 0x00, 0x40, 0x05, 0x00, 0x00, 0x00, 0x17, 0x00, 0x14, 0x38, 0x01, 0x0b, 0x50, 0x69, 0x6f, 0x6e, 0x65, 0x65, 0x72, 0x44, 0x4a, 0x02, 0x0b, 0x72, 0x65, 0x6b, 0x6f, 0x72, 0x64, 0x62, 0x6f, 0x78, 0x04, 0x0a}, concat(denormalize(hash2),{0x05, 0x16, 0x05, 0x09, 0x0b, 0x05, 0x04, 0x0b, 0x0f, 0x0e, 0x0e, 0x04, 0x04, 0x0a, 0x05, 0x0a, 0x0c, 0x08, 0x0e, 0x04, 0x0c, 0x05, 0xf7})));
6
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   153
			} else {
8
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   154
				std::cerr
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   155
						<< "DJMFixImpl::receive(): hash1 verification failed: "
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   156
						<< " midiMessage = " << toString(midiMessage)
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   157
						<< " seed0 = " << toString(seed0)
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   158
						<< " seed1 = " << toString(seed1)
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   159
						<< " seed2 = " << toString(seed2)
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   160
						<< " hash1 = " << toString(hash1)
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   161
						<< " hash1check = " << toString(hash1check)
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   162
						<< std::endl;
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   163
				// TODO: graceful death
6
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   164
			}
8
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   165
		} else if (midiMessage.size() == 12 && midiMessage[9] == 0x15) {
87dfa7c89294 first working version (still dirty, but working)
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   166
			sendKeepAlive = true;
5
ef8f4023e32e sending and receiving MIDI messages through ALSA (the dirty way)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   167
		}
ef8f4023e32e sending and receiving MIDI messages through ALSA (the dirty way)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   168
1
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   169
	}
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   170
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   171
	void start() override {
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   172
		std::cerr << "DJMFixImpl::start()" << std::endl; // TODO: do not mess STDIO
5
ef8f4023e32e sending and receiving MIDI messages through ALSA (the dirty way)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   173
		if (midiSender == nullptr) throw std::logic_error("need a midiSender when starting DJMFix");
ef8f4023e32e sending and receiving MIDI messages through ALSA (the dirty way)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   174
ef8f4023e32e sending and receiving MIDI messages through ALSA (the dirty way)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   175
		// TODO: methods for parsing and constructing messages from parts (TLV)
6
bddcf2bf29f2 verify the response from the mixer
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
   176
		send({0xf0, 0x00, 0x40, 0x05, 0x00, 0x00, 0x00, 0x17, 0x00, 0x50, 0x01, 0xf7});
2
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   177
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   178
		keepAliveThread = std::thread(&DJMFixImpl::run, this);
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   179
		running = true;
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   180
1
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   181
	}
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   182
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   183
	void stop() override {
2
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   184
		stopped = true;
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   185
		keepAliveThread.join();
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   186
		running = false;
1
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   187
		std::cerr << "DJMFixImpl::stop()" << std::endl; // TODO: do not mess STDIO
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   188
	}
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   189
};
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   190
2
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   191
DJMFix* create() {
f34476ab597f background thread + AlsaBridge skeleton
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   192
	return new DJMFixImpl();
1
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   193
}
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   194
98274757fcf6 more bones
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   195
}