Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 1 | #ifndef AOS_EVENTS_EVENT_LOOP_H_ |
| 2 | #define AOS_EVENTS_EVENT_LOOP_H_ |
| 3 | |
Brian Silverman | 6a54ff3 | 2020-04-28 16:41:39 -0700 | [diff] [blame] | 4 | #include <sched.h> |
| 5 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 6 | #include <atomic> |
milind | 1f1dca3 | 2021-07-03 13:50:07 -0700 | [diff] [blame] | 7 | #include <ostream> |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 8 | #include <string> |
James Kuszmaul | 3ae4226 | 2019-11-08 12:33:41 -0800 | [diff] [blame] | 9 | #include <string_view> |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 10 | |
Austin Schuh | 3054f5f | 2021-07-21 15:38:01 -0700 | [diff] [blame] | 11 | #include "absl/container/btree_set.h" |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 12 | #include "aos/configuration.h" |
| 13 | #include "aos/configuration_generated.h" |
Austin Schuh | 1af273d | 2020-03-07 20:11:34 -0800 | [diff] [blame] | 14 | #include "aos/events/channel_preallocated_allocator.h" |
Austin Schuh | 7d87b67 | 2019-12-01 20:23:49 -0800 | [diff] [blame] | 15 | #include "aos/events/event_loop_event.h" |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 16 | #include "aos/events/event_loop_generated.h" |
| 17 | #include "aos/events/timing_statistics.h" |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 18 | #include "aos/flatbuffers.h" |
Brian Silverman | 79ec7fc | 2020-06-08 20:11:22 -0500 | [diff] [blame] | 19 | #include "aos/ftrace.h" |
Brian Silverman | a1652f3 | 2020-01-29 20:41:44 -0800 | [diff] [blame] | 20 | #include "aos/ipc_lib/data_alignment.h" |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 21 | #include "aos/json_to_flatbuffer.h" |
| 22 | #include "aos/time/time.h" |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 23 | #include "aos/util/phased_loop.h" |
Austin Schuh | 4385b14 | 2021-03-14 21:31:13 -0700 | [diff] [blame] | 24 | #include "aos/uuid.h" |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 25 | #include "flatbuffers/flatbuffers.h" |
| 26 | #include "glog/logging.h" |
| 27 | |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 28 | DECLARE_bool(timing_reports); |
| 29 | DECLARE_int32(timing_report_ms); |
| 30 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 31 | namespace aos { |
| 32 | |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 33 | class EventLoop; |
| 34 | class WatcherState; |
| 35 | |
Austin Schuh | 6231cc3 | 2019-12-07 13:06:15 -0800 | [diff] [blame] | 36 | // Struct available on Watchers, Fetchers, Timers, and PhasedLoops with context |
| 37 | // about the current message. |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 38 | struct Context { |
Austin Schuh | ad15482 | 2019-12-27 15:45:13 -0800 | [diff] [blame] | 39 | // Time that the message was sent on this node, or the timer was triggered. |
| 40 | monotonic_clock::time_point monotonic_event_time; |
| 41 | // Realtime the message was sent on this node. This is set to min_time for |
| 42 | // Timers and PhasedLoops. |
| 43 | realtime_clock::time_point realtime_event_time; |
| 44 | |
James Kuszmaul | ad52304 | 2022-10-05 16:47:33 -0700 | [diff] [blame] | 45 | // The rest are only valid for Watchers and Fetchers. |
| 46 | |
Austin Schuh | ad15482 | 2019-12-27 15:45:13 -0800 | [diff] [blame] | 47 | // For a single-node configuration, these two are identical to *_event_time. |
| 48 | // In a multinode configuration, these are the times that the message was |
| 49 | // sent on the original node. |
| 50 | monotonic_clock::time_point monotonic_remote_time; |
| 51 | realtime_clock::time_point realtime_remote_time; |
| 52 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 53 | // Index in the queue. |
| 54 | uint32_t queue_index; |
Austin Schuh | ad15482 | 2019-12-27 15:45:13 -0800 | [diff] [blame] | 55 | // Index into the remote queue. Useful to determine if data was lost. In a |
| 56 | // single-node configuration, this will match queue_index. |
| 57 | uint32_t remote_queue_index; |
| 58 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 59 | // Size of the data sent. |
| 60 | size_t size; |
| 61 | // Pointer to the data. |
Brian Silverman | eaa41d6 | 2020-07-08 19:47:35 -0700 | [diff] [blame] | 62 | const void *data; |
Austin Schuh | 678078e | 2020-08-01 14:30:36 -0700 | [diff] [blame] | 63 | |
Brian Silverman | 4f4e061 | 2020-08-12 19:54:41 -0700 | [diff] [blame] | 64 | // Index of the message buffer. This will be in [0, NumberBuffers) on |
| 65 | // read_method=PIN channels, and -1 for other channels. |
| 66 | // |
| 67 | // This only tells you about the underlying storage for this message, not |
| 68 | // anything about its position in the queue. This is only useful for advanced |
| 69 | // zero-copy use cases, on read_method=PIN channels. |
| 70 | // |
| 71 | // This will uniquely identify a message on this channel at a point in time. |
| 72 | // For senders, this point in time is while the sender has the message. With |
| 73 | // read_method==PIN, this point in time includes while the caller has access |
| 74 | // to this context. For other read_methods, this point in time may be before |
| 75 | // the caller has access to this context, which makes this pretty useless. |
| 76 | int buffer_index; |
| 77 | |
Austin Schuh | 8902fa5 | 2021-03-14 22:39:24 -0700 | [diff] [blame] | 78 | // UUID of the remote node which sent this message, or this node in the case |
| 79 | // of events which are local to this node. |
Austin Schuh | a9012be | 2021-07-21 15:19:11 -0700 | [diff] [blame] | 80 | UUID source_boot_uuid = UUID::Zero(); |
Austin Schuh | 8902fa5 | 2021-03-14 22:39:24 -0700 | [diff] [blame] | 81 | |
Austin Schuh | ca75b6a | 2020-12-15 21:12:24 -0800 | [diff] [blame] | 82 | // Efficiently copies the flatbuffer into a FlatbufferVector, allocating |
Austin Schuh | 678078e | 2020-08-01 14:30:36 -0700 | [diff] [blame] | 83 | // memory in the process. It is vital that T matches the type of the |
| 84 | // underlying flatbuffer. |
| 85 | template <typename T> |
| 86 | FlatbufferVector<T> CopyFlatBuffer() const { |
Brian Silverman | 354697a | 2020-09-22 21:06:32 -0700 | [diff] [blame] | 87 | ResizeableBuffer buffer; |
| 88 | buffer.resize(size); |
| 89 | memcpy(buffer.data(), data, size); |
| 90 | return FlatbufferVector<T>(std::move(buffer)); |
Austin Schuh | 678078e | 2020-08-01 14:30:36 -0700 | [diff] [blame] | 91 | } |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 92 | }; |
| 93 | |
| 94 | // Raw version of fetcher. Contains a local variable that the fetcher will |
| 95 | // update. This is used for reflection and as an interface to implement typed |
| 96 | // fetchers. |
| 97 | class RawFetcher { |
| 98 | public: |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 99 | RawFetcher(EventLoop *event_loop, const Channel *channel); |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 100 | RawFetcher(const RawFetcher &) = delete; |
| 101 | RawFetcher &operator=(const RawFetcher &) = delete; |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 102 | virtual ~RawFetcher(); |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 103 | |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 104 | // Fetches the next message in the queue without blocking. Returns true if |
| 105 | // there was a new message and we got it. |
| 106 | bool FetchNext(); |
| 107 | |
| 108 | // Fetches the latest message without blocking. |
| 109 | bool Fetch(); |
| 110 | |
| 111 | // Returns the channel this fetcher uses. |
| 112 | const Channel *channel() const { return channel_; } |
| 113 | // Returns the context for the current message. |
| 114 | const Context &context() const { return context_; } |
| 115 | |
| 116 | protected: |
| 117 | EventLoop *event_loop() { return event_loop_; } |
Austin Schuh | 3054f5f | 2021-07-21 15:38:01 -0700 | [diff] [blame] | 118 | const EventLoop *event_loop() const { return event_loop_; } |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 119 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 120 | Context context_; |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 121 | |
| 122 | private: |
| 123 | friend class EventLoop; |
| 124 | // Implementation |
| 125 | virtual std::pair<bool, monotonic_clock::time_point> DoFetchNext() = 0; |
| 126 | virtual std::pair<bool, monotonic_clock::time_point> DoFetch() = 0; |
| 127 | |
Brian Silverman | 79ec7fc | 2020-06-08 20:11:22 -0500 | [diff] [blame] | 128 | EventLoop *const event_loop_; |
| 129 | const Channel *const channel_; |
| 130 | const std::string ftrace_prefix_; |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 131 | |
| 132 | internal::RawFetcherTiming timing_; |
Brian Silverman | 79ec7fc | 2020-06-08 20:11:22 -0500 | [diff] [blame] | 133 | Ftrace ftrace_; |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 134 | }; |
| 135 | |
| 136 | // Raw version of sender. Sends a block of data. This is used for reflection |
| 137 | // and as a building block to implement typed senders. |
| 138 | class RawSender { |
| 139 | public: |
Tyler Chatow | b7c6eba | 2021-07-28 14:43:23 -0700 | [diff] [blame] | 140 | using SharedSpan = std::shared_ptr<const absl::Span<const uint8_t>>; |
| 141 | |
Brian Silverman | 183859c | 2022-05-14 02:03:06 -0700 | [diff] [blame] | 142 | // This looks a little ugly with no space, but please leave it so clang-format |
| 143 | // doesn't keep changing it. Bug is filed at |
| 144 | // <https://github.com/llvm/llvm-project/issues/55457>. |
| 145 | enum class [[nodiscard]] Error{ |
milind | 1f1dca3 | 2021-07-03 13:50:07 -0700 | [diff] [blame] | 146 | // Represents success and no error |
| 147 | kOk, |
| 148 | |
| 149 | // Error for messages on channels being sent faster than their |
| 150 | // frequency and channel storage duration allow |
Eric Schmiedeberg | ef44b8a | 2022-02-28 17:30:38 -0700 | [diff] [blame] | 151 | kMessagesSentTooFast, |
| 152 | // Access to Redzone was attempted in Sender Queue |
Brian Silverman | 183859c | 2022-05-14 02:03:06 -0700 | [diff] [blame] | 153 | kInvalidRedzone, |
Eric Schmiedeberg | ef44b8a | 2022-02-28 17:30:38 -0700 | [diff] [blame] | 154 | }; |
milind | 1f1dca3 | 2021-07-03 13:50:07 -0700 | [diff] [blame] | 155 | |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 156 | RawSender(EventLoop *event_loop, const Channel *channel); |
| 157 | RawSender(const RawSender &) = delete; |
| 158 | RawSender &operator=(const RawSender &) = delete; |
| 159 | |
| 160 | virtual ~RawSender(); |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 161 | |
Brian Silverman | 9809c5f | 2022-07-23 16:12:23 -0700 | [diff] [blame] | 162 | // Returns the buffer to write new messages into. This is always valid, and |
| 163 | // may change after calling any of the Send functions. |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 164 | virtual void *data() = 0; |
| 165 | virtual size_t size() = 0; |
milind | 1f1dca3 | 2021-07-03 13:50:07 -0700 | [diff] [blame] | 166 | |
| 167 | // Sends a message without copying it. The users starts by copying up to |
| 168 | // size() bytes into the data backed by data(). They then call Send to send. |
| 169 | // Returns Error::kOk on a successful send, or |
| 170 | // Error::kMessagesSentTooFast if messages were sent too fast. If provided, |
| 171 | // monotonic_remote_time, realtime_remote_time, and remote_queue_index are |
| 172 | // attached to the message and are available in the context on the read side. |
| 173 | // If they are not populated, the read side will get the sent times instead. |
| 174 | Error Send(size_t size); |
| 175 | Error Send(size_t size, monotonic_clock::time_point monotonic_remote_time, |
| 176 | realtime_clock::time_point realtime_remote_time, |
| 177 | uint32_t remote_queue_index, const UUID &source_boot_uuid); |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 178 | |
| 179 | // Sends a single block of data by copying it. |
Austin Schuh | ad15482 | 2019-12-27 15:45:13 -0800 | [diff] [blame] | 180 | // The remote arguments have the same meaning as in Send above. |
milind | 1f1dca3 | 2021-07-03 13:50:07 -0700 | [diff] [blame] | 181 | // Returns Error::kMessagesSentTooFast if messages were sent too fast |
| 182 | Error Send(const void *data, size_t size); |
| 183 | Error Send(const void *data, size_t size, |
| 184 | monotonic_clock::time_point monotonic_remote_time, |
| 185 | realtime_clock::time_point realtime_remote_time, |
| 186 | uint32_t remote_queue_index, const UUID &source_boot_uuid); |
| 187 | |
| 188 | // CHECKs that no sending Error occurred and logs the channel_ data if |
| 189 | // one did |
| 190 | void CheckOk(const Error err); |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 191 | |
Tyler Chatow | b7c6eba | 2021-07-28 14:43:23 -0700 | [diff] [blame] | 192 | // Sends a single block of data by refcounting it to avoid copies. The data |
| 193 | // must not change after being passed into Send. The remote arguments have the |
| 194 | // same meaning as in Send above. |
milind | 1f1dca3 | 2021-07-03 13:50:07 -0700 | [diff] [blame] | 195 | Error Send(const SharedSpan data); |
| 196 | Error Send(const SharedSpan data, |
| 197 | monotonic_clock::time_point monotonic_remote_time, |
| 198 | realtime_clock::time_point realtime_remote_time, |
| 199 | uint32_t remote_queue_index, const UUID &remote_boot_uuid); |
Tyler Chatow | b7c6eba | 2021-07-28 14:43:23 -0700 | [diff] [blame] | 200 | |
Austin Schuh | 54cf95f | 2019-11-29 13:14:18 -0800 | [diff] [blame] | 201 | const Channel *channel() const { return channel_; } |
| 202 | |
Austin Schuh | ad15482 | 2019-12-27 15:45:13 -0800 | [diff] [blame] | 203 | // Returns the time_points that the last message was sent at. |
| 204 | aos::monotonic_clock::time_point monotonic_sent_time() const { |
| 205 | return monotonic_sent_time_; |
| 206 | } |
| 207 | aos::realtime_clock::time_point realtime_sent_time() const { |
| 208 | return realtime_sent_time_; |
| 209 | } |
| 210 | // Returns the queue index that this was sent with. |
| 211 | uint32_t sent_queue_index() const { return sent_queue_index_; } |
| 212 | |
Brian Silverman | a1652f3 | 2020-01-29 20:41:44 -0800 | [diff] [blame] | 213 | // Returns the associated flatbuffers-style allocator. This must be |
| 214 | // deallocated before the message is sent. |
Austin Schuh | 1af273d | 2020-03-07 20:11:34 -0800 | [diff] [blame] | 215 | ChannelPreallocatedAllocator *fbb_allocator() { |
| 216 | fbb_allocator_ = ChannelPreallocatedAllocator( |
| 217 | reinterpret_cast<uint8_t *>(data()), size(), channel()); |
Brian Silverman | a1652f3 | 2020-01-29 20:41:44 -0800 | [diff] [blame] | 218 | return &fbb_allocator_; |
| 219 | } |
| 220 | |
Brian Silverman | 4f4e061 | 2020-08-12 19:54:41 -0700 | [diff] [blame] | 221 | // Index of the buffer which is currently exposed by data() and the various |
| 222 | // other accessors. This is the message the caller should be filling out. |
| 223 | virtual int buffer_index() = 0; |
| 224 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 225 | protected: |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 226 | EventLoop *event_loop() { return event_loop_; } |
Austin Schuh | 3054f5f | 2021-07-21 15:38:01 -0700 | [diff] [blame] | 227 | const EventLoop *event_loop() const { return event_loop_; } |
Austin Schuh | 54cf95f | 2019-11-29 13:14:18 -0800 | [diff] [blame] | 228 | |
Austin Schuh | b5c6f97 | 2021-03-14 21:53:07 -0700 | [diff] [blame] | 229 | monotonic_clock::time_point monotonic_sent_time_ = monotonic_clock::min_time; |
| 230 | realtime_clock::time_point realtime_sent_time_ = realtime_clock::min_time; |
Austin Schuh | ad15482 | 2019-12-27 15:45:13 -0800 | [diff] [blame] | 231 | uint32_t sent_queue_index_ = 0xffffffff; |
| 232 | |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 233 | private: |
| 234 | friend class EventLoop; |
| 235 | |
milind | 1f1dca3 | 2021-07-03 13:50:07 -0700 | [diff] [blame] | 236 | virtual Error DoSend(const void *data, size_t size, |
| 237 | monotonic_clock::time_point monotonic_remote_time, |
| 238 | realtime_clock::time_point realtime_remote_time, |
| 239 | uint32_t remote_queue_index, |
| 240 | const UUID &source_boot_uuid) = 0; |
| 241 | virtual Error DoSend(size_t size, |
| 242 | monotonic_clock::time_point monotonic_remote_time, |
| 243 | realtime_clock::time_point realtime_remote_time, |
| 244 | uint32_t remote_queue_index, |
| 245 | const UUID &source_boot_uuid) = 0; |
| 246 | virtual Error DoSend(const SharedSpan data, |
| 247 | monotonic_clock::time_point monotonic_remote_time, |
| 248 | realtime_clock::time_point realtime_remote_time, |
| 249 | uint32_t remote_queue_index, |
| 250 | const UUID &source_boot_uuid); |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 251 | |
James Kuszmaul | 93abac1 | 2022-04-14 15:05:10 -0700 | [diff] [blame] | 252 | void RecordSendResult(const Error error, size_t message_size); |
| 253 | |
Brian Silverman | 79ec7fc | 2020-06-08 20:11:22 -0500 | [diff] [blame] | 254 | EventLoop *const event_loop_; |
| 255 | const Channel *const channel_; |
| 256 | const std::string ftrace_prefix_; |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 257 | |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 258 | internal::RawSenderTiming timing_; |
Brian Silverman | 79ec7fc | 2020-06-08 20:11:22 -0500 | [diff] [blame] | 259 | Ftrace ftrace_; |
Brian Silverman | a1652f3 | 2020-01-29 20:41:44 -0800 | [diff] [blame] | 260 | |
Austin Schuh | 1af273d | 2020-03-07 20:11:34 -0800 | [diff] [blame] | 261 | ChannelPreallocatedAllocator fbb_allocator_{nullptr, 0, nullptr}; |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 262 | }; |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 263 | |
milind | 1f1dca3 | 2021-07-03 13:50:07 -0700 | [diff] [blame] | 264 | // Needed for compatibility with glog |
| 265 | std::ostream &operator<<(std::ostream &os, const RawSender::Error err); |
| 266 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 267 | // Fetches the newest message from a channel. |
| 268 | // This provides a polling based interface for channels. |
| 269 | template <typename T> |
| 270 | class Fetcher { |
| 271 | public: |
| 272 | Fetcher() {} |
| 273 | |
| 274 | // Fetches the next message. Returns true if it fetched a new message. This |
| 275 | // method will only return messages sent after the Fetcher was created. |
Brian Silverman | a1652f3 | 2020-01-29 20:41:44 -0800 | [diff] [blame] | 276 | bool FetchNext() { |
Sanjay Narayanan | 570dc93 | 2022-12-06 14:12:04 -0800 | [diff] [blame] | 277 | const bool result = CHECK_NOTNULL(fetcher_)->FetchNext(); |
Brian Silverman | a1652f3 | 2020-01-29 20:41:44 -0800 | [diff] [blame] | 278 | if (result) { |
| 279 | CheckChannelDataAlignment(fetcher_->context().data, |
| 280 | fetcher_->context().size); |
| 281 | } |
| 282 | return result; |
| 283 | } |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 284 | |
| 285 | // Fetches the most recent message. Returns true if it fetched a new message. |
| 286 | // This will return the latest message regardless of if it was sent before or |
| 287 | // after the fetcher was created. |
Brian Silverman | a1652f3 | 2020-01-29 20:41:44 -0800 | [diff] [blame] | 288 | bool Fetch() { |
Sanjay Narayanan | 570dc93 | 2022-12-06 14:12:04 -0800 | [diff] [blame] | 289 | const bool result = CHECK_NOTNULL(fetcher_)->Fetch(); |
Brian Silverman | a1652f3 | 2020-01-29 20:41:44 -0800 | [diff] [blame] | 290 | if (result) { |
| 291 | CheckChannelDataAlignment(fetcher_->context().data, |
| 292 | fetcher_->context().size); |
| 293 | } |
| 294 | return result; |
| 295 | } |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 296 | |
| 297 | // Returns a pointer to the contained flatbuffer, or nullptr if there is no |
| 298 | // available message. |
| 299 | const T *get() const { |
Sanjay Narayanan | 570dc93 | 2022-12-06 14:12:04 -0800 | [diff] [blame] | 300 | return CHECK_NOTNULL(fetcher_)->context().data != nullptr |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 301 | ? flatbuffers::GetRoot<T>( |
| 302 | reinterpret_cast<const char *>(fetcher_->context().data)) |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 303 | : nullptr; |
| 304 | } |
| 305 | |
Brian Silverman | de9f3ff | 2020-04-28 16:56:58 -0700 | [diff] [blame] | 306 | // Returns the channel this fetcher uses |
Sanjay Narayanan | 570dc93 | 2022-12-06 14:12:04 -0800 | [diff] [blame] | 307 | const Channel *channel() const { return CHECK_NOTNULL(fetcher_)->channel(); } |
Brian Silverman | de9f3ff | 2020-04-28 16:56:58 -0700 | [diff] [blame] | 308 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 309 | // Returns the context holding timestamps and other metadata about the |
| 310 | // message. |
Sanjay Narayanan | 570dc93 | 2022-12-06 14:12:04 -0800 | [diff] [blame] | 311 | const Context &context() const { return CHECK_NOTNULL(fetcher_)->context(); } |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 312 | |
| 313 | const T &operator*() const { return *get(); } |
| 314 | const T *operator->() const { return get(); } |
| 315 | |
Sanjay Narayanan | 570dc93 | 2022-12-06 14:12:04 -0800 | [diff] [blame] | 316 | // Returns true if this fetcher is valid and connected to a channel. If you, |
| 317 | // e.g., are using TryMakeFetcher, then you must check valid() before |
| 318 | // attempting to use the Fetcher. |
Milind Upadhyay | 49174a7 | 2021-04-10 16:24:57 -0700 | [diff] [blame] | 319 | bool valid() const { return static_cast<bool>(fetcher_); } |
Brian Silverman | de9f3ff | 2020-04-28 16:56:58 -0700 | [diff] [blame] | 320 | |
Austin Schuh | ca75b6a | 2020-12-15 21:12:24 -0800 | [diff] [blame] | 321 | // Copies the current flatbuffer into a FlatbufferVector. |
| 322 | FlatbufferVector<T> CopyFlatBuffer() const { |
| 323 | return context().template CopyFlatBuffer<T>(); |
| 324 | } |
| 325 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 326 | private: |
| 327 | friend class EventLoop; |
| 328 | Fetcher(::std::unique_ptr<RawFetcher> fetcher) |
| 329 | : fetcher_(::std::move(fetcher)) {} |
| 330 | ::std::unique_ptr<RawFetcher> fetcher_; |
| 331 | }; |
| 332 | |
| 333 | // Sends messages to a channel. |
| 334 | template <typename T> |
| 335 | class Sender { |
| 336 | public: |
| 337 | Sender() {} |
| 338 | |
| 339 | // Represents a single message about to be sent to the queue. |
| 340 | // The lifecycle goes: |
| 341 | // |
| 342 | // Builder builder = sender.MakeBuilder(); |
| 343 | // T::Builder t_builder = builder.MakeBuilder<T>(); |
| 344 | // Populate(&t_builder); |
| 345 | // builder.Send(t_builder.Finish()); |
| 346 | class Builder { |
| 347 | public: |
Austin Schuh | 1af273d | 2020-03-07 20:11:34 -0800 | [diff] [blame] | 348 | Builder(RawSender *sender, ChannelPreallocatedAllocator *allocator) |
Brian Silverman | 9dd793b | 2020-01-31 23:52:21 -0800 | [diff] [blame] | 349 | : fbb_(allocator->size(), allocator), |
| 350 | allocator_(allocator), |
Sanjay Narayanan | 570dc93 | 2022-12-06 14:12:04 -0800 | [diff] [blame] | 351 | sender_(CHECK_NOTNULL(sender)) { |
Brian Silverman | a1652f3 | 2020-01-29 20:41:44 -0800 | [diff] [blame] | 352 | CheckChannelDataAlignment(allocator->data(), allocator->size()); |
Austin Schuh | d7b15da | 2020-02-17 15:06:11 -0800 | [diff] [blame] | 353 | fbb_.ForceDefaults(true); |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 354 | } |
Brian Silverman | a1652f3 | 2020-01-29 20:41:44 -0800 | [diff] [blame] | 355 | Builder() {} |
| 356 | Builder(const Builder &) = delete; |
| 357 | Builder(Builder &&) = default; |
| 358 | |
| 359 | Builder &operator=(const Builder &) = delete; |
| 360 | Builder &operator=(Builder &&) = default; |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 361 | |
| 362 | flatbuffers::FlatBufferBuilder *fbb() { return &fbb_; } |
| 363 | |
| 364 | template <typename T2> |
| 365 | typename T2::Builder MakeBuilder() { |
| 366 | return typename T2::Builder(fbb_); |
| 367 | } |
| 368 | |
milind | 1f1dca3 | 2021-07-03 13:50:07 -0700 | [diff] [blame] | 369 | RawSender::Error Send(flatbuffers::Offset<T> offset) { |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 370 | fbb_.Finish(offset); |
milind | 1f1dca3 | 2021-07-03 13:50:07 -0700 | [diff] [blame] | 371 | const auto err = sender_->Send(fbb_.GetSize()); |
Brian Silverman | 9dd793b | 2020-01-31 23:52:21 -0800 | [diff] [blame] | 372 | // Ensure fbb_ knows it shouldn't access the memory any more. |
| 373 | fbb_ = flatbuffers::FlatBufferBuilder(); |
milind | 1f1dca3 | 2021-07-03 13:50:07 -0700 | [diff] [blame] | 374 | return err; |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 375 | } |
| 376 | |
milind | 1f1dca3 | 2021-07-03 13:50:07 -0700 | [diff] [blame] | 377 | // Equivalent to RawSender::CheckOk |
| 378 | void CheckOk(const RawSender::Error err) { sender_->CheckOk(err); }; |
| 379 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 380 | // CHECKs that this message was sent. |
Brian Silverman | 9dd793b | 2020-01-31 23:52:21 -0800 | [diff] [blame] | 381 | void CheckSent() { |
| 382 | CHECK(!allocator_->is_allocated()) << ": Message was not sent yet"; |
| 383 | } |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 384 | |
Brian Silverman | 341b57e | 2020-06-23 16:23:18 -0700 | [diff] [blame] | 385 | // Detaches a buffer, for later use calling Sender::Send directly. |
| 386 | // |
| 387 | // Note that the underlying memory remains with the Sender, so creating |
| 388 | // another Builder before destroying the FlatbufferDetachedBuffer will fail. |
| 389 | FlatbufferDetachedBuffer<T> Detach(flatbuffers::Offset<T> offset) { |
| 390 | fbb_.Finish(offset); |
| 391 | return fbb_.Release(); |
| 392 | } |
| 393 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 394 | private: |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 395 | flatbuffers::FlatBufferBuilder fbb_; |
Austin Schuh | 1af273d | 2020-03-07 20:11:34 -0800 | [diff] [blame] | 396 | ChannelPreallocatedAllocator *allocator_; |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 397 | RawSender *sender_; |
| 398 | }; |
| 399 | |
| 400 | // Constructs an above builder. |
Brian Silverman | 9dd793b | 2020-01-31 23:52:21 -0800 | [diff] [blame] | 401 | // |
| 402 | // Only a single one of these may be "alive" for this object at any point in |
| 403 | // time. After calling Send on the result, it is no longer "alive". This means |
| 404 | // that you must manually reset a variable holding the return value (by |
| 405 | // assigning a default-constructed Builder to it) before calling this method |
| 406 | // again to overwrite the value in the variable. |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 407 | Builder MakeBuilder(); |
| 408 | |
Austin Schuh | a28cbc3 | 2019-12-27 16:28:04 -0800 | [diff] [blame] | 409 | // Sends a prebuilt flatbuffer. |
James Kuszmaul | ad52304 | 2022-10-05 16:47:33 -0700 | [diff] [blame] | 410 | // This will copy the data out of the provided flatbuffer, and so does not |
| 411 | // have to correspond to an existing Builder. |
milind | 1f1dca3 | 2021-07-03 13:50:07 -0700 | [diff] [blame] | 412 | RawSender::Error Send(const NonSizePrefixedFlatbuffer<T> &flatbuffer); |
Austin Schuh | a28cbc3 | 2019-12-27 16:28:04 -0800 | [diff] [blame] | 413 | |
Brian Silverman | 341b57e | 2020-06-23 16:23:18 -0700 | [diff] [blame] | 414 | // Sends a prebuilt flatbuffer which was detached from a Builder created via |
| 415 | // MakeBuilder() on this object. |
milind | 1f1dca3 | 2021-07-03 13:50:07 -0700 | [diff] [blame] | 416 | RawSender::Error SendDetached(FlatbufferDetachedBuffer<T> detached); |
| 417 | |
| 418 | // Equivalent to RawSender::CheckOk |
Sanjay Narayanan | 570dc93 | 2022-12-06 14:12:04 -0800 | [diff] [blame] | 419 | void CheckOk(const RawSender::Error err) { |
| 420 | CHECK_NOTNULL(sender_)->CheckOk(err); |
| 421 | }; |
Brian Silverman | 341b57e | 2020-06-23 16:23:18 -0700 | [diff] [blame] | 422 | |
Sanjay Narayanan | 570dc93 | 2022-12-06 14:12:04 -0800 | [diff] [blame] | 423 | // Returns the name of the underlying queue, if valid. You must check valid() |
| 424 | // first. |
| 425 | const Channel *channel() const { return CHECK_NOTNULL(sender_)->channel(); } |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 426 | |
James Kuszmaul | ad52304 | 2022-10-05 16:47:33 -0700 | [diff] [blame] | 427 | // Returns true if the Sender is a valid Sender. If you, e.g., are using |
| 428 | // TryMakeSender, then you must check valid() before attempting to use the |
| 429 | // Sender. |
Austin Schuh | e33c08d | 2022-02-03 18:15:21 -0800 | [diff] [blame] | 430 | // TODO(austin): Deprecate the operator bool. |
Austin Schuh | a0c41ba | 2020-09-10 22:59:14 -0700 | [diff] [blame] | 431 | operator bool() const { return sender_ ? true : false; } |
Austin Schuh | e33c08d | 2022-02-03 18:15:21 -0800 | [diff] [blame] | 432 | bool valid() const { return static_cast<bool>(sender_); } |
Tyler Chatow | 67ddb03 | 2020-01-12 14:30:04 -0800 | [diff] [blame] | 433 | |
Austin Schuh | 7bc5905 | 2020-02-16 23:48:33 -0800 | [diff] [blame] | 434 | // Returns the time_points that the last message was sent at. |
| 435 | aos::monotonic_clock::time_point monotonic_sent_time() const { |
Sanjay Narayanan | 570dc93 | 2022-12-06 14:12:04 -0800 | [diff] [blame] | 436 | return CHECK_NOTNULL(sender_)->monotonic_sent_time(); |
Austin Schuh | 7bc5905 | 2020-02-16 23:48:33 -0800 | [diff] [blame] | 437 | } |
| 438 | aos::realtime_clock::time_point realtime_sent_time() const { |
Sanjay Narayanan | 570dc93 | 2022-12-06 14:12:04 -0800 | [diff] [blame] | 439 | return CHECK_NOTNULL(sender_)->realtime_sent_time(); |
Austin Schuh | 7bc5905 | 2020-02-16 23:48:33 -0800 | [diff] [blame] | 440 | } |
| 441 | // Returns the queue index that this was sent with. |
Sanjay Narayanan | 570dc93 | 2022-12-06 14:12:04 -0800 | [diff] [blame] | 442 | uint32_t sent_queue_index() const { |
| 443 | return CHECK_NOTNULL(sender_)->sent_queue_index(); |
| 444 | } |
Austin Schuh | 7bc5905 | 2020-02-16 23:48:33 -0800 | [diff] [blame] | 445 | |
Brian Silverman | 4f4e061 | 2020-08-12 19:54:41 -0700 | [diff] [blame] | 446 | // Returns the buffer index which MakeBuilder() will expose access to. This is |
| 447 | // the buffer the caller can fill out. |
Sanjay Narayanan | 570dc93 | 2022-12-06 14:12:04 -0800 | [diff] [blame] | 448 | int buffer_index() const { return CHECK_NOTNULL(sender_)->buffer_index(); } |
Brian Silverman | 4f4e061 | 2020-08-12 19:54:41 -0700 | [diff] [blame] | 449 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 450 | private: |
| 451 | friend class EventLoop; |
| 452 | Sender(std::unique_ptr<RawSender> sender) : sender_(std::move(sender)) {} |
| 453 | std::unique_ptr<RawSender> sender_; |
| 454 | }; |
| 455 | |
milind | 1f1dca3 | 2021-07-03 13:50:07 -0700 | [diff] [blame] | 456 | // Class for keeping a count of send failures on a certain channel |
| 457 | class SendFailureCounter { |
| 458 | public: |
| 459 | inline void Count(const RawSender::Error err) { |
| 460 | failures_ += static_cast<size_t>(err != RawSender::Error::kOk); |
| 461 | just_failed_ = (err != RawSender::Error::kOk); |
| 462 | } |
| 463 | |
| 464 | inline size_t failures() const { return failures_; } |
| 465 | inline bool just_failed() const { return just_failed_; } |
| 466 | |
| 467 | private: |
| 468 | size_t failures_ = 0; |
| 469 | bool just_failed_ = false; |
| 470 | }; |
| 471 | |
Brian Silverman | 4f4e061 | 2020-08-12 19:54:41 -0700 | [diff] [blame] | 472 | // Interface for timers. |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 473 | class TimerHandler { |
| 474 | public: |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 475 | virtual ~TimerHandler(); |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 476 | |
| 477 | // Timer should sleep until base, base + offset, base + offset * 2, ... |
| 478 | // If repeat_offset isn't set, the timer only expires once. |
James Kuszmaul | 8866e64 | 2022-06-10 16:00:36 -0700 | [diff] [blame] | 479 | // base must be greater than or equal to zero. |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 480 | virtual void Setup(monotonic_clock::time_point base, |
| 481 | monotonic_clock::duration repeat_offset = |
| 482 | ::aos::monotonic_clock::zero()) = 0; |
| 483 | |
| 484 | // Stop future calls to callback(). |
| 485 | virtual void Disable() = 0; |
Austin Schuh | 1540c2f | 2019-11-29 21:59:29 -0800 | [diff] [blame] | 486 | |
Naman Gupta | 4d13b0a | 2022-10-19 16:41:24 -0700 | [diff] [blame^] | 487 | // Check if the timer is disabled |
| 488 | virtual bool IsDisabled() = 0; |
| 489 | |
Austin Schuh | 1540c2f | 2019-11-29 21:59:29 -0800 | [diff] [blame] | 490 | // Sets and gets the name of the timer. Set this if you want a descriptive |
| 491 | // name in the timing report. |
| 492 | void set_name(std::string_view name) { name_ = std::string(name); } |
| 493 | const std::string_view name() const { return name_; } |
| 494 | |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 495 | protected: |
| 496 | TimerHandler(EventLoop *event_loop, std::function<void()> fn); |
| 497 | |
Austin Schuh | 9b1d628 | 2022-06-10 17:03:21 -0700 | [diff] [blame] | 498 | template <typename T> |
| 499 | monotonic_clock::time_point Call(T get_time, |
| 500 | monotonic_clock::time_point event_time); |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 501 | |
Austin Schuh | 1540c2f | 2019-11-29 21:59:29 -0800 | [diff] [blame] | 502 | private: |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 503 | friend class EventLoop; |
| 504 | |
| 505 | EventLoop *event_loop_; |
| 506 | // The function to call when Call is called. |
| 507 | std::function<void()> fn_; |
Austin Schuh | 1540c2f | 2019-11-29 21:59:29 -0800 | [diff] [blame] | 508 | std::string name_; |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 509 | |
| 510 | internal::TimerTiming timing_; |
Brian Silverman | 79ec7fc | 2020-06-08 20:11:22 -0500 | [diff] [blame] | 511 | Ftrace ftrace_; |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 512 | }; |
| 513 | |
| 514 | // Interface for phased loops. They are built on timers. |
| 515 | class PhasedLoopHandler { |
| 516 | public: |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 517 | virtual ~PhasedLoopHandler(); |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 518 | |
| 519 | // Sets the interval and offset. Any changes to interval and offset only take |
| 520 | // effect when the handler finishes running. |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 521 | void set_interval_and_offset(const monotonic_clock::duration interval, |
| 522 | const monotonic_clock::duration offset) { |
| 523 | phased_loop_.set_interval_and_offset(interval, offset); |
| 524 | } |
Austin Schuh | 1540c2f | 2019-11-29 21:59:29 -0800 | [diff] [blame] | 525 | |
| 526 | // Sets and gets the name of the timer. Set this if you want a descriptive |
| 527 | // name in the timing report. |
| 528 | void set_name(std::string_view name) { name_ = std::string(name); } |
| 529 | const std::string_view name() const { return name_; } |
| 530 | |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 531 | protected: |
| 532 | void Call(std::function<monotonic_clock::time_point()> get_time, |
| 533 | std::function<void(monotonic_clock::time_point)> schedule); |
| 534 | |
| 535 | PhasedLoopHandler(EventLoop *event_loop, std::function<void(int)> fn, |
| 536 | const monotonic_clock::duration interval, |
| 537 | const monotonic_clock::duration offset); |
| 538 | |
Austin Schuh | 1540c2f | 2019-11-29 21:59:29 -0800 | [diff] [blame] | 539 | private: |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 540 | friend class EventLoop; |
| 541 | |
| 542 | void Reschedule(std::function<void(monotonic_clock::time_point)> schedule, |
| 543 | monotonic_clock::time_point monotonic_now) { |
| 544 | cycles_elapsed_ += phased_loop_.Iterate(monotonic_now); |
| 545 | schedule(phased_loop_.sleep_time()); |
| 546 | } |
| 547 | |
| 548 | virtual void Schedule(monotonic_clock::time_point sleep_time) = 0; |
| 549 | |
| 550 | EventLoop *event_loop_; |
| 551 | std::function<void(int)> fn_; |
Austin Schuh | 1540c2f | 2019-11-29 21:59:29 -0800 | [diff] [blame] | 552 | std::string name_; |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 553 | time::PhasedLoop phased_loop_; |
| 554 | |
| 555 | int cycles_elapsed_ = 0; |
| 556 | |
| 557 | internal::TimerTiming timing_; |
Brian Silverman | 79ec7fc | 2020-06-08 20:11:22 -0500 | [diff] [blame] | 558 | Ftrace ftrace_; |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 559 | }; |
| 560 | |
Austin Schuh | 3054f5f | 2021-07-21 15:38:01 -0700 | [diff] [blame] | 561 | // Note, it is supported to create only: |
| 562 | // multiple fetchers, and (one sender or one watcher) per <name, type> |
| 563 | // tuple. |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 564 | class EventLoop { |
| 565 | public: |
Austin Schuh | 3054f5f | 2021-07-21 15:38:01 -0700 | [diff] [blame] | 566 | // Holds configuration by reference for the lifetime of this object. It may |
| 567 | // never be mutated externally in any way. |
Austin Schuh | 83c7f70 | 2021-01-19 22:36:29 -0800 | [diff] [blame] | 568 | EventLoop(const Configuration *configuration); |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 569 | |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 570 | virtual ~EventLoop(); |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 571 | |
| 572 | // Current time. |
Stephan Pleines | 559fa6c | 2022-01-06 17:23:51 -0800 | [diff] [blame] | 573 | virtual monotonic_clock::time_point monotonic_now() const = 0; |
| 574 | virtual realtime_clock::time_point realtime_now() const = 0; |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 575 | |
Brian Silverman | de9f3ff | 2020-04-28 16:56:58 -0700 | [diff] [blame] | 576 | template <typename T> |
Austin Schuh | a065415 | 2021-02-21 21:38:24 -0800 | [diff] [blame] | 577 | const Channel *GetChannel(const std::string_view channel_name) { |
Austin Schuh | caa2a5d | 2020-11-01 22:38:20 -0800 | [diff] [blame] | 578 | return configuration::GetChannel(configuration(), channel_name, |
Austin Schuh | 0de30f3 | 2020-12-06 12:44:28 -0800 | [diff] [blame] | 579 | T::GetFullyQualifiedName(), name(), node(), |
Austin Schuh | a065415 | 2021-02-21 21:38:24 -0800 | [diff] [blame] | 580 | true); |
| 581 | } |
milind | 1f1dca3 | 2021-07-03 13:50:07 -0700 | [diff] [blame] | 582 | // Returns true if the channel exists in the configuration. |
Austin Schuh | a065415 | 2021-02-21 21:38:24 -0800 | [diff] [blame] | 583 | template <typename T> |
| 584 | bool HasChannel(const std::string_view channel_name) { |
| 585 | return GetChannel<T>(channel_name) != nullptr; |
Brian Silverman | de9f3ff | 2020-04-28 16:56:58 -0700 | [diff] [blame] | 586 | } |
| 587 | |
Brian Silverman | 631b626 | 2021-11-10 12:25:08 -0800 | [diff] [blame] | 588 | // Like MakeFetcher, but returns an invalid fetcher if the given channel is |
Sanjay Narayanan | 570dc93 | 2022-12-06 14:12:04 -0800 | [diff] [blame] | 589 | // not readable on this node or does not exist. You must check valid() on the |
| 590 | // Fetcher before using it. |
Brian Silverman | 631b626 | 2021-11-10 12:25:08 -0800 | [diff] [blame] | 591 | template <typename T> |
| 592 | Fetcher<T> TryMakeFetcher(const std::string_view channel_name) { |
| 593 | const Channel *const channel = GetChannel<T>(channel_name); |
| 594 | if (channel == nullptr) { |
| 595 | return Fetcher<T>(); |
| 596 | } |
| 597 | |
| 598 | if (!configuration::ChannelIsReadableOnNode(channel, node())) { |
| 599 | return Fetcher<T>(); |
| 600 | } |
| 601 | |
| 602 | return Fetcher<T>(MakeRawFetcher(channel)); |
| 603 | } |
| 604 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 605 | // Makes a class that will always fetch the most recent value |
| 606 | // sent to the provided channel. |
| 607 | template <typename T> |
James Kuszmaul | 3ae4226 | 2019-11-08 12:33:41 -0800 | [diff] [blame] | 608 | Fetcher<T> MakeFetcher(const std::string_view channel_name) { |
Brian Silverman | 631b626 | 2021-11-10 12:25:08 -0800 | [diff] [blame] | 609 | CHECK(HasChannel<T>(channel_name)) |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 610 | << ": Channel { \"name\": \"" << channel_name << "\", \"type\": \"" |
| 611 | << T::GetFullyQualifiedName() << "\" } not found in config."; |
| 612 | |
Brian Silverman | 631b626 | 2021-11-10 12:25:08 -0800 | [diff] [blame] | 613 | Fetcher<T> result = TryMakeFetcher<T>(channel_name); |
| 614 | if (!result.valid()) { |
Austin Schuh | ca4828c | 2019-12-28 14:21:35 -0800 | [diff] [blame] | 615 | LOG(FATAL) << "Channel { \"name\": \"" << channel_name |
| 616 | << "\", \"type\": \"" << T::GetFullyQualifiedName() |
| 617 | << "\" } is not able to be fetched on this node. Check your " |
| 618 | "configuration."; |
Austin Schuh | 217a978 | 2019-12-21 23:02:50 -0800 | [diff] [blame] | 619 | } |
| 620 | |
Brian Silverman | 631b626 | 2021-11-10 12:25:08 -0800 | [diff] [blame] | 621 | return result; |
| 622 | } |
| 623 | |
| 624 | // Like MakeSender, but returns an invalid sender if the given channel is |
Sanjay Narayanan | 570dc93 | 2022-12-06 14:12:04 -0800 | [diff] [blame] | 625 | // not sendable on this node or does not exist. You must check valid() on the |
| 626 | // Sender before using it. |
Brian Silverman | 631b626 | 2021-11-10 12:25:08 -0800 | [diff] [blame] | 627 | template <typename T> |
| 628 | Sender<T> TryMakeSender(const std::string_view channel_name) { |
| 629 | const Channel *channel = GetChannel<T>(channel_name); |
| 630 | if (channel == nullptr) { |
| 631 | return Sender<T>(); |
| 632 | } |
| 633 | |
| 634 | if (!configuration::ChannelIsSendableOnNode(channel, node())) { |
| 635 | return Sender<T>(); |
| 636 | } |
| 637 | |
| 638 | return Sender<T>(MakeRawSender(channel)); |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 639 | } |
| 640 | |
| 641 | // Makes class that allows constructing and sending messages to |
| 642 | // the provided channel. |
| 643 | template <typename T> |
James Kuszmaul | 3ae4226 | 2019-11-08 12:33:41 -0800 | [diff] [blame] | 644 | Sender<T> MakeSender(const std::string_view channel_name) { |
Brian Silverman | 631b626 | 2021-11-10 12:25:08 -0800 | [diff] [blame] | 645 | CHECK(HasChannel<T>(channel_name)) |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 646 | << ": Channel { \"name\": \"" << channel_name << "\", \"type\": \"" |
Austin Schuh | 28fedcb | 2020-02-08 15:59:58 -0800 | [diff] [blame] | 647 | << T::GetFullyQualifiedName() << "\" } not found in config for " |
Austin Schuh | 2f8fd75 | 2020-09-01 22:38:28 -0700 | [diff] [blame] | 648 | << name() |
Austin Schuh | caa2a5d | 2020-11-01 22:38:20 -0800 | [diff] [blame] | 649 | << (configuration::MultiNode(configuration()) |
Austin Schuh | 2f8fd75 | 2020-09-01 22:38:28 -0700 | [diff] [blame] | 650 | ? absl::StrCat(" on node ", node()->name()->string_view()) |
| 651 | : "."); |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 652 | |
Brian Silverman | 631b626 | 2021-11-10 12:25:08 -0800 | [diff] [blame] | 653 | Sender<T> result = TryMakeSender<T>(channel_name); |
| 654 | if (!result) { |
Austin Schuh | ca4828c | 2019-12-28 14:21:35 -0800 | [diff] [blame] | 655 | LOG(FATAL) << "Channel { \"name\": \"" << channel_name |
| 656 | << "\", \"type\": \"" << T::GetFullyQualifiedName() |
| 657 | << "\" } is not able to be sent on this node. Check your " |
| 658 | "configuration."; |
Austin Schuh | 217a978 | 2019-12-21 23:02:50 -0800 | [diff] [blame] | 659 | } |
| 660 | |
Brian Silverman | 631b626 | 2021-11-10 12:25:08 -0800 | [diff] [blame] | 661 | return result; |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 662 | } |
| 663 | |
| 664 | // This will watch messages sent to the provided channel. |
| 665 | // |
Brian Silverman | 454bc11 | 2020-03-05 14:21:25 -0800 | [diff] [blame] | 666 | // w must have a non-polymorphic operator() (aka it can only be called with a |
| 667 | // single set of arguments; no overloading or templates). It must be callable |
| 668 | // with this signature: |
| 669 | // void(const MessageType &); |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 670 | // |
Brian Silverman | 454bc11 | 2020-03-05 14:21:25 -0800 | [diff] [blame] | 671 | // Lambdas are a common form for w. A std::function will work too. |
| 672 | // |
| 673 | // Note that bind expressions have polymorphic call operators, so they are not |
| 674 | // allowed. |
| 675 | // |
| 676 | // We template Watch as a whole instead of using std::function<void(const T |
| 677 | // &)> to allow deducing MessageType from lambdas and other things which are |
| 678 | // implicitly convertible to std::function, but not actually std::function |
| 679 | // instantiations. Template deduction guides might allow solving this |
| 680 | // differently in newer versions of C++, but those have their own corner |
| 681 | // cases. |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 682 | template <typename Watch> |
Brian Silverman | 454bc11 | 2020-03-05 14:21:25 -0800 | [diff] [blame] | 683 | void MakeWatcher(const std::string_view channel_name, Watch &&w); |
| 684 | |
| 685 | // Like MakeWatcher, but doesn't have access to the message data. This may be |
| 686 | // implemented to use less resources than an equivalent MakeWatcher. |
| 687 | // |
Brian Silverman | 6b8a3c3 | 2020-03-06 11:26:14 -0800 | [diff] [blame] | 688 | // The function will still have access to context(), although that will have |
| 689 | // its data field set to nullptr. |
Brian Silverman | 454bc11 | 2020-03-05 14:21:25 -0800 | [diff] [blame] | 690 | template <typename MessageType> |
| 691 | void MakeNoArgWatcher(const std::string_view channel_name, |
| 692 | std::function<void()> w); |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 693 | |
| 694 | // The passed in function will be called when the event loop starts. |
| 695 | // Use this to run code once the thread goes into "real-time-mode", |
| 696 | virtual void OnRun(::std::function<void()> on_run) = 0; |
| 697 | |
Austin Schuh | 217a978 | 2019-12-21 23:02:50 -0800 | [diff] [blame] | 698 | // Gets the name of the event loop. This is the application name. |
James Kuszmaul | 3ae4226 | 2019-11-08 12:33:41 -0800 | [diff] [blame] | 699 | virtual const std::string_view name() const = 0; |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 700 | |
Austin Schuh | 217a978 | 2019-12-21 23:02:50 -0800 | [diff] [blame] | 701 | // Returns the node that this event loop is running on. Returns nullptr if we |
| 702 | // are running in single-node mode. |
| 703 | virtual const Node *node() const = 0; |
| 704 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 705 | // Creates a timer that executes callback when the timer expires |
| 706 | // Returns a TimerHandle for configuration of the timer |
milind-u | 61227f2 | 2021-08-29 15:58:33 -0700 | [diff] [blame] | 707 | // TODO(milind): callback should take the number of cycles elapsed as a |
| 708 | // parameter. |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 709 | virtual TimerHandler *AddTimer(::std::function<void()> callback) = 0; |
| 710 | |
| 711 | // Creates a timer that executes callback periodically at the specified |
| 712 | // interval and offset. Returns a PhasedLoopHandler for interacting with the |
| 713 | // timer. |
| 714 | virtual PhasedLoopHandler *AddPhasedLoop( |
| 715 | ::std::function<void(int)> callback, |
| 716 | const monotonic_clock::duration interval, |
| 717 | const monotonic_clock::duration offset = ::std::chrono::seconds(0)) = 0; |
| 718 | |
Austin Schuh | 217a978 | 2019-12-21 23:02:50 -0800 | [diff] [blame] | 719 | // TODO(austin): OnExit for cleanup. |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 720 | |
Austin Schuh | 3054f5f | 2021-07-21 15:38:01 -0700 | [diff] [blame] | 721 | // May be safely called from any thread. |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 722 | bool is_running() const { return is_running_.load(); } |
| 723 | |
| 724 | // Sets the scheduler priority to run the event loop at. This may not be |
| 725 | // called after we go into "real-time-mode". |
| 726 | virtual void SetRuntimeRealtimePriority(int priority) = 0; |
Austin Schuh | 65493d6 | 2022-08-17 15:10:37 -0700 | [diff] [blame] | 727 | // Defaults to 0 if this loop will not run realtime. |
| 728 | virtual int runtime_realtime_priority() const = 0; |
| 729 | |
Austin Schuh | 070019a | 2022-12-20 22:23:09 -0800 | [diff] [blame] | 730 | static cpu_set_t DefaultAffinity(); |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 731 | |
Brian Silverman | 6a54ff3 | 2020-04-28 16:41:39 -0700 | [diff] [blame] | 732 | // Sets the scheduler affinity to run the event loop with. This may only be |
| 733 | // called before Run(). |
| 734 | virtual void SetRuntimeAffinity(const cpu_set_t &cpuset) = 0; |
Austin Schuh | 65493d6 | 2022-08-17 15:10:37 -0700 | [diff] [blame] | 735 | // Defaults to DefaultAffinity() if this loop will not run pinned. |
| 736 | virtual const cpu_set_t &runtime_affinity() const = 0; |
Brian Silverman | 6a54ff3 | 2020-04-28 16:41:39 -0700 | [diff] [blame] | 737 | |
Austin Schuh | 217a978 | 2019-12-21 23:02:50 -0800 | [diff] [blame] | 738 | // Fetches new messages from the provided channel (path, type). |
| 739 | // |
| 740 | // Note: this channel must be a member of the exact configuration object this |
| 741 | // was built with. |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 742 | virtual std::unique_ptr<RawFetcher> MakeRawFetcher( |
| 743 | const Channel *channel) = 0; |
| 744 | |
Austin Schuh | 217a978 | 2019-12-21 23:02:50 -0800 | [diff] [blame] | 745 | // Watches channel (name, type) for new messages. |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 746 | virtual void MakeRawWatcher( |
| 747 | const Channel *channel, |
| 748 | std::function<void(const Context &context, const void *message)> |
| 749 | watcher) = 0; |
| 750 | |
Brian Silverman | 454bc11 | 2020-03-05 14:21:25 -0800 | [diff] [blame] | 751 | // Watches channel (name, type) for new messages, without needing to extract |
| 752 | // the message contents. Default implementation simply re-uses MakeRawWatcher. |
| 753 | virtual void MakeRawNoArgWatcher( |
| 754 | const Channel *channel, |
| 755 | std::function<void(const Context &context)> watcher) { |
| 756 | MakeRawWatcher(channel, [watcher](const Context &context, const void *) { |
Brian Silverman | 6b8a3c3 | 2020-03-06 11:26:14 -0800 | [diff] [blame] | 757 | Context new_context = context; |
| 758 | new_context.data = nullptr; |
Brian Silverman | 4f4e061 | 2020-08-12 19:54:41 -0700 | [diff] [blame] | 759 | new_context.buffer_index = -1; |
Brian Silverman | 6b8a3c3 | 2020-03-06 11:26:14 -0800 | [diff] [blame] | 760 | watcher(new_context); |
Brian Silverman | 454bc11 | 2020-03-05 14:21:25 -0800 | [diff] [blame] | 761 | }); |
| 762 | } |
| 763 | |
Austin Schuh | 217a978 | 2019-12-21 23:02:50 -0800 | [diff] [blame] | 764 | // Creates a raw sender for the provided channel. This is used for reflection |
| 765 | // based sending. |
| 766 | // Note: this ignores any node constraints. Ignore at your own peril. |
| 767 | virtual std::unique_ptr<RawSender> MakeRawSender(const Channel *channel) = 0; |
| 768 | |
Austin Schuh | 6231cc3 | 2019-12-07 13:06:15 -0800 | [diff] [blame] | 769 | // Returns the context for the current callback. |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 770 | const Context &context() const { return context_; } |
| 771 | |
| 772 | // Returns the configuration that this event loop was built with. |
| 773 | const Configuration *configuration() const { return configuration_; } |
| 774 | |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 775 | // Prevents the event loop from sending a timing report. |
Brian Silverman | bf88992 | 2021-11-10 12:41:57 -0800 | [diff] [blame] | 776 | void SkipTimingReport(); |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 777 | |
Brian Silverman | 4f4e061 | 2020-08-12 19:54:41 -0700 | [diff] [blame] | 778 | // Prevents AOS_LOG being sent to message on /aos. |
Tyler Chatow | 67ddb03 | 2020-01-12 14:30:04 -0800 | [diff] [blame] | 779 | void SkipAosLog() { skip_logger_ = true; } |
| 780 | |
Brian Silverman | 4f4e061 | 2020-08-12 19:54:41 -0700 | [diff] [blame] | 781 | // Returns the number of buffers for this channel. This corresponds with the |
| 782 | // range of Context::buffer_index values for this channel. |
| 783 | virtual int NumberBuffers(const Channel *channel) = 0; |
| 784 | |
Austin Schuh | 20ac95d | 2020-12-05 17:24:19 -0800 | [diff] [blame] | 785 | // Returns the boot UUID. |
Austin Schuh | 83c7f70 | 2021-01-19 22:36:29 -0800 | [diff] [blame] | 786 | virtual const UUID &boot_uuid() const = 0; |
Austin Schuh | 20ac95d | 2020-12-05 17:24:19 -0800 | [diff] [blame] | 787 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 788 | protected: |
Austin Schuh | 217a978 | 2019-12-21 23:02:50 -0800 | [diff] [blame] | 789 | // Sets the name of the event loop. This is the application name. |
| 790 | virtual void set_name(const std::string_view name) = 0; |
| 791 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 792 | void set_is_running(bool value) { is_running_.store(value); } |
| 793 | |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 794 | // Validates that channel exists inside configuration_ and finds its index. |
| 795 | int ChannelIndex(const Channel *channel); |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 796 | |
Brian Silverman | 5120afb | 2020-01-31 17:44:35 -0800 | [diff] [blame] | 797 | // Returns the state for the watcher on the corresponding channel. This |
| 798 | // watcher must exist before calling this. |
| 799 | WatcherState *GetWatcherState(const Channel *channel); |
| 800 | |
Brian Silverman | 6d2b359 | 2020-06-18 14:40:15 -0700 | [diff] [blame] | 801 | // Returns a Sender's protected RawSender. |
Brian Silverman | 5120afb | 2020-01-31 17:44:35 -0800 | [diff] [blame] | 802 | template <typename T> |
| 803 | static RawSender *GetRawSender(aos::Sender<T> *sender) { |
| 804 | return sender->sender_.get(); |
| 805 | } |
| 806 | |
Brian Silverman | 6d2b359 | 2020-06-18 14:40:15 -0700 | [diff] [blame] | 807 | // Returns a Fetcher's protected RawFetcher. |
| 808 | template <typename T> |
| 809 | static RawFetcher *GetRawFetcher(aos::Fetcher<T> *fetcher) { |
| 810 | return fetcher->fetcher_.get(); |
| 811 | } |
| 812 | |
Austin Schuh | 6231cc3 | 2019-12-07 13:06:15 -0800 | [diff] [blame] | 813 | // Context available for watchers, timers, and phased loops. |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 814 | Context context_; |
| 815 | |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 816 | friend class RawSender; |
| 817 | friend class TimerHandler; |
| 818 | friend class RawFetcher; |
| 819 | friend class PhasedLoopHandler; |
| 820 | friend class WatcherState; |
| 821 | |
| 822 | // Methods used to implement timing reports. |
| 823 | void NewSender(RawSender *sender); |
| 824 | void DeleteSender(RawSender *sender); |
| 825 | TimerHandler *NewTimer(std::unique_ptr<TimerHandler> timer); |
| 826 | PhasedLoopHandler *NewPhasedLoop( |
| 827 | std::unique_ptr<PhasedLoopHandler> phased_loop); |
| 828 | void NewFetcher(RawFetcher *fetcher); |
| 829 | void DeleteFetcher(RawFetcher *fetcher); |
| 830 | WatcherState *NewWatcher(std::unique_ptr<WatcherState> watcher); |
| 831 | |
Brian Silverman | 0fc6993 | 2020-01-24 21:54:02 -0800 | [diff] [blame] | 832 | // Tracks that we have a (single) watcher on the given channel. |
| 833 | void TakeWatcher(const Channel *channel); |
| 834 | // Tracks that we have at least one sender on the given channel. |
| 835 | void TakeSender(const Channel *channel); |
| 836 | |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 837 | std::vector<RawSender *> senders_; |
Austin Schuh | 7d87b67 | 2019-12-01 20:23:49 -0800 | [diff] [blame] | 838 | std::vector<RawFetcher *> fetchers_; |
| 839 | |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 840 | std::vector<std::unique_ptr<TimerHandler>> timers_; |
| 841 | std::vector<std::unique_ptr<PhasedLoopHandler>> phased_loops_; |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 842 | std::vector<std::unique_ptr<WatcherState>> watchers_; |
| 843 | |
Brian Silverman | ce418d0 | 2021-11-03 11:25:52 -0700 | [diff] [blame] | 844 | // Does nothing if timing reports are disabled. |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 845 | void SendTimingReport(); |
Brian Silverman | ce418d0 | 2021-11-03 11:25:52 -0700 | [diff] [blame] | 846 | |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 847 | void UpdateTimingReport(); |
| 848 | void MaybeScheduleTimingReports(); |
| 849 | |
| 850 | std::unique_ptr<RawSender> timing_report_sender_; |
| 851 | |
Austin Schuh | 7d87b67 | 2019-12-01 20:23:49 -0800 | [diff] [blame] | 852 | // Tracks which event sources (timers and watchers) have data, and which |
| 853 | // don't. Added events may not change their event_time(). |
| 854 | // TODO(austin): Test case 1: timer triggers at t1, handler takes until after |
| 855 | // t2 to run, t2 should then be picked up without a context switch. |
| 856 | void AddEvent(EventLoopEvent *event); |
| 857 | void RemoveEvent(EventLoopEvent *event); |
| 858 | size_t EventCount() const { return events_.size(); } |
| 859 | EventLoopEvent *PopEvent(); |
| 860 | EventLoopEvent *PeekEvent() { return events_.front(); } |
| 861 | void ReserveEvents(); |
| 862 | |
| 863 | std::vector<EventLoopEvent *> events_; |
Brian Silverman | bd405c0 | 2020-06-23 16:25:23 -0700 | [diff] [blame] | 864 | size_t event_generation_ = 1; |
Austin Schuh | 7d87b67 | 2019-12-01 20:23:49 -0800 | [diff] [blame] | 865 | |
Tyler Chatow | 67ddb03 | 2020-01-12 14:30:04 -0800 | [diff] [blame] | 866 | // If true, don't send AOS_LOG to /aos |
| 867 | bool skip_logger_ = false; |
| 868 | |
Austin Schuh | a9012be | 2021-07-21 15:19:11 -0700 | [diff] [blame] | 869 | // Sets context_ for a timed event which is supposed to happen at the provided |
| 870 | // time. |
| 871 | void SetTimerContext(monotonic_clock::time_point monotonic_event_time); |
Austin Schuh | 0debde1 | 2022-08-17 16:25:17 -0700 | [diff] [blame] | 872 | // Clears context_ so it only has invalid times and elements in it. |
| 873 | void ClearContext(); |
Austin Schuh | a9012be | 2021-07-21 15:19:11 -0700 | [diff] [blame] | 874 | |
Austin Schuh | de8a8ff | 2019-11-30 15:25:36 -0800 | [diff] [blame] | 875 | private: |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 876 | virtual pid_t GetTid() = 0; |
| 877 | |
| 878 | FlatbufferDetachedBuffer<timing::Report> timing_report_; |
| 879 | |
Austin Schuh | de8a8ff | 2019-11-30 15:25:36 -0800 | [diff] [blame] | 880 | ::std::atomic<bool> is_running_{false}; |
| 881 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 882 | const Configuration *configuration_; |
Austin Schuh | 39788ff | 2019-12-01 18:22:57 -0800 | [diff] [blame] | 883 | |
| 884 | // If true, don't send out timing reports. |
| 885 | bool skip_timing_report_ = false; |
Brian Silverman | 0fc6993 | 2020-01-24 21:54:02 -0800 | [diff] [blame] | 886 | |
milind | 1f1dca3 | 2021-07-03 13:50:07 -0700 | [diff] [blame] | 887 | SendFailureCounter timing_report_failure_counter_; |
| 888 | |
Brian Silverman | 0fc6993 | 2020-01-24 21:54:02 -0800 | [diff] [blame] | 889 | absl::btree_set<const Channel *> taken_watchers_, taken_senders_; |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 890 | }; |
| 891 | |
Brian Silverman | e1fe251 | 2022-08-14 23:18:50 -0700 | [diff] [blame] | 892 | // Interface for terminating execution of an EventLoop. |
| 893 | // |
| 894 | // Prefer this over binding a lambda to an Exit() method when passing ownership |
| 895 | // in complicated ways because implementations should have assertions to catch |
| 896 | // it outliving the object it's referring to, instead of having a |
| 897 | // use-after-free. |
| 898 | // |
| 899 | // This is not exposed by EventLoop directly because different EventLoop |
| 900 | // implementations provide this functionality at different scopes, or possibly |
| 901 | // not at all. |
| 902 | class ExitHandle { |
| 903 | public: |
| 904 | ExitHandle() = default; |
| 905 | virtual ~ExitHandle() = default; |
| 906 | |
| 907 | // Exits some set of event loops. Details depend on the implementation. |
| 908 | // |
| 909 | // This means no more events will be processed, but any currently being |
| 910 | // processed will finish. |
| 911 | virtual void Exit() = 0; |
| 912 | }; |
| 913 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 914 | } // namespace aos |
| 915 | |
Austin Schuh | b807581 | 2020-10-19 09:36:49 -0700 | [diff] [blame] | 916 | #include "aos/events/event_loop_tmpl.h" // IWYU pragma: export |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 917 | |
| 918 | #endif // AOS_EVENTS_EVENT_LOOP_H |