kevy-rt 6.2.1

kevy thread-per-core shared-nothing runtime — pure Rust, zero deps.
Documentation
//! Pub/sub fast-path methods on `Shard`. `SUBSCRIBE` / `UNSUBSCRIBE` /
//! `PUBLISH` and the per-loop publish-batch flush. Split out so [`crate::exec`]
//! stays under the 500-LOC house rule; everything is still on the same
//! `impl<C: Commands> Shard<C>`.

use crate::Commands;
use crate::message::{Agg, Inbound, Part, PendingSlot};
use crate::reduce::{pubsub_message, pubsub_message_header};
use crate::shard::Shard;
use kevy_resp::{
    ArgvView, RespVersion, encode_array_len, encode_bulk, encode_integer, encode_null_bulk,
    encode_push_header,
};
use std::sync::Arc;

/// Minimum message body size to take the
/// `Arc<[u8]>` + splice path. Below this we keep the in-place
/// `Vec::extend_from_slice` because:
///   - 50 × 30 B memcpy ≈ 1500 B, costs ~50 ns total (cache-hot)
///   - 50 × (Arc::clone atomic-inc + output_arcs push + per-conn
///     splice walk + iovec entry) ≈ 50 × 20 ns = ~1000 ns
///
/// At ~256 B body the breakeven flips (50 × 256 B = 12.8 KB memcpy ≈
/// 4-6 µs); above that, copy avoidance wins linearly. Mirrors the
/// intent of valkey's `COPY_AVOID_MIN_STRING_SIZE` heuristic
/// (`networking.c::tryAvoidBulkStrCopyToReply`).
const PUBSUB_BODY_ARC_THRESHOLD: usize = 256;

/// Correctness cap (later lifted by chunked writev):
/// maximum `output_arcs` entries we allow per connection before
/// falling back to memcpy on subsequent publishes (until the current
/// arcs drain).
///
/// Before chunked writev, this had to stay ≤ 511 because one `writev(2)` /
/// `IORING_OP_WRITEV` SQE is capped at Linux `IOV_MAX = 1024`
/// vectors, and the splice produces up to `2 × arcs + 1` iovecs.
/// 256 arcs ⇒ ≤ 513 iovecs, well under the kernel cap. With
/// chunked writev (see `uring_reactor::MAX_IOVECS_PER_WRITEV`
/// and `UringConn::arcs_in_flight`), the reactor now submits one
/// writev chunk per arm_conns iter and the per-conn arc accumulator
/// can grow past IOV_MAX without truncation — the bottleneck moved
/// from the iovec cap to per-conn memory footprint. Bumped to
/// 4096 so a pipelined PUBLISH flood (`BATCH = 1024` × multi-iter
/// stacking) zero-copies almost every publish; epoll's flush_conn
/// path still materialises arcs into a linear `Vec` so any cap on
/// per-conn memory is more about steady-state liveness than wire
/// correctness.
const PUBSUB_ARC_FLUSH_AT: usize = 4096;

impl<C: Commands> Shard<C> {
    pub(crate) fn do_subscribe<A: ArgvView + ?Sized>(
        &mut self,
        conn_id: u64,
        seq: u64,
        args: &A,
        subscribe: bool,
    ) {
        let verb: &[u8] = if subscribe { b"subscribe" } else { b"unsubscribe" };
        // Channels: the explicit args, or (UNSUBSCRIBE with none) all current subs.
        let channels: Vec<Vec<u8>> = match self.conns.get(&conn_id) {
            None => return,
            Some(_) if args.len() > 1 => (1..args.len()).map(|i| args[i].to_vec()).collect(),
            Some(c) => c.sub.iter().cloned().collect(),
        };
        let Some((reply, changed)) = self.apply_sub_to_conn(conn_id, &channels, subscribe, verb)
        else {
            return;
        };
        self.apply_sub_to_registry(&changed, subscribe);
        if let Some(c) = self.conns.get_mut(&conn_id) {
            c.pending.push_back(PendingSlot {
                remaining: 1,
                agg: Agg::First(None),
                done: None,
                proto: c.proto,
            });
        }
        self.fold(conn_id, seq, Part::Reply(crate::message::SmallReply::from_vec(reply)));
    }

