X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/d25555ce9c6e09344356868780e678c75bbbd164..0907aa4037b12b6b88ee24495d4577a064d4f8db:/projects/stargazer/corps_impl.h diff --git a/projects/stargazer/corps_impl.h b/projects/stargazer/corps_impl.h index ad705c54..43bcb5d9 100644 --- a/projects/stargazer/corps_impl.h +++ b/projects/stargazer/corps_impl.h @@ -18,53 +18,54 @@ * Author : Maxim Mamontov */ -#ifndef CORPORATIONS_IMPL_H -#define CORPORATIONS_IMPL_H - -#include - -#include -#include -#include +#pragma once #include "stg/corporations.h" #include "stg/corp_conf.h" #include "stg/locker.h" -#include "stg/store.h" -#include "stg/noncopyable.h" #include "stg/logger.h" -class ADMIN; +#include +#include +#include +#include + +namespace STG +{ -class CORPORATIONS_IMPL : private NONCOPYABLE, public CORPORATIONS { +struct Admin; +struct Store; + +class CorporationsImpl : public Corporations { public: - CORPORATIONS_IMPL(STORE * st); - virtual ~CORPORATIONS_IMPL() {} + explicit CorporationsImpl(Store* st); + + int Add(const CorpConf& corp, const Admin* admin) override; + int Del(const std::string& name, const Admin* admin) override; + int Change(const CorpConf& corp, const Admin* admin) override; + bool Find(const std::string& name, CorpConf* corp) override; + bool Exists(const std::string& name) const override; + const std::string& GetStrError() const override { return strError; } - int Add(const CORP_CONF & corp, const ADMIN * admin); - int Del(const std::string & name, const ADMIN * admin); - int Change(const CORP_CONF & corp, const ADMIN * admin); - bool Find(const std::string & name, CORP_CONF * corp); - bool Exists(const std::string & name) const; - const std::string & GetStrError() const { return strError; } + size_t Count() const override { return data.size(); } - int OpenSearch() const; - int SearchNext(int, CORP_CONF * corp) const; - int CloseSearch(int) const; + int OpenSearch() const override; + int SearchNext(int, CorpConf* corp) const override; + int CloseSearch(int) const override; private: - typedef list::iterator crp_iter; - typedef list::const_iterator const_crp_iter; + typedef std::vector::iterator crp_iter; + typedef std::vector::const_iterator const_crp_iter; bool Read(); - std::list data; - STORE * store; - STG_LOGGER & WriteServLog; + std::vector data; + Store* store; + Logger& WriteServLog; mutable std::map searchDescriptors; - mutable unsigned int handle; - mutable pthread_mutex_t mutex; - std::string strError; + mutable unsigned int handle; + mutable std::mutex mutex; + std::string strError; }; -#endif +}