/* -*- c++ -*- */
/*
 * Copyright 2017 Free Software Foundation, Inc.
 *
 * This file is part of GNU Radio
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 *
 */


#ifndef INCLUDED_BLOCKS_EXPONENTIATE_CONST_CCI_H
#define INCLUDED_BLOCKS_EXPONENTIATE_CONST_CCI_H

#include <gnuradio/blocks/api.h>
#include <gnuradio/sync_block.h>

namespace gr {
namespace blocks {

/*!
 * \brief Exponentiates a complex stream with an integer exponent
 * \ingroup blocks
 *
 * \details
 * This block raises a complex stream to an integer exponent. The exponent
 * must be at least 1. There is a callback function so the exponent can be
 * changed at runtime.
 *
 * NOTE: The algorithm uses iterative multiplication to achieve exponentiation,
 * hence it is O(exponent). Therefore, this block could be inefficient for large
 * exponents.
 */
class BLOCKS_API exponentiate_const_cci : virtual public gr::sync_block
{
public:
    typedef boost::shared_ptr<exponentiate_const_cci> sptr;

    /*
     * \param exponent Exponent the input stream is raised to, which must be an integer.
     * The algorithm uses iterative multiplication to achieve exponentiation, hence it is
     * O(exponent). Therefore, this block could be inefficient for large exponents.
     * \param vlen Vector length of input/output stream
     */
    static sptr make(int exponent, size_t vlen = 1);

    virtual void set_exponent(int exponent) = 0;
};

} // namespace blocks
} // namespace gr

#endif /* INCLUDED_BLOCKS_EXPONENTIATE_CONST_CCI_H */