mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
45 lines
976 B
C++
45 lines
976 B
C++
/**
|
|
*
|
|
* SessionManager.h
|
|
* An Tao
|
|
*
|
|
* Copyright 2018, An Tao. All rights reserved.
|
|
* https://github.com/an-tao/drogon
|
|
* Use of this source code is governed by a MIT license
|
|
* that can be found in the License file.
|
|
*
|
|
* Drogon
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <drogon/Session.h>
|
|
#include <drogon/CacheMap.h>
|
|
#include <trantor/utils/NonCopyable.h>
|
|
#include <trantor/net/EventLoop.h>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <mutex>
|
|
|
|
namespace drogon
|
|
{
|
|
class SessionManager : public trantor::NonCopyable
|
|
{
|
|
public:
|
|
SessionManager(trantor::EventLoop *loop, size_t timeout);
|
|
~SessionManager()
|
|
{
|
|
sessionMapPtr_.reset();
|
|
}
|
|
SessionPtr getSession(const std::string &sessionID, bool needToSet);
|
|
void changeSessionId(const SessionPtr &sessionPtr);
|
|
|
|
private:
|
|
std::unique_ptr<CacheMap<std::string, SessionPtr>> sessionMapPtr_;
|
|
std::mutex mapMutex_;
|
|
trantor::EventLoop *loop_;
|
|
size_t timeout_;
|
|
};
|
|
} // namespace drogon
|