    /// Update the connection's local subscription set + build the
    /// per-channel RESP reply. Returns `None` if the conn vanished
    /// mid-flight, else `(reply_bytes, channels_that_actually_changed)`.
    /// "Changed" matters because sub/unsub is idempotent — only real
    /// transitions must update the shared registry.
    fn apply_sub_to_conn(
        &mut self,
        conn_id: u64,
        channels: &[Vec<u8>],
        subscribe: bool,
        verb: &[u8],
    ) -> Option<(Vec<u8>, Vec<Vec<u8>>)> {
        let c = self.conns.get_mut(&conn_id)?;
        let proto = c.proto;
        let mut out = Vec::new();
        let mut changed: Vec<Vec<u8>> = Vec::new();
        // Header shape: V2 = `*3\r\n` array, V3 = `>3\r\n` push frame.
        // Per-ack header so a V3 conn that runs through this multiple
        // times keeps the push-frame demux contract.
        let emit_header = |out: &mut Vec<u8>, proto: RespVersion| match proto {
            RespVersion::V2 => encode_array_len(out, 3),
            RespVersion::V3 => encode_push_header(out, 3),
        };
        if channels.is_empty() {
            emit_header(&mut out, proto);
            encode_bulk(&mut out, verb);
            encode_null_bulk(&mut out);
            encode_integer(&mut out, c.sub.len() as i64);
        }
        for ch in channels {
            let did = if subscribe { c.sub.insert(ch.clone()) } else { c.sub.remove(ch) };
            if did {
                changed.push(ch.clone());
            }
            emit_header(&mut out, proto);
            encode_bulk(&mut out, verb);
            encode_bulk(&mut out, ch);
            encode_integer(&mut out, c.sub.len() as i64);
        }
        self.mirror_subs_by_channel(conn_id, &changed, subscribe);
        Some((out, changed))
    }

    /// H1.B: mirror real (sub/unsub) transitions into the per-channel
    /// local subscriber index. Done here (not in `apply_sub_to_registry`)
    /// because the registry is the cross-shard count/bits view, while
    /// `subs_by_channel` is this shard's local conn-id list keyed by
    /// channel — used by `deliver_publish` to skip the global conns iter.
    /// Extracted verbatim from [`Self::apply_sub_to_conn`] (single call
    /// site, `inline(always)`) purely for the 50-LOC fn rule.
    #[inline(always)]
    fn mirror_subs_by_channel(&mut self, conn_id: u64, changed: &[Vec<u8>], subscribe: bool) {
        for ch in changed {
            if subscribe {
                let ids = self.subs_by_channel.entry(ch.clone()).or_default();
                if !ids.contains(&conn_id) {
                    ids.push(conn_id);
                }
            } else if let Some(ids) = self.subs_by_channel.get_mut(ch) {
                ids.retain(|&id| id != conn_id);
                if ids.is_empty() {
                    self.subs_by_channel.remove(ch);
                }
            }
        }
    }

    /// Reflect a real (sub/unsub) transition into the cross-shard
    /// registry that `PUBLISH` consults to route messages to the
    /// shards that actually hold subscribers.
    fn apply_sub_to_registry(&self, changed: &[Vec<u8>], subscribe: bool) {
        if changed.is_empty() {
            return;
        }
        let bit = 1u64 << self.id;
        let mut reg = self.pubsub.write().expect("pubsub registry");
        for ch in changed {
            if subscribe {
                let e = reg.entry(ch.clone()).or_insert((0, 0));
                e.0 += 1;
                e.1 |= bit;
            } else {
                let drop = match reg.get_mut(ch) {
                    Some(e) => {
                        e.0 = e.0.saturating_sub(1);
                        e.0 == 0
                    }
                    None => false,
                };
                if drop {
                    reg.remove(ch);
                }
            }
        }
    }

