#include "TestCase.hpp"
#include "Operator.hpp"

namespace flopoco{




	TestCaseList::TestCaseList() { }
	TestCaseList::~TestCaseList() { }

	void TestCaseList::add(TestCase* tc){
		v.push_back(tc);
	}

	int TestCaseList::getNumberOfTestCases(){
		return v.size();
	}

	TestCase* TestCaseList::getTestCase(int i){
		return v[i];
	}



	/*
	  A test case is a mapping between I/O signal names and boolean values given as mpz.

	  The signal names must be those of Operator->iolist_. Whether several
	  possible output values are possible is stored in the
	  numberOfPossibleValues_ attribute of the corresponding Signal stored in iolist, and
	  only there.

	  The emulate() function of Operator takes a partial test case (mapping
	  all the inputs) and completes it by mapping the outputs.

	*/


	TestCase::TestCase(Operator* op) : op_(op){
	}

	TestCase::~TestCase() {
	}


	void TestCase::addInput(string name, mpz_class v)
	{
		Signal* s = op_->getSignalByName(name);
		if (v >= (mpz_class(1) << s->width())) 
			throw string("ERROR in TestCase::addInput, signal value out of range");
		if (v<0) {
			if (v < - (mpz_class(1) << s->width())) 
				throw string("ERROR in TestCase::addInput, negative signal value out of range");
			v += (mpz_class(1) << s->width()); 
		}
		inputs[name] = v;
	}


	void TestCase::addInput(string name, FPNumber::SpecialValue v) {
		// get signal size
		Signal* s = op_->getSignalByName(name);
		if(!s->isFP()) {
			throw string("TestCase::addInput: Cannot convert FPNumber::SpecialValue to non-FP signal");
		} 
		int wE=s->wE();
		int wF=s->wF();
		FPNumber  fpx(wE, wF,v);
		mpz_class mpx = fpx.getSignalValue();
		inputs[name] = mpx;
	}


	void TestCase::addInput(string name, double x) {
		// get signal size
		Signal* s = op_->getSignalByName(name);
		if(!s->isFP()) {
			throw string("TestCase::addInput: Cannot convert a double into non-FP signal");
		} 
		int wE=s->wE();
		int wF=s->wF();
		FPNumber  fpx(wE, wF);
		fpx=x;
		mpz_class mpx = fpx.getSignalValue();

		inputs[name] = mpx;
	}


	mpz_class TestCase::getInputValue(string s){
		return inputs[s];
	}

	void TestCase::addExpectedOutput(string name, mpz_class v)
	{
		Signal* s = op_->getSignalByName(name);
	
		//TODO Check if we have already too many values for this output
		if (v >= (mpz_class(1) << s->width())) 
			throw string("ERROR in TestCase::addExpectedOutput, signal value out of range");
		if (v<0) {
			if (v < - (mpz_class(1) << s->width())) 
				throw string("ERROR in TestCase::addExpectedOutput, negative signal value out of range");
			v += (mpz_class(1) << s->width()); 
		}
		outputs[name].push_back(v);
	}

 
	string TestCase::getInputVHDL(string prepend)
	{
		ostringstream o;

		/* Iterate through input signals */
		for (map<string, mpz_class>::iterator it = inputs.begin(); it != inputs.end(); it++)
			{
				string signame = it->first;
				Signal* s = op_->getSignalByName(signame);
				mpz_class v = it->second;
				o << prepend;
				o << signame << " <= " << s->valueToVHDL(v) << "; ";
				o << endl;
			}

		return o.str();
	}



	string TestCase::getExpectedOutputVHDL(string prepend)
	{
		ostringstream o;


		/* Iterate through output signals */
		for (map<string, vector<mpz_class> >::iterator it = outputs.begin(); it != outputs.end(); it++)
			{
				string signame = it->first;
				Signal* s = op_->getSignalByName(signame);
				vector<mpz_class> vs = it->second;
				string expected;

				o << prepend;
				o << "assert false";  // XXX: Too lazy to make an exception for the first value

				/* Iterate through possible output values */
				for (vector<mpz_class>::iterator it = vs.begin(); it != vs.end(); it++)
					{
						mpz_class v = *it;
						o << " or ";
						if (s->isFP())
							o << "fp_equal(" << s->getName() << ",fp" << s->width() << "'("<< s->valueToVHDL(v) << "))";
						else
							o << s->getName() << "=" << s->valueToVHDL(v);
						expected += " " + s->valueToVHDL(v,false);
					}

				o << " report \"Incorrect output value for " << s->getName() << ", expected" << expected << "\" severity ERROR; ";
				o << endl;
			}

		return o.str();
	}



	void TestCase::addComment(string c) {
		comment = c;
	}

	string TestCase::getComment() {
		return comment;
	}


}

