/*
This file is part of Ingen.
Copyright 2007-2015 David Robillard
Ingen is free software: you can redistribute it and/or modify it under the
terms of the GNU Affero General Public License as published by the Free
Software Foundation, either version 3 of the License, or any later version.
Ingen 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 Affero General Public License for details.
You should have received a copy of the GNU Affero General Public License
along with Ingen. If not, see .
*/
#ifndef INGEN_ENGINE_BUFFERFACTORY_HPP
#define INGEN_ENGINE_BUFFERFACTORY_HPP
#include "ingen/URIs.hpp"
#include "lv2/urid/urid.h"
#include "server.h"
#include "BufferRef.hpp"
#include "types.hpp"
#include
#include
#include
namespace raul {
class Maid;
} // namespace raul
namespace ingen {
class Forge;
namespace server {
class Buffer;
class Engine;
class INGEN_SERVER_API BufferFactory
{
public:
BufferFactory(Engine& engine, URIs& uris);
~BufferFactory();
static uint32_t audio_buffer_size(SampleCount nframes);
uint32_t audio_buffer_size() const;
uint32_t default_size(LV2_URID type) const;
/** Dynamically allocate a new Buffer. */
BufferRef create(LV2_URID type,
LV2_URID value_type,
uint32_t capacity = 0);
/** Get a new buffer, reusing if possible, allocating if otherwise. */
BufferRef get_buffer(LV2_URID type,
LV2_URID value_type,
uint32_t capacity);
/** Claim an existing buffer, never allocates, real-time safe. */
BufferRef claim_buffer(LV2_URID type,
LV2_URID value_type,
uint32_t capacity);
/** Return a reference to a shared silent buffer. */
BufferRef silent_buffer();
void set_block_length(SampleCount block_length);
void set_seq_size(uint32_t seq_size) { _seq_size = seq_size; }
Forge& forge();
raul::Maid& maid();
URIs& uris() { return _uris; }
Engine& engine() { return _engine; }
private:
friend class Buffer;
void recycle(Buffer* buf);
Buffer* try_get_buffer(LV2_URID type);
std::atomic& free_list(LV2_URID type) {
if (type == _uris.atom_Float) {
return _free_control;
}
if (type == _uris.atom_Sound) {
return _free_audio;
}
if (type == _uris.atom_Sequence) {
return _free_sequence;
}
return _free_object;
}
static void free_list(Buffer* head);
std::atomic _free_audio{nullptr};
std::atomic _free_control{nullptr};
std::atomic _free_sequence{nullptr};
std::atomic _free_object{nullptr};
std::mutex _mutex;
Engine& _engine;
URIs& _uris;
uint32_t _seq_size{0U};
BufferRef _silent_buffer;
};
} // namespace server
} // namespace ingen
#endif // INGEN_ENGINE_BUFFERFACTORY_HPP