#include <stdlib.h>
#include <string.h>
#ifndef WIN32
#include "config.h"
#endif

#ifdef ENABLE_NLS
#include <libintl.h>
#endif

#define         _ISOC9X_SOURCE  1
#define         _ISOC99_SOURCE  1
#define         __USE_ISOC99    1
#define         __USE_ISOC9X    1

#include <math.h>

#include "ladspa.h"

#ifdef WIN32
#define _WINDOWS_DLL_EXPORT_ __declspec(dllexport)
int bIsFirstTime = 1; 
void _init(); // forward declaration
#else
#define _WINDOWS_DLL_EXPORT_ 
#endif

#line 9 "bandpass_iir_1892.xml"

#include "config.h"
#include "util/iir.h"

#define BANDPASS_IIR_CENTER            0
#define BANDPASS_IIR_WIDTH             1
#define BANDPASS_IIR_STAGES            2
#define BANDPASS_IIR_INPUT             3
#define BANDPASS_IIR_OUTPUT            4

static LADSPA_Descriptor *bandpass_iirDescriptor = NULL;

typedef struct {
	LADSPA_Data *center;
	LADSPA_Data *width;
	LADSPA_Data *stages;
	LADSPA_Data *input;
	LADSPA_Data *output;
	iir_stage_t* first;
	iir_stage_t* gt;
	iirf_t*      iirf;
	float        lfc;
	long         sample_rate;
	iir_stage_t* second;
	float        ufc;
	LADSPA_Data run_adding_gain;
} Bandpass_iir;

_WINDOWS_DLL_EXPORT_
const LADSPA_Descriptor *ladspa_descriptor(unsigned long index) {

#ifdef WIN32
	if (bIsFirstTime) {
		_init();
		bIsFirstTime = 0;
	}
#endif
	switch (index) {
	case 0:
		return bandpass_iirDescriptor;
	default:
		return NULL;
	}
}

static void activateBandpass_iir(LADSPA_Handle instance) {
	Bandpass_iir *plugin_data = (Bandpass_iir *)instance;
	iir_stage_t*first = plugin_data->first;
	iir_stage_t*gt = plugin_data->gt;
	iirf_t*iirf = plugin_data->iirf;
	float lfc = plugin_data->lfc;
	long sample_rate = plugin_data->sample_rate;
	iir_stage_t*second = plugin_data->second;
	float ufc = plugin_data->ufc;
#line 36 "bandpass_iir_1892.xml"
	
	ufc = (*(plugin_data->center) + *(plugin_data->width)*0.5f)/(float)sample_rate;
	lfc = (*(plugin_data->center) - *(plugin_data->width)*0.5f)/(float)sample_rate;
	first = init_iir_stage(IIR_STAGE_LOWPASS,10,3,2);
	second = init_iir_stage(IIR_STAGE_HIGHPASS,10,3,2);                  
	gt = init_iir_stage(IIR_STAGE_BANDPASS,20,3,2); 
	iirf = init_iirf_t(gt);
	chebyshev(iirf, first, 2*CLAMP((int)(*(plugin_data->stages)),1,10), IIR_STAGE_LOWPASS, ufc, 0.5f);
	chebyshev(iirf, second, 2*CLAMP((int)(*(plugin_data->stages)),1,10), IIR_STAGE_HIGHPASS, lfc, 0.5f);
	combine_iir_stages(IIR_STAGE_BANDPASS, gt, first, second,0,0);
	plugin_data->first = first;
	plugin_data->gt = gt;
	plugin_data->iirf = iirf;
	plugin_data->lfc = lfc;
	plugin_data->sample_rate = sample_rate;
	plugin_data->second = second;
	plugin_data->ufc = ufc;

}

static void cleanupBandpass_iir(LADSPA_Handle instance) {
#line 48 "bandpass_iir_1892.xml"
	Bandpass_iir *plugin_data = (Bandpass_iir *)instance;
	free_iirf_t(plugin_data->iirf, plugin_data->gt);                  
	free_iir_stage(plugin_data->first);
	free_iir_stage(plugin_data->second);
	free_iir_stage(plugin_data->gt);
	free(instance);
}

