Merge branch 'feature/shared-lib' into develop

This commit is contained in:
Paul Ferrand 2019-11-17 22:22:58 +01:00
commit 5c1d9cc9d5
7 changed files with 382 additions and 4 deletions

View file

@ -10,6 +10,9 @@ endif()
set(CMAKE_POLICY_DEFAULT_CMP0069 NEW) # To override the policy in abseil and benchmark
set(CMAKE_INTERPROCEDURAL_OPTIMIZATION TRUE)
# Enable PIC
# set(POSITION_INDEPENDENT_CODE ON)
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND NOT ANDROID)
set(USE_LIBCPP ON CACHE BOOL "Use libc++ with clang")
add_compile_options(-stdlib=libc++)
@ -18,7 +21,8 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND NOT ANDROID)
add_link_options(-lc++abi) # New command on CMake master, not in 3.12 release
endif()
if (UNIX)
if (UNIX)
add_compile_options(-fPIC)
add_compile_options(-Wall)
add_compile_options(-Wextra)
add_compile_options(-ffast-math)

View file

@ -59,7 +59,6 @@ target_sources(sfizz_parser PRIVATE Parser.cpp Opcode.cpp)
target_include_directories(sfizz_parser PUBLIC .)
target_link_libraries(sfizz_parser PRIVATE absl::strings)
add_library(sfizz STATIC ${SFIZZ_SOURCES})
target_link_libraries(sfizz PRIVATE sfizz_parser)
target_include_directories(sfizz PUBLIC .)
@ -74,3 +73,9 @@ target_link_libraries(sfizz PRIVATE sndfile absl::flat_hash_map)
add_library(sfizz::parser ALIAS sfizz_parser)
add_library(sfizz::sfizz ALIAS sfizz)
add_library(sfizz_shared SHARED)
set_target_properties(sfizz_shared PROPERTIES OUTPUT_NAME sfizz)
# set_target_properties(sfizz_shared PROPERTIES POSITION_INDEPENDENT_CODE ON)
target_sources(sfizz_shared PRIVATE sfizz.cpp)
target_link_libraries(sfizz_shared sfizz::sfizz)

View file

