OOPS
anonymous_namespace{mpi.cc} Namespace Reference

Functions

std::pair< std::vector< char >, std::vector< size_t > > encodeStrings (const std::vector< std::string > &strings)
 Join strings into a single character array before MPI transfer. More...
 
std::vector< std::string > decodeStrings (const std::vector< char > &charArray, const std::vector< size_t > &lengths)
 Split a character array into multiple strings. More...
 

Function Documentation

◆ decodeStrings()

std::vector<std::string> anonymous_namespace{mpi.cc}::decodeStrings ( const std::vector< char > &  charArray,
const std::vector< size_t > &  lengths 
)

Split a character array into multiple strings.

Parameters
charArrayA character array storing a number of concatenated strings (without separating null characters).
lengthsThe list of lengths of the strings stored in charArray.
Returns
A vector of strings extracted from charArray.

Definition at line 63 of file oops/mpi/mpi.cc.

Here is the caller graph for this function:

◆ encodeStrings()

std::pair<std::vector<char>, std::vector<size_t> > anonymous_namespace{mpi.cc}::encodeStrings ( const std::vector< std::string > &  strings)

Join strings into a single character array before MPI transfer.

Parameters
stringsStrings to join.
Returns
A pair of two vectors. The first is a concatenation of all input strings (without any separating null characters). The second is the list of lengths of these strings.

Definition at line 32 of file oops/mpi/mpi.cc.

Here is the caller graph for this function: