31#ifndef DW_FRAMEWORK_CHANNEL_PARAMETERS_HPP_
32#define DW_FRAMEWORK_CHANNEL_PARAMETERS_HPP_
34#include <dwshared/dwfoundation/dw/core/base/ExceptionWithStatus.hpp>
35#include <dwshared/dwfoundation/dw/core/container/BaseString.hpp>
36#include <dwshared/dwfoundation/dw/core/container/HashContainer.hpp>
37#include <dwshared/dwfoundation/dw/core/container/StringView.hpp>
38#include <dwshared/dwfoundation/dw/core/container/VectorFixed.hpp>
39#include <dwshared/dwfoundation/dw/core/language/cxx23.hpp>
40#include <dwshared/dwfoundation/dw/core/safety/SafeStrOps.hpp>
41#include <dwshared/dwfoundation/dw/core/safety/Safety.hpp>
42#include <dwshared/dwsockets/SocketClientServer.hpp>
43#include <dw/core/system/NvMediaExt.h>
75 const char* value{
"type=SHMEM_LOCAL"};
80 const char* value{
"type=SHMEM_REMOTE"};
85 const char* value{
"type=EGLSTREAM"};
90 const char* value{
"type=SOCKET"};
95 const char* value{
"type=DDS"};
100 const char* value{
"type=NVSCI"};
105 const char* value{
"type=FSI"};
110 dw::core::unreachable();
230 const int32_t BASE_10{10};
231 return dw::core::safeStrtol(value.c_str(),
nullptr, BASE_10);
239 int64_t translatedSize{ParseChannelParameter<int64_t>(value)};
241 if (translatedSize < 0)
243 throw ExceptionWithStatus(DW_INVALID_ARGUMENT,
"ParseChannelParameter: size_t is negative");
245 size_t result{
static_cast<size_t>(translatedSize)};
254 size_t translatedSize{ParseChannelParameter<size_t>(value)};
255 if (translatedSize > std::numeric_limits<uint32_t>::max())
257 throw ExceptionWithStatus(DW_INVALID_ARGUMENT,
"ParseChannelParameter: value is larger than uint32_t allows");
259 uint32_t result{
static_cast<uint32_t
>(translatedSize)};
268 size_t translatedSize{ParseChannelParameter<size_t>(value)};
269 if (translatedSize > std::numeric_limits<uint16_t>::max())
271 throw ExceptionWithStatus(DW_INVALID_ARGUMENT,
"ParseChannelParameter: port is larger than uint16_t allows!");
273 uint16_t result{
static_cast<uint16_t
>(translatedSize)};
282 size_t translatedSize{ParseChannelParameter<size_t>(value)};
283 if (translatedSize > std::numeric_limits<uint8_t>::max())
285 throw ExceptionWithStatus(DW_INVALID_ARGUMENT,
"ParseChannelParameter: port is larger than uint8_t allows!");
287 uint8_t result{
static_cast<uint8_t
>(translatedSize)};
297 static const dw::core::StaticHashMap<ChannelParamStr, bool, 4> MAPPING{
303 if (!MAPPING.contains(value))
305 throw ExceptionWithStatus(DW_INVALID_ARGUMENT,
"ParseChannelParameter: needs to be 'true' or 'false' or 1/0");
307 return MAPPING.at(value);
316 static const dw::core::StaticHashMap<ChannelParamStr, ChannelRole, 3> MAPPING{
323 if (!MAPPING.contains(value))
325 throw ExceptionWithStatus(DW_INVALID_ARGUMENT,
"ParseChannelParameter: role unknown!");
327 return MAPPING.at(value);
336 static const dw::core::StaticHashMap<ChannelParamStr, ChannelType, 7> MAPPING{
347 if (!MAPPING.contains(value))
349 throw ExceptionWithStatus(DW_INVALID_ARGUMENT,
"ParseChannelParameter: type unknown!");
351 return MAPPING.at(value);
360 static const dw::core::StaticHashMap<ChannelParamStr, ChannelMode, 2> MAPPING{
366 if (!MAPPING.contains(value))
368 throw ExceptionWithStatus(DW_INVALID_ARGUMENT,
"ParseChannelParameter: ChannelMode unknown!");
370 return MAPPING.at(value);
378 const char* PEER_LOCATION_SEPARATOR{
"."};
379 size_t pos{value.find(PEER_LOCATION_SEPARATOR)};
385 ChannelParamStr second{value.substr(dw::core::safeAdd(pos, 1U).value())};
386 result.
socID = ParseChannelParameter<uint32_t>(first);
387 result.vmID = ParseChannelParameter<uint32_t>(second);
396 result = ParseChannelParameter<T>(value);
399template <
size_t Size>
407template <
typename T,
size_t N>
412 const char* ELEMENT_SEPARATOR{
":"};
417 endpos = value.find(ELEMENT_SEPARATOR, pos);
418 bool done{dw::core::FixedString<1>::NPOS == endpos};
419 size_t count{done ? endpos : endpos - pos};
422 static_cast<void>(result.push_back(entry));
437 if (dw::core::StringView(key.data(), key.size()) == staticKey)
444 typename T,
typename... Others,
445 std::enable_if_t<
sizeof...(Others) != 0>* =
nullptr>
450 if (dw::core::StringView(key.data(), key.size()) == staticKey)
458template <
typename... Others>
465 const char* KEY_VALUE_SEPARATOR{
"="};
466 std::size_t pos{channelParams.find(KEY_VALUE_SEPARATOR)};
468 std::size_t value{0U};
470 std::size_t valueEnd{0U};
472 const char* PARAMETER_SEPARATOR{
","};
475 while (dw::core::FixedString<1>::NPOS != pos && dw::core::FixedString<1>::NPOS != value)
478 keyString = channelParams.substr(key, dw::core::safeSub(pos, key).value());
479 value = channelParams.find(PARAMETER_SEPARATOR, pos);
480 if (dw::core::FixedString<1>::NPOS == value)
485 valueEnd = dw::core::safeSub(channelParams.length(), dw::core::safeAdd(pos, 1U).value()).value();
491 valueEnd = dw::core::safeSub(dw::core::safeSub(value, pos).value(), 1U).value();
494 valueString = channelParams.substr(pos + 1U, valueEnd);
499 pos = channelParams.find(KEY_VALUE_SEPARATOR, key);
507 const char* serverIP,
509 bool producerFifo =
false,
510 uint16_t numBlockingConnections = 1U,
511 dw::core::FixedString<8>
const sockPrefix = dw::core::FixedString<8>())
513 std::stringstream ss{};
514 static_cast<void>(ss.flags(std::ios::dec));
516 if (
nullptr != serverIP)
523 ss <<
",producer-fifo=";
525 ss << (producerFifo ? 1U : 0U);
526 ss <<
",num-clients=";
527 ss << numBlockingConnections;
528 ss <<
",sock-prefix=";
537 dw::core::FixedString<MAX_CHANNEL_ALL_PARAMS_SIZE> channelParams{params};
539 dw::core::StringView{
"ip"}, m_serverIP,
540 dw::core::StringView{
"producer-fifo"}, m_producerFifo,
541 dw::core::StringView{
"id"}, m_port,
542 dw::core::StringView{
"connect-timeout"}, m_connectTimeout,
543 dw::core::StringView{
"sock-prefix"}, m_sockPrefix);
554 dwshared::socketipc::SockPrefixStr
getSockPrefix()
const {
return m_sockPrefix; }
559 bool m_producerFifo{
false};
560 dwTime_t m_connectTimeout{DW_TIME_INVALID};
561 dwshared::socketipc::SockPrefixStr m_sockPrefix{};
574 dw::core::FixedString<MAX_CHANNEL_ALL_PARAMS_SIZE> channelParams{params};
577 dw::core::StringView{
"limits"},
m_limits,
580 dw::core::StringView{
"late-locs"},
m_lateLocs);
589 static_assert(
decltype(
m_streamNames)::CAPACITY_AT_COMPILE_TIME < std::numeric_limits<size_t>::max(),
"ChannelNvSciStreamParams: number of outputs over limit");
605 throw ExceptionWithStatus(DW_INVALID_ARGUMENT,
"ChannelNvSciStreamParams: stream name index out of range");
623 throw ExceptionWithStatus(DW_INVALID_ARGUMENT,
"ChannelNvSciStreamParams: limiter maxPackets index out of range");
638 throw ExceptionWithStatus(DW_INVALID_ARGUMENT,
"ChannelNvSciStreamParams: connect prio index out of range");
644 dw::core::VectorFixed<ChannelStreamNameStr, MAX_CHANNEL_STREAM_NAMES>
m_streamNames{};
646 dw::core::VectorFixed<int64_t, MAX_CHANNEL_STREAM_NAMES>
m_limits{};
659 dw::core::StringView{
"compat-vendor"}, m_compatVendor,
660 dw::core::StringView{
"compat-app"}, m_compatApp,
661 dw::core::StringView{
"num-channel"}, m_numChannel);
662 m_compat = m_compatVendor;
663 m_compat += dw::core::StringView{
","};
664 m_compat += m_compatApp;
671 const char*
getCompat()
const {
return m_compat.c_str(); }
678 uint8_t m_numChannel{0U};
691 dw::core::StringView{
"fifo-size"}, m_fifoSize,
692 dw::core::StringView{
"id"}, m_id,
693 dw::core::StringView{
"uid"}, m_uid,
694 dw::core::StringView{
"connect-group-id"}, m_connectGroupID,
695 dw::core::StringView{
"singleton-id"}, m_singletonId,
696 dw::core::StringView{
"mode"}, m_mode,
697 dw::core::StringView{
"reuse"}, m_reuseEnabled,
698 dw::core::StringView{
"debug-port"}, m_debugPort,
699 dw::core::StringView{
"num-clients"}, m_clientsCount,
700 dw::core::StringView{
"debug-num-clients"}, m_debugClientsCount,
701 dw::core::StringView{
"role"}, m_role,
702 dw::core::StringView{
"type"}, m_type,
703 dw::core::StringView{
"data-offset"}, m_dataOffset,
704 dw::core::StringView{
"strict"}, m_strictFifo,
705 dw::core::StringView{
"sync-enabled"}, m_syncEnabled,
706 dw::core::StringView{
"name"}, m_name,
707 dw::core::StringView{
"producer-fifo"}, m_producerFifo,
708 dw::core::StringView{
"sync-object-id"}, m_syncObjectId);
709 adjustPoolCapacity();
712 if (0U == m_clientsCount)
718 if (!m_singletonId.empty())
725 m_mailboxMode =
true;
729 m_singletonMode =
true;
732 if (!m_id.empty() && m_singletonId.empty())
734 m_singletonId = m_id;
742 setParameters(params);
750 const char*
getStr()
const {
return m_str.c_str(); }
765 m_strictFifo = strictFifo;
787 uint32_t
getUID()
const {
return m_uid; }
797 throw ExceptionWithStatus(DW_CALL_NOT_ALLOWED,
"ChannelParams: getSocketParams: channel is not of type SOCKET");
799 return m_socketParams;
806 throw ExceptionWithStatus(DW_CALL_NOT_ALLOWED,
"ChannelParams: getNvSciStreamParams: channel is not of type NVSCI or SHMEM_REMOTE");
808 return m_nvSciStreamParams;
815 throw ExceptionWithStatus(DW_CALL_NOT_ALLOWED,
"ChannelParams: getFSIParams: channel is not of type FSI");
821 void ValidateMailbox()
826 if (1U != m_fifoSize)
828 throw ExceptionWithStatus(DW_INVALID_ARGUMENT,
"ChannelParams: Singleton and mailbox modes are incompatible with a fifo setting other than 1");
831 if (!m_mailboxMode && m_reuseEnabled)
833 throw ExceptionWithStatus(DW_INVALID_ARGUMENT,
"ChannelParams: reuse=true specified when mode!=mailbox. Not valid");
837 void ValidateSingleton()
841 throw ExceptionWithStatus(DW_INVALID_ARGUMENT,
"ChannelParams: Singleton mode is only valid for SHMEM_LOCAL channels");
845 void setParameters(
const char* params)
852 m_socketParams = ChannelSocketParams(params);
856 m_nvSciStreamParams = ChannelNvSciStreamParams(params);
859 m_fsiParams = ChannelFSIParams(params);
864 throw ExceptionWithStatus(DW_NOT_IMPLEMENTED,
"ChannelParams: no parameters for channel type");
868 void adjustPoolCapacity()
893 size_t m_fifoSize{1U};
901 bool m_producerFifo{
false};
903 uint32_t m_dataOffset{0U};
905 uint32_t m_connectGroupID{0U};
906 bool m_syncEnabled{
false};
907 bool m_mailboxMode{
false};
908 bool m_singletonMode{
false};
909 bool m_reuseEnabled{
false};
912 bool m_strictFifo{
true};
914 uint16_t m_clientsCount{1U};
915 uint16_t m_debugClientsCount{1U};
917 uint16_t m_debugPort{0U};
919 ChannelSocketParams m_socketParams{};
920 ChannelNvSciStreamParams m_nvSciStreamParams{};
921 ChannelFSIParams m_fsiParams{};
ChannelFSIParams()=default
ChannelFSIParams & operator=(const ChannelFSIParams &other)=default
uint8_t getNumChannel() const
ChannelFSIParams(const char *params)
ChannelFSIParams(const ChannelFSIParams &other)=default
const char * getCompat() const
uint32_t getConnectPrio(size_t index=0U) const
ChannelNvSciStreamParams & operator=(const ChannelNvSciStreamParams &other)=default
size_t getLocalClientCount() const
ChannelNvSciStreamParams(const char *params)
dw::core::VectorFixed< ChannelStreamNameStr, MAX_CHANNEL_STREAM_NAMES > m_streamNames
int64_t getLimiterMaxPackets(size_t index=0U) const
dw::core::VectorFixed< ChannelPeerLocation, 32 > m_lateLocs
dw::core::VectorFixed< uint32_t, MAX_CHANNEL_STREAM_NAMES > m_connectPrios
size_t m_localClientCount
ChannelNvSciStreamParams(const ChannelNvSciStreamParams &other)=default
dw::core::span< ChannelPeerLocation const > getLateLocs() const
size_t getNumOutputs() const
dw::core::VectorFixed< int64_t, MAX_CHANNEL_STREAM_NAMES > m_limits
ChannelNvSciStreamParams()=default
ChannelStreamNameStr getStreamName(size_t index=0U) const
ChannelParams(const ChannelParams &other)=default
void setMailboxMode(bool mailboxEnabled)
bool isStrictFifo() const
bool getReuseEnabled() const
size_t getPoolCapacity() const
const char * getStr() const
uint16_t getExpectedConnectionsCount() const
ChannelType getType() const
uint16_t getExpectedDebugConnectionsCount() const
ChannelParams & operator=(const ChannelParams &other)=default
void setFifoSize(size_t fifoSize)
const ChannelSocketParams & getSocketParams() const
ChannelParamStr getName() const
bool getSyncEnabled() const
const ChannelNvSciStreamParams & getNvSciStreamParams() const
bool getDebugMode() const
const ChannelFSIParams & getFSIParams() const
ChannelParamStr getSingletonId() const
uint32_t getConnectGroupID() const
const ChannelParamStr & getSyncObjectId() const
uint16_t getDebugPort() const
void setStrictFifo(bool strictFifo)
ChannelRole getRole() const
bool getMailboxMode() const
ChannelParamStr getId() const
bool hasProducerFifo() const
size_t getFifoSize() const
uint32_t getDataOffset() const
ChannelParams(const char *params)
bool getSingletonMode() const
dwTime_t getConnectTimeout() const
bool hasProducerFifo() const
ChannelSocketParams & operator=(const ChannelSocketParams &other)=default
dwshared::socketipc::SockPrefixStr getSockPrefix() const
ChannelParamStr getServerIP() const
ChannelSocketParams(const ChannelSocketParams &other)=default
static ChannelParamStr getParamStr(const char *serverIP, uint16_t port, bool producerFifo=false, uint16_t numBlockingConnections=1U, dw::core::FixedString< 8 > const sockPrefix=dw::core::FixedString< 8 >())
ChannelSocketParams(const char *params)
ChannelSocketParams()=default
ChannelNvSciStreamEnabledComponents
static constexpr uint16_t MAX_CHANNEL_STREAM_NAMES
static constexpr uint16_t MAX_CHANNEL_ALL_PARAMS_SIZE
dw::core::FixedString< MAX_CHANNEL_PARAM_SIZE > ChannelParamStr
@ DW_CHANNEL_ROLE_PRODUCER
allows producer only
@ DW_CHANNEL_ROLE_CONSUMER
allows consumer only
@ DW_CHANNEL_ROLE_COMPOSITE
allows both producer and consumer
static constexpr uint16_t MAX_CHANNEL_STREAM_NAME_SIZE
constexpr bool IsProducer(ChannelRole role)
static T ParseChannelParameter(const ChannelParamStr &value)
constexpr ChannelNvSciStreamEnabledComponents operator&(ChannelNvSciStreamEnabledComponents a, ChannelNvSciStreamEnabledComponents b)
static void ParseChannelParameters(const ChannelParamStr &key, const ChannelParamStr &value, dw::core::StringView staticKey, T &result)
constexpr ChannelNvSciStreamEnabledComponents operator|(ChannelNvSciStreamEnabledComponents a, ChannelNvSciStreamEnabledComponents b)
static void ParseAllChannelParameters(const ChannelParamStr &channelParams, Others &&... others)
static constexpr uint16_t MAX_CHANNEL_PARAM_SIZE
constexpr bool IsConsumer(ChannelRole role)
static constexpr uint16_t MAX_CHANNEL_PRODUCERS_COUNT
const char * ToParam(ChannelType channelType)
@ CONNECTION_TYPE_DYNAMIC
dw::core::FixedString< MAX_CHANNEL_STREAM_NAME_SIZE > ChannelStreamNameStr
static constexpr uint16_t MAX_CHANNEL_CONSUMERS_COUNT
@ SHMEM_LOCAL
local shared memory
@ DDS
Data Distribution Service (DDS)
@ SHMEM_REMOTE
remote shared memory