blob: 471b625d450f303c9f149512beb1ddfd5cdf5005 [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001#ifndef AOS_EVENTS_EVENT_LOOP_H_
2#define AOS_EVENTS_EVENT_LOOP_H_
3
Brian Silverman6a54ff32020-04-28 16:41:39 -07004#include <sched.h>
5
Alex Perrycb7da4b2019-08-28 19:35:56 -07006#include <atomic>
milind1f1dca32021-07-03 13:50:07 -07007#include <ostream>
Alex Perrycb7da4b2019-08-28 19:35:56 -07008#include <string>
James Kuszmaul3ae42262019-11-08 12:33:41 -08009#include <string_view>
Alex Perrycb7da4b2019-08-28 19:35:56 -070010
Austin Schuh3054f5f2021-07-21 15:38:01 -070011#include "absl/container/btree_set.h"
Alex Perrycb7da4b2019-08-28 19:35:56 -070012#include "aos/configuration.h"
13#include "aos/configuration_generated.h"
Austin Schuh1af273d2020-03-07 20:11:34 -080014#include "aos/events/channel_preallocated_allocator.h"
Austin Schuh7d87b672019-12-01 20:23:49 -080015#include "aos/events/event_loop_event.h"
Austin Schuh39788ff2019-12-01 18:22:57 -080016#include "aos/events/event_loop_generated.h"
17#include "aos/events/timing_statistics.h"
Alex Perrycb7da4b2019-08-28 19:35:56 -070018#include "aos/flatbuffers.h"
Brian Silverman79ec7fc2020-06-08 20:11:22 -050019#include "aos/ftrace.h"
Brian Silvermana1652f32020-01-29 20:41:44 -080020#include "aos/ipc_lib/data_alignment.h"
Alex Perrycb7da4b2019-08-28 19:35:56 -070021#include "aos/json_to_flatbuffer.h"
22#include "aos/time/time.h"
Austin Schuh39788ff2019-12-01 18:22:57 -080023#include "aos/util/phased_loop.h"
Austin Schuh4385b142021-03-14 21:31:13 -070024#include "aos/uuid.h"
Alex Perrycb7da4b2019-08-28 19:35:56 -070025#include "flatbuffers/flatbuffers.h"
26#include "glog/logging.h"
27
Austin Schuh39788ff2019-12-01 18:22:57 -080028DECLARE_bool(timing_reports);
29DECLARE_int32(timing_report_ms);
30
Alex Perrycb7da4b2019-08-28 19:35:56 -070031namespace aos {
32
Austin Schuh39788ff2019-12-01 18:22:57 -080033class EventLoop;
34class WatcherState;
35
Austin Schuh6231cc32019-12-07 13:06:15 -080036// Struct available on Watchers, Fetchers, Timers, and PhasedLoops with context
37// about the current message.
Alex Perrycb7da4b2019-08-28 19:35:56 -070038struct Context {
Austin Schuhad154822019-12-27 15:45:13 -080039 // 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 Kuszmaulad523042022-10-05 16:47:33 -070045 // The rest are only valid for Watchers and Fetchers.
46
Austin Schuhad154822019-12-27 15:45:13 -080047 // 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 Perrycb7da4b2019-08-28 19:35:56 -070053 // Index in the queue.
54 uint32_t queue_index;
Austin Schuhad154822019-12-27 15:45:13 -080055 // 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 Perrycb7da4b2019-08-28 19:35:56 -070059 // Size of the data sent.
60 size_t size;
61 // Pointer to the data.
Brian Silvermaneaa41d62020-07-08 19:47:35 -070062 const void *data;
Austin Schuh678078e2020-08-01 14:30:36 -070063
Brian Silverman4f4e0612020-08-12 19:54:41 -070064 // 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 Schuh8902fa52021-03-14 22:39:24 -070078 // 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 Schuha9012be2021-07-21 15:19:11 -070080 UUID source_boot_uuid = UUID::Zero();
Austin Schuh8902fa52021-03-14 22:39:24 -070081
Austin Schuhca75b6a2020-12-15 21:12:24 -080082 // Efficiently copies the flatbuffer into a FlatbufferVector, allocating
Austin Schuh678078e2020-08-01 14:30:36 -070083 // 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 Silverman354697a2020-09-22 21:06:32 -070087 ResizeableBuffer buffer;
88 buffer.resize(size);
89 memcpy(buffer.data(), data, size);
90 return FlatbufferVector<T>(std::move(buffer));
Austin Schuh678078e2020-08-01 14:30:36 -070091 }
Alex Perrycb7da4b2019-08-28 19:35:56 -070092};
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.
97class RawFetcher {
98 public:
Austin Schuh39788ff2019-12-01 18:22:57 -080099 RawFetcher(EventLoop *event_loop, const Channel *channel);
Alex Perrycb7da4b2019-08-28 19:35:56 -0700100 RawFetcher(const RawFetcher &) = delete;
101 RawFetcher &operator=(const RawFetcher &) = delete;
Austin Schuh39788ff2019-12-01 18:22:57 -0800102 virtual ~RawFetcher();
Alex Perrycb7da4b2019-08-28 19:35:56 -0700103
Austin Schuh39788ff2019-12-01 18:22:57 -0800104 // 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 Schuh3054f5f2021-07-21 15:38:01 -0700118 const EventLoop *event_loop() const { return event_loop_; }
Austin Schuh39788ff2019-12-01 18:22:57 -0800119
Alex Perrycb7da4b2019-08-28 19:35:56 -0700120 Context context_;
Austin Schuh39788ff2019-12-01 18:22:57 -0800121
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 Silverman79ec7fc2020-06-08 20:11:22 -0500128 EventLoop *const event_loop_;
129 const Channel *const channel_;
130 const std::string ftrace_prefix_;
Austin Schuh39788ff2019-12-01 18:22:57 -0800131
132 internal::RawFetcherTiming timing_;
Brian Silverman79ec7fc2020-06-08 20:11:22 -0500133 Ftrace ftrace_;
Alex Perrycb7da4b2019-08-28 19:35:56 -0700134};
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.
138class RawSender {
139 public:
Tyler Chatowb7c6eba2021-07-28 14:43:23 -0700140 using SharedSpan = std::shared_ptr<const absl::Span<const uint8_t>>;
141
Brian Silverman183859c2022-05-14 02:03:06 -0700142 // 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{
milind1f1dca32021-07-03 13:50:07 -0700146 // 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 Schmiedebergef44b8a2022-02-28 17:30:38 -0700151 kMessagesSentTooFast,
152 // Access to Redzone was attempted in Sender Queue
Brian Silverman183859c2022-05-14 02:03:06 -0700153 kInvalidRedzone,
Eric Schmiedebergef44b8a2022-02-28 17:30:38 -0700154 };
milind1f1dca32021-07-03 13:50:07 -0700155
Austin Schuh39788ff2019-12-01 18:22:57 -0800156 RawSender(EventLoop *event_loop, const Channel *channel);
157 RawSender(const RawSender &) = delete;
158 RawSender &operator=(const RawSender &) = delete;
159
160 virtual ~RawSender();
Alex Perrycb7da4b2019-08-28 19:35:56 -0700161
Brian Silverman9809c5f2022-07-23 16:12:23 -0700162 // Returns the buffer to write new messages into. This is always valid, and
163 // may change after calling any of the Send functions.
Alex Perrycb7da4b2019-08-28 19:35:56 -0700164 virtual void *data() = 0;
165 virtual size_t size() = 0;
milind1f1dca32021-07-03 13:50:07 -0700166
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 Perrycb7da4b2019-08-28 19:35:56 -0700178
179 // Sends a single block of data by copying it.
Austin Schuhad154822019-12-27 15:45:13 -0800180 // The remote arguments have the same meaning as in Send above.
milind1f1dca32021-07-03 13:50:07 -0700181 // 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 Perrycb7da4b2019-08-28 19:35:56 -0700191
Tyler Chatowb7c6eba2021-07-28 14:43:23 -0700192 // 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.
milind1f1dca32021-07-03 13:50:07 -0700195 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 Chatowb7c6eba2021-07-28 14:43:23 -0700200
Austin Schuh54cf95f2019-11-29 13:14:18 -0800201 const Channel *channel() const { return channel_; }
202
Austin Schuhad154822019-12-27 15:45:13 -0800203 // 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 Silvermana1652f32020-01-29 20:41:44 -0800213 // Returns the associated flatbuffers-style allocator. This must be
214 // deallocated before the message is sent.
Austin Schuh1af273d2020-03-07 20:11:34 -0800215 ChannelPreallocatedAllocator *fbb_allocator() {
216 fbb_allocator_ = ChannelPreallocatedAllocator(
217 reinterpret_cast<uint8_t *>(data()), size(), channel());
Brian Silvermana1652f32020-01-29 20:41:44 -0800218 return &fbb_allocator_;
219 }
220
Brian Silverman4f4e0612020-08-12 19:54:41 -0700221 // 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 Perrycb7da4b2019-08-28 19:35:56 -0700225 protected:
Austin Schuh39788ff2019-12-01 18:22:57 -0800226 EventLoop *event_loop() { return event_loop_; }
Austin Schuh3054f5f2021-07-21 15:38:01 -0700227 const EventLoop *event_loop() const { return event_loop_; }
Austin Schuh54cf95f2019-11-29 13:14:18 -0800228
Austin Schuhb5c6f972021-03-14 21:53:07 -0700229 monotonic_clock::time_point monotonic_sent_time_ = monotonic_clock::min_time;
230 realtime_clock::time_point realtime_sent_time_ = realtime_clock::min_time;
Austin Schuhad154822019-12-27 15:45:13 -0800231 uint32_t sent_queue_index_ = 0xffffffff;
232
Austin Schuh39788ff2019-12-01 18:22:57 -0800233 private:
234 friend class EventLoop;
235
milind1f1dca32021-07-03 13:50:07 -0700236 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 Schuh39788ff2019-12-01 18:22:57 -0800251
James Kuszmaul93abac12022-04-14 15:05:10 -0700252 void RecordSendResult(const Error error, size_t message_size);
253
Brian Silverman79ec7fc2020-06-08 20:11:22 -0500254 EventLoop *const event_loop_;
255 const Channel *const channel_;
256 const std::string ftrace_prefix_;
Alex Perrycb7da4b2019-08-28 19:35:56 -0700257
Austin Schuh39788ff2019-12-01 18:22:57 -0800258 internal::RawSenderTiming timing_;
Brian Silverman79ec7fc2020-06-08 20:11:22 -0500259 Ftrace ftrace_;
Brian Silvermana1652f32020-01-29 20:41:44 -0800260
Austin Schuh1af273d2020-03-07 20:11:34 -0800261 ChannelPreallocatedAllocator fbb_allocator_{nullptr, 0, nullptr};
Austin Schuh39788ff2019-12-01 18:22:57 -0800262};
Alex Perrycb7da4b2019-08-28 19:35:56 -0700263
milind1f1dca32021-07-03 13:50:07 -0700264// Needed for compatibility with glog
265std::ostream &operator<<(std::ostream &os, const RawSender::Error err);
266
Alex Perrycb7da4b2019-08-28 19:35:56 -0700267// Fetches the newest message from a channel.
268// This provides a polling based interface for channels.
269template <typename T>
270class 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 Silvermana1652f32020-01-29 20:41:44 -0800276 bool FetchNext() {
Sanjay Narayanan570dc932022-12-06 14:12:04 -0800277 const bool result = CHECK_NOTNULL(fetcher_)->FetchNext();
Brian Silvermana1652f32020-01-29 20:41:44 -0800278 if (result) {
279 CheckChannelDataAlignment(fetcher_->context().data,
280 fetcher_->context().size);
281 }
282 return result;
283 }
Alex Perrycb7da4b2019-08-28 19:35:56 -0700284
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 Silvermana1652f32020-01-29 20:41:44 -0800288 bool Fetch() {
Sanjay Narayanan570dc932022-12-06 14:12:04 -0800289 const bool result = CHECK_NOTNULL(fetcher_)->Fetch();
Brian Silvermana1652f32020-01-29 20:41:44 -0800290 if (result) {
291 CheckChannelDataAlignment(fetcher_->context().data,
292 fetcher_->context().size);
293 }
294 return result;
295 }
Alex Perrycb7da4b2019-08-28 19:35:56 -0700296
297 // Returns a pointer to the contained flatbuffer, or nullptr if there is no
298 // available message.
299 const T *get() const {
Sanjay Narayanan570dc932022-12-06 14:12:04 -0800300 return CHECK_NOTNULL(fetcher_)->context().data != nullptr
Austin Schuh39788ff2019-12-01 18:22:57 -0800301 ? flatbuffers::GetRoot<T>(
302 reinterpret_cast<const char *>(fetcher_->context().data))
Alex Perrycb7da4b2019-08-28 19:35:56 -0700303 : nullptr;
304 }
305
Brian Silvermande9f3ff2020-04-28 16:56:58 -0700306 // Returns the channel this fetcher uses
Sanjay Narayanan570dc932022-12-06 14:12:04 -0800307 const Channel *channel() const { return CHECK_NOTNULL(fetcher_)->channel(); }
Brian Silvermande9f3ff2020-04-28 16:56:58 -0700308
Alex Perrycb7da4b2019-08-28 19:35:56 -0700309 // Returns the context holding timestamps and other metadata about the
310 // message.
Sanjay Narayanan570dc932022-12-06 14:12:04 -0800311 const Context &context() const { return CHECK_NOTNULL(fetcher_)->context(); }
Alex Perrycb7da4b2019-08-28 19:35:56 -0700312
313 const T &operator*() const { return *get(); }
314 const T *operator->() const { return get(); }
315
Sanjay Narayanan570dc932022-12-06 14:12:04 -0800316 // 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 Upadhyay49174a72021-04-10 16:24:57 -0700319 bool valid() const { return static_cast<bool>(fetcher_); }
Brian Silvermande9f3ff2020-04-28 16:56:58 -0700320
Austin Schuhca75b6a2020-12-15 21:12:24 -0800321 // Copies the current flatbuffer into a FlatbufferVector.
322 FlatbufferVector<T> CopyFlatBuffer() const {
323 return context().template CopyFlatBuffer<T>();
324 }
325
Alex Perrycb7da4b2019-08-28 19:35:56 -0700326 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.
334template <typename T>
335class 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 Schuh1af273d2020-03-07 20:11:34 -0800348 Builder(RawSender *sender, ChannelPreallocatedAllocator *allocator)
Brian Silverman9dd793b2020-01-31 23:52:21 -0800349 : fbb_(allocator->size(), allocator),
350 allocator_(allocator),
Sanjay Narayanan570dc932022-12-06 14:12:04 -0800351 sender_(CHECK_NOTNULL(sender)) {
Brian Silvermana1652f32020-01-29 20:41:44 -0800352 CheckChannelDataAlignment(allocator->data(), allocator->size());
Austin Schuhd7b15da2020-02-17 15:06:11 -0800353 fbb_.ForceDefaults(true);
Alex Perrycb7da4b2019-08-28 19:35:56 -0700354 }
Brian Silvermana1652f32020-01-29 20:41:44 -0800355 Builder() {}
356 Builder(const Builder &) = delete;
357 Builder(Builder &&) = default;
358
359 Builder &operator=(const Builder &) = delete;
360 Builder &operator=(Builder &&) = default;
Alex Perrycb7da4b2019-08-28 19:35:56 -0700361
362 flatbuffers::FlatBufferBuilder *fbb() { return &fbb_; }
363
364 template <typename T2>
365 typename T2::Builder MakeBuilder() {
366 return typename T2::Builder(fbb_);
367 }
368
milind1f1dca32021-07-03 13:50:07 -0700369 RawSender::Error Send(flatbuffers::Offset<T> offset) {
Alex Perrycb7da4b2019-08-28 19:35:56 -0700370 fbb_.Finish(offset);
milind1f1dca32021-07-03 13:50:07 -0700371 const auto err = sender_->Send(fbb_.GetSize());
Brian Silverman9dd793b2020-01-31 23:52:21 -0800372 // Ensure fbb_ knows it shouldn't access the memory any more.
373 fbb_ = flatbuffers::FlatBufferBuilder();
milind1f1dca32021-07-03 13:50:07 -0700374 return err;
Alex Perrycb7da4b2019-08-28 19:35:56 -0700375 }
376
milind1f1dca32021-07-03 13:50:07 -0700377 // Equivalent to RawSender::CheckOk
378 void CheckOk(const RawSender::Error err) { sender_->CheckOk(err); };
379
Alex Perrycb7da4b2019-08-28 19:35:56 -0700380 // CHECKs that this message was sent.
Brian Silverman9dd793b2020-01-31 23:52:21 -0800381 void CheckSent() {
382 CHECK(!allocator_->is_allocated()) << ": Message was not sent yet";
383 }
Alex Perrycb7da4b2019-08-28 19:35:56 -0700384
Brian Silverman341b57e2020-06-23 16:23:18 -0700385 // 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 Perrycb7da4b2019-08-28 19:35:56 -0700394 private:
Alex Perrycb7da4b2019-08-28 19:35:56 -0700395 flatbuffers::FlatBufferBuilder fbb_;
Austin Schuh1af273d2020-03-07 20:11:34 -0800396 ChannelPreallocatedAllocator *allocator_;
Alex Perrycb7da4b2019-08-28 19:35:56 -0700397 RawSender *sender_;
398 };
399
400 // Constructs an above builder.
Brian Silverman9dd793b2020-01-31 23:52:21 -0800401 //
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 Perrycb7da4b2019-08-28 19:35:56 -0700407 Builder MakeBuilder();
408
Austin Schuha28cbc32019-12-27 16:28:04 -0800409 // Sends a prebuilt flatbuffer.
James Kuszmaulad523042022-10-05 16:47:33 -0700410 // This will copy the data out of the provided flatbuffer, and so does not
411 // have to correspond to an existing Builder.
milind1f1dca32021-07-03 13:50:07 -0700412 RawSender::Error Send(const NonSizePrefixedFlatbuffer<T> &flatbuffer);
Austin Schuha28cbc32019-12-27 16:28:04 -0800413
Brian Silverman341b57e2020-06-23 16:23:18 -0700414 // Sends a prebuilt flatbuffer which was detached from a Builder created via
415 // MakeBuilder() on this object.
milind1f1dca32021-07-03 13:50:07 -0700416 RawSender::Error SendDetached(FlatbufferDetachedBuffer<T> detached);
417
418 // Equivalent to RawSender::CheckOk
Sanjay Narayanan570dc932022-12-06 14:12:04 -0800419 void CheckOk(const RawSender::Error err) {
420 CHECK_NOTNULL(sender_)->CheckOk(err);
421 };
Brian Silverman341b57e2020-06-23 16:23:18 -0700422
Sanjay Narayanan570dc932022-12-06 14:12:04 -0800423 // 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 Perrycb7da4b2019-08-28 19:35:56 -0700426
James Kuszmaulad523042022-10-05 16:47:33 -0700427 // 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 Schuhe33c08d2022-02-03 18:15:21 -0800430 // TODO(austin): Deprecate the operator bool.
Austin Schuha0c41ba2020-09-10 22:59:14 -0700431 operator bool() const { return sender_ ? true : false; }
Austin Schuhe33c08d2022-02-03 18:15:21 -0800432 bool valid() const { return static_cast<bool>(sender_); }
Tyler Chatow67ddb032020-01-12 14:30:04 -0800433
Austin Schuh7bc59052020-02-16 23:48:33 -0800434 // Returns the time_points that the last message was sent at.
435 aos::monotonic_clock::time_point monotonic_sent_time() const {
Sanjay Narayanan570dc932022-12-06 14:12:04 -0800436 return CHECK_NOTNULL(sender_)->monotonic_sent_time();
Austin Schuh7bc59052020-02-16 23:48:33 -0800437 }
438 aos::realtime_clock::time_point realtime_sent_time() const {
Sanjay Narayanan570dc932022-12-06 14:12:04 -0800439 return CHECK_NOTNULL(sender_)->realtime_sent_time();
Austin Schuh7bc59052020-02-16 23:48:33 -0800440 }
441 // Returns the queue index that this was sent with.
Sanjay Narayanan570dc932022-12-06 14:12:04 -0800442 uint32_t sent_queue_index() const {
443 return CHECK_NOTNULL(sender_)->sent_queue_index();
444 }
Austin Schuh7bc59052020-02-16 23:48:33 -0800445
Brian Silverman4f4e0612020-08-12 19:54:41 -0700446 // Returns the buffer index which MakeBuilder() will expose access to. This is
447 // the buffer the caller can fill out.
Sanjay Narayanan570dc932022-12-06 14:12:04 -0800448 int buffer_index() const { return CHECK_NOTNULL(sender_)->buffer_index(); }
Brian Silverman4f4e0612020-08-12 19:54:41 -0700449
Alex Perrycb7da4b2019-08-28 19:35:56 -0700450 private:
451 friend class EventLoop;
452 Sender(std::unique_ptr<RawSender> sender) : sender_(std::move(sender)) {}
453 std::unique_ptr<RawSender> sender_;
454};
455
milind1f1dca32021-07-03 13:50:07 -0700456// Class for keeping a count of send failures on a certain channel
457class 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 Silverman4f4e0612020-08-12 19:54:41 -0700472// Interface for timers.
Alex Perrycb7da4b2019-08-28 19:35:56 -0700473class TimerHandler {
474 public:
Austin Schuh39788ff2019-12-01 18:22:57 -0800475 virtual ~TimerHandler();
Alex Perrycb7da4b2019-08-28 19:35:56 -0700476
477 // Timer should sleep until base, base + offset, base + offset * 2, ...
478 // If repeat_offset isn't set, the timer only expires once.
James Kuszmaul8866e642022-06-10 16:00:36 -0700479 // base must be greater than or equal to zero.
Alex Perrycb7da4b2019-08-28 19:35:56 -0700480 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 Schuh1540c2f2019-11-29 21:59:29 -0800486
Naman Gupta4d13b0a2022-10-19 16:41:24 -0700487 // Check if the timer is disabled
488 virtual bool IsDisabled() = 0;
489
Austin Schuh1540c2f2019-11-29 21:59:29 -0800490 // 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 Schuh39788ff2019-12-01 18:22:57 -0800495 protected:
496 TimerHandler(EventLoop *event_loop, std::function<void()> fn);
497
Austin Schuh9b1d6282022-06-10 17:03:21 -0700498 template <typename T>
499 monotonic_clock::time_point Call(T get_time,
500 monotonic_clock::time_point event_time);
Austin Schuh39788ff2019-12-01 18:22:57 -0800501
Austin Schuh1540c2f2019-11-29 21:59:29 -0800502 private:
Austin Schuh39788ff2019-12-01 18:22:57 -0800503 friend class EventLoop;
504
505 EventLoop *event_loop_;
506 // The function to call when Call is called.
507 std::function<void()> fn_;
Austin Schuh1540c2f2019-11-29 21:59:29 -0800508 std::string name_;
Austin Schuh39788ff2019-12-01 18:22:57 -0800509
510 internal::TimerTiming timing_;
Brian Silverman79ec7fc2020-06-08 20:11:22 -0500511 Ftrace ftrace_;
Alex Perrycb7da4b2019-08-28 19:35:56 -0700512};
513
514// Interface for phased loops. They are built on timers.
515class PhasedLoopHandler {
516 public:
Austin Schuh39788ff2019-12-01 18:22:57 -0800517 virtual ~PhasedLoopHandler();
Alex Perrycb7da4b2019-08-28 19:35:56 -0700518
519 // Sets the interval and offset. Any changes to interval and offset only take
520 // effect when the handler finishes running.
Austin Schuh39788ff2019-12-01 18:22:57 -0800521 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 Schuh1540c2f2019-11-29 21:59:29 -0800525
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 Schuh39788ff2019-12-01 18:22:57 -0800531 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 Schuh1540c2f2019-11-29 21:59:29 -0800539 private:
Austin Schuh39788ff2019-12-01 18:22:57 -0800540 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 Schuh1540c2f2019-11-29 21:59:29 -0800552 std::string name_;
Austin Schuh39788ff2019-12-01 18:22:57 -0800553 time::PhasedLoop phased_loop_;
554
555 int cycles_elapsed_ = 0;
556
557 internal::TimerTiming timing_;
Brian Silverman79ec7fc2020-06-08 20:11:22 -0500558 Ftrace ftrace_;
Alex Perrycb7da4b2019-08-28 19:35:56 -0700559};
560
Austin Schuh3054f5f2021-07-21 15:38:01 -0700561// Note, it is supported to create only:
562// multiple fetchers, and (one sender or one watcher) per <name, type>
563// tuple.
Alex Perrycb7da4b2019-08-28 19:35:56 -0700564class EventLoop {
565 public:
Austin Schuh3054f5f2021-07-21 15:38:01 -0700566 // Holds configuration by reference for the lifetime of this object. It may
567 // never be mutated externally in any way.
Austin Schuh83c7f702021-01-19 22:36:29 -0800568 EventLoop(const Configuration *configuration);
Alex Perrycb7da4b2019-08-28 19:35:56 -0700569
Austin Schuh39788ff2019-12-01 18:22:57 -0800570 virtual ~EventLoop();
Alex Perrycb7da4b2019-08-28 19:35:56 -0700571
572 // Current time.
Stephan Pleines559fa6c2022-01-06 17:23:51 -0800573 virtual monotonic_clock::time_point monotonic_now() const = 0;
574 virtual realtime_clock::time_point realtime_now() const = 0;
Alex Perrycb7da4b2019-08-28 19:35:56 -0700575
Brian Silvermande9f3ff2020-04-28 16:56:58 -0700576 template <typename T>
Austin Schuha0654152021-02-21 21:38:24 -0800577 const Channel *GetChannel(const std::string_view channel_name) {
Austin Schuhcaa2a5d2020-11-01 22:38:20 -0800578 return configuration::GetChannel(configuration(), channel_name,
Austin Schuh0de30f32020-12-06 12:44:28 -0800579 T::GetFullyQualifiedName(), name(), node(),
Austin Schuha0654152021-02-21 21:38:24 -0800580 true);
581 }
milind1f1dca32021-07-03 13:50:07 -0700582 // Returns true if the channel exists in the configuration.
Austin Schuha0654152021-02-21 21:38:24 -0800583 template <typename T>
584 bool HasChannel(const std::string_view channel_name) {
585 return GetChannel<T>(channel_name) != nullptr;
Brian Silvermande9f3ff2020-04-28 16:56:58 -0700586 }
587
Brian Silverman631b6262021-11-10 12:25:08 -0800588 // Like MakeFetcher, but returns an invalid fetcher if the given channel is
Sanjay Narayanan570dc932022-12-06 14:12:04 -0800589 // not readable on this node or does not exist. You must check valid() on the
590 // Fetcher before using it.
Brian Silverman631b6262021-11-10 12:25:08 -0800591 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 Perrycb7da4b2019-08-28 19:35:56 -0700605 // Makes a class that will always fetch the most recent value
606 // sent to the provided channel.
607 template <typename T>
James Kuszmaul3ae42262019-11-08 12:33:41 -0800608 Fetcher<T> MakeFetcher(const std::string_view channel_name) {
Brian Silverman631b6262021-11-10 12:25:08 -0800609 CHECK(HasChannel<T>(channel_name))
Alex Perrycb7da4b2019-08-28 19:35:56 -0700610 << ": Channel { \"name\": \"" << channel_name << "\", \"type\": \""
611 << T::GetFullyQualifiedName() << "\" } not found in config.";
612
Brian Silverman631b6262021-11-10 12:25:08 -0800613 Fetcher<T> result = TryMakeFetcher<T>(channel_name);
614 if (!result.valid()) {
Austin Schuhca4828c2019-12-28 14:21:35 -0800615 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 Schuh217a9782019-12-21 23:02:50 -0800619 }
620
Brian Silverman631b6262021-11-10 12:25:08 -0800621 return result;
622 }
623
624 // Like MakeSender, but returns an invalid sender if the given channel is
Sanjay Narayanan570dc932022-12-06 14:12:04 -0800625 // not sendable on this node or does not exist. You must check valid() on the
626 // Sender before using it.
Brian Silverman631b6262021-11-10 12:25:08 -0800627 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 Perrycb7da4b2019-08-28 19:35:56 -0700639 }
640
641 // Makes class that allows constructing and sending messages to
642 // the provided channel.
643 template <typename T>
James Kuszmaul3ae42262019-11-08 12:33:41 -0800644 Sender<T> MakeSender(const std::string_view channel_name) {
Brian Silverman631b6262021-11-10 12:25:08 -0800645 CHECK(HasChannel<T>(channel_name))
Alex Perrycb7da4b2019-08-28 19:35:56 -0700646 << ": Channel { \"name\": \"" << channel_name << "\", \"type\": \""
Austin Schuh28fedcb2020-02-08 15:59:58 -0800647 << T::GetFullyQualifiedName() << "\" } not found in config for "
Austin Schuh2f8fd752020-09-01 22:38:28 -0700648 << name()
Austin Schuhcaa2a5d2020-11-01 22:38:20 -0800649 << (configuration::MultiNode(configuration())
Austin Schuh2f8fd752020-09-01 22:38:28 -0700650 ? absl::StrCat(" on node ", node()->name()->string_view())
651 : ".");
Alex Perrycb7da4b2019-08-28 19:35:56 -0700652
Brian Silverman631b6262021-11-10 12:25:08 -0800653 Sender<T> result = TryMakeSender<T>(channel_name);
654 if (!result) {
Austin Schuhca4828c2019-12-28 14:21:35 -0800655 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 Schuh217a9782019-12-21 23:02:50 -0800659 }
660
Brian Silverman631b6262021-11-10 12:25:08 -0800661 return result;
Alex Perrycb7da4b2019-08-28 19:35:56 -0700662 }
663
664 // This will watch messages sent to the provided channel.
665 //
Brian Silverman454bc112020-03-05 14:21:25 -0800666 // 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 Perrycb7da4b2019-08-28 19:35:56 -0700670 //
Brian Silverman454bc112020-03-05 14:21:25 -0800671 // 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 Perrycb7da4b2019-08-28 19:35:56 -0700682 template <typename Watch>
Brian Silverman454bc112020-03-05 14:21:25 -0800683 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 Silverman6b8a3c32020-03-06 11:26:14 -0800688 // The function will still have access to context(), although that will have
689 // its data field set to nullptr.
Brian Silverman454bc112020-03-05 14:21:25 -0800690 template <typename MessageType>
691 void MakeNoArgWatcher(const std::string_view channel_name,
692 std::function<void()> w);
Alex Perrycb7da4b2019-08-28 19:35:56 -0700693
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 Schuh217a9782019-12-21 23:02:50 -0800698 // Gets the name of the event loop. This is the application name.
James Kuszmaul3ae42262019-11-08 12:33:41 -0800699 virtual const std::string_view name() const = 0;
Alex Perrycb7da4b2019-08-28 19:35:56 -0700700
Austin Schuh217a9782019-12-21 23:02:50 -0800701 // 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 Perrycb7da4b2019-08-28 19:35:56 -0700705 // Creates a timer that executes callback when the timer expires
706 // Returns a TimerHandle for configuration of the timer
milind-u61227f22021-08-29 15:58:33 -0700707 // TODO(milind): callback should take the number of cycles elapsed as a
708 // parameter.
Alex Perrycb7da4b2019-08-28 19:35:56 -0700709 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 Schuh217a9782019-12-21 23:02:50 -0800719 // TODO(austin): OnExit for cleanup.
Alex Perrycb7da4b2019-08-28 19:35:56 -0700720
Austin Schuh3054f5f2021-07-21 15:38:01 -0700721 // May be safely called from any thread.
Alex Perrycb7da4b2019-08-28 19:35:56 -0700722 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 Schuh65493d62022-08-17 15:10:37 -0700727 // Defaults to 0 if this loop will not run realtime.
728 virtual int runtime_realtime_priority() const = 0;
729
Austin Schuh070019a2022-12-20 22:23:09 -0800730 static cpu_set_t DefaultAffinity();
Alex Perrycb7da4b2019-08-28 19:35:56 -0700731
Brian Silverman6a54ff32020-04-28 16:41:39 -0700732 // 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 Schuh65493d62022-08-17 15:10:37 -0700735 // Defaults to DefaultAffinity() if this loop will not run pinned.
736 virtual const cpu_set_t &runtime_affinity() const = 0;
Brian Silverman6a54ff32020-04-28 16:41:39 -0700737
Austin Schuh217a9782019-12-21 23:02:50 -0800738 // 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 Perrycb7da4b2019-08-28 19:35:56 -0700742 virtual std::unique_ptr<RawFetcher> MakeRawFetcher(
743 const Channel *channel) = 0;
744
Austin Schuh217a9782019-12-21 23:02:50 -0800745 // Watches channel (name, type) for new messages.
Alex Perrycb7da4b2019-08-28 19:35:56 -0700746 virtual void MakeRawWatcher(
747 const Channel *channel,
748 std::function<void(const Context &context, const void *message)>
749 watcher) = 0;
750
Brian Silverman454bc112020-03-05 14:21:25 -0800751 // 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 Silverman6b8a3c32020-03-06 11:26:14 -0800757 Context new_context = context;
758 new_context.data = nullptr;
Brian Silverman4f4e0612020-08-12 19:54:41 -0700759 new_context.buffer_index = -1;
Brian Silverman6b8a3c32020-03-06 11:26:14 -0800760 watcher(new_context);
Brian Silverman454bc112020-03-05 14:21:25 -0800761 });
762 }
763
Austin Schuh217a9782019-12-21 23:02:50 -0800764 // 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 Schuh6231cc32019-12-07 13:06:15 -0800769 // Returns the context for the current callback.
Alex Perrycb7da4b2019-08-28 19:35:56 -0700770 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 Schuh39788ff2019-12-01 18:22:57 -0800775 // Prevents the event loop from sending a timing report.
Brian Silvermanbf889922021-11-10 12:41:57 -0800776 void SkipTimingReport();
Austin Schuh39788ff2019-12-01 18:22:57 -0800777
Brian Silverman4f4e0612020-08-12 19:54:41 -0700778 // Prevents AOS_LOG being sent to message on /aos.
Tyler Chatow67ddb032020-01-12 14:30:04 -0800779 void SkipAosLog() { skip_logger_ = true; }
780
Brian Silverman4f4e0612020-08-12 19:54:41 -0700781 // 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 Schuh20ac95d2020-12-05 17:24:19 -0800785 // Returns the boot UUID.
Austin Schuh83c7f702021-01-19 22:36:29 -0800786 virtual const UUID &boot_uuid() const = 0;
Austin Schuh20ac95d2020-12-05 17:24:19 -0800787
Alex Perrycb7da4b2019-08-28 19:35:56 -0700788 protected:
Austin Schuh217a9782019-12-21 23:02:50 -0800789 // 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 Perrycb7da4b2019-08-28 19:35:56 -0700792 void set_is_running(bool value) { is_running_.store(value); }
793
Austin Schuh39788ff2019-12-01 18:22:57 -0800794 // Validates that channel exists inside configuration_ and finds its index.
795 int ChannelIndex(const Channel *channel);
Alex Perrycb7da4b2019-08-28 19:35:56 -0700796
Brian Silverman5120afb2020-01-31 17:44:35 -0800797 // 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 Silverman6d2b3592020-06-18 14:40:15 -0700801 // Returns a Sender's protected RawSender.
Brian Silverman5120afb2020-01-31 17:44:35 -0800802 template <typename T>
803 static RawSender *GetRawSender(aos::Sender<T> *sender) {
804 return sender->sender_.get();
805 }
806
Brian Silverman6d2b3592020-06-18 14:40:15 -0700807 // 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 Schuh6231cc32019-12-07 13:06:15 -0800813 // Context available for watchers, timers, and phased loops.
Alex Perrycb7da4b2019-08-28 19:35:56 -0700814 Context context_;
815
Austin Schuh39788ff2019-12-01 18:22:57 -0800816 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 Silverman0fc69932020-01-24 21:54:02 -0800832 // 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 Schuh39788ff2019-12-01 18:22:57 -0800837 std::vector<RawSender *> senders_;
Austin Schuh7d87b672019-12-01 20:23:49 -0800838 std::vector<RawFetcher *> fetchers_;
839
Austin Schuh39788ff2019-12-01 18:22:57 -0800840 std::vector<std::unique_ptr<TimerHandler>> timers_;
841 std::vector<std::unique_ptr<PhasedLoopHandler>> phased_loops_;
Austin Schuh39788ff2019-12-01 18:22:57 -0800842 std::vector<std::unique_ptr<WatcherState>> watchers_;
843
Brian Silvermance418d02021-11-03 11:25:52 -0700844 // Does nothing if timing reports are disabled.
Austin Schuh39788ff2019-12-01 18:22:57 -0800845 void SendTimingReport();
Brian Silvermance418d02021-11-03 11:25:52 -0700846
Austin Schuh39788ff2019-12-01 18:22:57 -0800847 void UpdateTimingReport();
848 void MaybeScheduleTimingReports();
849
850 std::unique_ptr<RawSender> timing_report_sender_;
851
Austin Schuh7d87b672019-12-01 20:23:49 -0800852 // 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 Silvermanbd405c02020-06-23 16:25:23 -0700864 size_t event_generation_ = 1;
Austin Schuh7d87b672019-12-01 20:23:49 -0800865
Tyler Chatow67ddb032020-01-12 14:30:04 -0800866 // If true, don't send AOS_LOG to /aos
867 bool skip_logger_ = false;
868
Austin Schuha9012be2021-07-21 15:19:11 -0700869 // 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 Schuh0debde12022-08-17 16:25:17 -0700872 // Clears context_ so it only has invalid times and elements in it.
873 void ClearContext();
Austin Schuha9012be2021-07-21 15:19:11 -0700874
Austin Schuhde8a8ff2019-11-30 15:25:36 -0800875 private:
Austin Schuh39788ff2019-12-01 18:22:57 -0800876 virtual pid_t GetTid() = 0;
877
878 FlatbufferDetachedBuffer<timing::Report> timing_report_;
879
Austin Schuhde8a8ff2019-11-30 15:25:36 -0800880 ::std::atomic<bool> is_running_{false};
881
Alex Perrycb7da4b2019-08-28 19:35:56 -0700882 const Configuration *configuration_;
Austin Schuh39788ff2019-12-01 18:22:57 -0800883
884 // If true, don't send out timing reports.
885 bool skip_timing_report_ = false;
Brian Silverman0fc69932020-01-24 21:54:02 -0800886
milind1f1dca32021-07-03 13:50:07 -0700887 SendFailureCounter timing_report_failure_counter_;
888
Brian Silverman0fc69932020-01-24 21:54:02 -0800889 absl::btree_set<const Channel *> taken_watchers_, taken_senders_;
Alex Perrycb7da4b2019-08-28 19:35:56 -0700890};
891
Brian Silvermane1fe2512022-08-14 23:18:50 -0700892// 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.
902class 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 Perrycb7da4b2019-08-28 19:35:56 -0700914} // namespace aos
915
Austin Schuhb8075812020-10-19 09:36:49 -0700916#include "aos/events/event_loop_tmpl.h" // IWYU pragma: export
Alex Perrycb7da4b2019-08-28 19:35:56 -0700917
918#endif // AOS_EVENTS_EVENT_LOOP_H