/* This file is part of Ingen. * Copyright 2009-2011 David Robillard * * Ingen 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 2 of the License, or (at your option) 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 General Public License for details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef INGEN_ENGINE_BUFFERFACTORY_HPP #define INGEN_ENGINE_BUFFERFACTORY_HPP #include #include #undef nil #include #include "raul/Atom.hpp" #include "raul/AtomicPtr.hpp" #include "raul/RingBuffer.hpp" #include "raul/SharedPtr.hpp" #include "ingen/shared/Forge.hpp" #include "ingen/shared/URIs.hpp" #include "PortType.hpp" #include "types.hpp" namespace Ingen { namespace Shared { class URIs; } namespace Server { class Engine; class Buffer; class BufferFactory { public: BufferFactory(Engine& engine, SharedPtr uris); ~BufferFactory(); typedef boost::intrusive_ptr Ref; static uint32_t audio_buffer_size(SampleCount nframes); uint32_t default_buffer_size(LV2_URID type); Ref get(LV2_URID type, uint32_t capacity, bool force_create=false); Ref silent_buffer(); void set_block_length(SampleCount block_length); Ingen::Forge& forge(); Ingen::Shared::URIs& uris() { assert(_uris); return *_uris.get(); } Engine& engine() { return _engine; } private: friend class Buffer; void recycle(Buffer* buf); Ref create(LV2_URID type, uint32_t capacity=0); inline Raul::AtomicPtr& free_list(LV2_URID type) { if (type == _uris->atom_Float) { return _free_control; } else if (type == _uris->atom_Sound) { return _free_audio; } else { return _free_object; } } void free_list(Buffer* head); Raul::AtomicPtr _free_audio; Raul::AtomicPtr _free_control; Raul::AtomicPtr _free_object; Glib::Mutex _mutex; Engine& _engine; SharedPtr _uris; Ref _silent_buffer; }; } // namespace Server } // namespace Ingen #endif // INGEN_ENGINE_BUFFERFACTORY_HPP