Re-format new C++ files
[babeltrace.git] / src / plugins / ctf / common / msg-iter / msg-iter.hpp
index 393da16bb3d39ab8461904392d8f486e115784b6..669cfe3d3218ba003e71bbe987707246efee9934 100644 (file)
  * Medium operations status codes.  These use the same values as
  * libbabeltrace2.
  */
-enum ctf_msg_iter_medium_status {
-       /**
-        * End of file.
-        *
-        * The medium function called by the message iterator
-        * function reached the end of the file.
-        */
-       CTF_MSG_ITER_MEDIUM_STATUS_EOF = 1,
-
-       /**
-        * There is no data available right now, try again later.
-        */
-       CTF_MSG_ITER_MEDIUM_STATUS_AGAIN = 11,
-
-       /** General error. */
-       CTF_MSG_ITER_MEDIUM_STATUS_ERROR = -1,
-
-       /** Memory error. */
-       CTF_MSG_ITER_MEDIUM_STATUS_MEMORY_ERROR = -12,
-
-       /** Everything okay. */
-       CTF_MSG_ITER_MEDIUM_STATUS_OK = 0,
+enum ctf_msg_iter_medium_status
+{
+    /**
+     * End of file.
+     *
+     * The medium function called by the message iterator
+     * function reached the end of the file.
+     */
+    CTF_MSG_ITER_MEDIUM_STATUS_EOF = 1,
+
+    /**
+     * There is no data available right now, try again later.
+     */
+    CTF_MSG_ITER_MEDIUM_STATUS_AGAIN = 11,
+
+    /** General error. */
+    CTF_MSG_ITER_MEDIUM_STATUS_ERROR = -1,
+
+    /** Memory error. */
+    CTF_MSG_ITER_MEDIUM_STATUS_MEMORY_ERROR = -12,
+
+    /** Everything okay. */
+    CTF_MSG_ITER_MEDIUM_STATUS_OK = 0,
 };
 
 /**
  * CTF message iterator API status code.
  */
-enum ctf_msg_iter_status {
-       /**
-        * End of file.
-        *
-        * The medium function called by the message iterator
-        * function reached the end of the file.
-        */
-       CTF_MSG_ITER_STATUS_EOF = CTF_MSG_ITER_MEDIUM_STATUS_EOF,
-
-       /**
-        * There is no data available right now, try again later.
-        *
-        * Some condition resulted in the
-        * ctf_msg_iter_medium_ops::request_bytes() user function not
-        * having access to any data now. You should retry calling the
-        * last called message iterator function once the situation
-        * is resolved.
-        */
-       CTF_MSG_ITER_STATUS_AGAIN = CTF_MSG_ITER_MEDIUM_STATUS_AGAIN,
-
-       /** General error. */
-       CTF_MSG_ITER_STATUS_ERROR = CTF_MSG_ITER_MEDIUM_STATUS_ERROR,
-
-       /** Memory error. */
-       CTF_MSG_ITER_STATUS_MEMORY_ERROR  = CTF_MSG_ITER_MEDIUM_STATUS_MEMORY_ERROR,
-
-       /** Everything okay. */
-       CTF_MSG_ITER_STATUS_OK = CTF_MSG_ITER_MEDIUM_STATUS_OK,
+enum ctf_msg_iter_status
+{
+    /**
+     * End of file.
+     *
+     * The medium function called by the message iterator
+     * function reached the end of the file.
+     */
+    CTF_MSG_ITER_STATUS_EOF = CTF_MSG_ITER_MEDIUM_STATUS_EOF,
+
+    /**
+     * There is no data available right now, try again later.
+     *
+     * Some condition resulted in the
+     * ctf_msg_iter_medium_ops::request_bytes() user function not
+     * having access to any data now. You should retry calling the
+     * last called message iterator function once the situation
+     * is resolved.
+     */
+    CTF_MSG_ITER_STATUS_AGAIN = CTF_MSG_ITER_MEDIUM_STATUS_AGAIN,
+
+    /** General error. */
+    CTF_MSG_ITER_STATUS_ERROR = CTF_MSG_ITER_MEDIUM_STATUS_ERROR,
+
+    /** Memory error. */
+    CTF_MSG_ITER_STATUS_MEMORY_ERROR = CTF_MSG_ITER_MEDIUM_STATUS_MEMORY_ERROR,
+
+    /** Everything okay. */
+    CTF_MSG_ITER_STATUS_OK = CTF_MSG_ITER_MEDIUM_STATUS_OK,
 };
 
 /**
@@ -95,114 +97,114 @@ enum ctf_msg_iter_status {
  * Those user functions are called by the message iterator
  * functions to request medium actions.
  */
-struct ctf_msg_iter_medium_ops {
-       /**
-        * Returns the next byte buffer to be used by the binary file
-        * reader to deserialize binary data.
-        *
-        * This function \em must be defined.
-        *
-        * The purpose of this function is to return a buffer of bytes
-        * to the message iterator, of a maximum of \p request_sz
-        * bytes. If this function cannot return a buffer of at least
-        * \p request_sz bytes, it may return a smaller buffer. In
-        * either cases, \p buffer_sz must be set to the returned buffer
-        * size (in bytes).
-        *
-        * The returned buffer's ownership remains the medium, in that
-        * it won't be freed by the message iterator functions. The
-        * returned buffer won't be modified by the message
-        * iterator functions either.
-        *
-        * When this function is called for the first time for a given
-        * file, the offset within the file is considered to be 0. The
-        * next times this function is called, the returned buffer's
-        * byte offset within the complete file must be the previous
-        * offset plus the last returned value of \p buffer_sz by this
-        * medium.
-        *
-        * This function must return one of the following statuses:
-        *
-        *   - <b>#CTF_MSG_ITER_MEDIUM_STATUS_OK</b>: Everything
-        *     is okay, i.e. \p buffer_sz is set to a positive value
-        *     reflecting the number of available bytes in the buffer
-        *     starting at the address written in \p buffer_addr.
-        *   - <b>#CTF_MSG_ITER_MEDIUM_STATUS_AGAIN</b>: No data is
-        *     available right now. In this case, the message
-        *     iterator function called by the user returns
-        *     #CTF_MSG_ITER_STATUS_AGAIN, and it is the user's
-        *     responsibility to make sure enough data becomes available
-        *     before calling the \em same message iterator
-        *     function again to continue the decoding process.
-        *   - <b>#CTF_MSG_ITER_MEDIUM_STATUS_EOF</b>: The end of
-        *     the file was reached, and no more data will ever be
-        *     available for this file. In this case, the message
-        *     iterator function called by the user returns
-        *     #CTF_MSG_ITER_STATUS_EOF. This must \em not be
-        *     returned when returning at least one byte of data to the
-        *     caller, i.e. this must be returned when there's
-        *     absolutely nothing left; should the request size be
-        *     larger than what's left in the file, this function must
-        *     return what's left, setting \p buffer_sz to the number of
-        *     remaining bytes, and return
-        *     #CTF_MSG_ITER_MEDIUM_STATUS_EOF on the \em following
-        *     call.
-        *   - <b>#CTF_MSG_ITER_MEDIUM_STATUS_ERROR</b>: A fatal
-        *     error occurred during this operation. In this case, the
-        *     message iterator function called by the user returns
-        *     #CTF_MSG_ITER_STATUS_ERROR.
-        *
-        * If #CTF_MSG_ITER_MEDIUM_STATUS_OK is not returned, the
-        * values of \p buffer_sz and \p buffer_addr are \em ignored by
-        * the caller.
-        *
-        * @param request_sz    Requested buffer size (bytes)
-        * @param buffer_addr   Returned buffer address
-        * @param buffer_sz     Returned buffer's size (bytes)
-        * @param data          User data
-        * @returns             Status code (see description above)
-        */
-       enum ctf_msg_iter_medium_status (* request_bytes)(size_t request_sz,
-                       uint8_t **buffer_addr, size_t *buffer_sz, void *data);
-
-       /**
-        * Repositions the underlying stream's position.
-        *
-        * This *optional* method repositions the underlying stream
-        * to a given absolute position in the medium.
-        *
-        * @param offset        Offset to use for the given directive
-        * @param data          User data
-        * @returns             One of #ctf_msg_iter_medium_status values
-        */
-       enum ctf_msg_iter_medium_status (* seek)(off_t offset, void *data);
-
-       /**
-        * Called when the message iterator wishes to inform the medium that it
-        * is about to start a new packet.
-        *
-        * After the iterator has called switch_packet, the following call to
-        * request_bytes must return the content at the start of the next
-        * packet.       */
-       enum ctf_msg_iter_medium_status (* switch_packet)(void *data);
-
-       /**
-        * Returns a stream instance (weak reference) for the given
-        * stream class.
-        *
-        * This is called after a packet header is read, and the
-        * corresponding stream class is found by the message
-        * iterator.
-        *
-        * @param stream_class  Stream class of the stream to get
-        * @param stream_id     Stream (instance) ID of the stream
-        *                      to get (-1ULL if not available)
-        * @param data          User data
-        * @returns             Stream instance (weak reference) or
-        *                      \c NULL on error
-        */
-       bt_stream * (* borrow_stream)(bt_stream_class *stream_class,
-                       int64_t stream_id, void *data);
+struct ctf_msg_iter_medium_ops
+{
+    /**
+     * Returns the next byte buffer to be used by the binary file
+     * reader to deserialize binary data.
+     *
+     * This function \em must be defined.
+     *
+     * The purpose of this function is to return a buffer of bytes
+     * to the message iterator, of a maximum of \p request_sz
+     * bytes. If this function cannot return a buffer of at least
+     * \p request_sz bytes, it may return a smaller buffer. In
+     * either cases, \p buffer_sz must be set to the returned buffer
+     * size (in bytes).
+     *
+     * The returned buffer's ownership remains the medium, in that
+     * it won't be freed by the message iterator functions. The
+     * returned buffer won't be modified by the message
+     * iterator functions either.
+     *
+     * When this function is called for the first time for a given
+     * file, the offset within the file is considered to be 0. The
+     * next times this function is called, the returned buffer's
+     * byte offset within the complete file must be the previous
+     * offset plus the last returned value of \p buffer_sz by this
+     * medium.
+     *
+     * This function must return one of the following statuses:
+     *
+     *   - <b>#CTF_MSG_ITER_MEDIUM_STATUS_OK</b>: Everything
+     *     is okay, i.e. \p buffer_sz is set to a positive value
+     *     reflecting the number of available bytes in the buffer
+     *     starting at the address written in \p buffer_addr.
+     *   - <b>#CTF_MSG_ITER_MEDIUM_STATUS_AGAIN</b>: No data is
+     *     available right now. In this case, the message
+     *     iterator function called by the user returns
+     *     #CTF_MSG_ITER_STATUS_AGAIN, and it is the user's
+     *     responsibility to make sure enough data becomes available
+     *     before calling the \em same message iterator
+     *     function again to continue the decoding process.
+     *   - <b>#CTF_MSG_ITER_MEDIUM_STATUS_EOF</b>: The end of
+     *     the file was reached, and no more data will ever be
+     *     available for this file. In this case, the message
+     *     iterator function called by the user returns
+     *     #CTF_MSG_ITER_STATUS_EOF. This must \em not be
+     *     returned when returning at least one byte of data to the
+     *     caller, i.e. this must be returned when there's
+     *     absolutely nothing left; should the request size be
+     *     larger than what's left in the file, this function must
+     *     return what's left, setting \p buffer_sz to the number of
+     *     remaining bytes, and return
+     *     #CTF_MSG_ITER_MEDIUM_STATUS_EOF on the \em following
+     *     call.
+     *   - <b>#CTF_MSG_ITER_MEDIUM_STATUS_ERROR</b>: A fatal
+     *     error occurred during this operation. In this case, the
+     *     message iterator function called by the user returns
+     *     #CTF_MSG_ITER_STATUS_ERROR.
+     *
+     * If #CTF_MSG_ITER_MEDIUM_STATUS_OK is not returned, the
+     * values of \p buffer_sz and \p buffer_addr are \em ignored by
+     * the caller.
+     *
+     * @param request_sz       Requested buffer size (bytes)
+     * @param buffer_addr      Returned buffer address
+     * @param buffer_sz        Returned buffer's size (bytes)
+     * @param data             User data
+     * @returns                Status code (see description above)
+     */
+    enum ctf_msg_iter_medium_status (*request_bytes)(size_t request_sz, uint8_t **buffer_addr,
+                                                     size_t *buffer_sz, void *data);
+
+    /**
+     * Repositions the underlying stream's position.
+     *
+     * This *optional* method repositions the underlying stream
+     * to a given absolute position in the medium.
+     *
+     * @param offset   Offset to use for the given directive
+     * @param data             User data
+     * @returns                One of #ctf_msg_iter_medium_status values
+     */
+    enum ctf_msg_iter_medium_status (*seek)(off_t offset, void *data);
+
+    /**
+     * Called when the message iterator wishes to inform the medium that it
+     * is about to start a new packet.
+     *
+     * After the iterator has called switch_packet, the following call to
+     * request_bytes must return the content at the start of the next
+     * packet.  */
+    enum ctf_msg_iter_medium_status (*switch_packet)(void *data);
+
+    /**
+     * Returns a stream instance (weak reference) for the given
+     * stream class.
+     *
+     * This is called after a packet header is read, and the
+     * corresponding stream class is found by the message
+     * iterator.
+     *
+     * @param stream_class     Stream class of the stream to get
+     * @param stream_id        Stream (instance) ID of the stream
+     *                 to get (-1ULL if not available)
+     * @param data             User data
+     * @returns                Stream instance (weak reference) or
+     *                 \c NULL on error
+     */
+    bt_stream *(*borrow_stream)(bt_stream_class *stream_class, int64_t stream_id, void *data);
 };
 
 /** CTF message iterator. */
@@ -225,14 +227,10 @@ struct ctf_msg_iter;
  *                             success, or \c NULL on error
  */
 BT_HIDDEN
-struct ctf_msg_iter *ctf_msg_iter_create(
-               struct ctf_trace_class *tc,
-               size_t max_request_sz,
-               struct ctf_msg_iter_medium_ops medops,
-               void *medops_data,
-               bt_logging_level log_level,
-               bt_self_component *self_comp,
-               bt_self_message_iterator *self_msg_iter);
+struct ctf_msg_iter *ctf_msg_iter_create(struct ctf_trace_class *tc, size_t max_request_sz,
+                                         struct ctf_msg_iter_medium_ops medops, void *medops_data,
+                                         bt_logging_level log_level, bt_self_component *self_comp,
+                                         bt_self_message_iterator *self_msg_iter);
 
 /**
  * Destroys a CTF message iterator, freeing all internal resources.
@@ -262,40 +260,42 @@ void ctf_msg_iter_destroy(struct ctf_msg_iter *msg_iter);
  * @returns                    One of #ctf_msg_iter_status values
  */
 BT_HIDDEN
-enum ctf_msg_iter_status ctf_msg_iter_get_next_message(
-               struct ctf_msg_iter *msg_it,
-               const bt_message **message);
-
-struct ctf_msg_iter_packet_properties {
-       int64_t exp_packet_total_size;
-       int64_t exp_packet_content_size;
-       uint64_t stream_class_id;
-       int64_t data_stream_id;
-
-       struct {
-               uint64_t discarded_events;
-               uint64_t packets;
-               uint64_t beginning_clock;
-               uint64_t end_clock;
-       } snapshots;
+enum ctf_msg_iter_status ctf_msg_iter_get_next_message(struct ctf_msg_iter *msg_it,
+                                                       const bt_message **message);
+
+struct ctf_msg_iter_packet_properties
+{
+    int64_t exp_packet_total_size;
+    int64_t exp_packet_content_size;
+    uint64_t stream_class_id;
+    int64_t data_stream_id;
+
+    struct
+    {
+        uint64_t discarded_events;
+        uint64_t packets;
+        uint64_t beginning_clock;
+        uint64_t end_clock;
+    } snapshots;
 };
 
 BT_HIDDEN
-enum ctf_msg_iter_status ctf_msg_iter_get_packet_properties(
-               struct ctf_msg_iter *msg_it,
-               struct ctf_msg_iter_packet_properties *props);
+enum ctf_msg_iter_status
+ctf_msg_iter_get_packet_properties(struct ctf_msg_iter *msg_it,
+                                   struct ctf_msg_iter_packet_properties *props);
 
 BT_HIDDEN
-enum ctf_msg_iter_status ctf_msg_iter_curr_packet_first_event_clock_snapshot(
-               struct ctf_msg_iter *msg_it, uint64_t *first_event_cs);
+enum ctf_msg_iter_status
+ctf_msg_iter_curr_packet_first_event_clock_snapshot(struct ctf_msg_iter *msg_it,
+                                                    uint64_t *first_event_cs);
 
 BT_HIDDEN
-enum ctf_msg_iter_status ctf_msg_iter_curr_packet_last_event_clock_snapshot(
-               struct ctf_msg_iter *msg_it, uint64_t *last_event_cs);
+enum ctf_msg_iter_status
+ctf_msg_iter_curr_packet_last_event_clock_snapshot(struct ctf_msg_iter *msg_it,
+                                                   uint64_t *last_event_cs);
 
 BT_HIDDEN
-enum ctf_msg_iter_status ctf_msg_iter_seek(
-               struct ctf_msg_iter *msg_it, off_t offset);
+enum ctf_msg_iter_status ctf_msg_iter_seek(struct ctf_msg_iter *msg_it, off_t offset);
 
 /*
  * Resets the iterator so that the next requested medium bytes are
@@ -314,47 +314,42 @@ BT_HIDDEN
 void ctf_msg_iter_reset_for_next_stream_file(struct ctf_msg_iter *msg_it);
 
 BT_HIDDEN
-void ctf_msg_iter_set_dry_run(struct ctf_msg_iter *msg_it,
-               bool val);
+void ctf_msg_iter_set_dry_run(struct ctf_msg_iter *msg_it, bool val);
 
-static inline
-const char *ctf_msg_iter_medium_status_string(
-               enum ctf_msg_iter_medium_status status)
+static inline const char *ctf_msg_iter_medium_status_string(enum ctf_msg_iter_medium_status status)
 {
-       switch (status) {
-       case CTF_MSG_ITER_MEDIUM_STATUS_EOF:
-               return "EOF";
-       case CTF_MSG_ITER_MEDIUM_STATUS_AGAIN:
-               return "AGAIN";
-       case CTF_MSG_ITER_MEDIUM_STATUS_ERROR:
-               return "ERROR";
-       case CTF_MSG_ITER_MEDIUM_STATUS_MEMORY_ERROR:
-               return "MEMORY_ERROR";
-       case CTF_MSG_ITER_MEDIUM_STATUS_OK:
-               return "OK";
-       }
-
-       bt_common_abort();
+    switch (status) {
+    case CTF_MSG_ITER_MEDIUM_STATUS_EOF:
+        return "EOF";
+    case CTF_MSG_ITER_MEDIUM_STATUS_AGAIN:
+        return "AGAIN";
+    case CTF_MSG_ITER_MEDIUM_STATUS_ERROR:
+        return "ERROR";
+    case CTF_MSG_ITER_MEDIUM_STATUS_MEMORY_ERROR:
+        return "MEMORY_ERROR";
+    case CTF_MSG_ITER_MEDIUM_STATUS_OK:
+        return "OK";
+    }
+
+    bt_common_abort();
 }
 
-static inline
-const char *ctf_msg_iter_status_string(
-               enum ctf_msg_iter_status status)
+static inline const char *ctf_msg_iter_status_string(enum ctf_msg_iter_status status)
 {
-       switch (status) {
-       case CTF_MSG_ITER_STATUS_EOF:
-               return "EOF";
-       case CTF_MSG_ITER_STATUS_AGAIN:
-               return "AGAIN";
-       case CTF_MSG_ITER_STATUS_ERROR:
-               return "ERROR";
-       case CTF_MSG_ITER_STATUS_MEMORY_ERROR:
-               return "MEMORY_ERROR";
-       case CTF_MSG_ITER_STATUS_OK:
-               return "OK";
-       }
-
-       bt_common_abort();
+    switch (status) {
+    case CTF_MSG_ITER_STATUS_EOF:
+        return "EOF";
+    case CTF_MSG_ITER_STATUS_AGAIN:
+        return "AGAIN";
+    case CTF_MSG_ITER_STATUS_ERROR:
+        return "ERROR";
+    case CTF_MSG_ITER_STATUS_MEMORY_ERROR:
+        return "MEMORY_ERROR";
+    case CTF_MSG_ITER_STATUS_OK:
+        return "OK";
+    }
+
+    bt_common_abort();
 }
 
 #endif /* CTF_MSG_ITER_H */
This page took 0.02913 seconds and 4 git commands to generate.