src/JackHandler.h
author František Kučera <franta-hg@frantovo.cz>
Tue, 29 Sep 2020 20:49:04 +0200
branchv_0
changeset 2 01553c2ffa1d
parent 1 7f3ab657dc50
child 3 baa8055c5b10
permissions -rw-r--r--
configurable JACK client name

/**
 * Relational pipes
 * Copyright © 2018 František Kučera (Frantovo.cz, GlobalCode.info)
 *
 * This program 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, version 3 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
#pragma once

#include <memory>
#include <string>
#include <vector>
#include <iostream>
#include <sstream>
#include <locale>
#include <codecvt>
#include <sys/mman.h>

#include <jack/jack.h>
#include <jack/midiport.h>
#include <jack/ringbuffer.h>

#include <relpipe/common/type/typedefs.h>
#include <relpipe/reader/TypeId.h>
#include <relpipe/reader/handlers/RelationalReaderStringHandler.h>
#include <relpipe/reader/handlers/AttributeMetadata.h>

#include "Configuration.h"
#include "JackException.h"

namespace relpipe {
namespace out {
namespace jack {

class JackHandler : public relpipe::reader::handlers::RelationalReaderStringHandler {
private:
	Configuration& configuration;
	std::wstring_convert<std::codecvt_utf8<wchar_t>> convertor; // TODO: local system encoding

	jack_client_t* jackClient = nullptr;
	jack_port_t* jackPort = nullptr;
	//jack_ringbuffer_t* ringBuffer = nullptr;
public:

	JackHandler(Configuration& configuration) : configuration(configuration) {
		// Initialize JACK connection:
		std::string clientName = convertor.to_bytes(configuration.jackClientName);
		jackClient = jack_client_open(clientName.c_str(), JackNullOption, nullptr);
		if (jackClient == nullptr) throw JackException(L"Could not create JACK client.");

		//ringBuffer = jack_ringbuffer_create(RING_BUFFER_SIZE * sizeof (MidiMessage));

		//jack_set_process_callback(jackClient, relpipe::in::jack::enqueueMessage, this);
		// TODO: report also other events (connections etc.)

		jackPort = jack_port_register(jackClient, "output", JACK_DEFAULT_MIDI_TYPE, JackPortIsOutput, 0);
		if (jackPort == nullptr) throw JackException(L"Could not register port.");

		if (mlockall(MCL_CURRENT | MCL_FUTURE)) fwprintf(stderr, L"Warning: Can not lock memory.\n");

		int jackError = jack_activate(jackClient);
		if (jackError) throw JackException(L"Could not activate client.");
	}

	void startRelation(const relpipe::common::type::StringX name, std::vector<relpipe::reader::handlers::AttributeMetadata> attributes) override {
		
	}

	void attribute(const relpipe::common::type::StringX& value) override {
		
	}

	void endOfPipe() {
		
	}

	virtual ~JackHandler() {
		// Close JACK connection:
		jack_deactivate(jackClient);
		jack_client_close(jackClient);
		//jack_ringbuffer_free(ringBuffer);
	}

};

}
}
}