static void connectPortBandpass_iir(
 LADSPA_Handle instance,
 unsigned long port,
 LADSPA_Data *data) {
	Bandpass_iir *plugin;

	plugin = (Bandpass_iir *)instance;
	switch (port) {
	case BANDPASS_IIR_CENTER:
		plugin->center = data;
		break;
	case BANDPASS_IIR_WIDTH:
		plugin->width = data;
		break;
	case BANDPASS_IIR_STAGES:
		plugin->stages = data;
		break;
	case BANDPASS_IIR_INPUT:
		plugin->input = data;
		break;
	case BANDPASS_IIR_OUTPUT:
		plugin->output = data;
		break;
	}
}

static LADSPA_Handle instantiateBandpass_iir(
 const LADSPA_Descriptor *descriptor,
 unsigned long s_rate) {
	Bandpass_iir *plugin_data = (Bandpass_iir *)malloc(sizeof(Bandpass_iir));
	iir_stage_t*first = NULL;
	iir_stage_t*gt = NULL;
	iirf_t*iirf = NULL;
	float lfc;
	long sample_rate;
	iir_stage_t*second = NULL;
	float ufc;

#line 24 "bandpass_iir_1892.xml"
	sample_rate = s_rate;

	plugin_data->first = first;
	plugin_data->gt = gt;
	plugin_data->iirf = iirf;
	plugin_data->lfc = lfc;
	plugin_data->sample_rate = sample_rate;
	plugin_data->second = second;
	plugin_data->ufc = ufc;

	return (LADSPA_Handle)plugin_data;
}

#undef buffer_write
#undef RUN_ADDING
#undef RUN_REPLACING

#define buffer_write(b, v) (b = v)
#define RUN_ADDING    0
#define RUN_REPLACING 1

static void runBandpass_iir(LADSPA_Handle instance, unsigned long sample_count) {
	Bandpass_iir *plugin_data = (Bandpass_iir *)instance;

	/* Center Frequency (Hz) (float value) */
	const LADSPA_Data center = *(plugin_data->center);

	/* Bandwidth (Hz) (float value) */
	const LADSPA_Data width = *(plugin_data->width);

	/* Stages(2 poles per stage) (float value) */
	const LADSPA_Data stages = *(plugin_data->stages);

	/* Input (array of floats of length sample_count) */
	const LADSPA_Data * const input = plugin_data->input;

	/* Output (array of floats of length sample_count) */
	LADSPA_Data * const output = plugin_data->output;
	iir_stage_t* first = plugin_data->first;
	iir_stage_t* gt = plugin_data->gt;
	iirf_t* iirf = plugin_data->iirf;
	float lfc = plugin_data->lfc;
	long sample_rate = plugin_data->sample_rate;
	iir_stage_t* second = plugin_data->second;
	float ufc = plugin_data->ufc;

#line 27 "bandpass_iir_1892.xml"
	ufc = (center + width*0.5f)/(float)sample_rate;
	lfc = (center - width*0.5f)/(float)sample_rate;
	combine_iir_stages(IIR_STAGE_BANDPASS, gt, first, second,
	                   chebyshev(iirf, first,  2*CLAMP((int)stages,1,10), IIR_STAGE_LOWPASS,  ufc, 0.5f),
	                   chebyshev(iirf, second, 2*CLAMP((int)stages,1,10), IIR_STAGE_HIGHPASS, lfc, 0.5f));
	iir_process_buffer_ns_5(iirf, gt, input, output, sample_count,RUN_ADDING);
}
#undef buffer_write
#undef RUN_ADDING
#undef RUN_REPLACING

#define buffer_write(b, v) (b += (v) * run_adding_gain)
#define RUN_ADDING    1
#define RUN_REPLACING 0

static void setRunAddingGainBandpass_iir(LADSPA_Handle instance, LADSPA_Data gain) {
	((Bandpass_iir *)instance)->run_adding_gain = gain;
}