    /// PUBLISH: reply with the receiver count read **locally** from the shared
    /// registry (channel-precise + pattern matches; no cross-shard
    /// aggregation), then deliver the message fire-and-forget to exactly the
    /// shards that hold a subscriber (in parallel; no replies fold back).
    /// Replaces the old all-shards SumInt fan-out, which cost ~2N cross-core
    /// ops per publish (N sends + N replies).
    // LOC-WAIVER: hot PUBLISH fan-out path (H1.A single-shard inline +
    // per-target batch); splitting risks codegen on the pubsub angle.
    pub(crate) fn do_publish<A: ArgvView + ?Sized>(&mut self, conn_id: u64, seq: u64, args: &A) {
        let (mut count, mut bits) =
            self.pubsub.read().expect("pubsub registry").get(&args[1]).copied().unwrap_or((0, 0));
        // Pattern path: walk the shared pattern registry and OR any matching
        // entry's count + bits in. Read-locked + linear; empty-Vec
        // short-circuit keeps channel-only PUBLISH undisturbed by the
        // existence of the registry.
        let (pcount, pbits) = self.pattern_match_for_channel(&args[1]);
        count = count.saturating_add(pcount);
        bits |= pbits;

        let mut reply = Vec::new();
        encode_integer(&mut reply, i64::from(count));
        if let Some(c) = self.conns.get_mut(&conn_id) {
            c.pending.push_back(PendingSlot {
                remaining: 1,
                agg: Agg::First(None),
                done: None,
                proto: c.proto,
            });
        }
        self.fold(conn_id, seq, Part::Reply(crate::message::SmallReply::from_vec(reply)));

        if bits != 0 {
            // When nshards==1 (every `--threads 1` deployment),
            // the cross-shard fan-out path is dead code — skip the
            // Arc::new + 2 × to_vec allocation and deliver inline from the
            // borrowed argv slices. Saves ~0.18 µs/publish at subs=10 (per
            // the pub/sub edge decomposition, sub-Q1).
            if self.nshards == 1 {
                debug_assert!(bits == 1 && self.id == 0);
                self.deliver_publish(&args[1], &args[2]);
            } else {
                // Multi-shard: share one payload across target shards (Arc, no
                // per-target byte clone). Deliver locally inline; queue remote
                // shards into per-target batches flushed once per drain (see
                // `flush_publish`).
                let m = std::sync::Arc::new((args[1].to_vec(), args[2].to_vec()));
                for s in 0..self.nshards {
                    if bits & (1u64 << s) == 0 {
                        continue;
                    }
                    if s == self.id {
                        self.deliver_publish(&m.0, &m.1);
                    } else {
                        self.publish_batch[s].push(m.clone());
                        self.publish_batch_nonempty |= 1u64 << s;
                    }
                }
            }
        }
    }

    /// Append a pub/sub message to every local subscriber of `channel`
    /// (channel-precise frame) and every local `PSUBSCRIBE`r whose
    /// pattern matches (pmessage frame). Marks all touched conns dirty so
    /// the reactor flushes them. Returns the channel-precise count.
    ///
    /// Mixed V2 + V3 subscribers on the same channel: V2 gets `*3`
    /// array frame, V3 gets `>3` push frame. Build both shapes
    /// upfront so the per-subscriber loop is one extend, not a full
    /// reencode (saves N alloc on a wide fan-out).
    pub(crate) fn deliver_publish(&mut self, channel: &[u8], msg: &[u8]) -> usize {
        // H1.B: O(1) per-channel index lookup replaces the O(total_conns)
        // global iter + filter. Empty/missing-channel = zero subscribers
        // on this shard — pattern path still runs below.
        let n_subs = match self.subs_by_channel.get(channel) {
            Some(v) => v.len(),
            None => 0,
        };
        if n_subs > 0 {
            // H2.A: above-threshold bodies splice via Arc<[u8]> + iovec
            // (one alloc + memcpy of the body for the whole publish,
            // then per-subscriber: one Arc::clone atomic-inc + one
            // header memcpy of ~30 B + one (pos, arc) tuple). Below
            // threshold falls back to the cache-hot per-sub memcpy of
            // the full frame.
            if msg.len() >= PUBSUB_BODY_ARC_THRESHOLD {
                self.deliver_publish_arc(channel, msg);
            } else {
                self.deliver_publish_copy(channel, msg);
            }
        }
        // Pattern path: defer to the pattern helper. Empty-map short-circuit
        // there too — channel-only workloads pay one `HashMap::is_empty`.
        self.deliver_pmessages(channel, msg);
        n_subs
    }

    /// Small-body path (< PUBSUB_BODY_ARC_THRESHOLD): build the full V2/V3
    /// frame once and memcpy into each subscriber's `output`. Cheap when
    /// the frame is L1-hot; avoids the per-conn iovec/splice bookkeeping
    /// for tiny frames.
    fn deliver_publish_copy(&mut self, channel: &[u8], msg: &[u8]) {
        // Snapshot ids to avoid borrow conflict with self.conns mutation.
        let ids: Vec<u64> = self.subs_by_channel.get(channel).cloned().unwrap_or_default();
        let v2 = pubsub_message(channel, msg, kevy_resp::RespVersion::V2);
        let mut v3_cache: Option<Vec<u8>> = None;
        for id in &ids {
            if let Some(c) = self.conns.get_mut(id) {
                let frame = match c.proto {
                    kevy_resp::RespVersion::V2 => &v2,
                    kevy_resp::RespVersion::V3 => v3_cache.get_or_insert_with(|| {
                        pubsub_message(channel, msg, kevy_resp::RespVersion::V3)
                    }),
                };
                c.output.extend_from_slice(frame);
                // H1.C dedup: only push the conn id onto `dirty` if not
                // already pending a write this drain.
                if !c.pending_write {
                    c.pending_write = true;
                    self.dirty.push(*id);
                }
            }
        }
    }

    /// Large-body path (≥ PUBSUB_BODY_ARC_THRESHOLD): wrap the message
    /// once in `Arc<[u8]>`, write `<header>` into each subscriber's
    /// `output`, record `(pos, arc.clone())` in `output_arcs`, then
    /// write the trailing CRLF. `flush_conn` / the io_uring writev
    /// path splices the body bytes in via iovec — zero memcpy of the
    /// body per subscriber. Mirrors valkey's `bulkStrRef` (`networking.c:618-697`).
    fn deliver_publish_arc(&mut self, channel: &[u8], msg: &[u8]) {
        let ids: Vec<u64> = self.subs_by_channel.get(channel).cloned().unwrap_or_default();
        // One alloc + one memcpy of `msg` (4 KB at the 50/4K endpoint)
        // into a refcounted boxed slice that all subscribers share.
        // `Arc<Box<[u8]>>` instead of `Arc<[u8]>` so
        // the writev iovec path keeps a stable byte pointer (see
        // `kevy_store::Value::ArcBulk` doc for rationale). One memcpy
        // per publish vs one per subscriber on the fallback path.
        let arc: Arc<Box<[u8]>> = Arc::new(Box::<[u8]>::from(msg));
        for id in &ids {
            if let Some(c) = self.conns.get_mut(id) {
                // Cap arcs per conn to stay under Linux IOV_MAX. Once
                // hit, fall back to memcpy for *this* publish on this
                // conn — the existing arcs will drain on the next
                // writev completion and the next publish can rejoin
                // the zero-copy path. Net effect: a high-pipelining
                // burst still gets most of the copy-avoid win, but
                // never violates the writev(2) iovec cap.
                if c.output_arcs.len() >= PUBSUB_ARC_FLUSH_AT {
                    pubsub_message_header(&mut c.output, channel, msg.len(), c.proto);
                    c.output.extend_from_slice(msg);
                    c.output.extend_from_slice(b"\r\n");
                } else {
                    pubsub_message_header(&mut c.output, channel, msg.len(), c.proto);
                    let pos = c.output.len();
                    c.output_arcs.push((pos, arc.clone()));
                    c.output.extend_from_slice(b"\r\n");
                }
                if !c.pending_write {
                    c.pending_write = true;
                    self.dirty.push(*id);
                }
            }
        }
    }

    /// `HELLO [protover [AUTH user pass] [SETNAME name]]` — defer the
    /// reply shape + protocol-version decision to the embedder via
    /// [`crate::Commands::hello_reply`]. The runtime applies the
    /// returned proto version to the conn BEFORE folding the reply, so
    /// the ack itself goes out in the new proto's shape (a `HELLO 3`
    /// ack arrives as a RESP3 Map per the spec).
    pub(crate) fn do_hello<A: ArgvView + ?Sized>(&mut self, conn_id: u64, seq: u64, args: &A) {
        let current = match self.conns.get(&conn_id) {
            Some(c) => c.proto,
            None => return,
        };
        let (new_proto, reply) = self.commands.hello_reply(args, current);
        if let Some(c) = self.conns.get_mut(&conn_id) {
            c.proto = new_proto;
            c.pending.push_back(PendingSlot {
                remaining: 1,
                agg: Agg::First(None),
                done: None,
                proto: c.proto,
            });
        }
        self.fold(conn_id, seq, Part::Reply(crate::message::SmallReply::from_vec(reply)));
    }

    /// Flush each shard's accumulated pub/sub batch as one cross-core message —
    /// a flood of PUBLISHes costs one send per target shard per drain, not one
    /// per message. Call once per reactor loop iteration.
    #[inline]
    pub(crate) fn flush_publish(&mut self) {
        // E17 attempted same outline pattern as E15/E16 for this fn too
        // and reverted (see flush_requests revert note in exec.rs) —
        // body is small enough that LLVM already inlines it; forcing
        // the outline added a fn call on the cross-shard fan-out path.
        if self.publish_batch_nonempty == 0 {
            return;
        }
        let mut mask = self.publish_batch_nonempty;
        self.publish_batch_nonempty = 0;
        while mask != 0 {
            let s = mask.trailing_zeros() as usize;
            mask &= mask - 1;
            if s == self.id || self.publish_batch[s].is_empty() {
                continue;
            }
            let batch = std::mem::take(&mut self.publish_batch[s]);
            self.send_to(s, Inbound::DeliverPublish(batch));
        }
    }
}