summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/libcamera/request.h3
-rw-r--r--src/libcamera/request.cpp28
2 files changed, 28 insertions, 3 deletions
diff --git a/include/libcamera/request.h b/include/libcamera/request.h
index cd5a2474..4cf5ff3f 100644
--- a/include/libcamera/request.h
+++ b/include/libcamera/request.h
@@ -10,6 +10,7 @@
#include <map>
#include <memory>
#include <stdint.h>
+#include <string>
#include <unordered_set>
#include <libcamera/class.h>
@@ -56,6 +57,8 @@ public:
bool hasPendingBuffers() const { return !pending_.empty(); }
+ std::string toString() const;
+
private:
LIBCAMERA_DISABLE_COPY(Request)
diff --git a/src/libcamera/request.cpp b/src/libcamera/request.cpp
index 5280b68c..ce2dd7b1 100644
--- a/src/libcamera/request.cpp
+++ b/src/libcamera/request.cpp
@@ -8,6 +8,7 @@
#include <libcamera/request.h>
#include <map>
+#include <sstream>
#include <libcamera/buffer.h>
#include <libcamera/camera.h>
@@ -286,9 +287,7 @@ void Request::complete()
status_ = cancelled_ ? RequestCancelled : RequestComplete;
- LOG(Request, Debug)
- << "Request has completed - cookie: " << cookie_
- << (cancelled_ ? " [Cancelled]" : "");
+ LOG(Request, Debug) << toString();
LIBCAMERA_TRACEPOINT(request_complete, this);
}
@@ -321,4 +320,27 @@ bool Request::completeBuffer(FrameBuffer *buffer)
return !hasPendingBuffers();
}
+/**
+ * \brief Generate a string representation of the Request internals
+ *
+ * This function facilitates debugging of Request state while it is used
+ * internally within libcamera.
+ *
+ * \return A string representing the current state of the request
+ */
+std::string Request::toString() const
+{
+ std::stringstream ss;
+
+ /* Pending, Completed, Cancelled(X). */
+ static const char *statuses = "PCX";
+
+ /* Example Output: Request(55:P:1/2:6523524) */
+ ss << "Request(" << sequence_ << ":" << statuses[status_] << ":"
+ << pending_.size() << "/" << bufferMap_.size() << ":"
+ << cookie_ << ")";
+
+ return ss.str();
+}
+
} /* namespace libcamera */