Commit Graph

26169 Commits

Author SHA1 Message Date
J. Nick Koston 85529ee518 Merge remote-tracking branch 'upstream/api/peel-first-write-iteration' into integration 2026-03-29 12:36:30 -10:00
J. Nick Koston 41f770a624 Merge branch 'dev' into api/peel-first-write-iteration 2026-03-29 12:23:43 -10:00
J. Nick Koston d6475eaeed [binary_sensor] Remove redundant optional<bool> state_, save 8 bytes per instance (#15095) 2026-03-29 12:15:18 -10:00
J. Nick Koston f57468109b [api] Split write_raw_fast_ into write_raw_fast_buf_ and write_raw_fast_iov_
No overloads — every method has a unique name matching its data type:
  write_raw_fast_buf_ / write_raw_buf_  — single contiguous buffer
  write_raw_fast_iov_ / write_raw_iov_  — iovec array
2026-03-29 12:14:54 -10:00
J. Nick Koston 048636d6c3 [api] Use explicit names: write_raw_fast_, write_raw_buf_, write_raw_iov_
Avoids ambiguous overload resolution between const void* and const iovec*
and makes each call site's intent clear.
2026-03-29 12:13:36 -10:00
J. Nick Koston a9aaf29d83 [core] Shrink Component from 12 to 8 bytes per instance (#15103) 2026-03-29 12:09:21 -10:00
J. Nick Koston 38fa8925da [ai] Add automation, callback manager, and test grouping docs (#15243) 2026-03-29 12:02:47 -10:00
J. Nick Koston c2b8ea3361 [web_server_base] Reduce sizeof(WebServerBase) by 4 bytes (#15251) 2026-03-29 18:02:29 -04:00
J. Nick Koston 52c297206a [api] Restore single-buffer write_raw_ overload to keep inline failure path small
Moving iovec construction into write_raw_fast_ caused an 8% regression
by enlarging the inlined failure path. The 33-byte out-of-line wrapper
keeps the hot inline path minimal.
2026-03-29 12:01:06 -10:00
J. Nick Koston 584807b039 [ld2410] Fix flaky integration test race condition (#15299) 2026-03-29 11:58:03 -10:00
J. Nick Koston 5da3253f4b [esp8266] Add enable_scanf_float option (#15284) 2026-03-29 11:57:52 -10:00
J. Nick Koston 2a97eca00b [sensor] Use std::array in ValueList/FilterOut/ThrottleWithPriority filters (#15265) 2026-03-29 11:55:52 -10:00
J. Nick Koston 1f3fd60d29 [version] Remove duplicate build_info_data.h include (#15288) 2026-03-29 11:55:39 -10:00
J. Nick Koston 8a802ca666 [benchmark] Add BLE raw advertisement proto encode benchmarks (#15289) 2026-03-29 11:54:07 -10:00
J. Nick Koston 1ede6d2e60 [api] Fix missing APIError aerr declaration after check_data_state_ removal 2026-03-29 11:53:06 -10:00
J. Nick Koston c970c38e8b [api] Replace check_data_state_ with debug assert in write methods
Callers already guarantee DATA state before calling write_protobuf_packet
(via try_to_clear_buffer) and write_protobuf_messages (via loop processing).
The runtime check is unreachable — replaced with ESPHOME_DEBUG_API assert.
2026-03-29 11:49:52 -10:00
J. Nick Koston 3bfc9b7f1f [api] Replace empty messages check with debug assert
Callers are responsible for not passing empty spans. Added
ESPHOME_DEBUG_API assert to catch bugs during development.
2026-03-29 11:47:42 -10:00
J. Nick Koston 371070ab78 [api] Default sent=-1 in write_raw_ for cleaner cold path call sites 2026-03-29 11:42:42 -10:00
J. Nick Koston 847c2ddbbf [api] Rename write_raw_slow_ to write_raw_ 2026-03-29 11:41:11 -10:00
J. Nick Koston d7464f94b8 [api] Remove single-buffer write_raw_slow_ overload to save 33 bytes
Callers construct iovec inline instead of going through a 33-byte
wrapper function. The iovec construction is trivial at each call site.
2026-03-29 11:40:22 -10:00
J. Nick Koston a91e6d92f6 [core] Remove dead get_loop_priority code (#15242) 2026-03-29 17:32:43 -04:00
J. Nick Koston 9df835600c [api] Rename write_raw_inline_ to write_raw_fast_ 2026-03-29 11:26:23 -10:00
J. Nick Koston f1e780be0c [api] Remove out-of-line write_raw_ wrappers to save flash
The wrappers called write_raw_inline_ which expanded the full fast
path code, defeating the purpose. Cold callers now call write_raw_slow_
directly with sent=-1, which is the same behavior without duplicating
the fast path at each cold call site.
2026-03-29 11:25:33 -10:00
J. Nick Koston 3af6001cdf [api] Keep write_raw_slow_ protected to not break subclass member visibility 2026-03-29 11:17:16 -10:00
J. Nick Koston 9fd745cb09 [api] Add out-of-line write_raw_ wrappers calling write_raw_inline_
Hot paths use write_raw_inline_ (ALWAYS_INLINE fast path).
Cold paths (handshake, error handling) use write_raw_ which is
an out-of-line wrapper that calls write_raw_inline_ — same logic,
no code duplication, but the compiler won't expand the fast path
at each cold call site.
2026-03-29 11:16:33 -10:00
J. Nick Koston ad25e2ae0c [api] Add single-buffer write_raw_slow_ overload for cold paths
Cold paths (write_frame_, bad indicator) no longer need to construct
an iovec just to call the slow path. The single-buffer overload wraps
in iovec internally, keeping call sites clean and avoiding iovec
setup in the caller's stack frame.
2026-03-29 11:12:10 -10:00
J. Nick Koston 5a8e54301f [api] Call write_raw_slow_ directly from cold paths to save flash
write_frame_ (handshake) and bad indicator response are cold paths
that don't benefit from the inlined write_raw_ fast path. Calling
write_raw_slow_ directly avoids expanding the inline fast path code
at these call sites, saving ~70 bytes per site.
2026-03-29 11:10:56 -10:00
J. Nick Koston ce9bc3aaa1 [api] Use iovec path for write_frame_ to avoid inlining write_raw_ in cold handshake code 2026-03-29 11:00:42 -10:00
J. Nick Koston aee9d93671 fix 2026-03-29 10:59:41 -10:00
J. Nick Koston a1163b298e [api] Inline check_socket_write_err_ in drain_overflow (removed from header) 2026-03-29 10:49:35 -10:00
J. Nick Koston 3277683058 [api] Add missing this-> prefix on write_raw_ calls 2026-03-29 10:48:47 -10:00
J. Nick Koston 348d5f583a [api] Restructure write_raw_ for single tail call to slow path 2026-03-29 10:47:07 -10:00
J. Nick Koston ea7dc663f6 [api] Inline write_raw_ fast paths into header with single slow path
Move the happy path (overflow empty + full write succeeds) inline into
the header so it gets inlined at each call site. Both overloads share
a single out-of-line write_raw_slow_ that handles partial writes,
errors, and overflow buffering.
2026-03-29 10:45:01 -10:00
J. Nick Koston f272826274 [api] Extract enqueue_overflow_ slow path and remove dead iovcnt==1 branch
Both write_raw_ overloads now have a clean fast path (direct socket
write) and delegate to a shared noinline enqueue_overflow_ for the
rare overflow case. The multi-iovec path now always calls writev
since single-message callers use the dedicated overload.
2026-03-29 10:43:01 -10:00
J. Nick Koston 5d8f67c819 [api] Add single-buffer write_raw_ overload for single-message path
The existing write_raw_ takes iovec array + count, but single-message
writes (87-100% of traffic) always pass iovcnt=1. Adding a dedicated
overload that takes (data, len) eliminates iovec construction, the
iovcnt==1 branch, and pointer indirection on the hot path.
2026-03-29 10:42:20 -10:00
J. Nick Koston 98b7f5a571 [api] Force inline write_plaintext_header to avoid batch regression 2026-03-29 10:38:54 -10:00
J. Nick Koston 4d72acafb5 Merge branch 'api/peel-first-write-iteration' of https://github.com/esphome/esphome into api/peel-first-write-iteration
# Conflicts:
#	esphome/components/api/api_frame_helper_noise.cpp
#	esphome/components/api/api_frame_helper_plaintext.cpp
2026-03-29 10:33:24 -10:00
J. Nick Koston 481c0688ad [api] Split write_protobuf_packet into dedicated virtual for single messages
Instead of routing single messages through write_protobuf_messages and
branching internally, make write_protobuf_packet a separate virtual
override in each frame helper. The single-message path gets its own
minimal stack frame with no StaticVector allocation, and the batch
path in write_protobuf_messages has no size==1 branch — each caller
picks the right method upfront.
2026-03-29 10:32:00 -10:00
J. Nick Koston 9a89641377 [api] Add flatten attribute to batch write functions to avoid regression
The noinline attribute on the batch path prevented the compiler from
inlining callees like write_plaintext_header and encrypt_noise_message_
into the loop body, causing a 5.6% regression on batch writes. Adding
flatten forces all callees to be inlined within the batch function while
noinline still keeps its large stack frame separate from the single-message
fast path.
2026-03-29 10:23:43 -10:00
J. Nick Koston 60c6bc3e21 try another way 2026-03-29 10:23:14 -10:00
J. Nick Koston 8e0763bfc5 Merge branch 'dev' into api/peel-first-write-iteration 2026-03-29 10:19:33 -10:00
J. Nick Koston 86f3eed1e0 revert 2026-03-29 08:47:40 -10:00
J. Nick Koston 58213d103a cleanup 2026-03-29 08:44:08 -10:00
J. Nick Koston b1ff7bc6e4 remove heap stats 2026-03-29 08:40:41 -10:00
J. Nick Koston a12dcc68a9 Merge remote-tracking branch 'upstream/component-8byte-optimization' into integration 2026-03-29 08:36:03 -10:00
J. Nick Koston fd8b8c6546 Merge branch 'dev' into component-8byte-optimization 2026-03-29 08:25:57 -10:00
J. Nick Koston e87239c7c3 Revert "revert peel"
This reverts commit 0606bf9c12.
2026-03-29 08:15:19 -10:00
J. Nick Koston b869701ee3 Revert "try revert float"
This reverts commit 868b2eb2ea.
2026-03-29 08:15:06 -10:00
Tobias Stanzel d9adb078aa [tm1637] Add buffer manipulation methods (#13686)
Co-authored-by: Jonathan Swoboda <154711427+swoboda1337@users.noreply.github.com>
2026-03-29 14:41:00 -03:00
J. Nick Koston 4d9bbf3b51 Merge branch 'api-sint32-short-varint' into integration 2026-03-28 23:18:57 -10:00