1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
/*
* Copyright (C) 2023 Linux Studio Plugins Project <https://lsp-plug.in/>
* (C) 2023 Vladimir Sadovnikov <sadko4u@gmail.com>
*
* This file is part of lsp-plugins-clipper
* Created on: 11 нояб. 2023 г.
*
* lsp-plugins-shared is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* lsp-plugins-shared 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with lsp-plugins-shared. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef LSP_PLUG_IN_SHARED_DEBUG_H_
#define LSP_PLUG_IN_SHARED_DEBUG_H_
#include <lsp-plug.in/common/debug.h>
#include <lsp-plug.in/plug-fw/plug.h>
namespace lsp
{
/**
* Trace port identifier and return the port passed as an argument
* @param p port to trace
* @return the poointer to the port passed as an argument
*/
static inline plug::IPort *trace_port(plug::IPort *p)
{
lsp_trace(" port id=%s", (p)->metadata()->id);
return p;
}
#define NEXT_PORT() trace_port(ports[port_id++])
#ifdef LSP_TRACE
#define BIND_PORT(dst) \
do { \
dst = ports[port_id++]; \
const ::lsp::meta::port_t *port_meta_ = dst->metadata(); \
lsp_trace("Bind port %s -> %s (%s)", port_meta_->id, LSP_STRINGIFY(dst), port_meta_->name); \
} while (false)
#define SKIP_PORT(dst) \
do { \
const ::lsp::meta::port_t *port_meta_ = ports[port_id++]->metadata(); \
lsp_trace("Skip port %s -> %s (%s)", port_meta_->id, LSP_STRINGIFY(dst), port_meta_->name); \
} while (false)
#else
#define BIND_PORT(dst) \
do { dst = ports[port_id++]; } while (false)
#define SKIP_PORT(dst) \
do { ++port_id; } while (false)
#endif /* LSP_TRACE */
} /* namespace lsp */
#endif /* LSP_PLUG_IN_SHARED_DEBUG_H_ */
|