static void runAddingBandpass_iir(LADSPA_Handle instance, unsigned long sample_count) {
	Bandpass_iir *plugin_data = (Bandpass_iir *)instance;
	LADSPA_Data run_adding_gain = plugin_data->run_adding_gain;

	/* Center Frequency (Hz) (float value) */
	const LADSPA_Data center = *(plugin_data->center);

	/* Bandwidth (Hz) (float value) */
	const LADSPA_Data width = *(plugin_data->width);

	/* Stages(2 poles per stage) (float value) */
	const LADSPA_Data stages = *(plugin_data->stages);

	/* Input (array of floats of length sample_count) */
	const LADSPA_Data * const input = plugin_data->input;

	/* Output (array of floats of length sample_count) */
	LADSPA_Data * const output = plugin_data->output;
	iir_stage_t* first = plugin_data->first;
	iir_stage_t* gt = plugin_data->gt;
	iirf_t* iirf = plugin_data->iirf;
	float lfc = plugin_data->lfc;
	long sample_rate = plugin_data->sample_rate;
	iir_stage_t* second = plugin_data->second;
	float ufc = plugin_data->ufc;

#line 27 "bandpass_iir_1892.xml"
	ufc = (center + width*0.5f)/(float)sample_rate;
	lfc = (center - width*0.5f)/(float)sample_rate;
	combine_iir_stages(IIR_STAGE_BANDPASS, gt, first, second,
	                   chebyshev(iirf, first,  2*CLAMP((int)stages,1,10), IIR_STAGE_LOWPASS,  ufc, 0.5f),
	                   chebyshev(iirf, second, 2*CLAMP((int)stages,1,10), IIR_STAGE_HIGHPASS, lfc, 0.5f));
	iir_process_buffer_ns_5(iirf, gt, input, output, sample_count,RUN_ADDING);
}

