/* Copyright 2009-2020, Sumeet Chhetri Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ /* * TeBkUmLpqAsync.h * * Created on: 03-Feb-2020 * Author: sumeetc */ #ifndef WEB_TE_BENCHMARK_UM_INCLUDE_TeBkUmLpqAsync_H_ #define WEB_TE_BENCHMARK_UM_INCLUDE_TeBkUmLpqAsync_H_ #include "TemplateHandler.h" #include "vector" #ifndef OS_MINGW #include #include #endif #include "DataSourceManager.h" #include #include #include "CryptoHandler.h" #include "vector" #include "CastUtil.h" #include "CacheManager.h" #include #include "HttpRequest.h" #include "HttpResponse.h" #include "JSONSerialize.h" #include "string" #include "yuarel.h" #include "Router.h" #include #include "ConfigurationData.h" class TeBkUmLpqAsyncWorld { int id; int randomNumber; public: TeBkUmLpqAsyncWorld(); TeBkUmLpqAsyncWorld(int id); TeBkUmLpqAsyncWorld(int id, int randomNumber); virtual ~TeBkUmLpqAsyncWorld(); int getId() const; void setId(int id); int getRandomNumber() const; void setRandomNumber(int randomNumber); }; class TeBkUmLpqAsyncFortune { int id; public: std::string message_i; std::string_view message; bool allocd; TeBkUmLpqAsyncFortune(int id); TeBkUmLpqAsyncFortune(int id, std::string message); TeBkUmLpqAsyncFortune(); virtual ~TeBkUmLpqAsyncFortune(); int getId() const; void setId(int id); bool operator < (const TeBkUmLpqAsyncFortune& other) const; }; class TeBkUmLpqAsyncMessage { std::string message; public: TeBkUmLpqAsyncMessage(); TeBkUmLpqAsyncMessage(std::string message); virtual ~TeBkUmLpqAsyncMessage(); const std::string& getMessage() const; void setMessage(const std::string& message); }; struct AsyncDbReq { float httpVers; bool conn_clos; SocketInterface* sif; TeBkUmLpqAsyncWorld w; }; struct AsyncQueriesReq { float httpVers; bool conn_clos; SocketInterface* sif; std::vector vec; }; struct AsyncUpdatesReq { float httpVers; bool conn_clos; SocketInterface* sif; LibpqDataSourceImpl* sqli; std::vector vec; }; struct AsyncFortuneReq { float httpVers; bool conn_clos; SocketInterface* sif; std::list flst; }; struct AsyncCacheReq { CacheInterface* cchi; std::vector vec; }; class TeBkUmLpqAsyncRouter : public Router { static const std::string HELLO_WORLD; static const std::string WORLD; static const std::string WORLD_ONE_QUERY; static const std::string WORLD_ALL_QUERY; static const std::string FORTUNE_ALL_QUERY; static int g_seed; static TemplatePtr tmplFunc; static Ser m_ser; static Ser w_ser; static SerCont wcont_ser; static std::string& getUpdQuery(int count); void dbAsync(SocketInterface* sif); void queriesAsync(const char* q, int ql, SocketInterface* sif); void updatesAsync(const char* q, int ql, AsyncUpdatesReq* req); void updatesAsyncb(const char* q, int ql, AsyncUpdatesReq* req); void cachedWorlds(const char*, int, std::vector&); void fortunes(SocketInterface* sif); void queriesMultiAsync(const char*, int, SocketInterface* sif); void updatesMulti(const char*, int, AsyncUpdatesReq*); static std::unordered_map _qC; LibpqDataSourceImpl* sqli; protected: virtual LibpqDataSourceImpl* getDb(int max = 0); public: TeBkUmLpqAsyncRouter& operator=(const TeBkUmLpqAsyncRouter& a) { return *this; } TeBkUmLpqAsyncRouter(const TeBkUmLpqAsyncRouter& a) { sqli = NULL; } TeBkUmLpqAsyncRouter(); virtual ~TeBkUmLpqAsyncRouter(); void updateCache(); /* These functions are here just for test purposes and serve no purpose START */ static void temp() { } virtual void temp1() const { } std::map l(std::map a1, std::map a2) { return std::map(); } /* END */ bool route(HttpRequest* req, HttpResponse* res, SocketInterface* sif); }; class TeBkUmLpqAsyncRouterPooled : public TeBkUmLpqAsyncRouter { LibpqDataSourceImpl* getDb(int max = 0); std::atomic opt; bool inited; int maxconns; std::vector pool; public: TeBkUmLpqAsyncRouterPooled& operator=(const TeBkUmLpqAsyncRouterPooled& a) { return *this; } TeBkUmLpqAsyncRouterPooled(const TeBkUmLpqAsyncRouterPooled& a) { this->opt = 0; this->inited = false; this->maxconns = 7; } TeBkUmLpqAsyncRouterPooled(); virtual ~TeBkUmLpqAsyncRouterPooled(); }; #endif /* WEB_TE_BENCHMARK_UM_INCLUDE_TeBkUmLpqAsync_H_ */