/** * * \section COPYRIGHT * * Copyright 2013-2020 Software Radio Systems Limited * * By using this file, you agree to the terms and conditions set * forth in the LICENSE file which can be found at the top level of * the distribution. * */ #ifndef SRSLOG_DETAIL_LOG_ENTRY_H #define SRSLOG_DETAIL_LOG_ENTRY_H #include "srslte/srslog/detail/log_entry_metadata.h" #include "srslte/srslog/detail/support/thread_utils.h" namespace srslog { class sink; namespace detail { /// This command flushes all the messages pending in the backend. struct flush_backend_cmd { shared_variable& completion_flag; std::vector sinks; }; /// This structure packs all the required data required to create a log entry in /// the backend. //:TODO: replace this object using a real command pattern when we have a raw // memory queue for passing entries. struct log_entry { sink* s; std::function format_func; log_entry_metadata metadata; std::unique_ptr flush_cmd; }; } // namespace detail } // namespace srslog #endif // SRSLOG_DETAIL_LOG_ENTRY_H