void _init() {
	char **port_names;
	LADSPA_PortDescriptor *port_descriptors;
	LADSPA_PortRangeHint *port_range_hints;

#ifdef ENABLE_NLS
#define D_(s) dgettext(PACKAGE, s)
	setlocale(LC_ALL, "");
	bindtextdomain(PACKAGE, PACKAGE_LOCALE_DIR);
#else
#define D_(s) (s)
#endif


	bandpass_iirDescriptor =
	 (LADSPA_Descriptor *)malloc(sizeof(LADSPA_Descriptor));

	if (bandpass_iirDescriptor) {
		bandpass_iirDescriptor->UniqueID = 1892;
		bandpass_iirDescriptor->Label = "bandpass_iir";
		bandpass_iirDescriptor->Properties =
		 LADSPA_PROPERTY_HARD_RT_CAPABLE;
		bandpass_iirDescriptor->Name =
		 D_("Glame Bandpass Filter");
		bandpass_iirDescriptor->Maker =
		 "Alexander Ehlert <mag@glame.de>";
		bandpass_iirDescriptor->Copyright =
		 "GPL";
		bandpass_iirDescriptor->PortCount = 5;

		port_descriptors = (LADSPA_PortDescriptor *)calloc(5,
		 sizeof(LADSPA_PortDescriptor));
		bandpass_iirDescriptor->PortDescriptors =
		 (const LADSPA_PortDescriptor *)port_descriptors;

		port_range_hints = (LADSPA_PortRangeHint *)calloc(5,
		 sizeof(LADSPA_PortRangeHint));
		bandpass_iirDescriptor->PortRangeHints =
		 (const LADSPA_PortRangeHint *)port_range_hints;

		port_names = (char **)calloc(5, sizeof(char*));
		bandpass_iirDescriptor->PortNames =
		 (const char **)port_names;

		/* Parameters for Center Frequency (Hz) */
		port_descriptors[BANDPASS_IIR_CENTER] =
		 LADSPA_PORT_INPUT | LADSPA_PORT_CONTROL;
		port_names[BANDPASS_IIR_CENTER] =
		 D_("Center Frequency (Hz)");
		port_range_hints[BANDPASS_IIR_CENTER].HintDescriptor =
		 LADSPA_HINT_BOUNDED_BELOW | LADSPA_HINT_BOUNDED_ABOVE | LADSPA_HINT_DEFAULT_MIDDLE | LADSPA_HINT_SAMPLE_RATE | LADSPA_HINT_LOGARITHMIC;
		port_range_hints[BANDPASS_IIR_CENTER].LowerBound = 0.0001;
		port_range_hints[BANDPASS_IIR_CENTER].UpperBound = 0.45;

		/* Parameters for Bandwidth (Hz) */
		port_descriptors[BANDPASS_IIR_WIDTH] =
		 LADSPA_PORT_INPUT | LADSPA_PORT_CONTROL;
		port_names[BANDPASS_IIR_WIDTH] =
		 D_("Bandwidth (Hz)");
		port_range_hints[BANDPASS_IIR_WIDTH].HintDescriptor =
		 LADSPA_HINT_BOUNDED_BELOW | LADSPA_HINT_BOUNDED_ABOVE | LADSPA_HINT_DEFAULT_MIDDLE | LADSPA_HINT_SAMPLE_RATE | LADSPA_HINT_LOGARITHMIC;
		port_range_hints[BANDPASS_IIR_WIDTH].LowerBound = 0.0001;
		port_range_hints[BANDPASS_IIR_WIDTH].UpperBound = 0.45;

		/* Parameters for Stages(2 poles per stage) */
		port_descriptors[BANDPASS_IIR_STAGES] =
		 LADSPA_PORT_INPUT | LADSPA_PORT_CONTROL;
		port_names[BANDPASS_IIR_STAGES] =
		 D_("Stages(2 poles per stage)");
		port_range_hints[BANDPASS_IIR_STAGES].HintDescriptor =
		 LADSPA_HINT_BOUNDED_BELOW | LADSPA_HINT_BOUNDED_ABOVE | LADSPA_HINT_DEFAULT_1 | LADSPA_HINT_INTEGER;
		port_range_hints[BANDPASS_IIR_STAGES].LowerBound = 1.0;
		port_range_hints[BANDPASS_IIR_STAGES].UpperBound = 10.0;

		/* Parameters for Input */
		port_descriptors[BANDPASS_IIR_INPUT] =
		 LADSPA_PORT_INPUT | LADSPA_PORT_AUDIO;
		port_names[BANDPASS_IIR_INPUT] =
		 D_("Input");
		port_range_hints[BANDPASS_IIR_INPUT].HintDescriptor = 0;

		/* Parameters for Output */
		port_descriptors[BANDPASS_IIR_OUTPUT] =
		 LADSPA_PORT_OUTPUT | LADSPA_PORT_AUDIO;
		port_names[BANDPASS_IIR_OUTPUT] =
		 D_("Output");
		port_range_hints[BANDPASS_IIR_OUTPUT].HintDescriptor = 0;

		bandpass_iirDescriptor->activate = activateBandpass_iir;
		bandpass_iirDescriptor->cleanup = cleanupBandpass_iir;
		bandpass_iirDescriptor->connect_port = connectPortBandpass_iir;
		bandpass_iirDescriptor->deactivate = NULL;
		bandpass_iirDescriptor->instantiate = instantiateBandpass_iir;
		bandpass_iirDescriptor->run = runBandpass_iir;
		bandpass_iirDescriptor->run_adding = runAddingBandpass_iir;
		bandpass_iirDescriptor->set_run_adding_gain = setRunAddingGainBandpass_iir;
	}
}

void _fini() {
	if (bandpass_iirDescriptor) {
		free((LADSPA_PortDescriptor *)bandpass_iirDescriptor->PortDescriptors);
		free((char **)bandpass_iirDescriptor->PortNames);
		free((LADSPA_PortRangeHint *)bandpass_iirDescriptor->PortRangeHints);
		free(bandpass_iirDescriptor);
	}

}

