-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
issue #21 #28
base: master
Are you sure you want to change the base?
issue #21 #28
Conversation
ndn-svs/common.hpp
Outdated
@@ -23,6 +23,7 @@ | |||
#include <ndn-cxx/face.hpp> | |||
#include <ndn-cxx/interest.hpp> | |||
#include <ndn-cxx/security/validator.hpp> | |||
#include <ndn-cxx/util/regex.hpp> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please include this in the files where it's actually needed, not in common.hpp
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for your review and I will update them accordingly
@@ -181,6 +193,7 @@ class SVSPubSub : noncopyable | |||
SubscriptionCallback callback; | |||
bool isPacketSubscription; | |||
bool prefetch; | |||
std::shared_ptr<Regex> regex = make_shared<Regex>("^<>+$"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why a shared_ptr
?
ndn-svs/svspubsub.cpp
Outdated
NodeID nid = nodePrefix == EMPTY_NAME ? m_dataPrefix : nodePrefix; | ||
SeqNo seqNo = m_svsync.getCore().getSeqNo(nid) + 1; | ||
|
||
// Insert mapping and manually update the sequence number | ||
insertMapping(nid, seqNo, name, mappingBlocks); | ||
m_svsync.getCore().updateSeqNo(seqNo, nid); | ||
|
||
return seqNo; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
indentation looks wrong
ndn-svs/svspubsub.cpp
Outdated
@@ -284,19 +302,41 @@ SVSPubSub::processMapping(const NodeID& nodeId, SeqNo seqNo) | |||
bool queued = false; | |||
for (const auto& sub : m_prefixSubscriptions) | |||
{ | |||
if (sub.prefix.isPrefixOf(mapping.first)) | |||
if (sub.prefix.isPrefixOf(mapping.first) and sub.autofetch) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please use &&
in C++
ndn-svs/svspubsub.cpp
Outdated
{ | ||
m_fetchMap[std::pair(nodeId, seqNo)].push_back(sub); | ||
queued = true; | ||
} | ||
else if (sub.prefix.isPrefixOf(mapping.first) and !sub.autofetch) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
refactor the if/else to avoid repeating the conditions
ndn-svs/svspubsub.cpp
Outdated
ndn::span<const uint8_t>{}, | ||
nodeId, | ||
seqNo, | ||
ndn::Data() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't love this "passing an empty Data" to be honest...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you have any suggestion? Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not at the moment... I didn't do too much thinking to be honest. But maybe this should be a new/separate API instead of shoehorning it into the existing API with a bool as discriminator.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah... But it's better to be compatible with old APIs because of existing apps...
@@ -194,6 +208,7 @@ class SVSPubSub : noncopyable | |||
bool isPacketSubscription; | |||
bool prefetch; | |||
std::shared_ptr<Regex> regex = make_shared<Regex>("^<>+$"); | |||
bool autofetch = true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This wastes space in the struct, please move the bool next to the others above to minimize padding. Even better, the bools and the uint32_t
should be grouped together.
ndn-svs/svspubsub.cpp
Outdated
} | ||
for (const auto& sub : m_regexSubscriptions) | ||
{ | ||
if (sub.regex->match(mapping.first)) | ||
if (sub.regex->match(mapping.first) and sub.autofetch) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
...&&
...
A new API to publish names only (Won't change old APIs);
Subscribe with Regex and users can decide whether fetching data automatically;