2012-04-29 20:52:25 +02:00
|
|
|
//
|
|
|
|
// ExpirationDecorator.h
|
|
|
|
//
|
|
|
|
// Library: Foundation
|
|
|
|
// Package: Events
|
|
|
|
// Module: ExpirationDecorator
|
|
|
|
//
|
|
|
|
// Implementation of the ExpirationDecorator template.
|
|
|
|
//
|
|
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
|
|
// and Contributors.
|
|
|
|
//
|
2014-05-04 21:02:42 +02:00
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
2012-04-29 20:52:25 +02:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef Foundation_ExpirationDecorator_INCLUDED
|
|
|
|
#define Foundation_ExpirationDecorator_INCLUDED
|
|
|
|
|
|
|
|
|
|
|
|
#include "Poco/Timestamp.h"
|
|
|
|
#include "Poco/Timespan.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace Poco {
|
|
|
|
|
|
|
|
|
|
|
|
template <typename TArgs>
|
|
|
|
class ExpirationDecorator
|
|
|
|
/// ExpirationDecorator adds an expiration method to values so that they can be used
|
|
|
|
/// with the UniqueExpireCache.
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ExpirationDecorator():
|
|
|
|
_value(),
|
|
|
|
_expiresAt()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ExpirationDecorator(const TArgs& p, const Poco::Timespan::TimeDiff& diffInMs):
|
|
|
|
/// Creates an element that will expire in diff milliseconds
|
|
|
|
_value(p),
|
|
|
|
_expiresAt()
|
|
|
|
{
|
|
|
|
_expiresAt += (diffInMs*1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
ExpirationDecorator(const TArgs& p, const Poco::Timespan& timeSpan):
|
|
|
|
/// Creates an element that will expire after the given timeSpan
|
|
|
|
_value(p),
|
|
|
|
_expiresAt()
|
|
|
|
{
|
|
|
|
_expiresAt += timeSpan.totalMicroseconds();
|
|
|
|
}
|
|
|
|
|
|
|
|
ExpirationDecorator(const TArgs& p, const Poco::Timestamp& timeStamp):
|
|
|
|
/// Creates an element that will expire at the given time point
|
|
|
|
_value(p),
|
|
|
|
_expiresAt(timeStamp)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
~ExpirationDecorator()
|
|
|
|
{
|
|
|
|
}
|
2022-07-07 11:18:20 +02:00
|
|
|
|
2012-04-29 20:52:25 +02:00
|
|
|
const Poco::Timestamp& getExpiration() const
|
|
|
|
{
|
|
|
|
return _expiresAt;
|
|
|
|
}
|
|
|
|
|
|
|
|
const TArgs& value() const
|
|
|
|
{
|
|
|
|
return _value;
|
|
|
|
}
|
|
|
|
|
|
|
|
TArgs& value()
|
|
|
|
{
|
|
|
|
return _value;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
TArgs _value;
|
|
|
|
Timestamp _expiresAt;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace Poco
|
|
|
|
|
|
|
|
|
|
|
|
#endif // Foundation_ExpirationDecorator_INCLUDED
|