libcamera: geometry: SizeRange: Add toString()

It's useful to be able to print a string representation of a SizeRange
to the log or console, add a toString() method. While at it turn the
structure into a class as it contains functions as well as data.

Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Niklas Söderlund
2019-05-26 02:28:20 +02:00
parent ed56f16c4b
commit 6bd094ad68
2 changed files with 19 additions and 1 deletions

View File

@@ -67,7 +67,9 @@ static inline bool operator>=(const Size &lhs, const Size &rhs)
return !(lhs < rhs);
}
struct SizeRange {
class SizeRange
{
public:
SizeRange()
{
}
@@ -90,6 +92,8 @@ struct SizeRange {
{
}
std::string toString() const;
Size min;
Size max;
unsigned int hStep;

View File

@@ -266,6 +266,20 @@ bool operator<(const Size &lhs, const Size &rhs)
* \brief The vertical step
*/
/**
* \brief Assemble and return a string describing the size range
* \return A string describing the SizeRange
*/
std::string SizeRange::toString() const
{
std::stringstream ss;
ss << "(" << min.toString() << ")-(" << max.toString() << ")/(+"
<< hStep << ",+" << vStep << ")";
return ss.str();
}
/**
* \brief Compare size ranges for equality
* \return True if the two size ranges are equal, false otherwise