2  *    This program is free software; you can redistribute it and/or modify
 
   3  *    it under the terms of the GNU General Public License as published by
 
   4  *    the Free Software Foundation; either version 2 of the License, or
 
   5  *    (at your option) any later version.
 
   7  *    This program is distributed in the hope that it will be useful,
 
   8  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
   9  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  10  *    GNU General Public License for more details.
 
  12  *    You should have received a copy of the GNU General Public License
 
  13  *    along with this program; if not, write to the Free Software
 
  14  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
  18  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
 
  22  *  Tariffs manipulation methods
 
  25  *  $Date: 2007/12/23 13:39:59 $
 
  31 #include "firebird_store.h"
 
  37 const int pt_mega = 1024 * 1024;
 
  41 //-----------------------------------------------------------------------------
 
  42 int FIREBIRD_STORE::GetTariffsList(std::vector<std::string> * tariffsList) const
 
  44 STG_LOCKER lock(&mutex);
 
  46 IBPP::Transaction tr = IBPP::TransactionFactory(db, IBPP::amRead, til, tlr);
 
  47 IBPP::Statement st = IBPP::StatementFactory(db, tr);
 
  54     st->Execute("select name from tb_tariffs");
 
  58         tariffsList->push_back(name);
 
  63 catch (IBPP::Exception & ex)
 
  66     strError = "IBPP exception";
 
  67     printfd(__FILE__, ex.what());
 
  73 //-----------------------------------------------------------------------------
 
  74 int FIREBIRD_STORE::AddTariff(const std::string & name) const
 
  76 STG_LOCKER lock(&mutex);
 
  78 IBPP::Transaction tr = IBPP::TransactionFactory(db, IBPP::amWrite, til, tlr);
 
  79 IBPP::Statement st = IBPP::StatementFactory(db, tr);
 
  84     st->Prepare("execute procedure sp_add_tariff(?, ?)");
 
  91 catch (IBPP::Exception & ex)
 
  94     strError = "IBPP exception";
 
  95     printfd(__FILE__, ex.what());
 
 101 //-----------------------------------------------------------------------------
 
 102 int FIREBIRD_STORE::DelTariff(const std::string & name) const
 
 104 STG_LOCKER lock(&mutex);
 
 106 IBPP::Transaction tr = IBPP::TransactionFactory(db, IBPP::amWrite, til, tlr);
 
 107 IBPP::Statement st = IBPP::StatementFactory(db, tr);
 
 112     st->Prepare("execute procedure sp_delete_tariff(?)");
 
 118 catch (IBPP::Exception & ex)
 
 121     strError = "IBPP exception";
 
 122     printfd(__FILE__, ex.what());
 
 128 //-----------------------------------------------------------------------------
 
 129 int FIREBIRD_STORE::SaveTariff(const TARIFF_DATA & td,
 
 130                                const std::string & tariffName) const
 
 132 STG_LOCKER lock(&mutex);
 
 134 IBPP::Transaction tr = IBPP::TransactionFactory(db, IBPP::amWrite, til, tlr);
 
 135 IBPP::Statement st = IBPP::StatementFactory(db, tr);
 
 140     st->Prepare("select pk_tariff from tb_tariffs where name = ?");
 
 141     st->Set(1, tariffName);
 
 146     strprintf(&strError, "Tariff \"%s\" not found in database", tariffName.c_str());
 
 147     printfd(__FILE__, "Tariff '%s' not found in database\n", tariffName.c_str());
 
 154     std::string query = "update tb_tariffs set \
 
 160     if (schemaVersion > 0)
 
 161         query += ", period = ?";
 
 162     if (schemaVersion > 1)
 
 163         query += ", change_policy = ?, \
 
 164                     change_policy_timeout = ?";
 
 166     query += " where pk_tariff = ?";
 
 170     st->Set(1, td.tariffConf.fee);
 
 171     st->Set(2, td.tariffConf.free);
 
 172     st->Set(3, td.tariffConf.passiveCost);
 
 173     st->Set(4, td.tariffConf.traffType);
 
 175     if (schemaVersion > 0)
 
 177         st->Set(5, TARIFF::PeriodToString(td.tariffConf.period));
 
 181     if (schemaVersion > 1)
 
 183         st->Set(6, TARIFF::ChangePolicyToString(td.tariffConf.changePolicy));
 
 184         IBPP::Timestamp policyTimeout;
 
 185         time_t2ts(td.tariffConf.changePolicyTimeout, &policyTimeout);
 
 186         st->Set(7, policyTimeout);
 
 197     for(int i = 0; i < DIR_NUM; i++)
 
 200         tb.SetTime(td.dirPrice[i].hDay, td.dirPrice[i].mDay, 0);
 
 201         te.SetTime(td.dirPrice[i].hNight, td.dirPrice[i].mNight, 0);
 
 203         double pda = td.dirPrice[i].priceDayA * 1024 * 1024;
 
 204         double pdb = td.dirPrice[i].priceDayB * 1024 * 1024;
 
 208         if (td.dirPrice[i].singlePrice)
 
 215             pna = td.dirPrice[i].priceNightA;
 
 216             pnb = td.dirPrice[i].priceNightB;
 
 220         if (td.dirPrice[i].noDiscount)
 
 222             threshold = 0xffFFffFF;
 
 226             threshold = td.dirPrice[i].threshold;
 
 229         st->Prepare("update tb_tariffs_params set \
 
 235                 time_day_begins = ?, \
 
 237                 where fk_tariff = ? and dir_num = ?");
 
 242         st->Set(5, threshold);
 
 253 catch (IBPP::Exception & ex)
 
 256     strError = "IBPP exception";
 
 257     printfd(__FILE__, ex.what());
 
 263 //-----------------------------------------------------------------------------
 
 264 int FIREBIRD_STORE::RestoreTariff(TARIFF_DATA * td,
 
 265                                   const std::string & tariffName) const
 
 267 STG_LOCKER lock(&mutex);
 
 269 IBPP::Transaction tr = IBPP::TransactionFactory(db, IBPP::amRead, til, tlr);
 
 270 IBPP::Statement st = IBPP::StatementFactory(db, tr);
 
 273 td->tariffConf.name = tariffName;
 
 278     st->Prepare("select * from tb_tariffs where name = ?"); // TODO: explicit field order!
 
 279     st->Set(1, tariffName);
 
 283         strError = "Tariff \"" + tariffName + "\" not found in database";
 
 284     printfd(__FILE__, "Tariff '%s' not found in database\n", tariffName.c_str());
 
 290     st->Get(3, td->tariffConf.fee);
 
 291     st->Get(4, td->tariffConf.free);
 
 292     st->Get(5, td->tariffConf.passiveCost);
 
 293     //st->Get(6, td->tariffConf.traffType);
 
 294     td->tariffConf.traffType = TARIFF::IntToTraffType(Get<int>(st, 6));
 
 295     if (schemaVersion > 0)
 
 296         td->tariffConf.period = TARIFF::StringToPeriod(Get<std::string>(st, 7));
 
 297     if (schemaVersion > 1)
 
 299         td->tariffConf.changePolicy = TARIFF::StringToChangePolicy(Get<std::string>(st, 8));
 
 300         td->tariffConf.changePolicyTimeout = ts2time_t(Get<IBPP::Timestamp>(st, 9));
 
 303     st->Prepare("select * from tb_tariffs_params where fk_tariff = ?");
 
 312         strError = "Too mach params for tariff \"" + tariffName + "\"";
 
 313         printfd(__FILE__, "Too mach params for tariff '%s'\n", tariffName.c_str());
 
 319     st->Get(4, td->dirPrice[dir].priceDayA);
 
 320     td->dirPrice[dir].priceDayA /= 1024*1024;
 
 321     st->Get(5, td->dirPrice[dir].priceDayB);
 
 322     td->dirPrice[dir].priceDayB /= 1024*1024;
 
 323     st->Get(6, td->dirPrice[dir].priceNightA);
 
 324     td->dirPrice[dir].priceNightA /= 1024*1024;
 
 325     st->Get(7, td->dirPrice[dir].priceNightB);
 
 326     td->dirPrice[dir].priceNightB /= 1024*1024;
 
 327     st->Get(8, td->dirPrice[dir].threshold);
 
 328     if (std::fabs(td->dirPrice[dir].priceDayA - td->dirPrice[dir].priceNightA) < 1.0e-3 / pt_mega &&
 
 329         std::fabs(td->dirPrice[dir].priceDayB - td->dirPrice[dir].priceNightB) < 1.0e-3 / pt_mega)
 
 331         td->dirPrice[dir].singlePrice = true;
 
 335         td->dirPrice[dir].singlePrice = false;
 
 337     if (td->dirPrice[dir].threshold == (int)0xffFFffFF)
 
 339         td->dirPrice[dir].noDiscount = true;
 
 344         td->dirPrice[dir].noDiscount = false;
 
 352     td->dirPrice[dir].hDay = h;
 
 353     td->dirPrice[dir].mDay = m;
 
 355     td->dirPrice[dir].hNight = h;
 
 356     td->dirPrice[dir].mNight = m;
 
 361 catch (IBPP::Exception & ex)
 
 364     strError = "IBPP exception";
 
 365     printfd(__FILE__, ex.what());
 
 371 //-----------------------------------------------------------------------------