Flow-IPC 1.0.2
Flow-IPC project: Full implementation reference.
Namespaces | Classes | Typedefs
ipc::session::shm Namespace Reference

ipc::session sub-namespace that groups together facilities for SHM-backed sessions, particularly augmenting Client_session, Server_session, and Session_server classes by providing SHM-backed zero-copy functionality. More...

Namespaces

namespace  arena_lend
 Bundles ipc::session::shm support for the various arena-lend-style SHM-providers, as of this writing at least ipc::session::shm::arena_lend::jemalloc.
 
namespace  classic
 Support for SHM-backed ipc::session sessions and session-servers with the SHM-classic (ipc::shm::classic::Pool_arena) provider.
 

Classes

struct  Arena_to_shm_session
 Implementation of Arena_to_shm_session_t. More...
 
struct  Arena_to_shm_session< ipc::shm::arena_lend::jemalloc::Ipc_arena >
 Implementation of Arena_to_shm_session_t for SHM-jemalloc arenas. More...
 
struct  Arena_to_shm_session< ipc::shm::classic::Pool_arena >
 Implementation of Arena_to_shm_session_t for SHM-classic arenas. More...
 

Typedefs

template<typename Arena >
using Arena_to_shm_session_t = typename Arena_to_shm_session< Arena >::Type
 Alias that, given an Arena type (with Arena::construct<T>() which allocates/constructs a T), yields a Shm_session type over which one can Shm_session::lend_object<T>() so-constructed objects. More...
 

Detailed Description

ipc::session sub-namespace that groups together facilities for SHM-backed sessions, particularly augmenting Client_session, Server_session, and Session_server classes by providing SHM-backed zero-copy functionality.

ipc::session::shm is itself empty or almost empty; but for each possible SHM provider there is a further sub-namespace; for example ipc::session::shm::classic.

Background

ipc::shm provides SHM facilities, including ipc::shm::classic and ipc::shm::arena_lend::jemalloc, that can be used stand-alone, without ipc::session. As with ipc::transport, though, this is not very convenient. ipc::session is well integrated with ipc::shm in that it provides certain pre-made arenas and simplifies transmission of handles to SHM-constructed objects and allows to place transport::struc::Channel out-messages into SHM instead of heap – achieving full zero-copy if desired. ipc::session::shm is where this support lives.

Details

If you want these features, everything in the "Overview of relevant APIs" section (of ipc::session doc header) still applies identically, except you shall choose different types rather than Client_session, Server_session, Session_server. Firstly decide which SHM-provider; as of this writing ipc::shm::classic::Pool_arena or ipc::shm::arena_lend::jemalloc. For illustration let's assume you chose the former. Then:

We strongly recommend making yourself aliases as shown below, then from that point on obtaining all subsequent ipc::session types via aliases contained within those aliases (and then more aliases off those aliases as needed). The idea is to have only one point in the code where the SHM-backing (or no SHM backing) of the system are specified (simply by indicating the namespace of the top-level Session_server or Client_session type of choice), so that it can be easily changed to another, a-la generic programming.

Server-side:

<...>; // Compile-time session-configuring knobs go here.
// ^-- Substitute shm::arena_lend::jemalloc::Session_server or even non-zero-copy plain Session_server as desired.
// From this point on, no need to mention `ipc::session` again. In particular, e.g.:
template<typename Message_body>
using Structured_channel = typename Session::template Structured_channel<Message_body>;
// Off we go! Use the types as needed.
// ...
Session session; // Maybe fill it out with Session_server::async_accept() following this.
// ...
Structured_channel<MessageSchemaRootOfTheGods> cool_channel(...);
// ...
To be instantiated typically once in a given process, an object of this type asynchronously listens f...
Server_session< S_MQ_TYPE_OR_NONE, S_TRANSMIT_NATIVE_HANDLES, Mdt_payload > Server_session_obj
Short-hand for the concrete Server_session-like type emitted by async_accept().
A documentation-only concept defining the local side of an IPC conversation (session) with another en...
Definition: session.hpp:216
This is to vanilla Session_server what shm::classic::Server_session is to vanilla Server_session: it ...

Client-side:

<...>; // Matching (to server-side) knobs go here.
// ^-- Substitute shm::arena_lend::jemalloc::Client_session or even non-zero-copy plain Client_session as desired.
// From this point on, no need to mention `ipc::session` again. In particular, e.g.:
template<typename Message_body>
using Structured_channel = typename Session::template Structured_channel<Message_body>;
// Off we go! Use the types as needed.
// ...
Session session(...); // Maybe .sync_connect() following this.
// ...
Structured_channel<MessageSchemaRootOfTheGods> cool_channel(...);
// ...
Implements the SHM-related API common to shm::classic::Server_session and shm::classic::Client_sessio...
Definition: session.hpp:44

Entering PEER state is exactly identical to the vanilla APIs (the differences are under the hood). Once in PEER state, however, the added capabilities become available; these are on top of the Session concept API, in the form added members including methods. A quick survey:

That's with SHM-classic. With SHM-jemalloc it is all quite similar; basically just replace classic with arena_lend::jemalloc in various names above (more or less). Reminder: it is easiest and most stylish to not have to a big search/replace but rather to use the top-level alias technique shown in the above code snippets.

Further details about SHM-classic versus SHM-jemalloc (etc.) are documented elsewhere. Preview: arena_lend::jemalloc is safer and faster (backed by the commercial-grade "jemalloc" malloc() impl algorithm), though it does not allow app_shm()->construct() (per-app-scope allocation) on the client side (via shm::arena_lend::jemalloc::Client_session – available only shm::arena_lend::jemalloc::Server_session); there's no such method as shm::arena_lend::jemalloc::Client_session::app_shm().

One more small thing: logging addendum for SHM-jemalloc users

This is really a footnote in importance, though there's no good reason to ignore it either. A certain aspect of SHM-jemalloc (and potentially more future arena-lending-type SHM-providers) requires singleton-based (essentially, global) operation. You need not worry about it... it just works... except it (like all Flow-IPC code) logs; and thus needs to know to which Logger to log. Since various ipc::session objects don't want to presume whose Logger is the one to impose on this shared global guy – plus the setter is not thread-safe – we ask that you do so sometime before any ipc::session::arena_lend object creation. Namely just do this:

ipc::session::shm::arena_lend::Borrower_shm_pool_collection_repository_singleton::get_instance()
.set_logger(...); // ... = pointer to your Logger of choice. Null to disable logging (which is default anyway).

If SHM-jemalloc is not used, this call is harmless.

Typedef Documentation

◆ Arena_to_shm_session_t

template<typename Arena >
using ipc::session::shm::Arena_to_shm_session_t = typedef typename Arena_to_shm_session<Arena>::Type

Alias that, given an Arena type (with Arena::construct<T>() which allocates/constructs a T), yields a Shm_session type over which one can Shm_session::lend_object<T>() so-constructed objects.

Informally, for informational convenience:

  • Arena-sharing SHM-providers (classic::Pool_arena as of this writing), by definition, are symmetric, where each side can both lend and borrow, allocate and write within the same Arena. Hence they will map Arena to itself. The Arena object also acts as the Shm_session.
  • Arena-lending SHM-providers (arena_lend::jemalloc as of this writing), by definition, are asymmetric; the borrowing side can only read, not allocate. Hence they will map Arena to a different dedicated Shm_session type.
Template Parameters
ArenaSHM arena type that has method of the form shared_ptr<T> construct<T>(...).

Definition at line 54 of file shm.hpp.