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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
//////////////////////////////////////////////////////////////////////////
//
// pgScript - PostgreSQL Tools
//
// Copyright (C) 2002 - 2012, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
//////////////////////////////////////////////////////////////////////////
#include "pgAdmin3.h"
#include "pgscript/expressions/pgsGenReal.h"
#include "pgscript/exceptions/pgsParameterException.h"
#include "pgscript/generators/pgsRealGen.h"
#include "pgscript/objects/pgsGenerator.h"
pgsGenReal::pgsGenReal(const pgsExpression *min, const pgsExpression *max,
const pgsExpression *precision, const pgsExpression *sequence,
const pgsExpression *seed) :
pgsExpression(), m_min(min), m_max(max), m_precision(precision),
m_sequence(sequence), m_seed(seed)
{
}
pgsGenReal::~pgsGenReal()
{
pdelete(m_min);
pdelete(m_max);
pdelete(m_precision);
pdelete(m_sequence);
pdelete(m_seed);
}
pgsExpression *pgsGenReal::clone() const
{
return pnew pgsGenReal(*this);
}
pgsGenReal::pgsGenReal(const pgsGenReal &that) :
pgsExpression(that)
{
m_min = that.m_min->clone();
m_max = that.m_max->clone();
m_precision = that.m_precision->clone();
m_sequence = that.m_sequence->clone();
m_seed = that.m_seed->clone();
}
pgsGenReal &pgsGenReal::operator =(const pgsGenReal &that)
{
if (this != &that)
{
pgsExpression::operator=(that);
pdelete(m_min);
pdelete(m_max);
pdelete(m_precision);
pdelete(m_sequence);
pdelete(m_seed);
m_min = that.m_min->clone();
m_max = that.m_max->clone();
m_precision = that.m_precision->clone();
m_sequence = that.m_sequence->clone();
m_seed = that.m_seed->clone();
}
return (*this);
}
wxString pgsGenReal::value() const
{
return wxString() << wxT("real[ min = ") << m_min->value() << wxT(" max = ")
<< m_max->value() << wxT(" precision = ") << m_precision->value()
<< wxT(" sequence = ") << m_sequence->value() << wxT(" seed = ")
<< m_seed->value() << wxT(" ]");
}
pgsOperand pgsGenReal::eval(pgsVarMap &vars) const
{
// Evaluate parameters
pgsOperand min(m_min->eval(vars));
pgsOperand max(m_max->eval(vars));
pgsOperand precision(m_precision->eval(vars));
pgsOperand sequence(m_sequence->eval(vars));
pgsOperand seed(m_seed->eval(vars));
// Check parameters and create the generator
if (min->is_number() && max->is_number() && sequence->is_integer()
&& seed->is_integer() && precision->is_integer())
{
long aux_sequence, aux_seed, aux_precision;
sequence->value().ToLong(&aux_sequence);
seed->value().ToLong(&aux_seed);
precision->value().ToLong(&aux_precision);
return pnew pgsGenerator(pgsVariable::pgsTReal,
pnew pgsRealGen(pgsVariable::num(min), pgsVariable::num(max), aux_precision,
aux_sequence != 0, aux_seed));
}
else
{
// Deal with errors
if (!min->is_number())
{
throw pgsParameterException(wxString() << value()
<< wxT(":\nmin should be a number"));
}
else if (!max->is_number())
{
throw pgsParameterException(wxString() << value()
<< wxT(":\nmax should be a number"));
}
else if (!precision->is_integer())
{
throw pgsParameterException(wxString() << value()
<< wxT(":\nprecision should be an integer"));
}
else if (!sequence->is_integer())
{
throw pgsParameterException(wxString() << value()
<< wxT(":\nsequence should be an integer"));
}
else
{
throw pgsParameterException(wxString() << value()
<< wxT(":\nseed should be an integer"));
}
}
}
|