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 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
|
//////////////////////////////////////////////////////////////////////////
//
// pgScript - PostgreSQL Tools
//
// Copyright (C) 2002 - 2012, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
//////////////////////////////////////////////////////////////////////////
#include "pgAdmin3.h"
#include "pgscript/objects/pgsString.h"
#include <wx/regex.h>
#include "pgscript/objects/pgsNumber.h"
#include "pgscript/objects/pgsRecord.h"
#include "pgscript/exceptions/pgsArithmeticException.h"
#include "pgscript/exceptions/pgsCastException.h"
pgsString::pgsString(const wxString &data) :
pgsVariable(pgsVariable::pgsTString), m_data(data)
{
}
pgsString::~pgsString()
{
}
pgsVariable *pgsString::clone() const
{
return pnew pgsString(*this);
}
wxString pgsString::value() const
{
return m_data;
}
pgsOperand pgsString::eval(pgsVarMap &vars) const
{
return this->clone();
}
pgsOperand pgsString::pgs_plus(const pgsVariable &rhs) const
{
if (rhs.is_string())
{
return pnew pgsString(m_data + rhs.value());
}
else
{
throw pgsArithmeticException(m_data, rhs.value());
}
}
pgsOperand pgsString::pgs_minus(const pgsVariable &rhs) const
{
throw pgsArithmeticException(m_data, rhs.value());
}
pgsOperand pgsString::pgs_times(const pgsVariable &rhs) const
{
throw pgsArithmeticException(m_data, rhs.value());
}
pgsOperand pgsString::pgs_over(const pgsVariable &rhs) const
{
throw pgsArithmeticException(m_data, rhs.value());
}
pgsOperand pgsString::pgs_modulo(const pgsVariable &rhs) const
{
throw pgsArithmeticException(m_data, rhs.value());
}
pgsOperand pgsString::pgs_equal(const pgsVariable &rhs) const
{
if (rhs.is_string())
{
return pnew pgsNumber(m_data == rhs.value() ? wxT("1") : wxT("0"));
}
else
{
throw pgsArithmeticException(m_data, rhs.value());
}
}
pgsOperand pgsString::pgs_different(const pgsVariable &rhs) const
{
if (rhs.is_string())
{
return pnew pgsNumber(m_data != rhs.value() ? wxT("1") : wxT("0"));
}
else
{
throw pgsArithmeticException(m_data, rhs.value());
}
}
pgsOperand pgsString::pgs_greater(const pgsVariable &rhs) const
{
if (rhs.is_string())
{
return pnew pgsNumber(m_data > rhs.value() ? wxT("1") : wxT("0"));
}
else
{
throw pgsArithmeticException(m_data, rhs.value());
}
}
pgsOperand pgsString::pgs_lower(const pgsVariable &rhs) const
{
if (rhs.is_string())
{
return pnew pgsNumber(m_data < rhs.value() ? wxT("1") : wxT("0"));
}
else
{
throw pgsArithmeticException(m_data, rhs.value());
}
}
pgsOperand pgsString::pgs_lower_equal(const pgsVariable &rhs) const
{
if (rhs.is_string())
{
return pnew pgsNumber(m_data <= rhs.value() ? wxT("1") : wxT("0"));
}
else
{
throw pgsArithmeticException(m_data, rhs.value());
}
}
pgsOperand pgsString::pgs_greater_equal(const pgsVariable &rhs) const
{
if (rhs.is_string())
{
return pnew pgsNumber(m_data >= rhs.value() ? wxT("1") : wxT("0"));
}
else
{
throw pgsArithmeticException(m_data, rhs.value());
}
}
pgsOperand pgsString::pgs_not() const
{
wxString data = m_data.Strip(wxString::both);
return pnew pgsString(data.IsEmpty() ? wxT("1") : wxT(""));
}
bool pgsString::pgs_is_true() const
{
wxString data = m_data.Strip(wxString::both);
return (!data.IsEmpty() ? true : false);
}
pgsOperand pgsString::pgs_almost_equal(const pgsVariable &rhs) const
{
if (rhs.is_string())
{
return pnew pgsNumber(m_data.CmpNoCase(rhs.value()) == 0
? wxT("1") : wxT("0"));
}
else
{
throw pgsArithmeticException(m_data, rhs.value());
}
}
pgsNumber pgsString::number() const
{
wxString data = m_data.Strip(wxString::both);
pgsTypes type = pgsNumber::num_type(data);
switch (type)
{
case pgsTInt:
return pgsNumber(data, pgsInt);
case pgsTReal:
return pgsNumber(data, pgsReal);
default:
throw pgsCastException(data, wxT("number"));
}
}
pgsRecord pgsString::record() const
{
pgsRecord *rec = 0;
// Try to find the representation of a record in the string
{
wxString element(wxT("(\"([^\"\\\\]|\\\\.)*\")|((-|[a-zA-Z0-9\\+\\.])+)"));
wxString data(m_data);
wxRegEx regex1(wxString() << wxT("^[[:space:]]*\\([[:space:]]*(")
<< element << wxT(")[[:space:]]*([,][[:space:]]*(")
<< element << wxT(")[[:space:]]*)*\\)"), wxRE_DEFAULT | wxRE_ICASE);
// Find each line
size_t line_nb = 0, nb_of_columns = 0;
bool count_columns = true;
while (regex1.Matches(data))
{
// Process that line: find each element
wxString line(regex1.GetMatch(data));
wxRegEx regex2(element);
size_t column_nb = 0;
while (regex2.Matches(line))
{
if (count_columns == true)
{
++nb_of_columns;
}
else
{
if (column_nb < nb_of_columns && rec != 0)
{
wxString value(regex2.GetMatch(line));
if (value.StartsWith(wxT("\""))
&& value.EndsWith(wxT("\"")))
{
// This is a string
value = value.Mid(1, value.Len() - 2);
value.Replace(wxT("\\\""), wxT("\""));
value.Replace(wxT("\\\\"), wxT("\\"));
rec->insert(line_nb, column_nb,
pnew pgsString(value));
}
else
{
// This is a number or a string
pgsTypes type = pgsNumber::num_type(value);
switch (type)
{
case pgsTInt:
rec->insert(line_nb, column_nb,
pnew pgsNumber(value, pgsInt));
break;
case pgsTReal:
rec->insert(line_nb, column_nb,
pnew pgsNumber(value, pgsReal));
break;
default:
rec->insert(line_nb, column_nb,
pnew pgsString(value));
break;
}
}
}
++column_nb;
}
regex2.ReplaceFirst(&line, wxT(""));
}
// If it is the first loop we want to process this line a
// second time because the first one was meant to count
// the number of columns
if (count_columns == true)
{
count_columns = false;
rec = pnew pgsRecord(nb_of_columns);
}
else
{
regex1.ReplaceFirst(&data, wxT(""));
++line_nb;
}
}
}
// Process the case
if (rec == 0)
{
rec = pnew pgsRecord(1);
rec->insert(0, 0, this->clone());
}
pgsRecord ret_val(*rec);
pdelete(rec);
return ret_val;
}
pgsString pgsString::string() const
{
return pgsString(*this);
}
|