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

Avoid unnecessary map instance creations on Presences #200

Merged
merged 1 commit into from
Jun 5, 2024
Merged

Conversation

skhugh
Copy link
Contributor

@skhugh skhugh commented Jun 5, 2024

What this PR does / why we need it?

Each time there is a change in presence, we create a new Presences instance for StateFlow. And yet we used a MutableMap, which resulted in multiple toMutableMap invocations.

Any background context you want to provide?

What are the relevant tickets?

Fixes #

Checklist

  • Added relevant tests or not required
  • Didn't break anything

Summary by CodeRabbit

  • Refactor
    • Improved internal handling of presence data for better performance and maintainability.
    • Simplified initialization of presence-related properties in documents.

@skhugh skhugh requested a review from 7hong13 June 5, 2024 08:20
@skhugh skhugh self-assigned this Jun 5, 2024
Copy link

coderabbitai bot commented Jun 5, 2024

Walkthrough

The recent updates focus on enhancing the Presences class by making its internal map immutable and refining its operator overloading and helper functions. Additionally, in the Document class, the initialization of the presences property has been simplified by removing an unnecessary method call.

Changes

File Path Change Summary
yorkie/src/main/kotlin/dev/yorkie/core/Presences.kt Updated the constructor to accept an immutable map, modified plus and minus operators to return new instances, and refined asPresences functions to handle different input types.
yorkie/src/main/kotlin/dev/yorkie/document/Document.kt Simplified the initialization of the presences property by removing the asPresences() method call from _presences.value.

Poem

In code's vast realm where changes play,
The Presences now stand firm, no sway.
Immutable maps, operators anew,
Cleaner flows in Document too.
With every tweak, the code does bloom,
A rabbit's joy in the developer's room. 🐇✨


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 36daeb6 and 83e02d9.

Files selected for processing (2)
  • yorkie/src/main/kotlin/dev/yorkie/core/Presences.kt (1 hunks)
  • yorkie/src/main/kotlin/dev/yorkie/document/Document.kt (1 hunks)
Additional comments not posted (6)
yorkie/src/main/kotlin/dev/yorkie/core/Presences.kt (5)

14-14: The implementation of the plus operator is correct and adheres to the immutability requirement by creating a new Presences instance.


18-18: The implementation of the minus operator is correct and adheres to the immutability requirement by creating a new Presences instance.


27-31: The asPresences function correctly handles both cases where the input is already a Presences instance and when it's not, ensuring immutability.


35-35: The asPresences function for a Pair<ActorID, P> correctly creates a new Presences instance, ensuring immutability.


8-8: Ensure that all usages of map in the Presences class handle the change from MutableMap to Map correctly.

Verification successful

The script executed successfully and did not find any mutable operations (put, remove, clear, putAll) on the map within the Presences class. This indicates that the change from MutableMap to Map has been handled correctly, as no mutable operations are being performed on the map.

Scripts executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Description: Verify that all usages of `map` in the `Presences` class handle the change from `MutableMap` to `Map` correctly.

# Test: Search for the usage of `map` in the `Presences` class. Expect: No mutable operations on `map`.
ast-grep --lang kotlin --pattern $'class Presences {
  $$$
  map($_, $_) {
    $$$
  }
  $$$  
}'

Length of output: 582



Script:

#!/bin/bash
# Description: Verify that all usages of `map` in the `Presences` class handle the change from `MutableMap` to `Map` correctly.

# Find the definition of the `Presences` class to get its location
presences_class_file=$(fd Presences.kt)

# Search for all usages of `map` within the `Presences` class and check for mutable operations
rg --pcre2 --glob "$presences_class_file" '(map\s*=\s*|map\.\s*(put|remove|clear|putAll))'

Length of output: 214

yorkie/src/main/kotlin/dev/yorkie/document/Document.kt (1)

114-114: The modification to the stateIn method simplifies the initialization of the presences property by directly using _presences.value instead of converting it with asPresences(). This change is consistent with the PR's objective to reduce unnecessary instance creations.

@skhugh skhugh merged commit 59ca4ab into main Jun 5, 2024
4 of 6 checks passed
@skhugh skhugh deleted the presence_perf branch June 5, 2024 12:12
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.

2 participants