From e6918187568dbd01842d8d1d2c808ce16a894239 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:54:28 +0200 Subject: Adding upstream version 18.2.2. Signed-off-by: Daniel Baumann --- src/tools/immutable_object_cache/CacheServer.h | 45 ++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 src/tools/immutable_object_cache/CacheServer.h (limited to 'src/tools/immutable_object_cache/CacheServer.h') diff --git a/src/tools/immutable_object_cache/CacheServer.h b/src/tools/immutable_object_cache/CacheServer.h new file mode 100644 index 000000000..31d859934 --- /dev/null +++ b/src/tools/immutable_object_cache/CacheServer.h @@ -0,0 +1,45 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab + +#ifndef CEPH_CACHE_CACHE_SERVER_H +#define CEPH_CACHE_CACHE_SERVER_H + +#include +#include + +#include "Types.h" +#include "SocketCommon.h" +#include "CacheSession.h" + + +using boost::asio::local::stream_protocol; + +namespace ceph { +namespace immutable_obj_cache { + +class CacheServer { + public: + CacheServer(CephContext* cct, const std::string& file, ProcessMsg processmsg); + ~CacheServer(); + + int run(); + int start_accept(); + int stop(); + + private: + void accept(); + void handle_accept(CacheSessionPtr new_session, + const boost::system::error_code& error); + + private: + CephContext* cct; + boost::asio::io_service m_io_service; + ProcessMsg m_server_process_msg; + stream_protocol::endpoint m_local_path; + stream_protocol::acceptor m_acceptor; +}; + +} // namespace immutable_obj_cache +} // namespace ceph + +#endif -- cgit v1.2.3