@ -32,6 +32,7 @@
namespace sfz {
class Parser {
public:
virtual ~Parser() = default;
virtual bool loadSfzFile(const fs::path& file);
const std::map<std::string, std::string>& getDefines() const noexcept { return defines; }
const std::vector<fs::path>& getIncludedFiles() const noexcept { return includedFiles; }

View file

@ -293,13 +293,14 @@ sfz::Voice* sfz::Synth::findFreeVoice() noexcept
return {};
}
void sfz::Synth::getNumActiveVoices() const noexcept
int sfz::Synth::getNumActiveVoices() const noexcept
{
auto activeVoices { 0 };
for (const auto& voice : voices) {
if (!voice->isFree())
activeVoices++;
}
return activeVoices;
}
void sfz::Synth::garbageCollect() noexcept
@ -355,6 +356,7 @@ void sfz::Synth::noteOn(int delay, int channel, int noteNumber, uint8_t velocity
{
ASSERT(noteNumber < 128);
ASSERT(noteNumber >= 0);
// DBG("Received note " << noteNumber << "/" << +velocity << " ON at time " << delay);
midiState.noteOn(noteNumber, velocity);
@ -389,6 +391,7 @@ void sfz::Synth::noteOff(int delay, int channel, int noteNumber, uint8_t velocit
{
ASSERT(noteNumber < 128);
ASSERT(noteNumber >= 0);
// DBG("Received note " << noteNumber << "/" << +velocity << " OFF at time " << delay);
if (!canEnterCallback)
return;
@ -448,6 +451,19 @@ void sfz::Synth::cc(int delay, int channel, int ccNumber, uint8_t ccValue) noexc
}
}
void sfz::Synth::pitchWheel(int /* delay */, int /* channel */, int /* pitch */) noexcept
{
}
void sfz::Synth::aftertouch(int /* delay */, int /* channel */, uint8_t /* aftertouch */) noexcept
{
}
void sfz::Synth::tempo(int /* delay */, float /* secondsPerQuarter */) noexcept
{
}
int sfz::Synth::getNumRegions() const noexcept
{
return static_cast<int>(regions.size());

View file

@ -59,7 +59,7 @@ public:
void aftertouch(int delay, int channel, uint8_t aftertouch) noexcept;
void tempo(int delay, float secondsPerQuarter) noexcept;
void getNumActiveVoices() const noexcept;
int getNumActiveVoices() const noexcept;
void garbageCollect() noexcept;
protected:
void callback(absl::string_view header, const std::vector<Opcode>& members) final;

136
sfizz/sfizz.cpp Normal file
View file

@ -0,0 +1,136 @@
// Copyright (c) 2019, Paul Ferrand
// All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// 1. Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
// ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "Synth.h"
#include "sfizz.h"
#ifdef __cplusplus
extern "C" {
#endif
sfizz_synth_t* sfizz_create_synth()
{
return reinterpret_cast<sfizz_synth_t*>(new sfz::Synth());
}
bool sfizz_load_file(sfizz_synth_t* synth, char* path)
{
auto self = reinterpret_cast<sfz::Synth*>(synth);
return self->loadSfzFile(path);
}
void sfizz_free(sfizz_synth_t* synth)
{
delete reinterpret_cast<sfz::Synth*>(synth);
}
int sfizz_get_num_regions(sfizz_synth_t* synth)
{
auto self = reinterpret_cast<sfz::Synth*>(synth);
return self->getNumRegions();
}
int sfizz_get_num_groups(sfizz_synth_t* synth)
{
auto self = reinterpret_cast<sfz::Synth*>(synth);
return self->getNumGroups();
}
int sfizz_get_num_masters(sfizz_synth_t* synth)
{
auto self = reinterpret_cast<sfz::Synth*>(synth);
return self->getNumMasters();
}
int sfizz_get_num_curves(sfizz_synth_t* synth)
{
auto self = reinterpret_cast<sfz::Synth*>(synth);
return self->getNumCurves();
}
int sfizz_get_num_preloaded_samples(sfizz_synth_t* synth)
{
auto self = reinterpret_cast<sfz::Synth*>(synth);
return self->getNumPreloadedSamples();
}
int sfizz_get_num_active_voices(sfizz_synth_t* synth)
{
auto self = reinterpret_cast<sfz::Synth*>(synth);
return self->getNumActiveVoices();
}
void sfizz_set_samples_per_block(sfizz_synth_t* synth, int samples_per_block)
{
auto self = reinterpret_cast<sfz::Synth*>(synth);
self->setSamplesPerBlock(samples_per_block);
}
void sfizz_set_sample_rate(sfizz_synth_t* synth, float sample_rate)
{
auto self = reinterpret_cast<sfz::Synth*>(synth);
self->setSampleRate(sample_rate);
}
void sfizz_send_note_on(sfizz_synth_t* synth, int delay, int channel, int note_number, char velocity)
{
auto self = reinterpret_cast<sfz::Synth*>(synth);
self->noteOn(delay, channel, note_number, velocity);
}
void sfizz_send_note_off(sfizz_synth_t* synth, int delay, int channel, int note_number, char velocity)
{
auto self = reinterpret_cast<sfz::Synth*>(synth);
self->noteOff(delay, channel, note_number, velocity);
}
void sfizz_send_cc(sfizz_synth_t* synth, int delay, int channel, int cc_number, char cc_value)
{
auto self = reinterpret_cast<sfz::Synth*>(synth);
self->cc(delay, channel, cc_number, cc_value);
}
void sfizz_send_pitch_wheel(sfizz_synth_t* synth, int delay, int channel, int pitch)
{
auto self = reinterpret_cast<sfz::Synth*>(synth);
self->pitchWheel(delay, channel, pitch);
}
void sfizz_send_aftertouch(sfizz_synth_t* synth, int delay, int channel, char aftertouch)
{
auto self = reinterpret_cast<sfz::Synth*>(synth);
self->aftertouch(delay, channel, aftertouch);
}
void sfizz_send_tempo(sfizz_synth_t* synth, int delay, float seconds_per_quarter)
{
auto self = reinterpret_cast<sfz::Synth*>(synth);
self->tempo(delay, seconds_per_quarter);
}
void sfizz_render_block(sfizz_synth_t* synth, float** channels, int num_channels, int num_frames)
{
auto self = reinterpret_cast<sfz::Synth*>(synth);
// Only stereo output is supported for now
ASSERT(num_channels == 2);
self->renderBlock({{channels[0], channels[1]}, static_cast<size_t>(num_frames)});
}
void sfizz_force_garbage_collection(sfizz_synth_t* synth)
{
auto self = reinterpret_cast<sfz::Synth*>(synth);
self->garbageCollect();
}
#ifdef __cplusplus
}
#endif

216
sfizz/sfizz.h Normal file
View file

@ -0,0 +1,216 @@
// Copyright (c) 2019, Paul Ferrand
// All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// 1. Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
// ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
typedef struct sfizz_synth_t sfizz_synth_t;
/**
* @brief Creates a sfizz synth.
* This object has to be freed by the caller using sfizz_free().
*
* @return sfizz_synth_t*
*/
sfizz_synth_t* sfizz_create_synth();
/**
* @brief Frees an existing sfizz synth.
*
* @param synth The synth to destroy
*/
void sfizz_free(sfizz_synth_t* synth);
/**
* @brief Loads an SFZ file.
* The file path can be absolute or relative. All file operations for this SFZ file will be relative to the parent directory of the SFZ file.
*
* @param synth The sfizz synth.
* @param path A null-terminated string representing a path to an SFZ file.
* @return true when file loading went OK.
* @return false if some error occured while loading.
*/
bool sfizz_load_file(sfizz_synth_t* synth, char* path);
/**
* @brief Returns the number of regions in the currently loaded SFZ file.
*
* @param synth
* @return int the number of regions
*/
int sfizz_get_num_regions(sfizz_synth_t* synth);
/**
* @brief Returns the number of groups in the currently loaded SFZ file.
*
* @param synth
* @return int the number of groups
*/
int sfizz_get_num_groups(sfizz_synth_t* synth);
/**
* @brief Returns the number of masters in the currently loaded SFZ file.
*
* @param synth
* @return int the number of masters
*/
int sfizz_get_num_masters(sfizz_synth_t* synth);
/**
* @brief Returns the number of curves in the currently loaded SFZ file.
*
* @param synth
* @return int the number of curves
*/
int sfizz_get_num_curves(sfizz_synth_t* synth);
/**
* @brief Returns the number of preloaded samples for the current SFZ file.
*
* @param synth
* @return int the number of preloaded samples
*/
int sfizz_get_num_preloaded_samples(sfizz_synth_t* synth);
/**
* @brief Returns the number of active voices.
* Note that this function is a basic indicator and does not aim to be perfect.
* In particular, it runs on the calling thread so voices may well start or stop
* while the function is checking which voice is active.
*
* @param synth
* @return int the number of playing voices
*/
int sfizz_get_num_active_voices(sfizz_synth_t* synth);
/**
* @brief Sets the expected number of samples per block.
* If unsure, give an upper bound since right now ugly things may happen if you
* go over this number.
*
* @param synth
* @param samples_per_block the number of samples per block
*/
void sfizz_set_samples_per_block(sfizz_synth_t* synth, int samples_per_block);
/**
* @brief Sets the sample rate for the synth.
* This is the output sample rate. This setting does not affect the internal
* processing.
*
* @param synth
* @param sample_rate the sample rate
*/
void sfizz_set_sample_rate(sfizz_synth_t* synth, float sample_rate);
/**
* @brief Send a note on event to the synth.
* As with all MIDI events, this needs to happen before the call to sfizz_render_block
* in each block.
*
* @param synth
* @param delay the delay of the event in the block, in samples.
* @param channel the MIDI channel; currently starts at 1 (FIXME)
* @param note_number the MIDI note number
* @param velocity the MIDI velocity
*/
void sfizz_send_note_on(sfizz_synth_t* synth, int delay, int channel, int note_number, char velocity);
/**
* @brief Send a note off event to the synth.
* As with all MIDI events, this needs to happen before the call to sfizz_render_block
* in each block. As per the SFZ spec the velocity of note-off events is usually replaced
* by the note-on velocity.
*
* @param synth
* @param delay the delay of the event in the block, in samples.
* @param channel the MIDI channel; currently starts at 1 (FIXME)
* @param note_number the MIDI note number
* @param velocity the MIDI velocity
*/
void sfizz_send_note_off(sfizz_synth_t* synth, int delay, int channel, int note_number, char velocity);
/**
* @brief Send a CC event to the synth.
* As with all MIDI events, this needs to happen before the call to sfizz_render_block
* in each block.
*
* @param synth
* @param delay the delay of the event in the block, in samples.
* @param channel the MIDI channel; currently starts at 1 (FIXME)
* @param cc_number the MIDI CC number
* @param cc_value the MIDI CC value
*/
void sfizz_send_cc(sfizz_synth_t* synth, int delay, int channel, int cc_number, char cc_value);
/**
* @brief Send a pitch wheel event. (CURRENTLY UNIMPLEMENTED)
*
* @param synth
* @param delay
* @param channel
* @param pitch
*/
void sfizz_send_pitch_wheel(sfizz_synth_t* synth, int delay, int channel, int pitch);
/**
* @brief Send an aftertouch event. (CURRENTLY UNIMPLEMENTED)
*
* @param synth
* @param delay
* @param channel
* @param aftertouch
*/
void sfizz_send_aftertouch(sfizz_synth_t* synth, int delay, int channel, char aftertouch);
/**
* @brief Send a tempo event. (CURRENTLY UNIMPLEMENTED)
*
* @param synth
* @param delay
* @param seconds_per_quarter
*/
void sfizz_send_tempo(sfizz_synth_t* synth, int delay, float seconds_per_quarter);
/**
* @brief Render a block audio data into a stereo channel.
* No other channel configuration is supported. The synth will gracefully ignore your request if you
* provide a value. You should pass all the relevant events for the block (midi notes, CCs, ...) before
* rendering each block. The synth will memorize the inputs and render sample accurates envelopes
* depending on the input events passed to it.
*
* @param synth
* @param channels pointers to the left and right channel of the output
* @param num_channels should be equal to 2 for the time being.
* @param num_frames number of frames to fill. This should be less than or equal to the expected
* samples_per_block.
*/
void sfizz_render_block(sfizz_synth_t* synth, float** channels, int num_channels, int num_frames);
/**
* @brief Force a memory cleanup of the samples loaded in the background.
* This should happen automatically but if you want it done more frequently
* this is the way to go.
*
* @param synth
*/
void sfizz_force_garbage_collection(sfizz_synth_t* synth);
#ifdef __cplusplus
}
#endif