29 BOOST_CONCEPT_ASSERT((boost::EqualityComparable<ValidityPeriod>));
30 BOOST_CONCEPT_ASSERT((WireEncodable<ValidityPeriod>));
31 BOOST_CONCEPT_ASSERT((WireEncodableWithEncodingBuffer<ValidityPeriod>));
32 BOOST_CONCEPT_ASSERT((WireDecodable<ValidityPeriod>));
33 static_assert(std::is_base_of<tlv::Error, ValidityPeriod::Error>::value,
34 "ValidityPeriod::Error must inherit from tlv::Error");
40 using boost::chrono::time_point_cast;
44 time::system_clock::TimePoint())
50 : m_notBefore(time_point_cast<TimePoint::duration>(notBefore + TimePoint::duration(1) -
51 time::system_clock::TimePoint::duration(1)))
52 , m_notAfter(time_point_cast<TimePoint::duration>(notAfter))
61 template<encoding::Tag TAG>
65 size_t totalLength = 0;
70 totalLength += encoder.prependVarNumber(totalLength);
89 m_wire = buffer.block();
99 NDN_THROW(
Error(
"The supplied block does not contain wire format"));
119 m_notBefore = time_point_cast<TimePoint::duration>(
121 m_notAfter = time_point_cast<TimePoint::duration>(
124 catch (
const std::bad_cast&) {
125 NDN_THROW(
Error(
"Invalid date format in NOT-BEFORE or NOT-AFTER field"));
134 m_notBefore = time_point_cast<TimePoint::duration>(notBefore + TimePoint::duration(1) -
135 time::system_clock::TimePoint::duration(1));
136 m_notAfter = time_point_cast<TimePoint::duration>(notAfter);
140 std::pair<time::system_clock::TimePoint, time::system_clock::TimePoint>
143 return std::make_pair(m_notBefore, m_notAfter);
149 return m_notBefore <= now && now <= m_notAfter;
system_clock::TimePoint fromIsoString(const std::string &isoString)
Convert from the ISO string (YYYYMMDDTHHMMSS,fffffffff) representation to the internal time format...
const Block & wireEncode() const
Encode ValidityPeriod into TLV block.
void parse() const
Parse TLV-VALUE into sub-elements.
Represents a TLV element of the NDN packet format.
bool isValid(const time::system_clock::TimePoint &now=time::system_clock::now()) const
Check if now falls within the validity period.
size_t prependStringBlock(EncodingImpl< TAG > &encoder, uint32_t type, const std::string &value)
Prepend a TLV element containing a string.
bool hasWire() const noexcept
Check if the Block contains a fully encoded wire representation.
static const size_t NOT_BEFORE_OFFSET
std::string readString(const Block &block)
Read TLV-VALUE of a TLV element as a string.
ValidityPeriod & setPeriod(const time::system_clock::TimePoint ¬Before, const time::system_clock::TimePoint ¬After)
Set validity period [notBefore, notAfter].
const element_container & elements() const
Get container of sub-elements.
Abstraction of validity period.
void reset() noexcept
Reset the Block to a default-constructed state.
static const size_t ISO_DATETIME_SIZE
std::pair< time::system_clock::TimePoint, time::system_clock::TimePoint > getPeriod() const
Get the stored validity period.
#define NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(ClassName)
size_t elements_size() const
Equivalent to elements().size()
static const size_t NOT_AFTER_OFFSET
std::string toIsoString(const system_clock::TimePoint &timePoint)
Convert to the ISO string representation of the time (YYYYMMDDTHHMMSS,fffffffff)
ValidityPeriod()
Set validity period [UNIX epoch + 1 nanosecond, UNIX epoch] that is always invalid.
void wireDecode(const Block &wire)
Decode ValidityPeriod from TLV block.
std::ostream & operator<<(std::ostream &os, const SigningInfo &si)
EncodingImpl< EncoderTag > EncodingBuffer
uint32_t type() const
Return the TLV-TYPE of the Block.
EncodingImpl< EstimatorTag > EncodingEstimator