Skip to content

Instantly share code, notes, and snippets.

@heatblazer
Created April 22, 2022 19:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save heatblazer/14487d126ed91e2e9a3206879faec26c to your computer and use it in GitHub Desktop.
Save heatblazer/14487d126ed91e2e9a3206879faec26c to your computer and use it in GitHub Desktop.
#include <iostream>
#include <cstring>
template<typename T>
struct is_validator
{
static const bool value = false;
};
struct Null {
Null(const std::string& res[[maybe_unused]]) {}
bool valid() const {
return false;
}
};
struct RtpRFC
{
std::string m_res;
RtpRFC(const std::string& res) : m_res{res}{}
bool valid() const {
if (!strcmp(m_res.c_str(), "rtp"))
return true;
return false;
}
};
struct RtspRFC
{
public:
std::string m_res;
RtspRFC(const std::string& res) : m_res{res}{}
bool valid() const {
if (!strcmp(m_res.c_str(),"rtsp"))
return true;
return false;
}
};
struct StunRFC
{
std::string m_res;
StunRFC(const std::string& res) : m_res{res}{}
bool valid() const {
if (!strcmp("stun", m_res.c_str()))
return true;
return false;
}
};
struct NonValid
{
};
template<>
struct is_validator<Null>
{
static const bool value = true;
};
template<>
struct is_validator<RtpRFC>
{
static const bool value = true;
};
template<>
struct is_validator<StunRFC>
{
static const bool value = true;
};
template<>
struct is_validator<RtspRFC>
{
static const bool value = true;
};
/*terminator*/
bool VParse(...) {
return false;
}
template <class T,
//typename std::enable_if<is_validator<T>::value>::type,
typename...ARgs>
bool VParse(T type, ARgs&&... FArgs)
{
if constexpr (is_validator<T>::value) {
if (type.valid()) {
return true;
}
else {
return VParse(std::forward<ARgs>(FArgs)...);
}
}
return VParse(std::forward<ARgs>(FArgs)...);
}
int main(void)
{
std::string ret{};
const std::string someNetworkData[10] = {
"stun", "rtp", "stun", "stun", "rtsp", "rtp", "http", "http2", "udp"
};
for(int i=0; i < 10; i++) {
auto res = someNetworkData[i];
bool valid = VParse(
10,
"test",
NonValid{},
RtpRFC{res} ,
RtspRFC{res},
StunRFC{res},
Null{res}, //dummies
Null{res},
Null{res}
);
if (valid) {
ret += res;
ret += "|";
}
}
std::cout << ret;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment