Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

local echo (n/n): Support simplified version of local echo #1453

Draft
wants to merge 20 commits into
base: main
Choose a base branch
from

Conversation

PIG208
Copy link
Member

@PIG208 PIG208 commented Apr 1, 2025

(This branch can be used to preview the full implementation)

Fixes #1441

PIG208 added 5 commits March 25, 2025 16:20
It will make it easier to add addditional fields on the event later
MessageEvent constructor calls are generally quite short, and there are
no boring required fields other than an integer id.  However, as we add
localMessageId to the event, it would be expected to have a boring
value most of the time, so prepare for that.

A neat side-effect is that we can cut some imports from lib/api/model/.

(Some places that use non-zero event IDs now use 0, but we don't
care much about this value anyway.)
Strings in general should not be JSON-encoded in Zulip APIs.

We will handle local_id separately because that's a bit different.
MessageStore stands out as a better home for sendMessage, which was on
PerAccountStore before we extracted all the separate stores.  This will
make it more natural to support outbox/local echoing.
@PIG208 PIG208 changed the title Support simplified version a local echo (n/n) Support simplified version of local echo (n/n) Apr 1, 2025
@PIG208 PIG208 changed the title Support simplified version of local echo (n/n) locale echo (n/n): Support simplified version of local echo Apr 1, 2025
PIG208 added 15 commits April 1, 2025 18:11
This is an NFC because UpdateMachine would have thrown
(before this change) when the null-check is not on PerAccountStore.

This queueId will later be used for local-echoing.
Message will become generic later, which does not support generic
factory methods.
See also CZO discussion on the design of this, and the drawbacks of
the alternatives:
  https://chat.zulip.org/#narrow/channel/243-mobile-team/topic/A.20new.20variant.20of.20Zulip.20messages.20-.20inheritance.20structure/with/2141288

This will help support locally echoed messages in MessageListView later.

This requiring specifying the element type of `List`s in some tests (or
in some cases, the type of a variable declared).

This is a side effect of making `StreamMessage` and `DmMessage` extend
`Message<T>` with different `T`'s. When both appear in the same `List`,
the upper bound is `Object`, instead of the more specific
`Message<MessageDestination>`.
See "least-upper-bound" tagged issues for reference:
  https://github.com/dart-lang/language/issues?q=state%3Aopen%20label%3A%22least-upper-bound%22
…ableMessage

except MessageListMessageItem.

This keeps changes minimal, leaving most of the helpers in
lib/model/message_list.dart untouched, to avoid unnecessary
generalization.

We have to make Message.fromJson a static method, because factories
do not take type arguments.  This causes some issues with the code
generator because it does not recognize a static fromJson method.

Regarding potential performance impact:
StreamMessage.destination and DmMessage.destination both constructs
MessageDestination from scratch, to avoid keeping duplicate info in
memory.  On the flip side, there might be some slight cost of
constructing DmMessage.destination for builds when we convert
DmMessage.allRecipientIds to lists.  Since we are already doing
O(N) traversals on the list anyway (see DmRecipientHeader.build),
this cost should be negligible.
This is NFC because we don't yet create them when sending messages.
For some narrows, this is in the way of the message handling hot path.
This refactor takes care to make sure that calling containsMessage
with StreamMessage or DmMessage remains about as efficient as before.
Also removed a stale comment that refers to resolved issues
(zulip#173 and zulip#175).

We will reuse this helper when handling outbox messages.
TODOs

- Perhaps make senderFullName available on OutboxMessage
- Add tests.
TODO fix broken tests; more tests, documentation.

This does not debounce new outbox messages. That will be handled in a
later commit.
@PIG208 PIG208 changed the title locale echo (n/n): Support simplified version of local echo local echo (n/n): Support simplified version of local echo Apr 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Simplified local echo, with retry
1 participant