- /*
- $Revision: 1.7 $
- $Date: 2010/10/07 18:43:21 $
- */
-
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
*/
-/*
- $Revision: 1.7 $
- $Date: 2010/10/07 18:43:21 $
- $Author: faust $
- */
-
-#ifndef TARIFFS_H
-#define TARIFFS_H
+#ifndef TARIFFS_IMPL_H
+#define TARIFFS_IMPL_H
#include <pthread.h>
#include <string>
#include <list>
+#include <set>
-#include "tariff.h"
-#include "tariff_conf.h"
+#include "stg/tariff.h"
+#include "stg/tariffs.h"
+#include "stg/tariff_conf.h"
+#include "tariff_impl.h"
#define TARIFF_DAY 0
#define TARIFF_NIGHT 1
-class BASE_STORE;
+class STORE;
class STG_LOGGER;
class ADMIN;
-//-----------------------------------------------------------------------------
-class TARIFFS
-{
+class TARIFFS_IMPL : public TARIFFS {
public:
- TARIFFS(BASE_STORE * store);
- ~TARIFFS();
- int ReadTariffs ();
+ typedef std::list<TARIFF_IMPL> Tariffs;
+
+ TARIFFS_IMPL(STORE * store);
+ virtual ~TARIFFS_IMPL();
+ int ReadTariffs ();
const TARIFF * FindByName(const std::string & name) const;
- const TARIFF * GetNoTariff() const { return &noTariff; };
- int GetTariffsNum() const;
- int Del(const std::string & name, const ADMIN & admin);
- int Add(const std::string & name, const ADMIN & admin);
- int Chg(const TARIFF_DATA & td, const ADMIN & admin);
+ const TARIFF * GetNoTariff() const { return &noTariff; }
+ size_t Count() const;
+ int Del(const std::string & name, const ADMIN * admin);
+ int Add(const std::string & name, const ADMIN * admin);
+ int Chg(const TARIFF_DATA & td, const ADMIN * admin);
- void GetTariffsData(std::list<TARIFF_DATA> * tdl);
+ void AddNotifierAdd(NOTIFIER_BASE<TARIFF_DATA> * notifier);
+ void DelNotifierAdd(NOTIFIER_BASE<TARIFF_DATA> * notifier);
+
+ void AddNotifierDel(NOTIFIER_BASE<TARIFF_DATA> * notifier);
+ void DelNotifierDel(NOTIFIER_BASE<TARIFF_DATA> * notifier);
+
+ void GetTariffsData(std::list<TARIFF_DATA> * tdl) const;
+
+ const std::string & GetStrError() const { return strError; }
- const std::string & GetStrError() const { return strError; };
private:
- std::list<TARIFF> tariffs;
- BASE_STORE * store;
- STG_LOGGER & WriteServLog;
+ TARIFFS_IMPL(const TARIFFS_IMPL & rvalue);
+ TARIFFS_IMPL & operator=(const TARIFFS_IMPL & rvalue);
+
+ Tariffs tariffs;
+ STORE * store;
+ STG_LOGGER & WriteServLog;
mutable pthread_mutex_t mutex;
- std::string strError;
- TARIFF noTariff;
+ std::string strError;
+ TARIFF_IMPL noTariff;
+
+ std::set<NOTIFIER_BASE<TARIFF_DATA>*> onAddNotifiers;
+ std::set<NOTIFIER_BASE<TARIFF_DATA>*> onDelNotifiers;
};
-//-----------------------------------------------------------------------------
#endif